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. |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 17 | def A8_Pipe0 : FuncUnit; // pipeline 0 |
| 18 | def A8_Pipe1 : FuncUnit; // pipeline 1 |
Evan Cheng | d2ca813 | 2010-10-09 01:03:04 +0000 | [diff] [blame] | 19 | def A8_LSPipe : FuncUnit; // Load / store pipeline |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 20 | def A8_NPipe : FuncUnit; // NEON ALU/MUL pipe |
| 21 | def A8_NLSPipe : FuncUnit; // NEON LS pipe |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 22 | // |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 23 | // Dual issue pipeline represented by A8_Pipe0 | A8_Pipe1 |
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 | def CortexA8Itineraries : ProcessorItineraries< |
Evan Cheng | d2ca813 | 2010-10-09 01:03:04 +0000 | [diff] [blame] | 26 | [A8_Pipe0, A8_Pipe1, A8_LSPipe, A8_NPipe, A8_NLSPipe], |
Evan Cheng | 63d66ee | 2010-09-28 23:50:49 +0000 | [diff] [blame] | 27 | [], [ |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 28 | // Two fully-pipelined integer ALU pipelines |
| 29 | // |
| 30 | // No operand cycles |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 31 | InstrItinData<IIC_iALUx , [InstrStage<1, [A8_Pipe0, A8_Pipe1]>]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 32 | // |
| 33 | // Binary Instructions that produce a result |
Jim Grosbach | e9e3f20 | 2010-06-28 04:27:01 +0000 | [diff] [blame] | 34 | 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 Cheng | 3881cb7 | 2010-09-29 22:42:35 +0000 | [diff] [blame] | 37 | InstrItinData<IIC_iALUsir,[InstrStage<1,[A8_Pipe0, A8_Pipe1]>], [2, 1, 2]>, |
Jim Grosbach | e9e3f20 | 2010-06-28 04:27:01 +0000 | [diff] [blame] | 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 | // |
Evan Cheng | 7e1bf30 | 2010-09-29 00:27:46 +0000 | [diff] [blame] | 40 | // 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 Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 46 | // Unary Instructions that produce a result |
Jim Grosbach | e9e3f20 | 2010-06-28 04:27:01 +0000 | [diff] [blame] | 47 | InstrItinData<IIC_iUNAr , [InstrStage<1, [A8_Pipe0, A8_Pipe1]>], [2, 2]>, |
| 48 | InstrItinData<IIC_iUNAsi, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>], [2, 1]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 49 | // |
Evan Cheng | 576a396 | 2010-09-25 00:49:35 +0000 | [diff] [blame] | 50 | // 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 Cheng | 7e1bf30 | 2010-09-29 00:27:46 +0000 | [diff] [blame] | 53 | InstrItinData<IIC_iEXTAsr,[InstrStage<1, [A8_Pipe0, A8_Pipe1]>],[2, 2, 1, 1]>, |
Evan Cheng | 576a396 | 2010-09-25 00:49:35 +0000 | [diff] [blame] | 54 | // |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 55 | // Compare instructions |
Jim Grosbach | e9e3f20 | 2010-06-28 04:27:01 +0000 | [diff] [blame] | 56 | 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 Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 60 | // |
Evan Cheng | 5d42c56 | 2010-09-29 00:49:25 +0000 | [diff] [blame] | 61 | // 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 Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 67 | // Move instructions, unconditional |
Jim Grosbach | e9e3f20 | 2010-06-28 04:27:01 +0000 | [diff] [blame] | 68 | 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 Cheng | 5d42c56 | 2010-09-29 00:49:25 +0000 | [diff] [blame] | 72 | InstrItinData<IIC_iMOVix2,[InstrStage<1, [A8_Pipe0, A8_Pipe1]>, |
| 73 | InstrStage<1, [A8_Pipe0, A8_Pipe1]>], [2]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 74 | // |
| 75 | // Move instructions, conditional |
Jim Grosbach | e9e3f20 | 2010-06-28 04:27:01 +0000 | [diff] [blame] | 76 | InstrItinData<IIC_iCMOVi , [InstrStage<1, [A8_Pipe0, A8_Pipe1]>], [2]>, |
| 77 | InstrItinData<IIC_iCMOVr , [InstrStage<1, [A8_Pipe0, A8_Pipe1]>], [2, 1]>, |
| 78 | InstrItinData<IIC_iCMOVsi, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>], [2, 1]>, |
| 79 | InstrItinData<IIC_iCMOVsr, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>], [2, 1, 1]>, |
Evan Cheng | 5d42c56 | 2010-09-29 00:49:25 +0000 | [diff] [blame] | 80 | // |
| 81 | // MVN instructions |
| 82 | InstrItinData<IIC_iMVNi , [InstrStage<1, [A8_Pipe0, A8_Pipe1]>], [1]>, |
| 83 | InstrItinData<IIC_iMVNr , [InstrStage<1, [A8_Pipe0, A8_Pipe1]>], [1, 1]>, |
| 84 | InstrItinData<IIC_iMVNsi, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>], [1, 1]>, |
| 85 | InstrItinData<IIC_iMVNsr, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>], [1, 1, 1]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 86 | |
| 87 | // Integer multiply pipeline |
| 88 | // Result written in E5, but that is relative to the last cycle of multicycle, |
| 89 | // so we use 6 for those cases |
| 90 | // |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 91 | InstrItinData<IIC_iMUL16 , [InstrStage<1, [A8_Pipe0]>], [5, 1, 1]>, |
Evan Cheng | 8ae6ffa | 2010-10-09 01:15:04 +0000 | [diff] [blame] | 92 | InstrItinData<IIC_iMAC16 , [InstrStage<2, [A8_Pipe0]>], [6, 1, 1, 4]>, |
| 93 | InstrItinData<IIC_iMUL32 , [InstrStage<2, [A8_Pipe0]>], [6, 1, 1]>, |
| 94 | InstrItinData<IIC_iMAC32 , [InstrStage<2, [A8_Pipe0]>], [6, 1, 1, 4]>, |
| 95 | InstrItinData<IIC_iMUL64 , [InstrStage<3, [A8_Pipe0]>], [6, 6, 1, 1]>, |
| 96 | InstrItinData<IIC_iMAC64 , [InstrStage<3, [A8_Pipe0]>], [6, 6, 1, 1]>, |
Jim Grosbach | e9e3f20 | 2010-06-28 04:27:01 +0000 | [diff] [blame] | 97 | |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 98 | // Integer load pipeline |
| 99 | // |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 100 | // Immediate offset |
Evan Cheng | 41957f6 | 2010-11-03 00:40:22 +0000 | [diff] [blame] | 101 | InstrItinData<IIC_iLoad_i , [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>, |
Evan Cheng | d2ca813 | 2010-10-09 01:03:04 +0000 | [diff] [blame] | 102 | InstrStage<1, [A8_LSPipe]>], [3, 1]>, |
Evan Cheng | 41957f6 | 2010-11-03 00:40:22 +0000 | [diff] [blame] | 103 | InstrItinData<IIC_iLoad_bh_i, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>, |
Evan Cheng | d2ca813 | 2010-10-09 01:03:04 +0000 | [diff] [blame] | 104 | InstrStage<1, [A8_LSPipe]>], [3, 1]>, |
Evan Cheng | 41957f6 | 2010-11-03 00:40:22 +0000 | [diff] [blame] | 105 | InstrItinData<IIC_iLoad_d_i, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>, |
Evan Cheng | d2ca813 | 2010-10-09 01:03:04 +0000 | [diff] [blame] | 106 | InstrStage<1, [A8_LSPipe]>], [3, 1]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 107 | // |
| 108 | // Register offset |
Evan Cheng | 41957f6 | 2010-11-03 00:40:22 +0000 | [diff] [blame] | 109 | InstrItinData<IIC_iLoad_r , [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>, |
Evan Cheng | d2ca813 | 2010-10-09 01:03:04 +0000 | [diff] [blame] | 110 | InstrStage<1, [A8_LSPipe]>], [3, 1, 1]>, |
Evan Cheng | 41957f6 | 2010-11-03 00:40:22 +0000 | [diff] [blame] | 111 | InstrItinData<IIC_iLoad_bh_r, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>, |
Evan Cheng | d2ca813 | 2010-10-09 01:03:04 +0000 | [diff] [blame] | 112 | InstrStage<1, [A8_LSPipe]>], [3, 1, 1]>, |
Evan Cheng | 41957f6 | 2010-11-03 00:40:22 +0000 | [diff] [blame] | 113 | InstrItinData<IIC_iLoad_d_r , [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>, |
Evan Cheng | d2ca813 | 2010-10-09 01:03:04 +0000 | [diff] [blame] | 114 | InstrStage<1, [A8_LSPipe]>], [3, 1, 1]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 115 | // |
| 116 | // Scaled register offset, issues over 2 cycles |
Evan Cheng | d2ca813 | 2010-10-09 01:03:04 +0000 | [diff] [blame] | 117 | // FIXME: lsl by 2 takes 1 cycle. |
Evan Cheng | 41957f6 | 2010-11-03 00:40:22 +0000 | [diff] [blame] | 118 | InstrItinData<IIC_iLoad_si , [InstrStage<2, [A8_Pipe0, A8_Pipe1], 0>, |
Evan Cheng | d2ca813 | 2010-10-09 01:03:04 +0000 | [diff] [blame] | 119 | InstrStage<1, [A8_LSPipe]>], [4, 1, 1]>, |
Evan Cheng | 41957f6 | 2010-11-03 00:40:22 +0000 | [diff] [blame] | 120 | InstrItinData<IIC_iLoad_bh_si,[InstrStage<2, [A8_Pipe0, A8_Pipe1], 0>, |
Evan Cheng | d2ca813 | 2010-10-09 01:03:04 +0000 | [diff] [blame] | 121 | InstrStage<1, [A8_LSPipe]>], [4, 1, 1]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 122 | // |
| 123 | // Immediate offset with update |
Evan Cheng | 41957f6 | 2010-11-03 00:40:22 +0000 | [diff] [blame] | 124 | InstrItinData<IIC_iLoad_iu , [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>, |
Evan Cheng | d2ca813 | 2010-10-09 01:03:04 +0000 | [diff] [blame] | 125 | InstrStage<1, [A8_LSPipe]>], [3, 2, 1]>, |
Evan Cheng | 41957f6 | 2010-11-03 00:40:22 +0000 | [diff] [blame] | 126 | InstrItinData<IIC_iLoad_bh_iu,[InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>, |
Evan Cheng | d2ca813 | 2010-10-09 01:03:04 +0000 | [diff] [blame] | 127 | InstrStage<1, [A8_LSPipe]>], [3, 2, 1]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 128 | // |
| 129 | // Register offset with update |
Evan Cheng | 41957f6 | 2010-11-03 00:40:22 +0000 | [diff] [blame] | 130 | InstrItinData<IIC_iLoad_ru , [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>, |
Evan Cheng | d2ca813 | 2010-10-09 01:03:04 +0000 | [diff] [blame] | 131 | InstrStage<1, [A8_LSPipe]>], [3, 2, 1, 1]>, |
Evan Cheng | 41957f6 | 2010-11-03 00:40:22 +0000 | [diff] [blame] | 132 | InstrItinData<IIC_iLoad_bh_ru,[InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>, |
Evan Cheng | d2ca813 | 2010-10-09 01:03:04 +0000 | [diff] [blame] | 133 | InstrStage<1, [A8_LSPipe]>], [3, 2, 1, 1]>, |
Evan Cheng | 41957f6 | 2010-11-03 00:40:22 +0000 | [diff] [blame] | 134 | InstrItinData<IIC_iLoad_d_ru, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>, |
Evan Cheng | d2ca813 | 2010-10-09 01:03:04 +0000 | [diff] [blame] | 135 | InstrStage<1, [A8_LSPipe]>], [3, 2, 1, 1]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 136 | // |
| 137 | // Scaled register offset with update, issues over 2 cycles |
Evan Cheng | 41957f6 | 2010-11-03 00:40:22 +0000 | [diff] [blame] | 138 | InstrItinData<IIC_iLoad_siu , [InstrStage<2, [A8_Pipe0, A8_Pipe1], 0>, |
| 139 | InstrStage<2, [A8_LSPipe]>], [4, 3, 1, 1]>, |
| 140 | InstrItinData<IIC_iLoad_bh_siu,[InstrStage<2, [A8_Pipe0, A8_Pipe1], 0>, |
| 141 | InstrStage<2, [A8_LSPipe]>], [4, 3, 1, 1]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 142 | // |
Evan Cheng | d2ca813 | 2010-10-09 01:03:04 +0000 | [diff] [blame] | 143 | // Load multiple, def is the 5th operand. Pipeline 0 only. |
| 144 | // FIXME: A8_LSPipe cycle time is dynamic, this assumes 3 to 4 registers. |
Evan Cheng | 41957f6 | 2010-11-03 00:40:22 +0000 | [diff] [blame] | 145 | InstrItinData<IIC_iLoad_m , [InstrStage<2, [A8_Pipe0], 0>, |
Evan Cheng | d2ca813 | 2010-10-09 01:03:04 +0000 | [diff] [blame] | 146 | InstrStage<2, [A8_LSPipe]>], [1, 1, 1, 1, 3]>, |
Evan Cheng | a0792de | 2010-10-06 06:27:31 +0000 | [diff] [blame] | 147 | // |
| 148 | // Load multiple + update, defs are the 1st and 5th operands. |
Evan Cheng | 41957f6 | 2010-11-03 00:40:22 +0000 | [diff] [blame] | 149 | InstrItinData<IIC_iLoad_mu , [InstrStage<3, [A8_Pipe0], 0>, |
Evan Cheng | d2ca813 | 2010-10-09 01:03:04 +0000 | [diff] [blame] | 150 | InstrStage<3, [A8_LSPipe]>], [2, 1, 1, 1, 3]>, |
Evan Cheng | 7602acb | 2010-09-08 22:57:08 +0000 | [diff] [blame] | 151 | // |
| 152 | // Load multiple plus branch |
Evan Cheng | 41957f6 | 2010-11-03 00:40:22 +0000 | [diff] [blame] | 153 | InstrItinData<IIC_iLoad_mBr, [InstrStage<3, [A8_Pipe0], 0>, |
Evan Cheng | d2ca813 | 2010-10-09 01:03:04 +0000 | [diff] [blame] | 154 | InstrStage<3, [A8_LSPipe]>, |
Evan Cheng | a0792de | 2010-10-06 06:27:31 +0000 | [diff] [blame] | 155 | InstrStage<1, [A8_Pipe0, A8_Pipe1]>], |
| 156 | [1, 2, 1, 1, 3]>, |
| 157 | // |
| 158 | // Pop, def is the 3rd operand. |
Evan Cheng | 41957f6 | 2010-11-03 00:40:22 +0000 | [diff] [blame] | 159 | InstrItinData<IIC_iPop , [InstrStage<3, [A8_Pipe0], 0>, |
Evan Cheng | d2ca813 | 2010-10-09 01:03:04 +0000 | [diff] [blame] | 160 | InstrStage<3, [A8_LSPipe]>], [1, 1, 3]>, |
Evan Cheng | a0792de | 2010-10-06 06:27:31 +0000 | [diff] [blame] | 161 | // |
| 162 | // Push, def is the 3th operand. |
Evan Cheng | 41957f6 | 2010-11-03 00:40:22 +0000 | [diff] [blame] | 163 | InstrItinData<IIC_iPop_Br, [InstrStage<3, [A8_Pipe0], 0>, |
Evan Cheng | d2ca813 | 2010-10-09 01:03:04 +0000 | [diff] [blame] | 164 | InstrStage<3, [A8_LSPipe]>, |
Evan Cheng | a0792de | 2010-10-06 06:27:31 +0000 | [diff] [blame] | 165 | InstrStage<1, [A8_Pipe0, A8_Pipe1]>], |
| 166 | [1, 1, 3]>, |
Evan Cheng | 7602acb | 2010-09-08 22:57:08 +0000 | [diff] [blame] | 167 | |
Evan Cheng | bd30ce4 | 2010-09-24 22:41:41 +0000 | [diff] [blame] | 168 | // |
| 169 | // iLoadi + iALUr for t2LDRpci_pic. |
Evan Cheng | 41957f6 | 2010-11-03 00:40:22 +0000 | [diff] [blame] | 170 | InstrItinData<IIC_iLoadiALU, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>, |
Evan Cheng | d2ca813 | 2010-10-09 01:03:04 +0000 | [diff] [blame] | 171 | InstrStage<1, [A8_LSPipe]>, |
Evan Cheng | bd30ce4 | 2010-09-24 22:41:41 +0000 | [diff] [blame] | 172 | InstrStage<1, [A8_Pipe0, A8_Pipe1]>], [4, 1]>, |
| 173 | |
| 174 | |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 175 | // Integer store pipeline |
| 176 | // |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 177 | // Immediate offset |
Evan Cheng | 41957f6 | 2010-11-03 00:40:22 +0000 | [diff] [blame] | 178 | InstrItinData<IIC_iStore_i , [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>, |
Evan Cheng | d2ca813 | 2010-10-09 01:03:04 +0000 | [diff] [blame] | 179 | InstrStage<1, [A8_LSPipe]>], [3, 1]>, |
Evan Cheng | 41957f6 | 2010-11-03 00:40:22 +0000 | [diff] [blame] | 180 | InstrItinData<IIC_iStore_bh_i,[InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>, |
Evan Cheng | d2ca813 | 2010-10-09 01:03:04 +0000 | [diff] [blame] | 181 | InstrStage<1, [A8_LSPipe]>], [3, 1]>, |
Evan Cheng | 41957f6 | 2010-11-03 00:40:22 +0000 | [diff] [blame] | 182 | InstrItinData<IIC_iStore_d_i, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>, |
Evan Cheng | d2ca813 | 2010-10-09 01:03:04 +0000 | [diff] [blame] | 183 | InstrStage<1, [A8_LSPipe]>], [3, 1]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 184 | // |
| 185 | // Register offset |
Evan Cheng | 41957f6 | 2010-11-03 00:40:22 +0000 | [diff] [blame] | 186 | InstrItinData<IIC_iStore_r , [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>, |
Evan Cheng | d2ca813 | 2010-10-09 01:03:04 +0000 | [diff] [blame] | 187 | InstrStage<1, [A8_LSPipe]>], [3, 1, 1]>, |
Evan Cheng | 41957f6 | 2010-11-03 00:40:22 +0000 | [diff] [blame] | 188 | InstrItinData<IIC_iStore_bh_r,[InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>, |
Evan Cheng | d2ca813 | 2010-10-09 01:03:04 +0000 | [diff] [blame] | 189 | InstrStage<1, [A8_LSPipe]>], [3, 1, 1]>, |
Evan Cheng | 41957f6 | 2010-11-03 00:40:22 +0000 | [diff] [blame] | 190 | InstrItinData<IIC_iStore_d_r, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>, |
Evan Cheng | d2ca813 | 2010-10-09 01:03:04 +0000 | [diff] [blame] | 191 | InstrStage<1, [A8_LSPipe]>], [3, 1, 1]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 192 | // |
| 193 | // Scaled register offset, issues over 2 cycles |
Evan Cheng | 41957f6 | 2010-11-03 00:40:22 +0000 | [diff] [blame] | 194 | InstrItinData<IIC_iStore_si , [InstrStage<2, [A8_Pipe0, A8_Pipe1], 0>, |
Evan Cheng | d2ca813 | 2010-10-09 01:03:04 +0000 | [diff] [blame] | 195 | InstrStage<2, [A8_LSPipe]>], [3, 1, 1]>, |
Evan Cheng | 41957f6 | 2010-11-03 00:40:22 +0000 | [diff] [blame] | 196 | InstrItinData<IIC_iStore_bh_si,[InstrStage<2, [A8_Pipe0, A8_Pipe1], 0>, |
Evan Cheng | d2ca813 | 2010-10-09 01:03:04 +0000 | [diff] [blame] | 197 | InstrStage<2, [A8_LSPipe]>], [3, 1, 1]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 198 | // |
| 199 | // Immediate offset with update |
Evan Cheng | 41957f6 | 2010-11-03 00:40:22 +0000 | [diff] [blame] | 200 | InstrItinData<IIC_iStore_iu , [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>, |
Evan Cheng | d2ca813 | 2010-10-09 01:03:04 +0000 | [diff] [blame] | 201 | InstrStage<1, [A8_LSPipe]>], [2, 3, 1]>, |
Evan Cheng | 41957f6 | 2010-11-03 00:40:22 +0000 | [diff] [blame] | 202 | InstrItinData<IIC_iStore_bh_iu,[InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>, |
Evan Cheng | d2ca813 | 2010-10-09 01:03:04 +0000 | [diff] [blame] | 203 | InstrStage<1, [A8_LSPipe]>], [2, 3, 1]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 204 | // |
| 205 | // Register offset with update |
Evan Cheng | 41957f6 | 2010-11-03 00:40:22 +0000 | [diff] [blame] | 206 | InstrItinData<IIC_iStore_ru , [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>, |
Evan Cheng | d2ca813 | 2010-10-09 01:03:04 +0000 | [diff] [blame] | 207 | InstrStage<1, [A8_LSPipe]>], [2, 3, 1, 1]>, |
Evan Cheng | 41957f6 | 2010-11-03 00:40:22 +0000 | [diff] [blame] | 208 | InstrItinData<IIC_iStore_bh_ru,[InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>, |
Evan Cheng | d2ca813 | 2010-10-09 01:03:04 +0000 | [diff] [blame] | 209 | InstrStage<1, [A8_LSPipe]>], [2, 3, 1, 1]>, |
Evan Cheng | 41957f6 | 2010-11-03 00:40:22 +0000 | [diff] [blame] | 210 | InstrItinData<IIC_iStore_d_ru, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>, |
Evan Cheng | d2ca813 | 2010-10-09 01:03:04 +0000 | [diff] [blame] | 211 | InstrStage<1, [A8_LSPipe]>], [2, 3, 1, 1]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 212 | // |
| 213 | // Scaled register offset with update, issues over 2 cycles |
Evan Cheng | 41957f6 | 2010-11-03 00:40:22 +0000 | [diff] [blame] | 214 | InstrItinData<IIC_iStore_siu, [InstrStage<2, [A8_Pipe0, A8_Pipe1], 0>, |
Evan Cheng | d2ca813 | 2010-10-09 01:03:04 +0000 | [diff] [blame] | 215 | InstrStage<2, [A8_LSPipe]>], [3, 3, 1, 1]>, |
Evan Cheng | 41957f6 | 2010-11-03 00:40:22 +0000 | [diff] [blame] | 216 | InstrItinData<IIC_iStore_bh_siu,[InstrStage<2, [A8_Pipe0, A8_Pipe1], 0>, |
Evan Cheng | d2ca813 | 2010-10-09 01:03:04 +0000 | [diff] [blame] | 217 | InstrStage<2, [A8_LSPipe]>], [3, 3, 1, 1]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 218 | // |
Evan Cheng | d2ca813 | 2010-10-09 01:03:04 +0000 | [diff] [blame] | 219 | // Store multiple. Pipeline 0 only. |
| 220 | // FIXME: A8_LSPipe cycle time is dynamic, this assumes 3 to 4 registers. |
Evan Cheng | 41957f6 | 2010-11-03 00:40:22 +0000 | [diff] [blame] | 221 | InstrItinData<IIC_iStore_m , [InstrStage<2, [A8_Pipe0], 0>, |
Evan Cheng | d2ca813 | 2010-10-09 01:03:04 +0000 | [diff] [blame] | 222 | InstrStage<2, [A8_LSPipe]>]>, |
Evan Cheng | a0792de | 2010-10-06 06:27:31 +0000 | [diff] [blame] | 223 | // |
| 224 | // Store multiple + update |
Evan Cheng | 41957f6 | 2010-11-03 00:40:22 +0000 | [diff] [blame] | 225 | InstrItinData<IIC_iStore_mu, [InstrStage<2, [A8_Pipe0], 0>, |
Evan Cheng | d2ca813 | 2010-10-09 01:03:04 +0000 | [diff] [blame] | 226 | InstrStage<2, [A8_LSPipe]>], [2]>, |
Jim Grosbach | e9e3f20 | 2010-06-28 04:27:01 +0000 | [diff] [blame] | 227 | |
Evan Cheng | dfed19f | 2010-11-03 06:34:55 +0000 | [diff] [blame^] | 228 | // |
| 229 | // Preload |
| 230 | InstrItinData<IIC_Preload, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>], [2, 2]>, |
| 231 | |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 232 | // Branch |
| 233 | // |
| 234 | // no delay slots, so the latency of a branch is unimportant |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 235 | InstrItinData<IIC_Br , [InstrStage<1, [A8_Pipe0, A8_Pipe1]>]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 236 | |
| 237 | // VFP |
| 238 | // Issue through integer pipeline, and execute in NEON unit. We assume |
| 239 | // RunFast mode so that NFP pipeline is used for single-precision when |
| 240 | // possible. |
| 241 | // |
| 242 | // FP Special Register to Integer Register File Move |
Evan Cheng | 41957f6 | 2010-11-03 00:40:22 +0000 | [diff] [blame] | 243 | InstrItinData<IIC_fpSTAT , [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>, |
Evan Cheng | e09206d | 2010-10-29 23:16:55 +0000 | [diff] [blame] | 244 | InstrStage<1, [A8_NLSPipe]>], [20]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 245 | // |
| 246 | // Single-precision FP Unary |
Evan Cheng | 41957f6 | 2010-11-03 00:40:22 +0000 | [diff] [blame] | 247 | InstrItinData<IIC_fpUNA32 , [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>, |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 248 | InstrStage<1, [A8_NPipe]>], [7, 1]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 249 | // |
| 250 | // Double-precision FP Unary |
Evan Cheng | 41957f6 | 2010-11-03 00:40:22 +0000 | [diff] [blame] | 251 | InstrItinData<IIC_fpUNA64 , [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>, |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 252 | InstrStage<4, [A8_NPipe], 0>, |
| 253 | InstrStage<4, [A8_NLSPipe]>], [4, 1]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 254 | // |
| 255 | // Single-precision FP Compare |
Evan Cheng | 41957f6 | 2010-11-03 00:40:22 +0000 | [diff] [blame] | 256 | InstrItinData<IIC_fpCMP32 , [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>, |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 257 | InstrStage<1, [A8_NPipe]>], [1, 1]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 258 | // |
| 259 | // Double-precision FP Compare |
Evan Cheng | 41957f6 | 2010-11-03 00:40:22 +0000 | [diff] [blame] | 260 | InstrItinData<IIC_fpCMP64 , [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>, |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 261 | InstrStage<4, [A8_NPipe], 0>, |
| 262 | InstrStage<4, [A8_NLSPipe]>], [4, 1]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 263 | // |
| 264 | // Single to Double FP Convert |
Evan Cheng | 41957f6 | 2010-11-03 00:40:22 +0000 | [diff] [blame] | 265 | InstrItinData<IIC_fpCVTSD , [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>, |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 266 | InstrStage<7, [A8_NPipe], 0>, |
| 267 | InstrStage<7, [A8_NLSPipe]>], [7, 1]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 268 | // |
| 269 | // Double to Single FP Convert |
Evan Cheng | 41957f6 | 2010-11-03 00:40:22 +0000 | [diff] [blame] | 270 | InstrItinData<IIC_fpCVTDS , [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>, |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 271 | InstrStage<5, [A8_NPipe], 0>, |
| 272 | InstrStage<5, [A8_NLSPipe]>], [5, 1]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 273 | // |
| 274 | // Single-Precision FP to Integer Convert |
Evan Cheng | 41957f6 | 2010-11-03 00:40:22 +0000 | [diff] [blame] | 275 | InstrItinData<IIC_fpCVTSI , [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>, |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 276 | InstrStage<1, [A8_NPipe]>], [7, 1]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 277 | // |
| 278 | // Double-Precision FP to Integer Convert |
Evan Cheng | 41957f6 | 2010-11-03 00:40:22 +0000 | [diff] [blame] | 279 | InstrItinData<IIC_fpCVTDI , [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>, |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 280 | InstrStage<8, [A8_NPipe], 0>, |
| 281 | InstrStage<8, [A8_NLSPipe]>], [8, 1]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 282 | // |
| 283 | // Integer to Single-Precision FP Convert |
Evan Cheng | 41957f6 | 2010-11-03 00:40:22 +0000 | [diff] [blame] | 284 | InstrItinData<IIC_fpCVTIS , [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>, |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 285 | InstrStage<1, [A8_NPipe]>], [7, 1]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 286 | // |
| 287 | // Integer to Double-Precision FP Convert |
Evan Cheng | 41957f6 | 2010-11-03 00:40:22 +0000 | [diff] [blame] | 288 | InstrItinData<IIC_fpCVTID , [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>, |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 289 | InstrStage<8, [A8_NPipe], 0>, |
| 290 | InstrStage<8, [A8_NLSPipe]>], [8, 1]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 291 | // |
| 292 | // Single-precision FP ALU |
Evan Cheng | 41957f6 | 2010-11-03 00:40:22 +0000 | [diff] [blame] | 293 | InstrItinData<IIC_fpALU32 , [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>, |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 294 | InstrStage<1, [A8_NPipe]>], [7, 1, 1]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 295 | // |
| 296 | // Double-precision FP ALU |
Evan Cheng | 41957f6 | 2010-11-03 00:40:22 +0000 | [diff] [blame] | 297 | InstrItinData<IIC_fpALU64 , [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>, |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 298 | InstrStage<9, [A8_NPipe], 0>, |
| 299 | InstrStage<9, [A8_NLSPipe]>], [9, 1, 1]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 300 | // |
| 301 | // Single-precision FP Multiply |
Evan Cheng | 41957f6 | 2010-11-03 00:40:22 +0000 | [diff] [blame] | 302 | InstrItinData<IIC_fpMUL32 , [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>, |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 303 | InstrStage<1, [A8_NPipe]>], [7, 1, 1]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 304 | // |
| 305 | // Double-precision FP Multiply |
Evan Cheng | 41957f6 | 2010-11-03 00:40:22 +0000 | [diff] [blame] | 306 | InstrItinData<IIC_fpMUL64 , [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>, |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 307 | InstrStage<11, [A8_NPipe], 0>, |
| 308 | InstrStage<11, [A8_NLSPipe]>], [11, 1, 1]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 309 | // |
| 310 | // Single-precision FP MAC |
Evan Cheng | 41957f6 | 2010-11-03 00:40:22 +0000 | [diff] [blame] | 311 | InstrItinData<IIC_fpMAC32 , [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>, |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 312 | InstrStage<1, [A8_NPipe]>], [7, 2, 1, 1]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 313 | // |
| 314 | // Double-precision FP MAC |
Evan Cheng | 41957f6 | 2010-11-03 00:40:22 +0000 | [diff] [blame] | 315 | InstrItinData<IIC_fpMAC64 , [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>, |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 316 | InstrStage<19, [A8_NPipe], 0>, |
| 317 | InstrStage<19, [A8_NLSPipe]>], [19, 2, 1, 1]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 318 | // |
| 319 | // Single-precision FP DIV |
Evan Cheng | 41957f6 | 2010-11-03 00:40:22 +0000 | [diff] [blame] | 320 | InstrItinData<IIC_fpDIV32 , [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>, |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 321 | InstrStage<20, [A8_NPipe], 0>, |
| 322 | InstrStage<20, [A8_NLSPipe]>], [20, 1, 1]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 323 | // |
| 324 | // Double-precision FP DIV |
Evan Cheng | 41957f6 | 2010-11-03 00:40:22 +0000 | [diff] [blame] | 325 | InstrItinData<IIC_fpDIV64 , [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>, |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 326 | InstrStage<29, [A8_NPipe], 0>, |
| 327 | InstrStage<29, [A8_NLSPipe]>], [29, 1, 1]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 328 | // |
| 329 | // Single-precision FP SQRT |
Evan Cheng | 41957f6 | 2010-11-03 00:40:22 +0000 | [diff] [blame] | 330 | InstrItinData<IIC_fpSQRT32, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>, |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 331 | InstrStage<19, [A8_NPipe], 0>, |
| 332 | InstrStage<19, [A8_NLSPipe]>], [19, 1]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 333 | // |
| 334 | // Double-precision FP SQRT |
Evan Cheng | 41957f6 | 2010-11-03 00:40:22 +0000 | [diff] [blame] | 335 | InstrItinData<IIC_fpSQRT64, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>, |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 336 | InstrStage<29, [A8_NPipe], 0>, |
| 337 | InstrStage<29, [A8_NLSPipe]>], [29, 1]>, |
Andrew Trick | 5b7a825 | 2010-10-21 03:40:16 +0000 | [diff] [blame] | 338 | |
| 339 | // |
| 340 | // Integer to Single-precision Move |
Evan Cheng | 41957f6 | 2010-11-03 00:40:22 +0000 | [diff] [blame] | 341 | InstrItinData<IIC_fpMOVIS, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>, |
Andrew Trick | 5b7a825 | 2010-10-21 03:40:16 +0000 | [diff] [blame] | 342 | InstrStage<1, [A8_NPipe]>], |
| 343 | [2, 1]>, |
| 344 | // |
| 345 | // Integer to Double-precision Move |
Evan Cheng | 41957f6 | 2010-11-03 00:40:22 +0000 | [diff] [blame] | 346 | InstrItinData<IIC_fpMOVID, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>, |
Andrew Trick | 5b7a825 | 2010-10-21 03:40:16 +0000 | [diff] [blame] | 347 | InstrStage<1, [A8_NPipe]>], |
| 348 | [2, 1, 1]>, |
| 349 | // |
| 350 | // Single-precision to Integer Move |
Evan Cheng | 41957f6 | 2010-11-03 00:40:22 +0000 | [diff] [blame] | 351 | InstrItinData<IIC_fpMOVSI, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>, |
Andrew Trick | 5b7a825 | 2010-10-21 03:40:16 +0000 | [diff] [blame] | 352 | InstrStage<1, [A8_NPipe]>], |
| 353 | [20, 1]>, |
| 354 | // |
| 355 | // Double-precision to Integer Move |
Evan Cheng | 41957f6 | 2010-11-03 00:40:22 +0000 | [diff] [blame] | 356 | InstrItinData<IIC_fpMOVDI, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>, |
Andrew Trick | 5b7a825 | 2010-10-21 03:40:16 +0000 | [diff] [blame] | 357 | InstrStage<1, [A8_NPipe]>], |
| 358 | [20, 20, 1]>, |
| 359 | |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 360 | // |
| 361 | // Single-precision FP Load |
Evan Cheng | 41957f6 | 2010-11-03 00:40:22 +0000 | [diff] [blame] | 362 | InstrItinData<IIC_fpLoad32, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>, |
| 363 | InstrStage<1, [A8_NLSPipe], 0>, |
Evan Cheng | d2ca813 | 2010-10-09 01:03:04 +0000 | [diff] [blame] | 364 | InstrStage<1, [A8_LSPipe]>], |
Evan Cheng | df9da6a | 2010-10-01 21:40:30 +0000 | [diff] [blame] | 365 | [2, 1]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 366 | // |
| 367 | // Double-precision FP Load |
Evan Cheng | 41957f6 | 2010-11-03 00:40:22 +0000 | [diff] [blame] | 368 | InstrItinData<IIC_fpLoad64, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>, |
| 369 | InstrStage<1, [A8_NLSPipe], 0>, |
Evan Cheng | d2ca813 | 2010-10-09 01:03:04 +0000 | [diff] [blame] | 370 | InstrStage<1, [A8_LSPipe]>], |
Evan Cheng | df9da6a | 2010-10-01 21:40:30 +0000 | [diff] [blame] | 371 | [2, 1]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 372 | // |
| 373 | // FP Load Multiple |
Evan Cheng | d2ca813 | 2010-10-09 01:03:04 +0000 | [diff] [blame] | 374 | // FIXME: A8_LSPipe cycle time is dynamic, this assumes 3 to 4 registers. |
Evan Cheng | 41957f6 | 2010-11-03 00:40:22 +0000 | [diff] [blame] | 375 | InstrItinData<IIC_fpLoad_m, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>, |
| 376 | InstrStage<1, [A8_NLSPipe], 0>, |
Evan Cheng | d2ca813 | 2010-10-09 01:03:04 +0000 | [diff] [blame] | 377 | InstrStage<1, [A8_LSPipe]>, |
Evan Cheng | 41957f6 | 2010-11-03 00:40:22 +0000 | [diff] [blame] | 378 | InstrStage<1, [A8_NLSPipe], 0>, |
Evan Cheng | d2ca813 | 2010-10-09 01:03:04 +0000 | [diff] [blame] | 379 | InstrStage<1, [A8_LSPipe]>], [1, 1, 1, 2]>, |
Evan Cheng | 5a50cee | 2010-10-07 01:50:48 +0000 | [diff] [blame] | 380 | // |
| 381 | // FP Load Multiple + update |
Evan Cheng | 41957f6 | 2010-11-03 00:40:22 +0000 | [diff] [blame] | 382 | InstrItinData<IIC_fpLoad_mu,[InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>, |
| 383 | InstrStage<1, [A8_NLSPipe], 0>, |
Evan Cheng | d2ca813 | 2010-10-09 01:03:04 +0000 | [diff] [blame] | 384 | InstrStage<1, [A8_LSPipe]>, |
Evan Cheng | 41957f6 | 2010-11-03 00:40:22 +0000 | [diff] [blame] | 385 | InstrStage<1, [A8_NLSPipe], 0>, |
Evan Cheng | d2ca813 | 2010-10-09 01:03:04 +0000 | [diff] [blame] | 386 | InstrStage<1, [A8_LSPipe]>], [2, 1, 1, 1, 2]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 387 | // |
| 388 | // Single-precision FP Store |
Evan Cheng | 41957f6 | 2010-11-03 00:40:22 +0000 | [diff] [blame] | 389 | InstrItinData<IIC_fpStore32,[InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>, |
| 390 | InstrStage<1, [A8_NLSPipe], 0>, |
Evan Cheng | d2ca813 | 2010-10-09 01:03:04 +0000 | [diff] [blame] | 391 | InstrStage<1, [A8_LSPipe]>], |
Evan Cheng | df9da6a | 2010-10-01 21:40:30 +0000 | [diff] [blame] | 392 | [1, 1]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 393 | // |
| 394 | // Double-precision FP Store |
Evan Cheng | 41957f6 | 2010-11-03 00:40:22 +0000 | [diff] [blame] | 395 | InstrItinData<IIC_fpStore64,[InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>, |
| 396 | InstrStage<1, [A8_NLSPipe], 0>, |
Evan Cheng | d2ca813 | 2010-10-09 01:03:04 +0000 | [diff] [blame] | 397 | InstrStage<1, [A8_LSPipe]>], |
Evan Cheng | df9da6a | 2010-10-01 21:40:30 +0000 | [diff] [blame] | 398 | [1, 1]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 399 | // |
| 400 | // FP Store Multiple |
Evan Cheng | 41957f6 | 2010-11-03 00:40:22 +0000 | [diff] [blame] | 401 | InstrItinData<IIC_fpStore_m,[InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>, |
| 402 | InstrStage<1, [A8_NLSPipe], 0>, |
Evan Cheng | d2ca813 | 2010-10-09 01:03:04 +0000 | [diff] [blame] | 403 | InstrStage<1, [A8_LSPipe]>, |
Evan Cheng | 41957f6 | 2010-11-03 00:40:22 +0000 | [diff] [blame] | 404 | InstrStage<1, [A8_NLSPipe], 0>, |
Evan Cheng | d2ca813 | 2010-10-09 01:03:04 +0000 | [diff] [blame] | 405 | InstrStage<1, [A8_LSPipe]>], [1, 1, 1, 1]>, |
Evan Cheng | 5a50cee | 2010-10-07 01:50:48 +0000 | [diff] [blame] | 406 | // |
| 407 | // FP Store Multiple + update |
Evan Cheng | 41957f6 | 2010-11-03 00:40:22 +0000 | [diff] [blame] | 408 | InstrItinData<IIC_fpStore_mu,[InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>, |
| 409 | InstrStage<1, [A8_NLSPipe], 0>, |
Evan Cheng | d2ca813 | 2010-10-09 01:03:04 +0000 | [diff] [blame] | 410 | InstrStage<1, [A8_LSPipe]>, |
Evan Cheng | 41957f6 | 2010-11-03 00:40:22 +0000 | [diff] [blame] | 411 | InstrStage<1, [A8_NLSPipe], 0>, |
Evan Cheng | d2ca813 | 2010-10-09 01:03:04 +0000 | [diff] [blame] | 412 | InstrStage<1, [A8_LSPipe]>], [2, 1, 1, 1, 1]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 413 | |
| 414 | // NEON |
| 415 | // Issue through integer pipeline, and execute in NEON unit. |
| 416 | // |
| 417 | // VLD1 |
Evan Cheng | 41957f6 | 2010-11-03 00:40:22 +0000 | [diff] [blame] | 418 | InstrItinData<IIC_VLD1, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>, |
| 419 | InstrStage<2, [A8_NLSPipe], 0>, |
Evan Cheng | 60ff879 | 2010-10-11 22:03:18 +0000 | [diff] [blame] | 420 | InstrStage<2, [A8_LSPipe]>], |
| 421 | [2, 1]>, |
Evan Cheng | d2ca813 | 2010-10-09 01:03:04 +0000 | [diff] [blame] | 422 | // VLD1x2 |
Evan Cheng | 41957f6 | 2010-11-03 00:40:22 +0000 | [diff] [blame] | 423 | InstrItinData<IIC_VLD1x2, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>, |
| 424 | InstrStage<2, [A8_NLSPipe], 0>, |
Evan Cheng | d2ca813 | 2010-10-09 01:03:04 +0000 | [diff] [blame] | 425 | InstrStage<2, [A8_LSPipe]>], |
| 426 | [2, 2, 1]>, |
| 427 | // |
| 428 | // VLD1x3 |
Evan Cheng | 41957f6 | 2010-11-03 00:40:22 +0000 | [diff] [blame] | 429 | InstrItinData<IIC_VLD1x3, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>, |
| 430 | InstrStage<3, [A8_NLSPipe], 0>, |
Evan Cheng | d2ca813 | 2010-10-09 01:03:04 +0000 | [diff] [blame] | 431 | InstrStage<3, [A8_LSPipe]>], |
| 432 | [2, 2, 3, 1]>, |
| 433 | // |
| 434 | // VLD1x4 |
Evan Cheng | 41957f6 | 2010-11-03 00:40:22 +0000 | [diff] [blame] | 435 | InstrItinData<IIC_VLD1x4, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>, |
| 436 | InstrStage<3, [A8_NLSPipe], 0>, |
Evan Cheng | d2ca813 | 2010-10-09 01:03:04 +0000 | [diff] [blame] | 437 | InstrStage<3, [A8_LSPipe]>], |
| 438 | [2, 2, 3, 3, 1]>, |
| 439 | // |
| 440 | // VLD1u |
Evan Cheng | 41957f6 | 2010-11-03 00:40:22 +0000 | [diff] [blame] | 441 | InstrItinData<IIC_VLD1u, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>, |
| 442 | InstrStage<2, [A8_NLSPipe], 0>, |
Evan Cheng | 60ff879 | 2010-10-11 22:03:18 +0000 | [diff] [blame] | 443 | InstrStage<2, [A8_LSPipe]>], |
Evan Cheng | d2ca813 | 2010-10-09 01:03:04 +0000 | [diff] [blame] | 444 | [2, 2, 1]>, |
| 445 | // |
| 446 | // VLD1x2u |
Evan Cheng | 41957f6 | 2010-11-03 00:40:22 +0000 | [diff] [blame] | 447 | InstrItinData<IIC_VLD1x2u, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>, |
| 448 | InstrStage<2, [A8_NLSPipe], 0>, |
Evan Cheng | d2ca813 | 2010-10-09 01:03:04 +0000 | [diff] [blame] | 449 | InstrStage<2, [A8_LSPipe]>], |
| 450 | [2, 2, 2, 1]>, |
| 451 | // |
| 452 | // VLD1x3u |
Evan Cheng | 41957f6 | 2010-11-03 00:40:22 +0000 | [diff] [blame] | 453 | InstrItinData<IIC_VLD1x3u, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>, |
| 454 | InstrStage<3, [A8_NLSPipe], 0>, |
Evan Cheng | d2ca813 | 2010-10-09 01:03:04 +0000 | [diff] [blame] | 455 | InstrStage<3, [A8_LSPipe]>], |
| 456 | [2, 2, 3, 2, 1]>, |
| 457 | // |
| 458 | // VLD1x4u |
Evan Cheng | 41957f6 | 2010-11-03 00:40:22 +0000 | [diff] [blame] | 459 | InstrItinData<IIC_VLD1x4u, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>, |
| 460 | InstrStage<3, [A8_NLSPipe], 0>, |
Evan Cheng | d2ca813 | 2010-10-09 01:03:04 +0000 | [diff] [blame] | 461 | InstrStage<3, [A8_LSPipe]>], |
| 462 | [2, 2, 3, 3, 2, 1]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 463 | // |
Bob Wilson | b796bbb | 2010-11-01 22:04:05 +0000 | [diff] [blame] | 464 | // VLD1ln |
| 465 | InstrItinData<IIC_VLD1ln, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>, |
| 466 | InstrStage<3, [A8_NLSPipe], 1>, |
| 467 | InstrStage<3, [A8_LSPipe]>], |
| 468 | [3, 1, 1, 1]>, |
| 469 | // |
| 470 | // VLD1lnu |
| 471 | InstrItinData<IIC_VLD1lnu, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>, |
| 472 | InstrStage<3, [A8_NLSPipe], 1>, |
| 473 | InstrStage<3, [A8_LSPipe]>], |
| 474 | [3, 2, 1, 1, 1, 1]>, |
| 475 | // |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 476 | // VLD2 |
Evan Cheng | 41957f6 | 2010-11-03 00:40:22 +0000 | [diff] [blame] | 477 | InstrItinData<IIC_VLD2, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>, |
| 478 | InstrStage<2, [A8_NLSPipe], 0>, |
Evan Cheng | 60ff879 | 2010-10-11 22:03:18 +0000 | [diff] [blame] | 479 | InstrStage<2, [A8_LSPipe]>], |
Evan Cheng | 40bb683 | 2010-10-09 01:26:12 +0000 | [diff] [blame] | 480 | [2, 2, 1]>, |
| 481 | // |
| 482 | // VLD2x2 |
Evan Cheng | 41957f6 | 2010-11-03 00:40:22 +0000 | [diff] [blame] | 483 | InstrItinData<IIC_VLD2x2, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>, |
| 484 | InstrStage<3, [A8_NLSPipe], 0>, |
Evan Cheng | 40bb683 | 2010-10-09 01:26:12 +0000 | [diff] [blame] | 485 | InstrStage<3, [A8_LSPipe]>], |
| 486 | [2, 2, 3, 3, 1]>, |
| 487 | // |
| 488 | // VLD2ln |
Evan Cheng | 41957f6 | 2010-11-03 00:40:22 +0000 | [diff] [blame] | 489 | InstrItinData<IIC_VLD2ln, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>, |
| 490 | InstrStage<3, [A8_NLSPipe], 0>, |
Evan Cheng | 40bb683 | 2010-10-09 01:26:12 +0000 | [diff] [blame] | 491 | InstrStage<3, [A8_LSPipe]>], |
| 492 | [3, 3, 1, 1, 1, 1]>, |
| 493 | // |
| 494 | // VLD2u |
Evan Cheng | 41957f6 | 2010-11-03 00:40:22 +0000 | [diff] [blame] | 495 | InstrItinData<IIC_VLD2u, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>, |
| 496 | InstrStage<2, [A8_NLSPipe], 0>, |
Evan Cheng | 60ff879 | 2010-10-11 22:03:18 +0000 | [diff] [blame] | 497 | InstrStage<2, [A8_LSPipe]>], |
Evan Cheng | 40bb683 | 2010-10-09 01:26:12 +0000 | [diff] [blame] | 498 | [2, 2, 2, 1, 1, 1]>, |
| 499 | // |
| 500 | // VLD2x2u |
Evan Cheng | 41957f6 | 2010-11-03 00:40:22 +0000 | [diff] [blame] | 501 | InstrItinData<IIC_VLD2x2u, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>, |
| 502 | InstrStage<3, [A8_NLSPipe], 0>, |
Evan Cheng | 40bb683 | 2010-10-09 01:26:12 +0000 | [diff] [blame] | 503 | InstrStage<3, [A8_LSPipe]>], |
| 504 | [2, 2, 3, 3, 2, 1]>, |
| 505 | // |
| 506 | // VLD2lnu |
Evan Cheng | 41957f6 | 2010-11-03 00:40:22 +0000 | [diff] [blame] | 507 | InstrItinData<IIC_VLD2lnu, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>, |
| 508 | InstrStage<3, [A8_NLSPipe], 0>, |
Evan Cheng | 40bb683 | 2010-10-09 01:26:12 +0000 | [diff] [blame] | 509 | InstrStage<3, [A8_LSPipe]>], |
| 510 | [3, 3, 2, 1, 1, 1, 1, 1]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 511 | // |
| 512 | // VLD3 |
Evan Cheng | 41957f6 | 2010-11-03 00:40:22 +0000 | [diff] [blame] | 513 | InstrItinData<IIC_VLD3, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>, |
| 514 | InstrStage<4, [A8_NLSPipe], 0>, |
Evan Cheng | 84f69e8 | 2010-10-09 01:45:34 +0000 | [diff] [blame] | 515 | InstrStage<4, [A8_LSPipe]>], |
| 516 | [3, 3, 4, 1]>, |
| 517 | // |
| 518 | // VLD3ln |
Evan Cheng | 41957f6 | 2010-11-03 00:40:22 +0000 | [diff] [blame] | 519 | InstrItinData<IIC_VLD3ln, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>, |
| 520 | InstrStage<5, [A8_NLSPipe], 0>, |
Evan Cheng | 84f69e8 | 2010-10-09 01:45:34 +0000 | [diff] [blame] | 521 | InstrStage<5, [A8_LSPipe]>], |
| 522 | [4, 4, 5, 1, 1, 1, 1, 2]>, |
| 523 | // |
| 524 | // VLD3u |
Evan Cheng | 41957f6 | 2010-11-03 00:40:22 +0000 | [diff] [blame] | 525 | InstrItinData<IIC_VLD3u, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>, |
| 526 | InstrStage<4, [A8_NLSPipe], 0>, |
Evan Cheng | 84f69e8 | 2010-10-09 01:45:34 +0000 | [diff] [blame] | 527 | InstrStage<4, [A8_LSPipe]>], |
| 528 | [3, 3, 4, 2, 1]>, |
| 529 | // |
| 530 | // VLD3lnu |
Evan Cheng | 41957f6 | 2010-11-03 00:40:22 +0000 | [diff] [blame] | 531 | InstrItinData<IIC_VLD3lnu, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>, |
| 532 | InstrStage<5, [A8_NLSPipe], 0>, |
Evan Cheng | 84f69e8 | 2010-10-09 01:45:34 +0000 | [diff] [blame] | 533 | InstrStage<5, [A8_LSPipe]>], |
| 534 | [4, 4, 5, 2, 1, 1, 1, 1, 1, 2]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 535 | // |
| 536 | // VLD4 |
Evan Cheng | 41957f6 | 2010-11-03 00:40:22 +0000 | [diff] [blame] | 537 | InstrItinData<IIC_VLD4, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>, |
| 538 | InstrStage<4, [A8_NLSPipe], 0>, |
Evan Cheng | 10dc63f | 2010-10-09 04:07:58 +0000 | [diff] [blame] | 539 | InstrStage<4, [A8_LSPipe]>], |
| 540 | [3, 3, 4, 4, 1]>, |
| 541 | // |
| 542 | // VLD4ln |
Evan Cheng | 41957f6 | 2010-11-03 00:40:22 +0000 | [diff] [blame] | 543 | InstrItinData<IIC_VLD4ln, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>, |
| 544 | InstrStage<5, [A8_NLSPipe], 0>, |
Evan Cheng | 10dc63f | 2010-10-09 04:07:58 +0000 | [diff] [blame] | 545 | InstrStage<5, [A8_LSPipe]>], |
| 546 | [4, 4, 5, 5, 1, 1, 1, 1, 2, 2]>, |
| 547 | // |
| 548 | // VLD4u |
Evan Cheng | 41957f6 | 2010-11-03 00:40:22 +0000 | [diff] [blame] | 549 | InstrItinData<IIC_VLD4u, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>, |
| 550 | InstrStage<4, [A8_NLSPipe], 0>, |
Evan Cheng | 10dc63f | 2010-10-09 04:07:58 +0000 | [diff] [blame] | 551 | InstrStage<4, [A8_LSPipe]>], |
| 552 | [3, 3, 4, 4, 2, 1]>, |
| 553 | // |
| 554 | // VLD4lnu |
Evan Cheng | 41957f6 | 2010-11-03 00:40:22 +0000 | [diff] [blame] | 555 | InstrItinData<IIC_VLD4lnu, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>, |
| 556 | InstrStage<5, [A8_NLSPipe], 0>, |
Evan Cheng | 10dc63f | 2010-10-09 04:07:58 +0000 | [diff] [blame] | 557 | InstrStage<5, [A8_LSPipe]>], |
| 558 | [4, 4, 5, 5, 2, 1, 1, 1, 1, 1, 2, 2]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 559 | // |
Evan Cheng | 60ff879 | 2010-10-11 22:03:18 +0000 | [diff] [blame] | 560 | // VST1 |
Evan Cheng | 41957f6 | 2010-11-03 00:40:22 +0000 | [diff] [blame] | 561 | InstrItinData<IIC_VST1, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>, |
| 562 | InstrStage<2, [A8_NLSPipe], 0>, |
Evan Cheng | 60ff879 | 2010-10-11 22:03:18 +0000 | [diff] [blame] | 563 | InstrStage<2, [A8_LSPipe]>], |
| 564 | [1, 1, 1]>, |
| 565 | // |
| 566 | // VST1x2 |
Evan Cheng | 41957f6 | 2010-11-03 00:40:22 +0000 | [diff] [blame] | 567 | InstrItinData<IIC_VST1x2, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>, |
| 568 | InstrStage<2, [A8_NLSPipe], 0>, |
Evan Cheng | 60ff879 | 2010-10-11 22:03:18 +0000 | [diff] [blame] | 569 | InstrStage<2, [A8_LSPipe]>], |
| 570 | [1, 1, 1, 1]>, |
| 571 | // |
| 572 | // VST1x3 |
Evan Cheng | 41957f6 | 2010-11-03 00:40:22 +0000 | [diff] [blame] | 573 | InstrItinData<IIC_VST1x3, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>, |
| 574 | InstrStage<3, [A8_NLSPipe], 0>, |
Evan Cheng | 60ff879 | 2010-10-11 22:03:18 +0000 | [diff] [blame] | 575 | InstrStage<3, [A8_LSPipe]>], |
| 576 | [1, 1, 1, 1, 2]>, |
| 577 | // |
| 578 | // VST1x4 |
Evan Cheng | 41957f6 | 2010-11-03 00:40:22 +0000 | [diff] [blame] | 579 | InstrItinData<IIC_VST1x4, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>, |
| 580 | InstrStage<3, [A8_NLSPipe], 0>, |
Evan Cheng | 60ff879 | 2010-10-11 22:03:18 +0000 | [diff] [blame] | 581 | InstrStage<3, [A8_LSPipe]>], |
| 582 | [1, 1, 1, 1, 2, 2]>, |
| 583 | // |
| 584 | // VST1u |
Evan Cheng | 41957f6 | 2010-11-03 00:40:22 +0000 | [diff] [blame] | 585 | InstrItinData<IIC_VST1u, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>, |
| 586 | InstrStage<2, [A8_NLSPipe], 0>, |
Evan Cheng | 60ff879 | 2010-10-11 22:03:18 +0000 | [diff] [blame] | 587 | InstrStage<2, [A8_LSPipe]>], |
| 588 | [2, 1, 1, 1, 1]>, |
| 589 | // |
| 590 | // VST1x2u |
Evan Cheng | 41957f6 | 2010-11-03 00:40:22 +0000 | [diff] [blame] | 591 | InstrItinData<IIC_VST1x2u, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>, |
| 592 | InstrStage<2, [A8_NLSPipe], 0>, |
Evan Cheng | 60ff879 | 2010-10-11 22:03:18 +0000 | [diff] [blame] | 593 | InstrStage<2, [A8_LSPipe]>], |
| 594 | [2, 1, 1, 1, 1, 1]>, |
| 595 | // |
| 596 | // VST1x3u |
Evan Cheng | 41957f6 | 2010-11-03 00:40:22 +0000 | [diff] [blame] | 597 | InstrItinData<IIC_VST1x3u, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>, |
| 598 | InstrStage<3, [A8_NLSPipe], 0>, |
Evan Cheng | 60ff879 | 2010-10-11 22:03:18 +0000 | [diff] [blame] | 599 | InstrStage<3, [A8_LSPipe]>], |
| 600 | [2, 1, 1, 1, 1, 1, 2]>, |
| 601 | // |
| 602 | // VST1x4u |
Evan Cheng | 41957f6 | 2010-11-03 00:40:22 +0000 | [diff] [blame] | 603 | InstrItinData<IIC_VST1x4u, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>, |
| 604 | InstrStage<3, [A8_NLSPipe], 0>, |
Evan Cheng | 60ff879 | 2010-10-11 22:03:18 +0000 | [diff] [blame] | 605 | InstrStage<3, [A8_LSPipe]>], |
| 606 | [2, 1, 1, 1, 1, 1, 2, 2]>, |
| 607 | // |
Bob Wilson | d0c6bc2 | 2010-11-02 21:18:25 +0000 | [diff] [blame] | 608 | // VST1ln |
| 609 | InstrItinData<IIC_VST1ln, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>, |
| 610 | InstrStage<2, [A8_NLSPipe], 1>, |
| 611 | InstrStage<2, [A8_LSPipe]>], |
| 612 | [1, 1, 1]>, |
| 613 | // |
| 614 | // VST1lnu |
| 615 | InstrItinData<IIC_VST1lnu, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>, |
| 616 | InstrStage<2, [A8_NLSPipe], 1>, |
| 617 | InstrStage<2, [A8_LSPipe]>], |
| 618 | [2, 1, 1, 1, 1]>, |
| 619 | // |
Evan Cheng | 60ff879 | 2010-10-11 22:03:18 +0000 | [diff] [blame] | 620 | // VST2 |
Evan Cheng | 41957f6 | 2010-11-03 00:40:22 +0000 | [diff] [blame] | 621 | InstrItinData<IIC_VST2, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>, |
| 622 | InstrStage<2, [A8_NLSPipe], 0>, |
Evan Cheng | 60ff879 | 2010-10-11 22:03:18 +0000 | [diff] [blame] | 623 | InstrStage<2, [A8_LSPipe]>], |
| 624 | [1, 1, 1, 1]>, |
| 625 | // |
| 626 | // VST2x2 |
Evan Cheng | 41957f6 | 2010-11-03 00:40:22 +0000 | [diff] [blame] | 627 | InstrItinData<IIC_VST2x2, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>, |
| 628 | InstrStage<4, [A8_NLSPipe], 0>, |
Evan Cheng | 60ff879 | 2010-10-11 22:03:18 +0000 | [diff] [blame] | 629 | InstrStage<4, [A8_LSPipe]>], |
| 630 | [1, 1, 1, 1, 2, 2]>, |
| 631 | // |
| 632 | // VST2u |
Evan Cheng | 41957f6 | 2010-11-03 00:40:22 +0000 | [diff] [blame] | 633 | InstrItinData<IIC_VST2u, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>, |
| 634 | InstrStage<2, [A8_NLSPipe], 0>, |
Evan Cheng | 60ff879 | 2010-10-11 22:03:18 +0000 | [diff] [blame] | 635 | InstrStage<2, [A8_LSPipe]>], |
| 636 | [2, 1, 1, 1, 1, 1]>, |
| 637 | // |
| 638 | // VST2x2u |
Evan Cheng | 41957f6 | 2010-11-03 00:40:22 +0000 | [diff] [blame] | 639 | InstrItinData<IIC_VST2x2u, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>, |
| 640 | InstrStage<4, [A8_NLSPipe], 0>, |
Evan Cheng | 60ff879 | 2010-10-11 22:03:18 +0000 | [diff] [blame] | 641 | InstrStage<4, [A8_LSPipe]>], |
| 642 | [2, 1, 1, 1, 1, 1, 2, 2]>, |
| 643 | // |
| 644 | // VST2ln |
Evan Cheng | 41957f6 | 2010-11-03 00:40:22 +0000 | [diff] [blame] | 645 | InstrItinData<IIC_VST2ln, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>, |
| 646 | InstrStage<2, [A8_NLSPipe], 0>, |
Evan Cheng | 60ff879 | 2010-10-11 22:03:18 +0000 | [diff] [blame] | 647 | InstrStage<2, [A8_LSPipe]>], |
| 648 | [1, 1, 1, 1]>, |
| 649 | // |
| 650 | // VST2lnu |
Evan Cheng | 41957f6 | 2010-11-03 00:40:22 +0000 | [diff] [blame] | 651 | InstrItinData<IIC_VST2lnu, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>, |
| 652 | InstrStage<2, [A8_NLSPipe], 0>, |
Evan Cheng | 60ff879 | 2010-10-11 22:03:18 +0000 | [diff] [blame] | 653 | InstrStage<2, [A8_LSPipe]>], |
| 654 | [2, 1, 1, 1, 1, 1]>, |
| 655 | // |
| 656 | // VST3 |
Evan Cheng | 41957f6 | 2010-11-03 00:40:22 +0000 | [diff] [blame] | 657 | InstrItinData<IIC_VST3, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>, |
| 658 | InstrStage<3, [A8_NLSPipe], 0>, |
Evan Cheng | 60ff879 | 2010-10-11 22:03:18 +0000 | [diff] [blame] | 659 | InstrStage<3, [A8_LSPipe]>], |
| 660 | [1, 1, 1, 1, 2]>, |
| 661 | // |
| 662 | // VST3u |
Evan Cheng | 41957f6 | 2010-11-03 00:40:22 +0000 | [diff] [blame] | 663 | InstrItinData<IIC_VST3u, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>, |
| 664 | InstrStage<3, [A8_NLSPipe], 0>, |
Evan Cheng | 60ff879 | 2010-10-11 22:03:18 +0000 | [diff] [blame] | 665 | InstrStage<3, [A8_LSPipe]>], |
| 666 | [2, 1, 1, 1, 1, 1, 2]>, |
| 667 | // |
| 668 | // VST3ln |
Evan Cheng | 41957f6 | 2010-11-03 00:40:22 +0000 | [diff] [blame] | 669 | InstrItinData<IIC_VST3ln, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>, |
| 670 | InstrStage<3, [A8_NLSPipe], 0>, |
Evan Cheng | 60ff879 | 2010-10-11 22:03:18 +0000 | [diff] [blame] | 671 | InstrStage<3, [A8_LSPipe]>], |
| 672 | [1, 1, 1, 1, 2]>, |
| 673 | // |
| 674 | // VST3lnu |
Evan Cheng | 41957f6 | 2010-11-03 00:40:22 +0000 | [diff] [blame] | 675 | InstrItinData<IIC_VST3lnu, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>, |
| 676 | InstrStage<3, [A8_NLSPipe], 0>, |
Evan Cheng | 60ff879 | 2010-10-11 22:03:18 +0000 | [diff] [blame] | 677 | InstrStage<3, [A8_LSPipe]>], |
| 678 | [2, 1, 1, 1, 1, 1, 2]>, |
| 679 | // |
| 680 | // VST4 |
Evan Cheng | 41957f6 | 2010-11-03 00:40:22 +0000 | [diff] [blame] | 681 | InstrItinData<IIC_VST4, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>, |
| 682 | InstrStage<4, [A8_NLSPipe], 0>, |
Evan Cheng | 60ff879 | 2010-10-11 22:03:18 +0000 | [diff] [blame] | 683 | InstrStage<4, [A8_LSPipe]>], |
| 684 | [1, 1, 1, 1, 2, 2]>, |
| 685 | // |
| 686 | // VST4u |
Evan Cheng | 41957f6 | 2010-11-03 00:40:22 +0000 | [diff] [blame] | 687 | InstrItinData<IIC_VST4u, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>, |
| 688 | InstrStage<4, [A8_NLSPipe], 0>, |
Evan Cheng | 60ff879 | 2010-10-11 22:03:18 +0000 | [diff] [blame] | 689 | InstrStage<4, [A8_LSPipe]>], |
| 690 | [2, 1, 1, 1, 1, 1, 2, 2]>, |
| 691 | // |
| 692 | // VST4ln |
Evan Cheng | 41957f6 | 2010-11-03 00:40:22 +0000 | [diff] [blame] | 693 | InstrItinData<IIC_VST4ln, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>, |
| 694 | InstrStage<4, [A8_NLSPipe], 0>, |
Evan Cheng | 60ff879 | 2010-10-11 22:03:18 +0000 | [diff] [blame] | 695 | InstrStage<4, [A8_LSPipe]>], |
| 696 | [1, 1, 1, 1, 2, 2]>, |
| 697 | // |
| 698 | // VST4lnu |
Evan Cheng | 41957f6 | 2010-11-03 00:40:22 +0000 | [diff] [blame] | 699 | InstrItinData<IIC_VST4lnu, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>, |
| 700 | InstrStage<4, [A8_NLSPipe], 0>, |
Evan Cheng | 60ff879 | 2010-10-11 22:03:18 +0000 | [diff] [blame] | 701 | InstrStage<4, [A8_LSPipe]>], |
| 702 | [2, 1, 1, 1, 1, 1, 2, 2]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 703 | // |
| 704 | // Double-register FP Unary |
Evan Cheng | 41957f6 | 2010-11-03 00:40:22 +0000 | [diff] [blame] | 705 | InstrItinData<IIC_VUNAD, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>, |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 706 | InstrStage<1, [A8_NPipe]>], [5, 2]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 707 | // |
| 708 | // Quad-register FP Unary |
| 709 | // Result written in N5, but that is relative to the last cycle of multicycle, |
| 710 | // so we use 6 for those cases |
Evan Cheng | 41957f6 | 2010-11-03 00:40:22 +0000 | [diff] [blame] | 711 | InstrItinData<IIC_VUNAQ, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>, |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 712 | InstrStage<2, [A8_NPipe]>], [6, 2]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 713 | // |
| 714 | // Double-register FP Binary |
Evan Cheng | 41957f6 | 2010-11-03 00:40:22 +0000 | [diff] [blame] | 715 | InstrItinData<IIC_VBIND, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>, |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 716 | InstrStage<1, [A8_NPipe]>], [5, 2, 2]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 717 | // |
Evan Cheng | 08cec1e | 2010-10-11 23:41:41 +0000 | [diff] [blame] | 718 | // VPADD, etc. |
Evan Cheng | 41957f6 | 2010-11-03 00:40:22 +0000 | [diff] [blame] | 719 | InstrItinData<IIC_VPBIND, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>, |
Evan Cheng | 08cec1e | 2010-10-11 23:41:41 +0000 | [diff] [blame] | 720 | InstrStage<1, [A8_NPipe]>], [5, 2, 2]>, |
| 721 | // |
| 722 | // Double-register FP VMUL |
Evan Cheng | 41957f6 | 2010-11-03 00:40:22 +0000 | [diff] [blame] | 723 | InstrItinData<IIC_VFMULD, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>, |
Evan Cheng | 08cec1e | 2010-10-11 23:41:41 +0000 | [diff] [blame] | 724 | InstrStage<1, [A8_NPipe]>], [5, 2, 1]>, |
| 725 | |
| 726 | // |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 727 | // Quad-register FP Binary |
| 728 | // Result written in N5, but that is relative to the last cycle of multicycle, |
| 729 | // so we use 6 for those cases |
Evan Cheng | 41957f6 | 2010-11-03 00:40:22 +0000 | [diff] [blame] | 730 | InstrItinData<IIC_VBINQ, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>, |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 731 | InstrStage<2, [A8_NPipe]>], [6, 2, 2]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 732 | // |
Evan Cheng | 08cec1e | 2010-10-11 23:41:41 +0000 | [diff] [blame] | 733 | // Quad-register FP VMUL |
Evan Cheng | 41957f6 | 2010-11-03 00:40:22 +0000 | [diff] [blame] | 734 | InstrItinData<IIC_VFMULQ, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>, |
Evan Cheng | 08cec1e | 2010-10-11 23:41:41 +0000 | [diff] [blame] | 735 | InstrStage<1, [A8_NPipe]>], [6, 2, 1]>, |
| 736 | // |
Evan Cheng | cae6a12 | 2010-10-01 20:50:58 +0000 | [diff] [blame] | 737 | // Move |
Evan Cheng | 41957f6 | 2010-11-03 00:40:22 +0000 | [diff] [blame] | 738 | InstrItinData<IIC_VMOV, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>, |
Evan Cheng | cae6a12 | 2010-10-01 20:50:58 +0000 | [diff] [blame] | 739 | InstrStage<1, [A8_NPipe]>], [1, 1]>, |
| 740 | // |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 741 | // Move Immediate |
Evan Cheng | 41957f6 | 2010-11-03 00:40:22 +0000 | [diff] [blame] | 742 | InstrItinData<IIC_VMOVImm, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>, |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 743 | InstrStage<1, [A8_NPipe]>], [3]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 744 | // |
| 745 | // Double-register Permute Move |
Evan Cheng | 41957f6 | 2010-11-03 00:40:22 +0000 | [diff] [blame] | 746 | InstrItinData<IIC_VMOVD, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>, |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 747 | InstrStage<1, [A8_NLSPipe]>], [2, 1]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 748 | // |
| 749 | // Quad-register Permute Move |
| 750 | // Result written in N2, but that is relative to the last cycle of multicycle, |
| 751 | // so we use 3 for those cases |
Evan Cheng | 41957f6 | 2010-11-03 00:40:22 +0000 | [diff] [blame] | 752 | InstrItinData<IIC_VMOVQ, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>, |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 753 | InstrStage<2, [A8_NLSPipe]>], [3, 1]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 754 | // |
| 755 | // Integer to Single-precision Move |
Evan Cheng | 41957f6 | 2010-11-03 00:40:22 +0000 | [diff] [blame] | 756 | InstrItinData<IIC_VMOVIS , [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>, |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 757 | InstrStage<1, [A8_NLSPipe]>], [2, 1]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 758 | // |
| 759 | // Integer to Double-precision Move |
Evan Cheng | 41957f6 | 2010-11-03 00:40:22 +0000 | [diff] [blame] | 760 | InstrItinData<IIC_VMOVID , [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>, |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 761 | InstrStage<1, [A8_NLSPipe]>], [2, 1, 1]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 762 | // |
| 763 | // Single-precision to Integer Move |
Evan Cheng | 41957f6 | 2010-11-03 00:40:22 +0000 | [diff] [blame] | 764 | InstrItinData<IIC_VMOVSI , [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>, |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 765 | InstrStage<1, [A8_NLSPipe]>], [20, 1]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 766 | // |
| 767 | // Double-precision to Integer Move |
Evan Cheng | 41957f6 | 2010-11-03 00:40:22 +0000 | [diff] [blame] | 768 | InstrItinData<IIC_VMOVDI , [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>, |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 769 | InstrStage<1, [A8_NLSPipe]>], [20, 20, 1]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 770 | // |
| 771 | // Integer to Lane Move |
Evan Cheng | 41957f6 | 2010-11-03 00:40:22 +0000 | [diff] [blame] | 772 | InstrItinData<IIC_VMOVISL , [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>, |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 773 | InstrStage<2, [A8_NLSPipe]>], [3, 1, 1]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 774 | // |
Evan Cheng | cae6a12 | 2010-10-01 20:50:58 +0000 | [diff] [blame] | 775 | // Vector narrow move |
Evan Cheng | 41957f6 | 2010-11-03 00:40:22 +0000 | [diff] [blame] | 776 | InstrItinData<IIC_VMOVN , [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>, |
Evan Cheng | ef0ccad | 2010-10-01 21:48:06 +0000 | [diff] [blame] | 777 | InstrStage<1, [A8_NPipe]>], [2, 1]>, |
Evan Cheng | cae6a12 | 2010-10-01 20:50:58 +0000 | [diff] [blame] | 778 | // |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 779 | // Double-register Permute |
Evan Cheng | 41957f6 | 2010-11-03 00:40:22 +0000 | [diff] [blame] | 780 | InstrItinData<IIC_VPERMD, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>, |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 781 | InstrStage<1, [A8_NLSPipe]>], [2, 2, 1, 1]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 782 | // |
| 783 | // Quad-register Permute |
| 784 | // Result written in N2, but that is relative to the last cycle of multicycle, |
| 785 | // so we use 3 for those cases |
Evan Cheng | 41957f6 | 2010-11-03 00:40:22 +0000 | [diff] [blame] | 786 | InstrItinData<IIC_VPERMQ, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>, |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 787 | InstrStage<2, [A8_NLSPipe]>], [3, 3, 1, 1]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 788 | // |
| 789 | // Quad-register Permute (3 cycle issue) |
| 790 | // Result written in N2, but that is relative to the last cycle of multicycle, |
| 791 | // so we use 4 for those cases |
Evan Cheng | 41957f6 | 2010-11-03 00:40:22 +0000 | [diff] [blame] | 792 | InstrItinData<IIC_VPERMQ3, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>, |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 793 | InstrStage<1, [A8_NLSPipe]>, |
| 794 | InstrStage<1, [A8_NPipe], 0>, |
| 795 | InstrStage<2, [A8_NLSPipe]>], [4, 4, 1, 1]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 796 | // |
| 797 | // Double-register FP Multiple-Accumulate |
Evan Cheng | 41957f6 | 2010-11-03 00:40:22 +0000 | [diff] [blame] | 798 | InstrItinData<IIC_VMACD, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>, |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 799 | InstrStage<1, [A8_NPipe]>], [9, 3, 2, 2]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 800 | // |
| 801 | // Quad-register FP Multiple-Accumulate |
| 802 | // Result written in N9, but that is relative to the last cycle of multicycle, |
| 803 | // so we use 10 for those cases |
Evan Cheng | 41957f6 | 2010-11-03 00:40:22 +0000 | [diff] [blame] | 804 | InstrItinData<IIC_VMACQ, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>, |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 805 | InstrStage<2, [A8_NPipe]>], [10, 3, 2, 2]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 806 | // |
| 807 | // Double-register Reciprical Step |
Evan Cheng | 41957f6 | 2010-11-03 00:40:22 +0000 | [diff] [blame] | 808 | InstrItinData<IIC_VRECSD, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>, |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 809 | InstrStage<1, [A8_NPipe]>], [9, 2, 2]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 810 | // |
| 811 | // Quad-register Reciprical Step |
Evan Cheng | 41957f6 | 2010-11-03 00:40:22 +0000 | [diff] [blame] | 812 | InstrItinData<IIC_VRECSQ, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>, |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 813 | InstrStage<2, [A8_NPipe]>], [10, 2, 2]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 814 | // |
| 815 | // Double-register Integer Count |
Evan Cheng | 41957f6 | 2010-11-03 00:40:22 +0000 | [diff] [blame] | 816 | InstrItinData<IIC_VCNTiD, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>, |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 817 | InstrStage<1, [A8_NPipe]>], [3, 2, 2]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 818 | // |
| 819 | // Quad-register Integer Count |
| 820 | // Result written in N3, but that is relative to the last cycle of multicycle, |
| 821 | // so we use 4 for those cases |
Evan Cheng | 41957f6 | 2010-11-03 00:40:22 +0000 | [diff] [blame] | 822 | InstrItinData<IIC_VCNTiQ, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>, |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 823 | InstrStage<2, [A8_NPipe]>], [4, 2, 2]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 824 | // |
| 825 | // Double-register Integer Unary |
Evan Cheng | 41957f6 | 2010-11-03 00:40:22 +0000 | [diff] [blame] | 826 | InstrItinData<IIC_VUNAiD, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>, |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 827 | InstrStage<1, [A8_NPipe]>], [4, 2]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 828 | // |
| 829 | // Quad-register Integer Unary |
Evan Cheng | 41957f6 | 2010-11-03 00:40:22 +0000 | [diff] [blame] | 830 | InstrItinData<IIC_VUNAiQ, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>, |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 831 | InstrStage<1, [A8_NPipe]>], [4, 2]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 832 | // |
| 833 | // Double-register Integer Q-Unary |
Evan Cheng | 41957f6 | 2010-11-03 00:40:22 +0000 | [diff] [blame] | 834 | InstrItinData<IIC_VQUNAiD, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>, |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 835 | InstrStage<1, [A8_NPipe]>], [4, 1]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 836 | // |
| 837 | // Quad-register Integer CountQ-Unary |
Evan Cheng | 41957f6 | 2010-11-03 00:40:22 +0000 | [diff] [blame] | 838 | InstrItinData<IIC_VQUNAiQ, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>, |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 839 | InstrStage<1, [A8_NPipe]>], [4, 1]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 840 | // |
| 841 | // Double-register Integer Binary |
Evan Cheng | 41957f6 | 2010-11-03 00:40:22 +0000 | [diff] [blame] | 842 | InstrItinData<IIC_VBINiD, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>, |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 843 | InstrStage<1, [A8_NPipe]>], [3, 2, 2]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 844 | // |
| 845 | // Quad-register Integer Binary |
Evan Cheng | 41957f6 | 2010-11-03 00:40:22 +0000 | [diff] [blame] | 846 | InstrItinData<IIC_VBINiQ, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>, |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 847 | InstrStage<1, [A8_NPipe]>], [3, 2, 2]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 848 | // |
| 849 | // Double-register Integer Binary (4 cycle) |
Evan Cheng | 41957f6 | 2010-11-03 00:40:22 +0000 | [diff] [blame] | 850 | InstrItinData<IIC_VBINi4D, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>, |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 851 | InstrStage<1, [A8_NPipe]>], [4, 2, 1]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 852 | // |
| 853 | // Quad-register Integer Binary (4 cycle) |
Evan Cheng | 41957f6 | 2010-11-03 00:40:22 +0000 | [diff] [blame] | 854 | InstrItinData<IIC_VBINi4Q, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>, |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 855 | InstrStage<1, [A8_NPipe]>], [4, 2, 1]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 856 | |
| 857 | // |
| 858 | // Double-register Integer Subtract |
Evan Cheng | 41957f6 | 2010-11-03 00:40:22 +0000 | [diff] [blame] | 859 | InstrItinData<IIC_VSUBiD, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>, |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 860 | InstrStage<1, [A8_NPipe]>], [3, 2, 1]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 861 | // |
| 862 | // Quad-register Integer Subtract |
Evan Cheng | 41957f6 | 2010-11-03 00:40:22 +0000 | [diff] [blame] | 863 | InstrItinData<IIC_VSUBiQ, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>, |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 864 | InstrStage<1, [A8_NPipe]>], [3, 2, 1]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 865 | // |
| 866 | // Double-register Integer Subtract |
Evan Cheng | 41957f6 | 2010-11-03 00:40:22 +0000 | [diff] [blame] | 867 | InstrItinData<IIC_VSUBi4D, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>, |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 868 | InstrStage<1, [A8_NPipe]>], [4, 2, 1]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 869 | // |
| 870 | // Quad-register Integer Subtract |
Evan Cheng | 41957f6 | 2010-11-03 00:40:22 +0000 | [diff] [blame] | 871 | InstrItinData<IIC_VSUBi4Q, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>, |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 872 | InstrStage<1, [A8_NPipe]>], [4, 2, 1]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 873 | // |
| 874 | // Double-register Integer Shift |
Evan Cheng | 41957f6 | 2010-11-03 00:40:22 +0000 | [diff] [blame] | 875 | InstrItinData<IIC_VSHLiD, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>, |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 876 | InstrStage<1, [A8_NPipe]>], [3, 1, 1]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 877 | // |
| 878 | // Quad-register Integer Shift |
Evan Cheng | 41957f6 | 2010-11-03 00:40:22 +0000 | [diff] [blame] | 879 | InstrItinData<IIC_VSHLiQ, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>, |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 880 | InstrStage<2, [A8_NPipe]>], [4, 1, 1]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 881 | // |
| 882 | // Double-register Integer Shift (4 cycle) |
Evan Cheng | 41957f6 | 2010-11-03 00:40:22 +0000 | [diff] [blame] | 883 | InstrItinData<IIC_VSHLi4D, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>, |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 884 | InstrStage<1, [A8_NPipe]>], [4, 1, 1]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 885 | // |
| 886 | // Quad-register Integer Shift (4 cycle) |
Evan Cheng | 41957f6 | 2010-11-03 00:40:22 +0000 | [diff] [blame] | 887 | InstrItinData<IIC_VSHLi4Q, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>, |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 888 | InstrStage<2, [A8_NPipe]>], [5, 1, 1]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 889 | // |
| 890 | // Double-register Integer Pair Add Long |
Evan Cheng | 41957f6 | 2010-11-03 00:40:22 +0000 | [diff] [blame] | 891 | InstrItinData<IIC_VPALiD, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>, |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 892 | InstrStage<1, [A8_NPipe]>], [6, 3, 1]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 893 | // |
| 894 | // Quad-register Integer Pair Add Long |
Evan Cheng | 41957f6 | 2010-11-03 00:40:22 +0000 | [diff] [blame] | 895 | InstrItinData<IIC_VPALiQ, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>, |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 896 | InstrStage<2, [A8_NPipe]>], [7, 3, 1]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 897 | // |
| 898 | // Double-register Absolute Difference and Accumulate |
Evan Cheng | 41957f6 | 2010-11-03 00:40:22 +0000 | [diff] [blame] | 899 | InstrItinData<IIC_VABAD, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>, |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 900 | InstrStage<1, [A8_NPipe]>], [6, 3, 2, 1]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 901 | // |
| 902 | // Quad-register Absolute Difference and Accumulate |
Evan Cheng | 41957f6 | 2010-11-03 00:40:22 +0000 | [diff] [blame] | 903 | InstrItinData<IIC_VABAQ, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>, |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 904 | InstrStage<2, [A8_NPipe]>], [6, 3, 2, 1]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 905 | |
| 906 | // |
| 907 | // Double-register Integer Multiply (.8, .16) |
Evan Cheng | 41957f6 | 2010-11-03 00:40:22 +0000 | [diff] [blame] | 908 | InstrItinData<IIC_VMULi16D, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>, |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 909 | InstrStage<1, [A8_NPipe]>], [6, 2, 2]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 910 | // |
| 911 | // Double-register Integer Multiply (.32) |
Evan Cheng | 41957f6 | 2010-11-03 00:40:22 +0000 | [diff] [blame] | 912 | InstrItinData<IIC_VMULi32D, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>, |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 913 | InstrStage<2, [A8_NPipe]>], [7, 2, 1]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 914 | // |
| 915 | // Quad-register Integer Multiply (.8, .16) |
Evan Cheng | 41957f6 | 2010-11-03 00:40:22 +0000 | [diff] [blame] | 916 | InstrItinData<IIC_VMULi16Q, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>, |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 917 | InstrStage<2, [A8_NPipe]>], [7, 2, 2]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 918 | // |
| 919 | // Quad-register Integer Multiply (.32) |
Evan Cheng | 41957f6 | 2010-11-03 00:40:22 +0000 | [diff] [blame] | 920 | InstrItinData<IIC_VMULi32Q, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>, |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 921 | InstrStage<1, [A8_NPipe]>, |
| 922 | InstrStage<2, [A8_NLSPipe], 0>, |
| 923 | InstrStage<3, [A8_NPipe]>], [9, 2, 1]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 924 | // |
| 925 | // Double-register Integer Multiply-Accumulate (.8, .16) |
Evan Cheng | 41957f6 | 2010-11-03 00:40:22 +0000 | [diff] [blame] | 926 | InstrItinData<IIC_VMACi16D, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>, |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 927 | InstrStage<1, [A8_NPipe]>], [6, 3, 2, 2]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 928 | // |
| 929 | // Double-register Integer Multiply-Accumulate (.32) |
Evan Cheng | 41957f6 | 2010-11-03 00:40:22 +0000 | [diff] [blame] | 930 | InstrItinData<IIC_VMACi32D, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>, |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 931 | InstrStage<2, [A8_NPipe]>], [7, 3, 2, 1]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 932 | // |
| 933 | // Quad-register Integer Multiply-Accumulate (.8, .16) |
Evan Cheng | 41957f6 | 2010-11-03 00:40:22 +0000 | [diff] [blame] | 934 | InstrItinData<IIC_VMACi16Q, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>, |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 935 | InstrStage<2, [A8_NPipe]>], [7, 3, 2, 2]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 936 | // |
| 937 | // Quad-register Integer Multiply-Accumulate (.32) |
Evan Cheng | 41957f6 | 2010-11-03 00:40:22 +0000 | [diff] [blame] | 938 | InstrItinData<IIC_VMACi32Q, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>, |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 939 | InstrStage<1, [A8_NPipe]>, |
| 940 | InstrStage<2, [A8_NLSPipe], 0>, |
| 941 | InstrStage<3, [A8_NPipe]>], [9, 3, 2, 1]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 942 | // |
| 943 | // Double-register VEXT |
Evan Cheng | 41957f6 | 2010-11-03 00:40:22 +0000 | [diff] [blame] | 944 | InstrItinData<IIC_VEXTD, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>, |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 945 | InstrStage<1, [A8_NLSPipe]>], [2, 1, 1]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 946 | // |
| 947 | // Quad-register VEXT |
Evan Cheng | 41957f6 | 2010-11-03 00:40:22 +0000 | [diff] [blame] | 948 | InstrItinData<IIC_VEXTQ, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>, |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 949 | InstrStage<2, [A8_NLSPipe]>], [3, 1, 1]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 950 | // |
| 951 | // VTB |
Evan Cheng | 41957f6 | 2010-11-03 00:40:22 +0000 | [diff] [blame] | 952 | InstrItinData<IIC_VTB1, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>, |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 953 | InstrStage<2, [A8_NLSPipe]>], [3, 2, 1]>, |
Evan Cheng | 41957f6 | 2010-11-03 00:40:22 +0000 | [diff] [blame] | 954 | InstrItinData<IIC_VTB2, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>, |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 955 | InstrStage<2, [A8_NLSPipe]>], [3, 2, 2, 1]>, |
Evan Cheng | 41957f6 | 2010-11-03 00:40:22 +0000 | [diff] [blame] | 956 | InstrItinData<IIC_VTB3, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>, |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 957 | InstrStage<1, [A8_NLSPipe]>, |
| 958 | InstrStage<1, [A8_NPipe], 0>, |
| 959 | InstrStage<2, [A8_NLSPipe]>], [4, 2, 2, 3, 1]>, |
Evan Cheng | 41957f6 | 2010-11-03 00:40:22 +0000 | [diff] [blame] | 960 | InstrItinData<IIC_VTB4, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>, |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 961 | InstrStage<1, [A8_NLSPipe]>, |
| 962 | InstrStage<1, [A8_NPipe], 0>, |
Jim Grosbach | e9e3f20 | 2010-06-28 04:27:01 +0000 | [diff] [blame] | 963 | InstrStage<2, [A8_NLSPipe]>],[4, 2, 2, 3, 3, 1]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 964 | // |
| 965 | // VTBX |
Evan Cheng | 41957f6 | 2010-11-03 00:40:22 +0000 | [diff] [blame] | 966 | InstrItinData<IIC_VTBX1, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>, |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 967 | InstrStage<2, [A8_NLSPipe]>], [3, 1, 2, 1]>, |
Evan Cheng | 41957f6 | 2010-11-03 00:40:22 +0000 | [diff] [blame] | 968 | InstrItinData<IIC_VTBX2, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>, |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 969 | InstrStage<2, [A8_NLSPipe]>], [3, 1, 2, 2, 1]>, |
Evan Cheng | 41957f6 | 2010-11-03 00:40:22 +0000 | [diff] [blame] | 970 | InstrItinData<IIC_VTBX3, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>, |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 971 | InstrStage<1, [A8_NLSPipe]>, |
| 972 | InstrStage<1, [A8_NPipe], 0>, |
Jim Grosbach | e9e3f20 | 2010-06-28 04:27:01 +0000 | [diff] [blame] | 973 | InstrStage<2, [A8_NLSPipe]>],[4, 1, 2, 2, 3, 1]>, |
Evan Cheng | 41957f6 | 2010-11-03 00:40:22 +0000 | [diff] [blame] | 974 | InstrItinData<IIC_VTBX4, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>, |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 975 | InstrStage<1, [A8_NLSPipe]>, |
| 976 | InstrStage<1, [A8_NPipe], 0>, |
Jim Grosbach | e9e3f20 | 2010-06-28 04:27:01 +0000 | [diff] [blame] | 977 | InstrStage<2, [A8_NLSPipe]>], [4, 1, 2, 2, 3, 3, 1]> |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 978 | ]>; |