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