Anton Korobeynikov | f2e1475 | 2009-05-29 23:41:08 +0000 | [diff] [blame] | 1 | //===- ARMInstrThumb2.td - Thumb2 support for ARM -------------------------===// |
| 2 | // |
| 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. |
| 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // This file describes the Thumb2 instruction set. |
| 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
Anton Korobeynikov | ac869fc | 2009-06-17 18:13:58 +0000 | [diff] [blame] | 13 | |
Evan Cheng | d5b67fa | 2009-07-10 01:54:42 +0000 | [diff] [blame] | 14 | // IT block predicate field |
| 15 | def it_pred : Operand<i32> { |
| 16 | let PrintMethod = "printPredicateOperand"; |
| 17 | } |
| 18 | |
| 19 | // IT block condition mask |
| 20 | def it_mask : Operand<i32> { |
| 21 | let PrintMethod = "printThumbITMask"; |
| 22 | } |
| 23 | |
Evan Cheng | 1b2b3e2 | 2009-07-29 02:18:14 +0000 | [diff] [blame] | 24 | // Table branch address |
| 25 | def tb_addrmode : Operand<i32> { |
| 26 | let PrintMethod = "printTBAddrMode"; |
| 27 | } |
| 28 | |
Anton Korobeynikov | ac869fc | 2009-06-17 18:13:58 +0000 | [diff] [blame] | 29 | // Shifted operands. No register controlled shifts for Thumb2. |
| 30 | // Note: We do not support rrx shifted operands yet. |
| 31 | def t2_so_reg : Operand<i32>, // reg imm |
Evan Cheng | 19bb7c7 | 2009-06-27 02:26:13 +0000 | [diff] [blame] | 32 | ComplexPattern<i32, 2, "SelectT2ShifterOperandReg", |
Anton Korobeynikov | ac869fc | 2009-06-17 18:13:58 +0000 | [diff] [blame] | 33 | [shl,srl,sra,rotr]> { |
Evan Cheng | 19bb7c7 | 2009-06-27 02:26:13 +0000 | [diff] [blame] | 34 | let PrintMethod = "printT2SOOperand"; |
Anton Korobeynikov | ac869fc | 2009-06-17 18:13:58 +0000 | [diff] [blame] | 35 | let MIOperandInfo = (ops GPR, i32imm); |
| 36 | } |
| 37 | |
Evan Cheng | 3617371 | 2009-06-23 17:48:47 +0000 | [diff] [blame] | 38 | // t2_so_imm_not_XFORM - Return the complement of a t2_so_imm value |
| 39 | def t2_so_imm_not_XFORM : SDNodeXForm<imm, [{ |
Owen Anderson | 36e3a6e | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 40 | return CurDAG->getTargetConstant(~((uint32_t)N->getZExtValue()), MVT::i32); |
Anton Korobeynikov | ac869fc | 2009-06-17 18:13:58 +0000 | [diff] [blame] | 41 | }]>; |
| 42 | |
Evan Cheng | 3617371 | 2009-06-23 17:48:47 +0000 | [diff] [blame] | 43 | // t2_so_imm_neg_XFORM - Return the negation of a t2_so_imm value |
| 44 | def t2_so_imm_neg_XFORM : SDNodeXForm<imm, [{ |
Owen Anderson | 36e3a6e | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 45 | return CurDAG->getTargetConstant(-((int)N->getZExtValue()), MVT::i32); |
Evan Cheng | 3617371 | 2009-06-23 17:48:47 +0000 | [diff] [blame] | 46 | }]>; |
Anton Korobeynikov | ac869fc | 2009-06-17 18:13:58 +0000 | [diff] [blame] | 47 | |
Evan Cheng | 3617371 | 2009-06-23 17:48:47 +0000 | [diff] [blame] | 48 | // t2_so_imm - Match a 32-bit immediate operand, which is an |
| 49 | // 8-bit immediate rotated by an arbitrary number of bits, or an 8-bit |
| 50 | // immediate splatted into multiple bytes of the word. t2_so_imm values are |
| 51 | // represented in the imm field in the same 12-bit form that they are encoded |
Jim Grosbach | 71465ac | 2009-11-24 00:20:27 +0000 | [diff] [blame] | 52 | // into t2_so_imm instructions: the 8-bit immediate is the least significant |
| 53 | // bits [bits 0-7], the 4-bit shift/splat amount is the next 4 bits [bits 8-11]. |
Evan Cheng | 3617371 | 2009-06-23 17:48:47 +0000 | [diff] [blame] | 54 | def t2_so_imm : Operand<i32>, |
| 55 | PatLeaf<(imm), [{ |
Evan Cheng | 8be2a5b | 2009-07-08 21:03:57 +0000 | [diff] [blame] | 56 | return ARM_AM::getT2SOImmVal((uint32_t)N->getZExtValue()) != -1; |
| 57 | }]>; |
Anton Korobeynikov | ac869fc | 2009-06-17 18:13:58 +0000 | [diff] [blame] | 58 | |
Evan Cheng | 3617371 | 2009-06-23 17:48:47 +0000 | [diff] [blame] | 59 | // t2_so_imm_not - Match an immediate that is a complement |
| 60 | // of a t2_so_imm. |
| 61 | def t2_so_imm_not : Operand<i32>, |
| 62 | PatLeaf<(imm), [{ |
Evan Cheng | 8be2a5b | 2009-07-08 21:03:57 +0000 | [diff] [blame] | 63 | return ARM_AM::getT2SOImmVal(~((uint32_t)N->getZExtValue())) != -1; |
| 64 | }], t2_so_imm_not_XFORM>; |
Evan Cheng | 3617371 | 2009-06-23 17:48:47 +0000 | [diff] [blame] | 65 | |
| 66 | // t2_so_imm_neg - Match an immediate that is a negation of a t2_so_imm. |
| 67 | def t2_so_imm_neg : Operand<i32>, |
| 68 | PatLeaf<(imm), [{ |
Evan Cheng | 8be2a5b | 2009-07-08 21:03:57 +0000 | [diff] [blame] | 69 | return ARM_AM::getT2SOImmVal(-((int)N->getZExtValue())) != -1; |
| 70 | }], t2_so_imm_neg_XFORM>; |
Evan Cheng | 3617371 | 2009-06-23 17:48:47 +0000 | [diff] [blame] | 71 | |
Jim Grosbach | 1afc8e2 | 2009-10-21 20:44:34 +0000 | [diff] [blame] | 72 | // Break t2_so_imm's up into two pieces. This handles immediates with up to 16 |
| 73 | // bits set in them. This uses t2_so_imm2part to match and t2_so_imm2part_[12] |
| 74 | // to get the first/second pieces. |
| 75 | def t2_so_imm2part : Operand<i32>, |
| 76 | PatLeaf<(imm), [{ |
| 77 | return ARM_AM::isT2SOImmTwoPartVal((unsigned)N->getZExtValue()); |
| 78 | }]> { |
| 79 | } |
| 80 | |
| 81 | def t2_so_imm2part_1 : SDNodeXForm<imm, [{ |
| 82 | unsigned V = ARM_AM::getT2SOImmTwoPartFirst((unsigned)N->getZExtValue()); |
| 83 | return CurDAG->getTargetConstant(V, MVT::i32); |
| 84 | }]>; |
| 85 | |
| 86 | def t2_so_imm2part_2 : SDNodeXForm<imm, [{ |
| 87 | unsigned V = ARM_AM::getT2SOImmTwoPartSecond((unsigned)N->getZExtValue()); |
| 88 | return CurDAG->getTargetConstant(V, MVT::i32); |
| 89 | }]>; |
| 90 | |
Jim Grosbach | 66e70cd | 2009-11-23 20:35:53 +0000 | [diff] [blame] | 91 | def t2_so_neg_imm2part : Operand<i32>, PatLeaf<(imm), [{ |
| 92 | return ARM_AM::isT2SOImmTwoPartVal(-(int)N->getZExtValue()); |
| 93 | }]> { |
| 94 | } |
| 95 | |
| 96 | def t2_so_neg_imm2part_1 : SDNodeXForm<imm, [{ |
| 97 | unsigned V = ARM_AM::getT2SOImmTwoPartFirst(-(int)N->getZExtValue()); |
| 98 | return CurDAG->getTargetConstant(V, MVT::i32); |
| 99 | }]>; |
| 100 | |
| 101 | def t2_so_neg_imm2part_2 : SDNodeXForm<imm, [{ |
| 102 | unsigned V = ARM_AM::getT2SOImmTwoPartSecond(-(int)N->getZExtValue()); |
| 103 | return CurDAG->getTargetConstant(V, MVT::i32); |
| 104 | }]>; |
| 105 | |
Evan Cheng | f7f986d | 2009-06-23 19:39:13 +0000 | [diff] [blame] | 106 | /// imm1_31 predicate - True if the 32-bit immediate is in the range [1,31]. |
| 107 | def imm1_31 : PatLeaf<(i32 imm), [{ |
| 108 | return (int32_t)N->getZExtValue() >= 1 && (int32_t)N->getZExtValue() < 32; |
| 109 | }]>; |
| 110 | |
Evan Cheng | 3617371 | 2009-06-23 17:48:47 +0000 | [diff] [blame] | 111 | /// imm0_4095 predicate - True if the 32-bit immediate is in the range [0.4095]. |
Evan Cheng | 815c23a | 2009-08-07 00:34:42 +0000 | [diff] [blame] | 112 | def imm0_4095 : Operand<i32>, |
| 113 | PatLeaf<(i32 imm), [{ |
Evan Cheng | 3617371 | 2009-06-23 17:48:47 +0000 | [diff] [blame] | 114 | return (uint32_t)N->getZExtValue() < 4096; |
| 115 | }]>; |
Anton Korobeynikov | ac869fc | 2009-06-17 18:13:58 +0000 | [diff] [blame] | 116 | |
| 117 | def imm0_4095_neg : PatLeaf<(i32 imm), [{ |
Evan Cheng | 3617371 | 2009-06-23 17:48:47 +0000 | [diff] [blame] | 118 | return (uint32_t)(-N->getZExtValue()) < 4096; |
Anton Korobeynikov | ac869fc | 2009-06-17 18:13:58 +0000 | [diff] [blame] | 119 | }], imm_neg_XFORM>; |
| 120 | |
Evan Cheng | 809fadb | 2009-08-04 01:41:15 +0000 | [diff] [blame] | 121 | def imm0_255_neg : PatLeaf<(i32 imm), [{ |
| 122 | return (uint32_t)(-N->getZExtValue()) < 255; |
| 123 | }], imm_neg_XFORM>; |
| 124 | |
Evan Cheng | 532cdc5 | 2009-06-29 07:51:04 +0000 | [diff] [blame] | 125 | // Define Thumb2 specific addressing modes. |
| 126 | |
| 127 | // t2addrmode_imm12 := reg + imm12 |
| 128 | def t2addrmode_imm12 : Operand<i32>, |
| 129 | ComplexPattern<i32, 2, "SelectT2AddrModeImm12", []> { |
| 130 | let PrintMethod = "printT2AddrModeImm12Operand"; |
| 131 | let MIOperandInfo = (ops GPR:$base, i32imm:$offsimm); |
| 132 | } |
| 133 | |
David Goodwin | 7938afc | 2009-07-24 00:16:18 +0000 | [diff] [blame] | 134 | // t2addrmode_imm8 := reg - imm8 |
Evan Cheng | 532cdc5 | 2009-06-29 07:51:04 +0000 | [diff] [blame] | 135 | def t2addrmode_imm8 : Operand<i32>, |
| 136 | ComplexPattern<i32, 2, "SelectT2AddrModeImm8", []> { |
| 137 | let PrintMethod = "printT2AddrModeImm8Operand"; |
| 138 | let MIOperandInfo = (ops GPR:$base, i32imm:$offsimm); |
| 139 | } |
| 140 | |
Evan Cheng | 24f87d8 | 2009-07-03 00:06:39 +0000 | [diff] [blame] | 141 | def t2am_imm8_offset : Operand<i32>, |
| 142 | ComplexPattern<i32, 1, "SelectT2AddrModeImm8Offset", []>{ |
Evan Cheng | a90942e | 2009-07-02 07:28:31 +0000 | [diff] [blame] | 143 | let PrintMethod = "printT2AddrModeImm8OffsetOperand"; |
| 144 | } |
| 145 | |
Evan Cheng | 6bc6720 | 2009-07-09 22:21:59 +0000 | [diff] [blame] | 146 | // t2addrmode_imm8s4 := reg +/- (imm8 << 2) |
David Goodwin | 2af7ed8 | 2009-06-30 22:50:01 +0000 | [diff] [blame] | 147 | def t2addrmode_imm8s4 : Operand<i32>, |
| 148 | ComplexPattern<i32, 2, "SelectT2AddrModeImm8s4", []> { |
Evan Cheng | 6bc6720 | 2009-07-09 22:21:59 +0000 | [diff] [blame] | 149 | let PrintMethod = "printT2AddrModeImm8s4Operand"; |
David Goodwin | 2af7ed8 | 2009-06-30 22:50:01 +0000 | [diff] [blame] | 150 | let MIOperandInfo = (ops GPR:$base, i32imm:$offsimm); |
| 151 | } |
| 152 | |
Evan Cheng | 4df2ea7 | 2009-07-09 20:40:44 +0000 | [diff] [blame] | 153 | // t2addrmode_so_reg := reg + (reg << imm2) |
Evan Cheng | 532cdc5 | 2009-06-29 07:51:04 +0000 | [diff] [blame] | 154 | def t2addrmode_so_reg : Operand<i32>, |
| 155 | ComplexPattern<i32, 3, "SelectT2AddrModeSoReg", []> { |
| 156 | let PrintMethod = "printT2AddrModeSoRegOperand"; |
| 157 | let MIOperandInfo = (ops GPR:$base, GPR:$offsreg, i32imm:$offsimm); |
| 158 | } |
| 159 | |
| 160 | |
Anton Korobeynikov | ac869fc | 2009-06-17 18:13:58 +0000 | [diff] [blame] | 161 | //===----------------------------------------------------------------------===// |
Evan Cheng | 19bb7c7 | 2009-06-27 02:26:13 +0000 | [diff] [blame] | 162 | // Multiclass helpers... |
Anton Korobeynikov | ac869fc | 2009-06-17 18:13:58 +0000 | [diff] [blame] | 163 | // |
| 164 | |
Evan Cheng | f7f986d | 2009-06-23 19:39:13 +0000 | [diff] [blame] | 165 | /// T2I_un_irs - Defines a set of (op reg, {so_imm|r|so_reg}) patterns for a |
Evan Cheng | 3d92dfd | 2009-06-25 02:08:06 +0000 | [diff] [blame] | 166 | /// unary operation that produces a value. These are predicable and can be |
| 167 | /// changed to modify CPSR. |
Evan Cheng | f7f986d | 2009-06-23 19:39:13 +0000 | [diff] [blame] | 168 | multiclass T2I_un_irs<string opc, PatFrag opnode, bit Cheap = 0, bit ReMat = 0>{ |
| 169 | // shifted imm |
David Goodwin | 236ccb5 | 2009-08-19 18:00:44 +0000 | [diff] [blame] | 170 | def i : T2sI<(outs GPR:$dst), (ins t2_so_imm:$src), IIC_iMOVi, |
Evan Cheng | 08540a9 | 2009-10-27 00:08:59 +0000 | [diff] [blame] | 171 | opc, "\t$dst, $src", |
Evan Cheng | f7f986d | 2009-06-23 19:39:13 +0000 | [diff] [blame] | 172 | [(set GPR:$dst, (opnode t2_so_imm:$src))]> { |
| 173 | let isAsCheapAsAMove = Cheap; |
| 174 | let isReMaterializable = ReMat; |
| 175 | } |
| 176 | // register |
David Goodwin | 236ccb5 | 2009-08-19 18:00:44 +0000 | [diff] [blame] | 177 | def r : T2I<(outs GPR:$dst), (ins GPR:$src), IIC_iMOVr, |
Evan Cheng | 08540a9 | 2009-10-27 00:08:59 +0000 | [diff] [blame] | 178 | opc, ".w\t$dst, $src", |
Evan Cheng | f7f986d | 2009-06-23 19:39:13 +0000 | [diff] [blame] | 179 | [(set GPR:$dst, (opnode GPR:$src))]>; |
| 180 | // shifted register |
David Goodwin | 236ccb5 | 2009-08-19 18:00:44 +0000 | [diff] [blame] | 181 | def s : T2I<(outs GPR:$dst), (ins t2_so_reg:$src), IIC_iMOVsi, |
Evan Cheng | 08540a9 | 2009-10-27 00:08:59 +0000 | [diff] [blame] | 182 | opc, ".w\t$dst, $src", |
Evan Cheng | 3d92dfd | 2009-06-25 02:08:06 +0000 | [diff] [blame] | 183 | [(set GPR:$dst, (opnode t2_so_reg:$src))]>; |
Evan Cheng | f7f986d | 2009-06-23 19:39:13 +0000 | [diff] [blame] | 184 | } |
| 185 | |
| 186 | /// T2I_bin_irs - Defines a set of (op reg, {so_imm|r|so_reg}) patterns for a |
Evan Cheng | 3d92dfd | 2009-06-25 02:08:06 +0000 | [diff] [blame] | 187 | // binary operation that produces a value. These are predicable and can be |
| 188 | /// changed to modify CPSR. |
David Goodwin | 87affb9 | 2009-07-27 23:34:12 +0000 | [diff] [blame] | 189 | multiclass T2I_bin_irs<string opc, PatFrag opnode, |
| 190 | bit Commutable = 0, string wide =""> { |
Anton Korobeynikov | ac869fc | 2009-06-17 18:13:58 +0000 | [diff] [blame] | 191 | // shifted imm |
David Goodwin | 236ccb5 | 2009-08-19 18:00:44 +0000 | [diff] [blame] | 192 | def ri : T2sI<(outs GPR:$dst), (ins GPR:$lhs, t2_so_imm:$rhs), IIC_iALUi, |
Evan Cheng | 08540a9 | 2009-10-27 00:08:59 +0000 | [diff] [blame] | 193 | opc, "\t$dst, $lhs, $rhs", |
Evan Cheng | 3d92dfd | 2009-06-25 02:08:06 +0000 | [diff] [blame] | 194 | [(set GPR:$dst, (opnode GPR:$lhs, t2_so_imm:$rhs))]>; |
Evan Cheng | f7f986d | 2009-06-23 19:39:13 +0000 | [diff] [blame] | 195 | // register |
David Goodwin | 236ccb5 | 2009-08-19 18:00:44 +0000 | [diff] [blame] | 196 | def rr : T2sI<(outs GPR:$dst), (ins GPR:$lhs, GPR:$rhs), IIC_iALUr, |
Evan Cheng | 08540a9 | 2009-10-27 00:08:59 +0000 | [diff] [blame] | 197 | opc, !strconcat(wide, "\t$dst, $lhs, $rhs"), |
Evan Cheng | bdd679a | 2009-06-26 00:19:44 +0000 | [diff] [blame] | 198 | [(set GPR:$dst, (opnode GPR:$lhs, GPR:$rhs))]> { |
| 199 | let isCommutable = Commutable; |
| 200 | } |
Anton Korobeynikov | ac869fc | 2009-06-17 18:13:58 +0000 | [diff] [blame] | 201 | // shifted register |
David Goodwin | 236ccb5 | 2009-08-19 18:00:44 +0000 | [diff] [blame] | 202 | def rs : T2sI<(outs GPR:$dst), (ins GPR:$lhs, t2_so_reg:$rhs), IIC_iALUsi, |
Evan Cheng | 08540a9 | 2009-10-27 00:08:59 +0000 | [diff] [blame] | 203 | opc, !strconcat(wide, "\t$dst, $lhs, $rhs"), |
Evan Cheng | 3d92dfd | 2009-06-25 02:08:06 +0000 | [diff] [blame] | 204 | [(set GPR:$dst, (opnode GPR:$lhs, t2_so_reg:$rhs))]>; |
Anton Korobeynikov | ac869fc | 2009-06-17 18:13:58 +0000 | [diff] [blame] | 205 | } |
| 206 | |
David Goodwin | 87affb9 | 2009-07-27 23:34:12 +0000 | [diff] [blame] | 207 | /// T2I_bin_w_irs - Same as T2I_bin_irs except these operations need |
| 208 | // the ".w" prefix to indicate that they are wide. |
| 209 | multiclass T2I_bin_w_irs<string opc, PatFrag opnode, bit Commutable = 0> : |
| 210 | T2I_bin_irs<opc, opnode, Commutable, ".w">; |
| 211 | |
Evan Cheng | d4e2f05 | 2009-06-25 20:59:23 +0000 | [diff] [blame] | 212 | /// T2I_rbin_is - Same as T2I_bin_irs except the order of operands are |
| 213 | /// reversed. It doesn't define the 'rr' form since it's handled by its |
| 214 | /// T2I_bin_irs counterpart. |
| 215 | multiclass T2I_rbin_is<string opc, PatFrag opnode> { |
Evan Cheng | 3617371 | 2009-06-23 17:48:47 +0000 | [diff] [blame] | 216 | // shifted imm |
David Goodwin | 236ccb5 | 2009-08-19 18:00:44 +0000 | [diff] [blame] | 217 | def ri : T2I<(outs GPR:$dst), (ins GPR:$rhs, t2_so_imm:$lhs), IIC_iALUi, |
Evan Cheng | 08540a9 | 2009-10-27 00:08:59 +0000 | [diff] [blame] | 218 | opc, ".w\t$dst, $rhs, $lhs", |
Evan Cheng | 3617371 | 2009-06-23 17:48:47 +0000 | [diff] [blame] | 219 | [(set GPR:$dst, (opnode t2_so_imm:$lhs, GPR:$rhs))]>; |
| 220 | // shifted register |
David Goodwin | 236ccb5 | 2009-08-19 18:00:44 +0000 | [diff] [blame] | 221 | def rs : T2I<(outs GPR:$dst), (ins GPR:$rhs, t2_so_reg:$lhs), IIC_iALUsi, |
Evan Cheng | 08540a9 | 2009-10-27 00:08:59 +0000 | [diff] [blame] | 222 | opc, "\t$dst, $rhs, $lhs", |
Evan Cheng | 3617371 | 2009-06-23 17:48:47 +0000 | [diff] [blame] | 223 | [(set GPR:$dst, (opnode t2_so_reg:$lhs, GPR:$rhs))]>; |
| 224 | } |
| 225 | |
Evan Cheng | f7f986d | 2009-06-23 19:39:13 +0000 | [diff] [blame] | 226 | /// T2I_bin_s_irs - Similar to T2I_bin_irs except it sets the 's' bit so the |
Anton Korobeynikov | ac869fc | 2009-06-17 18:13:58 +0000 | [diff] [blame] | 227 | /// instruction modifies the CPSR register. |
| 228 | let Defs = [CPSR] in { |
Evan Cheng | bdd679a | 2009-06-26 00:19:44 +0000 | [diff] [blame] | 229 | multiclass T2I_bin_s_irs<string opc, PatFrag opnode, bit Commutable = 0> { |
Anton Korobeynikov | ac869fc | 2009-06-17 18:13:58 +0000 | [diff] [blame] | 230 | // shifted imm |
David Goodwin | 236ccb5 | 2009-08-19 18:00:44 +0000 | [diff] [blame] | 231 | def ri : T2I<(outs GPR:$dst), (ins GPR:$lhs, t2_so_imm:$rhs), IIC_iALUi, |
Evan Cheng | 08540a9 | 2009-10-27 00:08:59 +0000 | [diff] [blame] | 232 | !strconcat(opc, "s"), ".w\t$dst, $lhs, $rhs", |
Evan Cheng | 3617371 | 2009-06-23 17:48:47 +0000 | [diff] [blame] | 233 | [(set GPR:$dst, (opnode GPR:$lhs, t2_so_imm:$rhs))]>; |
Evan Cheng | f7f986d | 2009-06-23 19:39:13 +0000 | [diff] [blame] | 234 | // register |
David Goodwin | 236ccb5 | 2009-08-19 18:00:44 +0000 | [diff] [blame] | 235 | def rr : T2I<(outs GPR:$dst), (ins GPR:$lhs, GPR:$rhs), IIC_iALUr, |
Evan Cheng | 08540a9 | 2009-10-27 00:08:59 +0000 | [diff] [blame] | 236 | !strconcat(opc, "s"), ".w\t$dst, $lhs, $rhs", |
Evan Cheng | bdd679a | 2009-06-26 00:19:44 +0000 | [diff] [blame] | 237 | [(set GPR:$dst, (opnode GPR:$lhs, GPR:$rhs))]> { |
| 238 | let isCommutable = Commutable; |
| 239 | } |
Anton Korobeynikov | ac869fc | 2009-06-17 18:13:58 +0000 | [diff] [blame] | 240 | // shifted register |
David Goodwin | 236ccb5 | 2009-08-19 18:00:44 +0000 | [diff] [blame] | 241 | def rs : T2I<(outs GPR:$dst), (ins GPR:$lhs, t2_so_reg:$rhs), IIC_iALUsi, |
Evan Cheng | 08540a9 | 2009-10-27 00:08:59 +0000 | [diff] [blame] | 242 | !strconcat(opc, "s"), ".w\t$dst, $lhs, $rhs", |
Evan Cheng | 3617371 | 2009-06-23 17:48:47 +0000 | [diff] [blame] | 243 | [(set GPR:$dst, (opnode GPR:$lhs, t2_so_reg:$rhs))]>; |
Anton Korobeynikov | ac869fc | 2009-06-17 18:13:58 +0000 | [diff] [blame] | 244 | } |
| 245 | } |
| 246 | |
Evan Cheng | f7f986d | 2009-06-23 19:39:13 +0000 | [diff] [blame] | 247 | /// T2I_bin_ii12rs - Defines a set of (op reg, {so_imm|imm0_4095|r|so_reg}) |
| 248 | /// patterns for a binary operation that produces a value. |
Evan Cheng | bdd679a | 2009-06-26 00:19:44 +0000 | [diff] [blame] | 249 | multiclass T2I_bin_ii12rs<string opc, PatFrag opnode, bit Commutable = 0> { |
Evan Cheng | 3617371 | 2009-06-23 17:48:47 +0000 | [diff] [blame] | 250 | // shifted imm |
David Goodwin | 236ccb5 | 2009-08-19 18:00:44 +0000 | [diff] [blame] | 251 | def ri : T2sI<(outs GPR:$dst), (ins GPR:$lhs, t2_so_imm:$rhs), IIC_iALUi, |
Evan Cheng | 08540a9 | 2009-10-27 00:08:59 +0000 | [diff] [blame] | 252 | opc, ".w\t$dst, $lhs, $rhs", |
Evan Cheng | 3d92dfd | 2009-06-25 02:08:06 +0000 | [diff] [blame] | 253 | [(set GPR:$dst, (opnode GPR:$lhs, t2_so_imm:$rhs))]>; |
Evan Cheng | 3617371 | 2009-06-23 17:48:47 +0000 | [diff] [blame] | 254 | // 12-bit imm |
David Goodwin | 236ccb5 | 2009-08-19 18:00:44 +0000 | [diff] [blame] | 255 | def ri12 : T2sI<(outs GPR:$dst), (ins GPR:$lhs, imm0_4095:$rhs), IIC_iALUi, |
Evan Cheng | 08540a9 | 2009-10-27 00:08:59 +0000 | [diff] [blame] | 256 | !strconcat(opc, "w"), "\t$dst, $lhs, $rhs", |
Evan Cheng | 3d92dfd | 2009-06-25 02:08:06 +0000 | [diff] [blame] | 257 | [(set GPR:$dst, (opnode GPR:$lhs, imm0_4095:$rhs))]>; |
Evan Cheng | f7f986d | 2009-06-23 19:39:13 +0000 | [diff] [blame] | 258 | // register |
David Goodwin | 236ccb5 | 2009-08-19 18:00:44 +0000 | [diff] [blame] | 259 | def rr : T2sI<(outs GPR:$dst), (ins GPR:$lhs, GPR:$rhs), IIC_iALUr, |
Evan Cheng | 08540a9 | 2009-10-27 00:08:59 +0000 | [diff] [blame] | 260 | opc, ".w\t$dst, $lhs, $rhs", |
Evan Cheng | bdd679a | 2009-06-26 00:19:44 +0000 | [diff] [blame] | 261 | [(set GPR:$dst, (opnode GPR:$lhs, GPR:$rhs))]> { |
| 262 | let isCommutable = Commutable; |
| 263 | } |
Evan Cheng | 3617371 | 2009-06-23 17:48:47 +0000 | [diff] [blame] | 264 | // shifted register |
David Goodwin | 236ccb5 | 2009-08-19 18:00:44 +0000 | [diff] [blame] | 265 | def rs : T2sI<(outs GPR:$dst), (ins GPR:$lhs, t2_so_reg:$rhs), IIC_iALUsi, |
Evan Cheng | 08540a9 | 2009-10-27 00:08:59 +0000 | [diff] [blame] | 266 | opc, ".w\t$dst, $lhs, $rhs", |
Evan Cheng | 3d92dfd | 2009-06-25 02:08:06 +0000 | [diff] [blame] | 267 | [(set GPR:$dst, (opnode GPR:$lhs, t2_so_reg:$rhs))]>; |
Evan Cheng | 3617371 | 2009-06-23 17:48:47 +0000 | [diff] [blame] | 268 | } |
| 269 | |
Jim Grosbach | 71465ac | 2009-11-24 00:20:27 +0000 | [diff] [blame] | 270 | /// T2I_adde_sube_irs - Defines a set of (op reg, {so_imm|r|so_reg}) patterns |
| 271 | /// for a binary operation that produces a value and use and define the carry |
| 272 | /// bit. It's not predicable. |
Evan Cheng | 9b4d26f | 2009-06-25 23:34:10 +0000 | [diff] [blame] | 273 | let Uses = [CPSR] in { |
Evan Cheng | bdd679a | 2009-06-26 00:19:44 +0000 | [diff] [blame] | 274 | multiclass T2I_adde_sube_irs<string opc, PatFrag opnode, bit Commutable = 0> { |
Anton Korobeynikov | ac869fc | 2009-06-17 18:13:58 +0000 | [diff] [blame] | 275 | // shifted imm |
David Goodwin | 236ccb5 | 2009-08-19 18:00:44 +0000 | [diff] [blame] | 276 | def ri : T2sI<(outs GPR:$dst), (ins GPR:$lhs, t2_so_imm:$rhs), IIC_iALUi, |
Evan Cheng | 08540a9 | 2009-10-27 00:08:59 +0000 | [diff] [blame] | 277 | opc, "\t$dst, $lhs, $rhs", |
Evan Cheng | 9b4d26f | 2009-06-25 23:34:10 +0000 | [diff] [blame] | 278 | [(set GPR:$dst, (opnode GPR:$lhs, t2_so_imm:$rhs))]>, |
Evan Cheng | b1b2abc | 2009-07-02 06:38:40 +0000 | [diff] [blame] | 279 | Requires<[IsThumb2, CarryDefIsUnused]>; |
Evan Cheng | f7f986d | 2009-06-23 19:39:13 +0000 | [diff] [blame] | 280 | // register |
David Goodwin | 236ccb5 | 2009-08-19 18:00:44 +0000 | [diff] [blame] | 281 | def rr : T2sI<(outs GPR:$dst), (ins GPR:$lhs, GPR:$rhs), IIC_iALUr, |
Evan Cheng | 08540a9 | 2009-10-27 00:08:59 +0000 | [diff] [blame] | 282 | opc, ".w\t$dst, $lhs, $rhs", |
Evan Cheng | 9b4d26f | 2009-06-25 23:34:10 +0000 | [diff] [blame] | 283 | [(set GPR:$dst, (opnode GPR:$lhs, GPR:$rhs))]>, |
Evan Cheng | b1b2abc | 2009-07-02 06:38:40 +0000 | [diff] [blame] | 284 | Requires<[IsThumb2, CarryDefIsUnused]> { |
Evan Cheng | bdd679a | 2009-06-26 00:19:44 +0000 | [diff] [blame] | 285 | let isCommutable = Commutable; |
| 286 | } |
Anton Korobeynikov | ac869fc | 2009-06-17 18:13:58 +0000 | [diff] [blame] | 287 | // shifted register |
David Goodwin | 236ccb5 | 2009-08-19 18:00:44 +0000 | [diff] [blame] | 288 | def rs : T2sI<(outs GPR:$dst), (ins GPR:$lhs, t2_so_reg:$rhs), IIC_iALUsi, |
Evan Cheng | 08540a9 | 2009-10-27 00:08:59 +0000 | [diff] [blame] | 289 | opc, ".w\t$dst, $lhs, $rhs", |
Evan Cheng | 9b4d26f | 2009-06-25 23:34:10 +0000 | [diff] [blame] | 290 | [(set GPR:$dst, (opnode GPR:$lhs, t2_so_reg:$rhs))]>, |
Evan Cheng | b1b2abc | 2009-07-02 06:38:40 +0000 | [diff] [blame] | 291 | Requires<[IsThumb2, CarryDefIsUnused]>; |
Evan Cheng | 9b4d26f | 2009-06-25 23:34:10 +0000 | [diff] [blame] | 292 | // Carry setting variants |
| 293 | // shifted imm |
David Goodwin | 236ccb5 | 2009-08-19 18:00:44 +0000 | [diff] [blame] | 294 | def Sri : T2XI<(outs GPR:$dst), (ins GPR:$lhs, t2_so_imm:$rhs), IIC_iALUi, |
Evan Cheng | 08540a9 | 2009-10-27 00:08:59 +0000 | [diff] [blame] | 295 | !strconcat(opc, "s\t$dst, $lhs, $rhs"), |
Evan Cheng | 9b4d26f | 2009-06-25 23:34:10 +0000 | [diff] [blame] | 296 | [(set GPR:$dst, (opnode GPR:$lhs, t2_so_imm:$rhs))]>, |
Evan Cheng | b1b2abc | 2009-07-02 06:38:40 +0000 | [diff] [blame] | 297 | Requires<[IsThumb2, CarryDefIsUsed]> { |
Evan Cheng | 9b4d26f | 2009-06-25 23:34:10 +0000 | [diff] [blame] | 298 | let Defs = [CPSR]; |
| 299 | } |
| 300 | // register |
David Goodwin | 236ccb5 | 2009-08-19 18:00:44 +0000 | [diff] [blame] | 301 | def Srr : T2XI<(outs GPR:$dst), (ins GPR:$lhs, GPR:$rhs), IIC_iALUr, |
Evan Cheng | 08540a9 | 2009-10-27 00:08:59 +0000 | [diff] [blame] | 302 | !strconcat(opc, "s.w\t$dst, $lhs, $rhs"), |
Evan Cheng | 9b4d26f | 2009-06-25 23:34:10 +0000 | [diff] [blame] | 303 | [(set GPR:$dst, (opnode GPR:$lhs, GPR:$rhs))]>, |
Evan Cheng | b1b2abc | 2009-07-02 06:38:40 +0000 | [diff] [blame] | 304 | Requires<[IsThumb2, CarryDefIsUsed]> { |
Evan Cheng | 9b4d26f | 2009-06-25 23:34:10 +0000 | [diff] [blame] | 305 | let Defs = [CPSR]; |
Evan Cheng | bdd679a | 2009-06-26 00:19:44 +0000 | [diff] [blame] | 306 | let isCommutable = Commutable; |
| 307 | } |
Evan Cheng | 9b4d26f | 2009-06-25 23:34:10 +0000 | [diff] [blame] | 308 | // shifted register |
David Goodwin | 236ccb5 | 2009-08-19 18:00:44 +0000 | [diff] [blame] | 309 | def Srs : T2XI<(outs GPR:$dst), (ins GPR:$lhs, t2_so_reg:$rhs), IIC_iALUsi, |
Evan Cheng | 08540a9 | 2009-10-27 00:08:59 +0000 | [diff] [blame] | 310 | !strconcat(opc, "s.w\t$dst, $lhs, $rhs"), |
Evan Cheng | 9b4d26f | 2009-06-25 23:34:10 +0000 | [diff] [blame] | 311 | [(set GPR:$dst, (opnode GPR:$lhs, t2_so_reg:$rhs))]>, |
Evan Cheng | b1b2abc | 2009-07-02 06:38:40 +0000 | [diff] [blame] | 312 | Requires<[IsThumb2, CarryDefIsUsed]> { |
Evan Cheng | 9b4d26f | 2009-06-25 23:34:10 +0000 | [diff] [blame] | 313 | let Defs = [CPSR]; |
Evan Cheng | bdd679a | 2009-06-26 00:19:44 +0000 | [diff] [blame] | 314 | } |
Evan Cheng | 3617371 | 2009-06-23 17:48:47 +0000 | [diff] [blame] | 315 | } |
| 316 | } |
| 317 | |
David Goodwin | 2f6f113 | 2009-07-27 16:31:55 +0000 | [diff] [blame] | 318 | /// T2I_rbin_s_is - Same as T2I_rbin_is except sets 's' bit. |
Evan Cheng | d4e2f05 | 2009-06-25 20:59:23 +0000 | [diff] [blame] | 319 | let Defs = [CPSR] in { |
| 320 | multiclass T2I_rbin_s_is<string opc, PatFrag opnode> { |
Evan Cheng | 3617371 | 2009-06-23 17:48:47 +0000 | [diff] [blame] | 321 | // shifted imm |
Evan Cheng | 6dadbee | 2009-08-10 02:37:24 +0000 | [diff] [blame] | 322 | def ri : T2XI<(outs GPR:$dst), (ins GPR:$rhs, t2_so_imm:$lhs, cc_out:$s), |
David Goodwin | 236ccb5 | 2009-08-19 18:00:44 +0000 | [diff] [blame] | 323 | IIC_iALUi, |
Evan Cheng | 08540a9 | 2009-10-27 00:08:59 +0000 | [diff] [blame] | 324 | !strconcat(opc, "${s}.w\t$dst, $rhs, $lhs"), |
Evan Cheng | 3d92dfd | 2009-06-25 02:08:06 +0000 | [diff] [blame] | 325 | [(set GPR:$dst, (opnode t2_so_imm:$lhs, GPR:$rhs))]>; |
Evan Cheng | 3617371 | 2009-06-23 17:48:47 +0000 | [diff] [blame] | 326 | // shifted register |
Evan Cheng | 6dadbee | 2009-08-10 02:37:24 +0000 | [diff] [blame] | 327 | def rs : T2XI<(outs GPR:$dst), (ins GPR:$rhs, t2_so_reg:$lhs, cc_out:$s), |
David Goodwin | 236ccb5 | 2009-08-19 18:00:44 +0000 | [diff] [blame] | 328 | IIC_iALUsi, |
Evan Cheng | 08540a9 | 2009-10-27 00:08:59 +0000 | [diff] [blame] | 329 | !strconcat(opc, "${s}\t$dst, $rhs, $lhs"), |
Evan Cheng | 3d92dfd | 2009-06-25 02:08:06 +0000 | [diff] [blame] | 330 | [(set GPR:$dst, (opnode t2_so_reg:$lhs, GPR:$rhs))]>; |
Evan Cheng | 3617371 | 2009-06-23 17:48:47 +0000 | [diff] [blame] | 331 | } |
| 332 | } |
| 333 | |
Evan Cheng | f7f986d | 2009-06-23 19:39:13 +0000 | [diff] [blame] | 334 | /// T2I_sh_ir - Defines a set of (op reg, {so_imm|r}) patterns for a shift / |
| 335 | // rotate operation that produces a value. |
| 336 | multiclass T2I_sh_ir<string opc, PatFrag opnode> { |
| 337 | // 5-bit imm |
David Goodwin | 236ccb5 | 2009-08-19 18:00:44 +0000 | [diff] [blame] | 338 | def ri : T2sI<(outs GPR:$dst), (ins GPR:$lhs, i32imm:$rhs), IIC_iMOVsi, |
Evan Cheng | 08540a9 | 2009-10-27 00:08:59 +0000 | [diff] [blame] | 339 | opc, ".w\t$dst, $lhs, $rhs", |
Evan Cheng | 3d92dfd | 2009-06-25 02:08:06 +0000 | [diff] [blame] | 340 | [(set GPR:$dst, (opnode GPR:$lhs, imm1_31:$rhs))]>; |
Evan Cheng | f7f986d | 2009-06-23 19:39:13 +0000 | [diff] [blame] | 341 | // register |
David Goodwin | 236ccb5 | 2009-08-19 18:00:44 +0000 | [diff] [blame] | 342 | def rr : T2sI<(outs GPR:$dst), (ins GPR:$lhs, GPR:$rhs), IIC_iMOVsr, |
Evan Cheng | 08540a9 | 2009-10-27 00:08:59 +0000 | [diff] [blame] | 343 | opc, ".w\t$dst, $lhs, $rhs", |
Evan Cheng | 3d92dfd | 2009-06-25 02:08:06 +0000 | [diff] [blame] | 344 | [(set GPR:$dst, (opnode GPR:$lhs, GPR:$rhs))]>; |
Evan Cheng | f7f986d | 2009-06-23 19:39:13 +0000 | [diff] [blame] | 345 | } |
Evan Cheng | 3617371 | 2009-06-23 17:48:47 +0000 | [diff] [blame] | 346 | |
David Goodwin | 236ccb5 | 2009-08-19 18:00:44 +0000 | [diff] [blame] | 347 | /// T2I_cmp_is - Defines a set of (op r, {so_imm|r|so_reg}) cmp / test |
Evan Cheng | f7f986d | 2009-06-23 19:39:13 +0000 | [diff] [blame] | 348 | /// patterns. Similar to T2I_bin_irs except the instruction does not produce |
Evan Cheng | 3617371 | 2009-06-23 17:48:47 +0000 | [diff] [blame] | 349 | /// a explicit result, only implicitly set CPSR. |
David Goodwin | 97eb10c | 2009-07-20 22:13:31 +0000 | [diff] [blame] | 350 | let Defs = [CPSR] in { |
Evan Cheng | 3617371 | 2009-06-23 17:48:47 +0000 | [diff] [blame] | 351 | multiclass T2I_cmp_is<string opc, PatFrag opnode> { |
| 352 | // shifted imm |
David Goodwin | 236ccb5 | 2009-08-19 18:00:44 +0000 | [diff] [blame] | 353 | def ri : T2I<(outs), (ins GPR:$lhs, t2_so_imm:$rhs), IIC_iCMPi, |
Evan Cheng | 08540a9 | 2009-10-27 00:08:59 +0000 | [diff] [blame] | 354 | opc, ".w\t$lhs, $rhs", |
Evan Cheng | 3617371 | 2009-06-23 17:48:47 +0000 | [diff] [blame] | 355 | [(opnode GPR:$lhs, t2_so_imm:$rhs)]>; |
Evan Cheng | f7f986d | 2009-06-23 19:39:13 +0000 | [diff] [blame] | 356 | // register |
David Goodwin | 236ccb5 | 2009-08-19 18:00:44 +0000 | [diff] [blame] | 357 | def rr : T2I<(outs), (ins GPR:$lhs, GPR:$rhs), IIC_iCMPr, |
Evan Cheng | 08540a9 | 2009-10-27 00:08:59 +0000 | [diff] [blame] | 358 | opc, ".w\t$lhs, $rhs", |
Evan Cheng | f7f986d | 2009-06-23 19:39:13 +0000 | [diff] [blame] | 359 | [(opnode GPR:$lhs, GPR:$rhs)]>; |
Evan Cheng | 3617371 | 2009-06-23 17:48:47 +0000 | [diff] [blame] | 360 | // shifted register |
David Goodwin | 236ccb5 | 2009-08-19 18:00:44 +0000 | [diff] [blame] | 361 | def rs : T2I<(outs), (ins GPR:$lhs, t2_so_reg:$rhs), IIC_iCMPsi, |
Evan Cheng | 08540a9 | 2009-10-27 00:08:59 +0000 | [diff] [blame] | 362 | opc, ".w\t$lhs, $rhs", |
Evan Cheng | 3617371 | 2009-06-23 17:48:47 +0000 | [diff] [blame] | 363 | [(opnode GPR:$lhs, t2_so_reg:$rhs)]>; |
Anton Korobeynikov | ac869fc | 2009-06-17 18:13:58 +0000 | [diff] [blame] | 364 | } |
| 365 | } |
| 366 | |
Evan Cheng | 503be11 | 2009-06-30 02:15:48 +0000 | [diff] [blame] | 367 | /// T2I_ld - Defines a set of (op r, {imm12|imm8|so_reg}) load patterns. |
| 368 | multiclass T2I_ld<string opc, PatFrag opnode> { |
David Goodwin | 236ccb5 | 2009-08-19 18:00:44 +0000 | [diff] [blame] | 369 | def i12 : T2Ii12<(outs GPR:$dst), (ins t2addrmode_imm12:$addr), IIC_iLoadi, |
Evan Cheng | 08540a9 | 2009-10-27 00:08:59 +0000 | [diff] [blame] | 370 | opc, ".w\t$dst, $addr", |
Evan Cheng | 503be11 | 2009-06-30 02:15:48 +0000 | [diff] [blame] | 371 | [(set GPR:$dst, (opnode t2addrmode_imm12:$addr))]>; |
David Goodwin | 236ccb5 | 2009-08-19 18:00:44 +0000 | [diff] [blame] | 372 | def i8 : T2Ii8 <(outs GPR:$dst), (ins t2addrmode_imm8:$addr), IIC_iLoadi, |
Evan Cheng | 08540a9 | 2009-10-27 00:08:59 +0000 | [diff] [blame] | 373 | opc, "\t$dst, $addr", |
Evan Cheng | 503be11 | 2009-06-30 02:15:48 +0000 | [diff] [blame] | 374 | [(set GPR:$dst, (opnode t2addrmode_imm8:$addr))]>; |
David Goodwin | 236ccb5 | 2009-08-19 18:00:44 +0000 | [diff] [blame] | 375 | def s : T2Iso <(outs GPR:$dst), (ins t2addrmode_so_reg:$addr), IIC_iLoadr, |
Evan Cheng | 08540a9 | 2009-10-27 00:08:59 +0000 | [diff] [blame] | 376 | opc, ".w\t$dst, $addr", |
Evan Cheng | 503be11 | 2009-06-30 02:15:48 +0000 | [diff] [blame] | 377 | [(set GPR:$dst, (opnode t2addrmode_so_reg:$addr))]>; |
David Goodwin | 236ccb5 | 2009-08-19 18:00:44 +0000 | [diff] [blame] | 378 | def pci : T2Ipc <(outs GPR:$dst), (ins i32imm:$addr), IIC_iLoadi, |
Evan Cheng | 08540a9 | 2009-10-27 00:08:59 +0000 | [diff] [blame] | 379 | opc, ".w\t$dst, $addr", |
Evan Cheng | 326d724 | 2009-10-31 03:39:36 +0000 | [diff] [blame] | 380 | [(set GPR:$dst, (opnode (ARMWrapper tconstpool:$addr)))]> { |
| 381 | let isReMaterializable = 1; |
| 382 | } |
Evan Cheng | 503be11 | 2009-06-30 02:15:48 +0000 | [diff] [blame] | 383 | } |
| 384 | |
David Goodwin | bab5da1 | 2009-06-30 22:11:34 +0000 | [diff] [blame] | 385 | /// T2I_st - Defines a set of (op r, {imm12|imm8|so_reg}) store patterns. |
| 386 | multiclass T2I_st<string opc, PatFrag opnode> { |
David Goodwin | 236ccb5 | 2009-08-19 18:00:44 +0000 | [diff] [blame] | 387 | def i12 : T2Ii12<(outs), (ins GPR:$src, t2addrmode_imm12:$addr), IIC_iStorei, |
Evan Cheng | 08540a9 | 2009-10-27 00:08:59 +0000 | [diff] [blame] | 388 | opc, ".w\t$src, $addr", |
David Goodwin | bab5da1 | 2009-06-30 22:11:34 +0000 | [diff] [blame] | 389 | [(opnode GPR:$src, t2addrmode_imm12:$addr)]>; |
David Goodwin | 236ccb5 | 2009-08-19 18:00:44 +0000 | [diff] [blame] | 390 | def i8 : T2Ii8 <(outs), (ins GPR:$src, t2addrmode_imm8:$addr), IIC_iStorei, |
Evan Cheng | 08540a9 | 2009-10-27 00:08:59 +0000 | [diff] [blame] | 391 | opc, "\t$src, $addr", |
David Goodwin | bab5da1 | 2009-06-30 22:11:34 +0000 | [diff] [blame] | 392 | [(opnode GPR:$src, t2addrmode_imm8:$addr)]>; |
David Goodwin | 236ccb5 | 2009-08-19 18:00:44 +0000 | [diff] [blame] | 393 | def s : T2Iso <(outs), (ins GPR:$src, t2addrmode_so_reg:$addr), IIC_iStorer, |
Evan Cheng | 08540a9 | 2009-10-27 00:08:59 +0000 | [diff] [blame] | 394 | opc, ".w\t$src, $addr", |
David Goodwin | bab5da1 | 2009-06-30 22:11:34 +0000 | [diff] [blame] | 395 | [(opnode GPR:$src, t2addrmode_so_reg:$addr)]>; |
| 396 | } |
| 397 | |
David Goodwin | 5811e5c | 2009-07-01 00:01:13 +0000 | [diff] [blame] | 398 | /// T2I_picld - Defines the PIC load pattern. |
| 399 | class T2I_picld<string opc, PatFrag opnode> : |
David Goodwin | 236ccb5 | 2009-08-19 18:00:44 +0000 | [diff] [blame] | 400 | T2I<(outs GPR:$dst), (ins addrmodepc:$addr), IIC_iLoadi, |
Evan Cheng | 08540a9 | 2009-10-27 00:08:59 +0000 | [diff] [blame] | 401 | !strconcat("\n${addr:label}:\n\t", opc), "\t$dst, $addr", |
David Goodwin | 5811e5c | 2009-07-01 00:01:13 +0000 | [diff] [blame] | 402 | [(set GPR:$dst, (opnode addrmodepc:$addr))]>; |
| 403 | |
| 404 | /// T2I_picst - Defines the PIC store pattern. |
| 405 | class T2I_picst<string opc, PatFrag opnode> : |
David Goodwin | 236ccb5 | 2009-08-19 18:00:44 +0000 | [diff] [blame] | 406 | T2I<(outs), (ins GPR:$src, addrmodepc:$addr), IIC_iStorer, |
Evan Cheng | 08540a9 | 2009-10-27 00:08:59 +0000 | [diff] [blame] | 407 | !strconcat("\n${addr:label}:\n\t", opc), "\t$src, $addr", |
David Goodwin | 5811e5c | 2009-07-01 00:01:13 +0000 | [diff] [blame] | 408 | [(opnode GPR:$src, addrmodepc:$addr)]>; |
| 409 | |
Evan Cheng | 0f994ed | 2009-07-03 01:43:10 +0000 | [diff] [blame] | 410 | |
| 411 | /// T2I_unary_rrot - A unary operation with two forms: one whose operand is a |
| 412 | /// register and one whose operand is a register rotated by 8/16/24. |
| 413 | multiclass T2I_unary_rrot<string opc, PatFrag opnode> { |
David Goodwin | 236ccb5 | 2009-08-19 18:00:44 +0000 | [diff] [blame] | 414 | def r : T2I<(outs GPR:$dst), (ins GPR:$src), IIC_iUNAr, |
Evan Cheng | 08540a9 | 2009-10-27 00:08:59 +0000 | [diff] [blame] | 415 | opc, ".w\t$dst, $src", |
David Goodwin | 236ccb5 | 2009-08-19 18:00:44 +0000 | [diff] [blame] | 416 | [(set GPR:$dst, (opnode GPR:$src))]>; |
| 417 | def r_rot : T2I<(outs GPR:$dst), (ins GPR:$src, i32imm:$rot), IIC_iUNAsi, |
Evan Cheng | 08540a9 | 2009-10-27 00:08:59 +0000 | [diff] [blame] | 418 | opc, ".w\t$dst, $src, ror $rot", |
David Goodwin | 236ccb5 | 2009-08-19 18:00:44 +0000 | [diff] [blame] | 419 | [(set GPR:$dst, (opnode (rotr GPR:$src, rot_imm:$rot)))]>; |
Evan Cheng | 0f994ed | 2009-07-03 01:43:10 +0000 | [diff] [blame] | 420 | } |
| 421 | |
| 422 | /// T2I_bin_rrot - A binary operation with two forms: one whose operand is a |
| 423 | /// register and one whose operand is a register rotated by 8/16/24. |
| 424 | multiclass T2I_bin_rrot<string opc, PatFrag opnode> { |
David Goodwin | 236ccb5 | 2009-08-19 18:00:44 +0000 | [diff] [blame] | 425 | def rr : T2I<(outs GPR:$dst), (ins GPR:$LHS, GPR:$RHS), IIC_iALUr, |
Evan Cheng | 08540a9 | 2009-10-27 00:08:59 +0000 | [diff] [blame] | 426 | opc, "\t$dst, $LHS, $RHS", |
Evan Cheng | 0f994ed | 2009-07-03 01:43:10 +0000 | [diff] [blame] | 427 | [(set GPR:$dst, (opnode GPR:$LHS, GPR:$RHS))]>; |
| 428 | def rr_rot : T2I<(outs GPR:$dst), (ins GPR:$LHS, GPR:$RHS, i32imm:$rot), |
Evan Cheng | 08540a9 | 2009-10-27 00:08:59 +0000 | [diff] [blame] | 429 | IIC_iALUsr, opc, "\t$dst, $LHS, $RHS, ror $rot", |
Evan Cheng | 0f994ed | 2009-07-03 01:43:10 +0000 | [diff] [blame] | 430 | [(set GPR:$dst, (opnode GPR:$LHS, |
| 431 | (rotr GPR:$RHS, rot_imm:$rot)))]>; |
| 432 | } |
| 433 | |
Anton Korobeynikov | ac869fc | 2009-06-17 18:13:58 +0000 | [diff] [blame] | 434 | //===----------------------------------------------------------------------===// |
Evan Cheng | 19bb7c7 | 2009-06-27 02:26:13 +0000 | [diff] [blame] | 435 | // Instructions |
| 436 | //===----------------------------------------------------------------------===// |
| 437 | |
| 438 | //===----------------------------------------------------------------------===// |
Evan Cheng | 4179970 | 2009-06-24 23:47:58 +0000 | [diff] [blame] | 439 | // Miscellaneous Instructions. |
| 440 | // |
| 441 | |
Evan Cheng | 4179970 | 2009-06-24 23:47:58 +0000 | [diff] [blame] | 442 | // LEApcrel - Load a pc-relative address into a register without offending the |
| 443 | // assembler. |
David Goodwin | 236ccb5 | 2009-08-19 18:00:44 +0000 | [diff] [blame] | 444 | def t2LEApcrel : T2XI<(outs GPR:$dst), (ins i32imm:$label, pred:$p), IIC_iALUi, |
Evan Cheng | 08540a9 | 2009-10-27 00:08:59 +0000 | [diff] [blame] | 445 | "adr$p.w\t$dst, #$label", []>; |
Evan Cheng | 4179970 | 2009-06-24 23:47:58 +0000 | [diff] [blame] | 446 | |
Evan Cheng | 3d92dfd | 2009-06-25 02:08:06 +0000 | [diff] [blame] | 447 | def t2LEApcrelJT : T2XI<(outs GPR:$dst), |
Bob Wilson | 30ff449 | 2009-08-21 21:58:55 +0000 | [diff] [blame] | 448 | (ins i32imm:$label, nohash_imm:$id, pred:$p), IIC_iALUi, |
Evan Cheng | 08540a9 | 2009-10-27 00:08:59 +0000 | [diff] [blame] | 449 | "adr$p.w\t$dst, #${label}_${id}", []>; |
Evan Cheng | 4179970 | 2009-06-24 23:47:58 +0000 | [diff] [blame] | 450 | |
Evan Cheng | 815c23a | 2009-08-07 00:34:42 +0000 | [diff] [blame] | 451 | // ADD r, sp, {so_imm|i12} |
David Goodwin | 236ccb5 | 2009-08-19 18:00:44 +0000 | [diff] [blame] | 452 | def t2ADDrSPi : T2sI<(outs GPR:$dst), (ins GPR:$sp, t2_so_imm:$imm), |
Evan Cheng | 08540a9 | 2009-10-27 00:08:59 +0000 | [diff] [blame] | 453 | IIC_iALUi, "add", ".w\t$dst, $sp, $imm", []>; |
David Goodwin | 236ccb5 | 2009-08-19 18:00:44 +0000 | [diff] [blame] | 454 | def t2ADDrSPi12 : T2I<(outs GPR:$dst), (ins GPR:$sp, imm0_4095:$imm), |
Evan Cheng | 08540a9 | 2009-10-27 00:08:59 +0000 | [diff] [blame] | 455 | IIC_iALUi, "addw", "\t$dst, $sp, $imm", []>; |
Evan Cheng | 815c23a | 2009-08-07 00:34:42 +0000 | [diff] [blame] | 456 | |
| 457 | // ADD r, sp, so_reg |
David Goodwin | 236ccb5 | 2009-08-19 18:00:44 +0000 | [diff] [blame] | 458 | def t2ADDrSPs : T2sI<(outs GPR:$dst), (ins GPR:$sp, t2_so_reg:$rhs), |
Evan Cheng | 08540a9 | 2009-10-27 00:08:59 +0000 | [diff] [blame] | 459 | IIC_iALUsi, "add", ".w\t$dst, $sp, $rhs", []>; |
Evan Cheng | 815c23a | 2009-08-07 00:34:42 +0000 | [diff] [blame] | 460 | |
| 461 | // SUB r, sp, {so_imm|i12} |
David Goodwin | 236ccb5 | 2009-08-19 18:00:44 +0000 | [diff] [blame] | 462 | def t2SUBrSPi : T2sI<(outs GPR:$dst), (ins GPR:$sp, t2_so_imm:$imm), |
Evan Cheng | 08540a9 | 2009-10-27 00:08:59 +0000 | [diff] [blame] | 463 | IIC_iALUi, "sub", ".w\t$dst, $sp, $imm", []>; |
David Goodwin | 236ccb5 | 2009-08-19 18:00:44 +0000 | [diff] [blame] | 464 | def t2SUBrSPi12 : T2I<(outs GPR:$dst), (ins GPR:$sp, imm0_4095:$imm), |
Evan Cheng | 08540a9 | 2009-10-27 00:08:59 +0000 | [diff] [blame] | 465 | IIC_iALUi, "subw", "\t$dst, $sp, $imm", []>; |
Evan Cheng | 815c23a | 2009-08-07 00:34:42 +0000 | [diff] [blame] | 466 | |
| 467 | // SUB r, sp, so_reg |
David Goodwin | 236ccb5 | 2009-08-19 18:00:44 +0000 | [diff] [blame] | 468 | def t2SUBrSPs : T2sI<(outs GPR:$dst), (ins GPR:$sp, t2_so_reg:$rhs), |
| 469 | IIC_iALUsi, |
Evan Cheng | 08540a9 | 2009-10-27 00:08:59 +0000 | [diff] [blame] | 470 | "sub", "\t$dst, $sp, $rhs", []>; |
Evan Cheng | 815c23a | 2009-08-07 00:34:42 +0000 | [diff] [blame] | 471 | |
| 472 | |
| 473 | // Pseudo instruction that will expand into a t2SUBrSPi + a copy. |
Dan Gohman | 30afe01 | 2009-10-29 18:10:34 +0000 | [diff] [blame] | 474 | let usesCustomInserter = 1 in { // Expanded after instruction selection. |
Evan Cheng | 815c23a | 2009-08-07 00:34:42 +0000 | [diff] [blame] | 475 | def t2SUBrSPi_ : PseudoInst<(outs GPR:$dst), (ins GPR:$sp, t2_so_imm:$imm), |
Evan Cheng | 08540a9 | 2009-10-27 00:08:59 +0000 | [diff] [blame] | 476 | NoItinerary, "@ sub.w\t$dst, $sp, $imm", []>; |
Evan Cheng | 815c23a | 2009-08-07 00:34:42 +0000 | [diff] [blame] | 477 | def t2SUBrSPi12_ : PseudoInst<(outs GPR:$dst), (ins GPR:$sp, imm0_4095:$imm), |
Evan Cheng | 08540a9 | 2009-10-27 00:08:59 +0000 | [diff] [blame] | 478 | NoItinerary, "@ subw\t$dst, $sp, $imm", []>; |
Evan Cheng | 815c23a | 2009-08-07 00:34:42 +0000 | [diff] [blame] | 479 | def t2SUBrSPs_ : PseudoInst<(outs GPR:$dst), (ins GPR:$sp, t2_so_reg:$rhs), |
Evan Cheng | 08540a9 | 2009-10-27 00:08:59 +0000 | [diff] [blame] | 480 | NoItinerary, "@ sub\t$dst, $sp, $rhs", []>; |
Dan Gohman | 30afe01 | 2009-10-29 18:10:34 +0000 | [diff] [blame] | 481 | } // usesCustomInserter |
Evan Cheng | 815c23a | 2009-08-07 00:34:42 +0000 | [diff] [blame] | 482 | |
| 483 | |
Evan Cheng | 4179970 | 2009-06-24 23:47:58 +0000 | [diff] [blame] | 484 | //===----------------------------------------------------------------------===// |
Evan Cheng | 19bb7c7 | 2009-06-27 02:26:13 +0000 | [diff] [blame] | 485 | // Load / store Instructions. |
| 486 | // |
| 487 | |
Evan Cheng | 532cdc5 | 2009-06-29 07:51:04 +0000 | [diff] [blame] | 488 | // Load |
Evan Cheng | 2f6bfd4 | 2009-11-20 19:57:15 +0000 | [diff] [blame] | 489 | let canFoldAsLoad = 1, isReMaterializable = 1, mayHaveSideEffects = 1 in |
Evan Cheng | 503be11 | 2009-06-30 02:15:48 +0000 | [diff] [blame] | 490 | defm t2LDR : T2I_ld<"ldr", UnOpFrag<(load node:$Src)>>; |
Evan Cheng | 532cdc5 | 2009-06-29 07:51:04 +0000 | [diff] [blame] | 491 | |
Evan Cheng | 503be11 | 2009-06-30 02:15:48 +0000 | [diff] [blame] | 492 | // Loads with zero extension |
| 493 | defm t2LDRH : T2I_ld<"ldrh", UnOpFrag<(zextloadi16 node:$Src)>>; |
| 494 | defm t2LDRB : T2I_ld<"ldrb", UnOpFrag<(zextloadi8 node:$Src)>>; |
Evan Cheng | 532cdc5 | 2009-06-29 07:51:04 +0000 | [diff] [blame] | 495 | |
Evan Cheng | 503be11 | 2009-06-30 02:15:48 +0000 | [diff] [blame] | 496 | // Loads with sign extension |
| 497 | defm t2LDRSH : T2I_ld<"ldrsh", UnOpFrag<(sextloadi16 node:$Src)>>; |
| 498 | defm t2LDRSB : T2I_ld<"ldrsb", UnOpFrag<(sextloadi8 node:$Src)>>; |
Evan Cheng | 532cdc5 | 2009-06-29 07:51:04 +0000 | [diff] [blame] | 499 | |
Evan Cheng | 7c8d5ea | 2009-10-01 08:22:27 +0000 | [diff] [blame] | 500 | let mayLoad = 1, hasExtraDefRegAllocReq = 1 in { |
Evan Cheng | 503be11 | 2009-06-30 02:15:48 +0000 | [diff] [blame] | 501 | // Load doubleword |
Evan Cheng | 340684f | 2009-09-27 09:46:04 +0000 | [diff] [blame] | 502 | def t2LDRDi8 : T2Ii8s4<(outs GPR:$dst1, GPR:$dst2), |
| 503 | (ins t2addrmode_imm8s4:$addr), |
Evan Cheng | 08540a9 | 2009-10-27 00:08:59 +0000 | [diff] [blame] | 504 | IIC_iLoadi, "ldrd", "\t$dst1, $addr", []>; |
Evan Cheng | 340684f | 2009-09-27 09:46:04 +0000 | [diff] [blame] | 505 | def t2LDRDpci : T2Ii8s4<(outs GPR:$dst1, GPR:$dst2), |
| 506 | (ins i32imm:$addr), IIC_iLoadi, |
Evan Cheng | 08540a9 | 2009-10-27 00:08:59 +0000 | [diff] [blame] | 507 | "ldrd", "\t$dst1, $addr", []>; |
Evan Cheng | 503be11 | 2009-06-30 02:15:48 +0000 | [diff] [blame] | 508 | } |
| 509 | |
| 510 | // zextload i1 -> zextload i8 |
| 511 | def : T2Pat<(zextloadi1 t2addrmode_imm12:$addr), |
| 512 | (t2LDRBi12 t2addrmode_imm12:$addr)>; |
| 513 | def : T2Pat<(zextloadi1 t2addrmode_imm8:$addr), |
| 514 | (t2LDRBi8 t2addrmode_imm8:$addr)>; |
| 515 | def : T2Pat<(zextloadi1 t2addrmode_so_reg:$addr), |
| 516 | (t2LDRBs t2addrmode_so_reg:$addr)>; |
| 517 | def : T2Pat<(zextloadi1 (ARMWrapper tconstpool:$addr)), |
| 518 | (t2LDRBpci tconstpool:$addr)>; |
| 519 | |
| 520 | // extload -> zextload |
| 521 | // FIXME: Reduce the number of patterns by legalizing extload to zextload |
| 522 | // earlier? |
| 523 | def : T2Pat<(extloadi1 t2addrmode_imm12:$addr), |
| 524 | (t2LDRBi12 t2addrmode_imm12:$addr)>; |
| 525 | def : T2Pat<(extloadi1 t2addrmode_imm8:$addr), |
| 526 | (t2LDRBi8 t2addrmode_imm8:$addr)>; |
| 527 | def : T2Pat<(extloadi1 t2addrmode_so_reg:$addr), |
| 528 | (t2LDRBs t2addrmode_so_reg:$addr)>; |
| 529 | def : T2Pat<(extloadi1 (ARMWrapper tconstpool:$addr)), |
| 530 | (t2LDRBpci tconstpool:$addr)>; |
| 531 | |
| 532 | def : T2Pat<(extloadi8 t2addrmode_imm12:$addr), |
| 533 | (t2LDRBi12 t2addrmode_imm12:$addr)>; |
| 534 | def : T2Pat<(extloadi8 t2addrmode_imm8:$addr), |
| 535 | (t2LDRBi8 t2addrmode_imm8:$addr)>; |
| 536 | def : T2Pat<(extloadi8 t2addrmode_so_reg:$addr), |
| 537 | (t2LDRBs t2addrmode_so_reg:$addr)>; |
| 538 | def : T2Pat<(extloadi8 (ARMWrapper tconstpool:$addr)), |
| 539 | (t2LDRBpci tconstpool:$addr)>; |
| 540 | |
| 541 | def : T2Pat<(extloadi16 t2addrmode_imm12:$addr), |
| 542 | (t2LDRHi12 t2addrmode_imm12:$addr)>; |
| 543 | def : T2Pat<(extloadi16 t2addrmode_imm8:$addr), |
| 544 | (t2LDRHi8 t2addrmode_imm8:$addr)>; |
| 545 | def : T2Pat<(extloadi16 t2addrmode_so_reg:$addr), |
| 546 | (t2LDRHs t2addrmode_so_reg:$addr)>; |
| 547 | def : T2Pat<(extloadi16 (ARMWrapper tconstpool:$addr)), |
| 548 | (t2LDRHpci tconstpool:$addr)>; |
Evan Cheng | 532cdc5 | 2009-06-29 07:51:04 +0000 | [diff] [blame] | 549 | |
Evan Cheng | a90942e | 2009-07-02 07:28:31 +0000 | [diff] [blame] | 550 | // Indexed loads |
Evan Cheng | d72edde | 2009-07-03 00:08:19 +0000 | [diff] [blame] | 551 | let mayLoad = 1 in { |
Evan Cheng | a90942e | 2009-07-02 07:28:31 +0000 | [diff] [blame] | 552 | def t2LDR_PRE : T2Iidxldst<(outs GPR:$dst, GPR:$base_wb), |
| 553 | (ins t2addrmode_imm8:$addr), |
David Goodwin | 236ccb5 | 2009-08-19 18:00:44 +0000 | [diff] [blame] | 554 | AddrModeT2_i8, IndexModePre, IIC_iLoadiu, |
Evan Cheng | 08540a9 | 2009-10-27 00:08:59 +0000 | [diff] [blame] | 555 | "ldr", "\t$dst, $addr!", "$addr.base = $base_wb", |
Evan Cheng | a90942e | 2009-07-02 07:28:31 +0000 | [diff] [blame] | 556 | []>; |
| 557 | |
| 558 | def t2LDR_POST : T2Iidxldst<(outs GPR:$dst, GPR:$base_wb), |
| 559 | (ins GPR:$base, t2am_imm8_offset:$offset), |
David Goodwin | 236ccb5 | 2009-08-19 18:00:44 +0000 | [diff] [blame] | 560 | AddrModeT2_i8, IndexModePost, IIC_iLoadiu, |
Evan Cheng | 08540a9 | 2009-10-27 00:08:59 +0000 | [diff] [blame] | 561 | "ldr", "\t$dst, [$base], $offset", "$base = $base_wb", |
Evan Cheng | a90942e | 2009-07-02 07:28:31 +0000 | [diff] [blame] | 562 | []>; |
| 563 | |
| 564 | def t2LDRB_PRE : T2Iidxldst<(outs GPR:$dst, GPR:$base_wb), |
| 565 | (ins t2addrmode_imm8:$addr), |
David Goodwin | 236ccb5 | 2009-08-19 18:00:44 +0000 | [diff] [blame] | 566 | AddrModeT2_i8, IndexModePre, IIC_iLoadiu, |
Evan Cheng | 08540a9 | 2009-10-27 00:08:59 +0000 | [diff] [blame] | 567 | "ldrb", "\t$dst, $addr!", "$addr.base = $base_wb", |
Evan Cheng | a90942e | 2009-07-02 07:28:31 +0000 | [diff] [blame] | 568 | []>; |
| 569 | def t2LDRB_POST : T2Iidxldst<(outs GPR:$dst, GPR:$base_wb), |
| 570 | (ins GPR:$base, t2am_imm8_offset:$offset), |
David Goodwin | 236ccb5 | 2009-08-19 18:00:44 +0000 | [diff] [blame] | 571 | AddrModeT2_i8, IndexModePost, IIC_iLoadiu, |
Evan Cheng | 08540a9 | 2009-10-27 00:08:59 +0000 | [diff] [blame] | 572 | "ldrb", "\t$dst, [$base], $offset", "$base = $base_wb", |
Evan Cheng | a90942e | 2009-07-02 07:28:31 +0000 | [diff] [blame] | 573 | []>; |
| 574 | |
| 575 | def t2LDRH_PRE : T2Iidxldst<(outs GPR:$dst, GPR:$base_wb), |
| 576 | (ins t2addrmode_imm8:$addr), |
David Goodwin | 236ccb5 | 2009-08-19 18:00:44 +0000 | [diff] [blame] | 577 | AddrModeT2_i8, IndexModePre, IIC_iLoadiu, |
Evan Cheng | 08540a9 | 2009-10-27 00:08:59 +0000 | [diff] [blame] | 578 | "ldrh", "\t$dst, $addr!", "$addr.base = $base_wb", |
Evan Cheng | a90942e | 2009-07-02 07:28:31 +0000 | [diff] [blame] | 579 | []>; |
| 580 | def t2LDRH_POST : T2Iidxldst<(outs GPR:$dst, GPR:$base_wb), |
| 581 | (ins GPR:$base, t2am_imm8_offset:$offset), |
David Goodwin | 236ccb5 | 2009-08-19 18:00:44 +0000 | [diff] [blame] | 582 | AddrModeT2_i8, IndexModePost, IIC_iLoadiu, |
Evan Cheng | 08540a9 | 2009-10-27 00:08:59 +0000 | [diff] [blame] | 583 | "ldrh", "\t$dst, [$base], $offset", "$base = $base_wb", |
Evan Cheng | a90942e | 2009-07-02 07:28:31 +0000 | [diff] [blame] | 584 | []>; |
| 585 | |
Evan Cheng | 40995c9 | 2009-07-02 23:16:11 +0000 | [diff] [blame] | 586 | def t2LDRSB_PRE : T2Iidxldst<(outs GPR:$dst, GPR:$base_wb), |
| 587 | (ins t2addrmode_imm8:$addr), |
David Goodwin | 236ccb5 | 2009-08-19 18:00:44 +0000 | [diff] [blame] | 588 | AddrModeT2_i8, IndexModePre, IIC_iLoadiu, |
Evan Cheng | 08540a9 | 2009-10-27 00:08:59 +0000 | [diff] [blame] | 589 | "ldrsb", "\t$dst, $addr!", "$addr.base = $base_wb", |
Evan Cheng | 40995c9 | 2009-07-02 23:16:11 +0000 | [diff] [blame] | 590 | []>; |
| 591 | def t2LDRSB_POST : T2Iidxldst<(outs GPR:$dst, GPR:$base_wb), |
| 592 | (ins GPR:$base, t2am_imm8_offset:$offset), |
David Goodwin | 236ccb5 | 2009-08-19 18:00:44 +0000 | [diff] [blame] | 593 | AddrModeT2_i8, IndexModePost, IIC_iLoadiu, |
Evan Cheng | 08540a9 | 2009-10-27 00:08:59 +0000 | [diff] [blame] | 594 | "ldrsb", "\t$dst, [$base], $offset", "$base = $base_wb", |
Evan Cheng | 40995c9 | 2009-07-02 23:16:11 +0000 | [diff] [blame] | 595 | []>; |
| 596 | |
| 597 | def t2LDRSH_PRE : T2Iidxldst<(outs GPR:$dst, GPR:$base_wb), |
| 598 | (ins t2addrmode_imm8:$addr), |
David Goodwin | 236ccb5 | 2009-08-19 18:00:44 +0000 | [diff] [blame] | 599 | AddrModeT2_i8, IndexModePre, IIC_iLoadiu, |
Evan Cheng | 08540a9 | 2009-10-27 00:08:59 +0000 | [diff] [blame] | 600 | "ldrsh", "\t$dst, $addr!", "$addr.base = $base_wb", |
Evan Cheng | 40995c9 | 2009-07-02 23:16:11 +0000 | [diff] [blame] | 601 | []>; |
| 602 | def t2LDRSH_POST : T2Iidxldst<(outs GPR:$dst, GPR:$base_wb), |
| 603 | (ins GPR:$base, t2am_imm8_offset:$offset), |
David Goodwin | 236ccb5 | 2009-08-19 18:00:44 +0000 | [diff] [blame] | 604 | AddrModeT2_i8, IndexModePost, IIC_iLoadiu, |
Evan Cheng | 08540a9 | 2009-10-27 00:08:59 +0000 | [diff] [blame] | 605 | "ldrsh", "\t$dst, [$base], $offset", "$base = $base_wb", |
Evan Cheng | 40995c9 | 2009-07-02 23:16:11 +0000 | [diff] [blame] | 606 | []>; |
Evan Cheng | d72edde | 2009-07-03 00:08:19 +0000 | [diff] [blame] | 607 | } |
Evan Cheng | 40995c9 | 2009-07-02 23:16:11 +0000 | [diff] [blame] | 608 | |
David Goodwin | bab5da1 | 2009-06-30 22:11:34 +0000 | [diff] [blame] | 609 | // Store |
Evan Cheng | a90942e | 2009-07-02 07:28:31 +0000 | [diff] [blame] | 610 | defm t2STR : T2I_st<"str", BinOpFrag<(store node:$LHS, node:$RHS)>>; |
| 611 | defm t2STRB : T2I_st<"strb", BinOpFrag<(truncstorei8 node:$LHS, node:$RHS)>>; |
| 612 | defm t2STRH : T2I_st<"strh", BinOpFrag<(truncstorei16 node:$LHS, node:$RHS)>>; |
David Goodwin | bab5da1 | 2009-06-30 22:11:34 +0000 | [diff] [blame] | 613 | |
David Goodwin | 2af7ed8 | 2009-06-30 22:50:01 +0000 | [diff] [blame] | 614 | // Store doubleword |
Evan Cheng | 7c8d5ea | 2009-10-01 08:22:27 +0000 | [diff] [blame] | 615 | let mayLoad = 1, hasExtraSrcRegAllocReq = 1 in |
Evan Cheng | 340684f | 2009-09-27 09:46:04 +0000 | [diff] [blame] | 616 | def t2STRDi8 : T2Ii8s4<(outs), |
| 617 | (ins GPR:$src1, GPR:$src2, t2addrmode_imm8s4:$addr), |
Evan Cheng | 08540a9 | 2009-10-27 00:08:59 +0000 | [diff] [blame] | 618 | IIC_iStorer, "strd", "\t$src1, $addr", []>; |
David Goodwin | 2af7ed8 | 2009-06-30 22:50:01 +0000 | [diff] [blame] | 619 | |
Evan Cheng | 24f87d8 | 2009-07-03 00:06:39 +0000 | [diff] [blame] | 620 | // Indexed stores |
| 621 | def t2STR_PRE : T2Iidxldst<(outs GPR:$base_wb), |
| 622 | (ins GPR:$src, GPR:$base, t2am_imm8_offset:$offset), |
David Goodwin | 236ccb5 | 2009-08-19 18:00:44 +0000 | [diff] [blame] | 623 | AddrModeT2_i8, IndexModePre, IIC_iStoreiu, |
Evan Cheng | 08540a9 | 2009-10-27 00:08:59 +0000 | [diff] [blame] | 624 | "str", "\t$src, [$base, $offset]!", "$base = $base_wb", |
Evan Cheng | 24f87d8 | 2009-07-03 00:06:39 +0000 | [diff] [blame] | 625 | [(set GPR:$base_wb, |
| 626 | (pre_store GPR:$src, GPR:$base, t2am_imm8_offset:$offset))]>; |
| 627 | |
| 628 | def t2STR_POST : T2Iidxldst<(outs GPR:$base_wb), |
| 629 | (ins GPR:$src, GPR:$base, t2am_imm8_offset:$offset), |
David Goodwin | 236ccb5 | 2009-08-19 18:00:44 +0000 | [diff] [blame] | 630 | AddrModeT2_i8, IndexModePost, IIC_iStoreiu, |
Evan Cheng | 08540a9 | 2009-10-27 00:08:59 +0000 | [diff] [blame] | 631 | "str", "\t$src, [$base], $offset", "$base = $base_wb", |
Evan Cheng | 24f87d8 | 2009-07-03 00:06:39 +0000 | [diff] [blame] | 632 | [(set GPR:$base_wb, |
Jim Grosbach | 71465ac | 2009-11-24 00:20:27 +0000 | [diff] [blame] | 633 | (post_store GPR:$src, GPR:$base, t2am_imm8_offset:$offset))]>; |
Evan Cheng | 24f87d8 | 2009-07-03 00:06:39 +0000 | [diff] [blame] | 634 | |
| 635 | def t2STRH_PRE : T2Iidxldst<(outs GPR:$base_wb), |
| 636 | (ins GPR:$src, GPR:$base, t2am_imm8_offset:$offset), |
David Goodwin | 236ccb5 | 2009-08-19 18:00:44 +0000 | [diff] [blame] | 637 | AddrModeT2_i8, IndexModePre, IIC_iStoreiu, |
Evan Cheng | 08540a9 | 2009-10-27 00:08:59 +0000 | [diff] [blame] | 638 | "strh", "\t$src, [$base, $offset]!", "$base = $base_wb", |
Evan Cheng | 24f87d8 | 2009-07-03 00:06:39 +0000 | [diff] [blame] | 639 | [(set GPR:$base_wb, |
| 640 | (pre_truncsti16 GPR:$src, GPR:$base, t2am_imm8_offset:$offset))]>; |
| 641 | |
| 642 | def t2STRH_POST : T2Iidxldst<(outs GPR:$base_wb), |
| 643 | (ins GPR:$src, GPR:$base, t2am_imm8_offset:$offset), |
David Goodwin | 236ccb5 | 2009-08-19 18:00:44 +0000 | [diff] [blame] | 644 | AddrModeT2_i8, IndexModePost, IIC_iStoreiu, |
Evan Cheng | 08540a9 | 2009-10-27 00:08:59 +0000 | [diff] [blame] | 645 | "strh", "\t$src, [$base], $offset", "$base = $base_wb", |
Evan Cheng | 24f87d8 | 2009-07-03 00:06:39 +0000 | [diff] [blame] | 646 | [(set GPR:$base_wb, |
| 647 | (post_truncsti16 GPR:$src, GPR:$base, t2am_imm8_offset:$offset))]>; |
| 648 | |
| 649 | def t2STRB_PRE : T2Iidxldst<(outs GPR:$base_wb), |
| 650 | (ins GPR:$src, GPR:$base, t2am_imm8_offset:$offset), |
David Goodwin | 236ccb5 | 2009-08-19 18:00:44 +0000 | [diff] [blame] | 651 | AddrModeT2_i8, IndexModePre, IIC_iStoreiu, |
Evan Cheng | 08540a9 | 2009-10-27 00:08:59 +0000 | [diff] [blame] | 652 | "strb", "\t$src, [$base, $offset]!", "$base = $base_wb", |
Evan Cheng | 24f87d8 | 2009-07-03 00:06:39 +0000 | [diff] [blame] | 653 | [(set GPR:$base_wb, |
| 654 | (pre_truncsti8 GPR:$src, GPR:$base, t2am_imm8_offset:$offset))]>; |
| 655 | |
| 656 | def t2STRB_POST : T2Iidxldst<(outs GPR:$base_wb), |
| 657 | (ins GPR:$src, GPR:$base, t2am_imm8_offset:$offset), |
David Goodwin | 236ccb5 | 2009-08-19 18:00:44 +0000 | [diff] [blame] | 658 | AddrModeT2_i8, IndexModePost, IIC_iStoreiu, |
Evan Cheng | 08540a9 | 2009-10-27 00:08:59 +0000 | [diff] [blame] | 659 | "strb", "\t$src, [$base], $offset", "$base = $base_wb", |
Evan Cheng | 24f87d8 | 2009-07-03 00:06:39 +0000 | [diff] [blame] | 660 | [(set GPR:$base_wb, |
| 661 | (post_truncsti8 GPR:$src, GPR:$base, t2am_imm8_offset:$offset))]>; |
| 662 | |
David Goodwin | 5811e5c | 2009-07-01 00:01:13 +0000 | [diff] [blame] | 663 | |
Evan Cheng | 6bc6720 | 2009-07-09 22:21:59 +0000 | [diff] [blame] | 664 | // FIXME: ldrd / strd pre / post variants |
Evan Cheng | 2832edf | 2009-07-03 00:18:36 +0000 | [diff] [blame] | 665 | |
| 666 | //===----------------------------------------------------------------------===// |
| 667 | // Load / store multiple Instructions. |
| 668 | // |
| 669 | |
Evan Cheng | 7c8d5ea | 2009-10-01 08:22:27 +0000 | [diff] [blame] | 670 | let mayLoad = 1, hasExtraDefRegAllocReq = 1 in |
Evan Cheng | 2832edf | 2009-07-03 00:18:36 +0000 | [diff] [blame] | 671 | def t2LDM : T2XI<(outs), |
Evan Cheng | b43a20e | 2009-10-01 01:33:39 +0000 | [diff] [blame] | 672 | (ins addrmode4:$addr, pred:$p, reglist:$wb, variable_ops), |
Evan Cheng | 08540a9 | 2009-10-27 00:08:59 +0000 | [diff] [blame] | 673 | IIC_iLoadm, "ldm${addr:submode}${p}${addr:wide}\t$addr, $wb", []>; |
Evan Cheng | 2832edf | 2009-07-03 00:18:36 +0000 | [diff] [blame] | 674 | |
Evan Cheng | 7c8d5ea | 2009-10-01 08:22:27 +0000 | [diff] [blame] | 675 | let mayStore = 1, hasExtraSrcRegAllocReq = 1 in |
Evan Cheng | 2832edf | 2009-07-03 00:18:36 +0000 | [diff] [blame] | 676 | def t2STM : T2XI<(outs), |
Evan Cheng | b43a20e | 2009-10-01 01:33:39 +0000 | [diff] [blame] | 677 | (ins addrmode4:$addr, pred:$p, reglist:$wb, variable_ops), |
Evan Cheng | 08540a9 | 2009-10-27 00:08:59 +0000 | [diff] [blame] | 678 | IIC_iStorem, "stm${addr:submode}${p}${addr:wide}\t$addr, $wb", []>; |
Evan Cheng | 2832edf | 2009-07-03 00:18:36 +0000 | [diff] [blame] | 679 | |
Evan Cheng | 19bb7c7 | 2009-06-27 02:26:13 +0000 | [diff] [blame] | 680 | //===----------------------------------------------------------------------===// |
Anton Korobeynikov | ac869fc | 2009-06-17 18:13:58 +0000 | [diff] [blame] | 681 | // Move Instructions. |
| 682 | // |
Anton Korobeynikov | ac869fc | 2009-06-17 18:13:58 +0000 | [diff] [blame] | 683 | |
Evan Cheng | 3617371 | 2009-06-23 17:48:47 +0000 | [diff] [blame] | 684 | let neverHasSideEffects = 1 in |
David Goodwin | 236ccb5 | 2009-08-19 18:00:44 +0000 | [diff] [blame] | 685 | def t2MOVr : T2sI<(outs GPR:$dst), (ins GPR:$src), IIC_iMOVr, |
Evan Cheng | 08540a9 | 2009-10-27 00:08:59 +0000 | [diff] [blame] | 686 | "mov", ".w\t$dst, $src", []>; |
Evan Cheng | 3617371 | 2009-06-23 17:48:47 +0000 | [diff] [blame] | 687 | |
Evan Cheng | 16c012d | 2009-09-28 09:14:39 +0000 | [diff] [blame] | 688 | // AddedComplexity to ensure isel tries t2MOVi before t2MOVi16. |
| 689 | let isReMaterializable = 1, isAsCheapAsAMove = 1, AddedComplexity = 1 in |
David Goodwin | 236ccb5 | 2009-08-19 18:00:44 +0000 | [diff] [blame] | 690 | def t2MOVi : T2sI<(outs GPR:$dst), (ins t2_so_imm:$src), IIC_iMOVi, |
Evan Cheng | 08540a9 | 2009-10-27 00:08:59 +0000 | [diff] [blame] | 691 | "mov", ".w\t$dst, $src", |
David Goodwin | 2dbffd4 | 2009-06-26 16:10:07 +0000 | [diff] [blame] | 692 | [(set GPR:$dst, t2_so_imm:$src)]>; |
| 693 | |
| 694 | let isReMaterializable = 1, isAsCheapAsAMove = 1 in |
David Goodwin | 236ccb5 | 2009-08-19 18:00:44 +0000 | [diff] [blame] | 695 | def t2MOVi16 : T2I<(outs GPR:$dst), (ins i32imm:$src), IIC_iMOVi, |
Evan Cheng | 08540a9 | 2009-10-27 00:08:59 +0000 | [diff] [blame] | 696 | "movw", "\t$dst, $src", |
David Goodwin | 2dbffd4 | 2009-06-26 16:10:07 +0000 | [diff] [blame] | 697 | [(set GPR:$dst, imm0_65535:$src)]>; |
Evan Cheng | 3617371 | 2009-06-23 17:48:47 +0000 | [diff] [blame] | 698 | |
Evan Cheng | 42e6ce9 | 2009-06-23 05:23:49 +0000 | [diff] [blame] | 699 | let Constraints = "$src = $dst" in |
Evan Cheng | 16c012d | 2009-09-28 09:14:39 +0000 | [diff] [blame] | 700 | def t2MOVTi16 : T2I<(outs GPR:$dst), (ins GPR:$src, i32imm:$imm), IIC_iMOVi, |
Evan Cheng | 08540a9 | 2009-10-27 00:08:59 +0000 | [diff] [blame] | 701 | "movt", "\t$dst, $imm", |
Evan Cheng | 16c012d | 2009-09-28 09:14:39 +0000 | [diff] [blame] | 702 | [(set GPR:$dst, |
| 703 | (or (and GPR:$src, 0xffff), lo16AllZero:$imm))]>; |
Anton Korobeynikov | ac869fc | 2009-06-17 18:13:58 +0000 | [diff] [blame] | 704 | |
Evan Cheng | 89ef285 | 2009-10-21 08:15:52 +0000 | [diff] [blame] | 705 | def : T2Pat<(or GPR:$src, 0xffff0000), (t2MOVTi16 GPR:$src, 0xffff)>; |
| 706 | |
Anton Korobeynikov | ac869fc | 2009-06-17 18:13:58 +0000 | [diff] [blame] | 707 | //===----------------------------------------------------------------------===// |
Evan Cheng | 0f994ed | 2009-07-03 01:43:10 +0000 | [diff] [blame] | 708 | // Extend Instructions. |
| 709 | // |
| 710 | |
| 711 | // Sign extenders |
| 712 | |
| 713 | defm t2SXTB : T2I_unary_rrot<"sxtb", UnOpFrag<(sext_inreg node:$Src, i8)>>; |
| 714 | defm t2SXTH : T2I_unary_rrot<"sxth", UnOpFrag<(sext_inreg node:$Src, i16)>>; |
| 715 | |
| 716 | defm t2SXTAB : T2I_bin_rrot<"sxtab", |
| 717 | BinOpFrag<(add node:$LHS, (sext_inreg node:$RHS, i8))>>; |
| 718 | defm t2SXTAH : T2I_bin_rrot<"sxtah", |
| 719 | BinOpFrag<(add node:$LHS, (sext_inreg node:$RHS,i16))>>; |
| 720 | |
| 721 | // TODO: SXT(A){B|H}16 |
| 722 | |
| 723 | // Zero extenders |
| 724 | |
| 725 | let AddedComplexity = 16 in { |
| 726 | defm t2UXTB : T2I_unary_rrot<"uxtb" , UnOpFrag<(and node:$Src, 0x000000FF)>>; |
| 727 | defm t2UXTH : T2I_unary_rrot<"uxth" , UnOpFrag<(and node:$Src, 0x0000FFFF)>>; |
| 728 | defm t2UXTB16 : T2I_unary_rrot<"uxtb16", UnOpFrag<(and node:$Src, 0x00FF00FF)>>; |
| 729 | |
| 730 | def : T2Pat<(and (shl GPR:$Src, (i32 8)), 0xFF00FF), |
| 731 | (t2UXTB16r_rot GPR:$Src, 24)>; |
| 732 | def : T2Pat<(and (srl GPR:$Src, (i32 8)), 0xFF00FF), |
| 733 | (t2UXTB16r_rot GPR:$Src, 8)>; |
| 734 | |
| 735 | defm t2UXTAB : T2I_bin_rrot<"uxtab", |
Jim Grosbach | 71465ac | 2009-11-24 00:20:27 +0000 | [diff] [blame] | 736 | BinOpFrag<(add node:$LHS, (and node:$RHS, 0x00FF))>>; |
Evan Cheng | 0f994ed | 2009-07-03 01:43:10 +0000 | [diff] [blame] | 737 | defm t2UXTAH : T2I_bin_rrot<"uxtah", |
Jim Grosbach | 71465ac | 2009-11-24 00:20:27 +0000 | [diff] [blame] | 738 | BinOpFrag<(add node:$LHS, (and node:$RHS, 0xFFFF))>>; |
Evan Cheng | 0f994ed | 2009-07-03 01:43:10 +0000 | [diff] [blame] | 739 | } |
| 740 | |
| 741 | //===----------------------------------------------------------------------===// |
Anton Korobeynikov | ac869fc | 2009-06-17 18:13:58 +0000 | [diff] [blame] | 742 | // Arithmetic Instructions. |
| 743 | // |
Anton Korobeynikov | ac869fc | 2009-06-17 18:13:58 +0000 | [diff] [blame] | 744 | |
Evan Cheng | bdd679a | 2009-06-26 00:19:44 +0000 | [diff] [blame] | 745 | defm t2ADD : T2I_bin_ii12rs<"add", BinOpFrag<(add node:$LHS, node:$RHS)>, 1>; |
Evan Cheng | f7f986d | 2009-06-23 19:39:13 +0000 | [diff] [blame] | 746 | defm t2SUB : T2I_bin_ii12rs<"sub", BinOpFrag<(sub node:$LHS, node:$RHS)>>; |
Anton Korobeynikov | ac869fc | 2009-06-17 18:13:58 +0000 | [diff] [blame] | 747 | |
Evan Cheng | 3617371 | 2009-06-23 17:48:47 +0000 | [diff] [blame] | 748 | // ADD and SUB with 's' bit set. No 12-bit immediate (T4) variants. |
Evan Cheng | bdd679a | 2009-06-26 00:19:44 +0000 | [diff] [blame] | 749 | defm t2ADDS : T2I_bin_s_irs <"add", BinOpFrag<(addc node:$LHS, node:$RHS)>, 1>; |
Evan Cheng | d4e2f05 | 2009-06-25 20:59:23 +0000 | [diff] [blame] | 750 | defm t2SUBS : T2I_bin_s_irs <"sub", BinOpFrag<(subc node:$LHS, node:$RHS)>>; |
Anton Korobeynikov | ac869fc | 2009-06-17 18:13:58 +0000 | [diff] [blame] | 751 | |
Evan Cheng | bdd679a | 2009-06-26 00:19:44 +0000 | [diff] [blame] | 752 | defm t2ADC : T2I_adde_sube_irs<"adc",BinOpFrag<(adde node:$LHS, node:$RHS)>,1>; |
| 753 | defm t2SBC : T2I_adde_sube_irs<"sbc",BinOpFrag<(sube node:$LHS, node:$RHS)>>; |
Evan Cheng | 3617371 | 2009-06-23 17:48:47 +0000 | [diff] [blame] | 754 | |
David Goodwin | 3bc1afe | 2009-07-27 16:39:05 +0000 | [diff] [blame] | 755 | // RSB |
Evan Cheng | d4e2f05 | 2009-06-25 20:59:23 +0000 | [diff] [blame] | 756 | defm t2RSB : T2I_rbin_is <"rsb", BinOpFrag<(sub node:$LHS, node:$RHS)>>; |
| 757 | defm t2RSBS : T2I_rbin_s_is <"rsb", BinOpFrag<(subc node:$LHS, node:$RHS)>>; |
Evan Cheng | 3617371 | 2009-06-23 17:48:47 +0000 | [diff] [blame] | 758 | |
| 759 | // (sub X, imm) gets canonicalized to (add X, -imm). Match this form. |
Evan Cheng | 809fadb | 2009-08-04 01:41:15 +0000 | [diff] [blame] | 760 | let AddedComplexity = 1 in |
| 761 | def : T2Pat<(add GPR:$src, imm0_255_neg:$imm), |
| 762 | (t2SUBri GPR:$src, imm0_255_neg:$imm)>; |
Evan Cheng | 19bb7c7 | 2009-06-27 02:26:13 +0000 | [diff] [blame] | 763 | def : T2Pat<(add GPR:$src, t2_so_imm_neg:$imm), |
| 764 | (t2SUBri GPR:$src, t2_so_imm_neg:$imm)>; |
| 765 | def : T2Pat<(add GPR:$src, imm0_4095_neg:$imm), |
| 766 | (t2SUBri12 GPR:$src, imm0_4095_neg:$imm)>; |
Anton Korobeynikov | ac869fc | 2009-06-17 18:13:58 +0000 | [diff] [blame] | 767 | |
| 768 | |
Evan Cheng | 3617371 | 2009-06-23 17:48:47 +0000 | [diff] [blame] | 769 | //===----------------------------------------------------------------------===// |
Evan Cheng | f7f986d | 2009-06-23 19:39:13 +0000 | [diff] [blame] | 770 | // Shift and rotate Instructions. |
| 771 | // |
| 772 | |
| 773 | defm t2LSL : T2I_sh_ir<"lsl", BinOpFrag<(shl node:$LHS, node:$RHS)>>; |
| 774 | defm t2LSR : T2I_sh_ir<"lsr", BinOpFrag<(srl node:$LHS, node:$RHS)>>; |
| 775 | defm t2ASR : T2I_sh_ir<"asr", BinOpFrag<(sra node:$LHS, node:$RHS)>>; |
| 776 | defm t2ROR : T2I_sh_ir<"ror", BinOpFrag<(rotr node:$LHS, node:$RHS)>>; |
| 777 | |
David Goodwin | 02b0e35 | 2009-09-01 18:32:09 +0000 | [diff] [blame] | 778 | let Uses = [CPSR] in { |
David Goodwin | 236ccb5 | 2009-08-19 18:00:44 +0000 | [diff] [blame] | 779 | def t2MOVrx : T2sI<(outs GPR:$dst), (ins GPR:$src), IIC_iMOVsi, |
Evan Cheng | 08540a9 | 2009-10-27 00:08:59 +0000 | [diff] [blame] | 780 | "rrx", "\t$dst, $src", |
Evan Cheng | 3d92dfd | 2009-06-25 02:08:06 +0000 | [diff] [blame] | 781 | [(set GPR:$dst, (ARMrrx GPR:$src))]>; |
David Goodwin | 02b0e35 | 2009-09-01 18:32:09 +0000 | [diff] [blame] | 782 | } |
Evan Cheng | f7f986d | 2009-06-23 19:39:13 +0000 | [diff] [blame] | 783 | |
David Goodwin | 7cdd24c | 2009-07-28 17:06:49 +0000 | [diff] [blame] | 784 | let Defs = [CPSR] in { |
David Goodwin | 236ccb5 | 2009-08-19 18:00:44 +0000 | [diff] [blame] | 785 | def t2MOVsrl_flag : T2XI<(outs GPR:$dst), (ins GPR:$src), IIC_iMOVsi, |
Evan Cheng | 08540a9 | 2009-10-27 00:08:59 +0000 | [diff] [blame] | 786 | "lsrs.w\t$dst, $src, #1", |
David Goodwin | 7cdd24c | 2009-07-28 17:06:49 +0000 | [diff] [blame] | 787 | [(set GPR:$dst, (ARMsrl_flag GPR:$src))]>; |
David Goodwin | 236ccb5 | 2009-08-19 18:00:44 +0000 | [diff] [blame] | 788 | def t2MOVsra_flag : T2XI<(outs GPR:$dst), (ins GPR:$src), IIC_iMOVsi, |
Evan Cheng | 08540a9 | 2009-10-27 00:08:59 +0000 | [diff] [blame] | 789 | "asrs.w\t$dst, $src, #1", |
David Goodwin | 7cdd24c | 2009-07-28 17:06:49 +0000 | [diff] [blame] | 790 | [(set GPR:$dst, (ARMsra_flag GPR:$src))]>; |
| 791 | } |
| 792 | |
Evan Cheng | f7f986d | 2009-06-23 19:39:13 +0000 | [diff] [blame] | 793 | //===----------------------------------------------------------------------===// |
Evan Cheng | 3617371 | 2009-06-23 17:48:47 +0000 | [diff] [blame] | 794 | // Bitwise Instructions. |
| 795 | // |
Anton Korobeynikov | ac869fc | 2009-06-17 18:13:58 +0000 | [diff] [blame] | 796 | |
David Goodwin | 87affb9 | 2009-07-27 23:34:12 +0000 | [diff] [blame] | 797 | defm t2AND : T2I_bin_w_irs<"and", BinOpFrag<(and node:$LHS, node:$RHS)>, 1>; |
| 798 | defm t2ORR : T2I_bin_w_irs<"orr", BinOpFrag<(or node:$LHS, node:$RHS)>, 1>; |
| 799 | defm t2EOR : T2I_bin_w_irs<"eor", BinOpFrag<(xor node:$LHS, node:$RHS)>, 1>; |
Evan Cheng | 3617371 | 2009-06-23 17:48:47 +0000 | [diff] [blame] | 800 | |
David Goodwin | 87affb9 | 2009-07-27 23:34:12 +0000 | [diff] [blame] | 801 | defm t2BIC : T2I_bin_w_irs<"bic", BinOpFrag<(and node:$LHS, (not node:$RHS))>>; |
Evan Cheng | 3617371 | 2009-06-23 17:48:47 +0000 | [diff] [blame] | 802 | |
Evan Cheng | 3617371 | 2009-06-23 17:48:47 +0000 | [diff] [blame] | 803 | let Constraints = "$src = $dst" in |
David Goodwin | 236ccb5 | 2009-08-19 18:00:44 +0000 | [diff] [blame] | 804 | def t2BFC : T2I<(outs GPR:$dst), (ins GPR:$src, bf_inv_mask_imm:$imm), |
David Goodwin | 9a8ec82 | 2009-11-02 17:28:36 +0000 | [diff] [blame] | 805 | IIC_iUNAsi, "bfc", "\t$dst, $imm", |
Evan Cheng | 3617371 | 2009-06-23 17:48:47 +0000 | [diff] [blame] | 806 | [(set GPR:$dst, (and GPR:$src, bf_inv_mask_imm:$imm))]>; |
| 807 | |
Sandeep Patel | bb4648a | 2009-10-13 18:59:48 +0000 | [diff] [blame] | 808 | def t2SBFX : T2I<(outs GPR:$dst), (ins GPR:$src, imm0_31:$lsb, imm0_31:$width), |
Evan Cheng | 08540a9 | 2009-10-27 00:08:59 +0000 | [diff] [blame] | 809 | IIC_iALUi, "sbfx", "\t$dst, $src, $lsb, $width", []>; |
Sandeep Patel | bb4648a | 2009-10-13 18:59:48 +0000 | [diff] [blame] | 810 | |
| 811 | def t2UBFX : T2I<(outs GPR:$dst), (ins GPR:$src, imm0_31:$lsb, imm0_31:$width), |
Evan Cheng | 08540a9 | 2009-10-27 00:08:59 +0000 | [diff] [blame] | 812 | IIC_iALUi, "ubfx", "\t$dst, $src, $lsb, $width", []>; |
Sandeep Patel | bb4648a | 2009-10-13 18:59:48 +0000 | [diff] [blame] | 813 | |
Evan Cheng | 3617371 | 2009-06-23 17:48:47 +0000 | [diff] [blame] | 814 | // FIXME: A8.6.18 BFI - Bitfield insert (Encoding T1) |
| 815 | |
David Goodwin | 481216a | 2009-07-30 21:51:41 +0000 | [diff] [blame] | 816 | defm t2ORN : T2I_bin_irs<"orn", BinOpFrag<(or node:$LHS, (not node:$RHS))>>; |
Evan Cheng | 299ee65 | 2009-07-06 22:23:46 +0000 | [diff] [blame] | 817 | |
| 818 | // Prefer over of t2EORri ra, rb, -1 because mvn has 16-bit version |
| 819 | let AddedComplexity = 1 in |
| 820 | defm t2MVN : T2I_un_irs <"mvn", UnOpFrag<(not node:$Src)>, 1, 1>; |
| 821 | |
| 822 | |
| 823 | def : T2Pat<(and GPR:$src, t2_so_imm_not:$imm), |
| 824 | (t2BICri GPR:$src, t2_so_imm_not:$imm)>; |
| 825 | |
Evan Cheng | 04f40fa | 2009-08-01 06:13:52 +0000 | [diff] [blame] | 826 | // FIXME: Disable this pattern on Darwin to workaround an assembler bug. |
David Goodwin | 481216a | 2009-07-30 21:51:41 +0000 | [diff] [blame] | 827 | def : T2Pat<(or GPR:$src, t2_so_imm_not:$imm), |
Evan Cheng | 04f40fa | 2009-08-01 06:13:52 +0000 | [diff] [blame] | 828 | (t2ORNri GPR:$src, t2_so_imm_not:$imm)>, |
Evan Cheng | f9e5b5e | 2009-08-12 01:56:42 +0000 | [diff] [blame] | 829 | Requires<[IsThumb2]>; |
Evan Cheng | 299ee65 | 2009-07-06 22:23:46 +0000 | [diff] [blame] | 830 | |
| 831 | def : T2Pat<(t2_so_imm_not:$src), |
| 832 | (t2MVNi t2_so_imm_not:$src)>; |
| 833 | |
Evan Cheng | 3617371 | 2009-06-23 17:48:47 +0000 | [diff] [blame] | 834 | //===----------------------------------------------------------------------===// |
| 835 | // Multiply Instructions. |
| 836 | // |
Evan Cheng | bdd679a | 2009-06-26 00:19:44 +0000 | [diff] [blame] | 837 | let isCommutable = 1 in |
David Goodwin | 236ccb5 | 2009-08-19 18:00:44 +0000 | [diff] [blame] | 838 | def t2MUL: T2I<(outs GPR:$dst), (ins GPR:$a, GPR:$b), IIC_iMUL32, |
Evan Cheng | 08540a9 | 2009-10-27 00:08:59 +0000 | [diff] [blame] | 839 | "mul", "\t$dst, $a, $b", |
Evan Cheng | 3617371 | 2009-06-23 17:48:47 +0000 | [diff] [blame] | 840 | [(set GPR:$dst, (mul GPR:$a, GPR:$b))]>; |
| 841 | |
David Goodwin | 236ccb5 | 2009-08-19 18:00:44 +0000 | [diff] [blame] | 842 | def t2MLA: T2I<(outs GPR:$dst), (ins GPR:$a, GPR:$b, GPR:$c), IIC_iMAC32, |
Evan Cheng | 08540a9 | 2009-10-27 00:08:59 +0000 | [diff] [blame] | 843 | "mla", "\t$dst, $a, $b, $c", |
Evan Cheng | 3617371 | 2009-06-23 17:48:47 +0000 | [diff] [blame] | 844 | [(set GPR:$dst, (add (mul GPR:$a, GPR:$b), GPR:$c))]>; |
| 845 | |
David Goodwin | 236ccb5 | 2009-08-19 18:00:44 +0000 | [diff] [blame] | 846 | def t2MLS: T2I<(outs GPR:$dst), (ins GPR:$a, GPR:$b, GPR:$c), IIC_iMAC32, |
Evan Cheng | 08540a9 | 2009-10-27 00:08:59 +0000 | [diff] [blame] | 847 | "mls", "\t$dst, $a, $b, $c", |
Evan Cheng | 3617371 | 2009-06-23 17:48:47 +0000 | [diff] [blame] | 848 | [(set GPR:$dst, (sub GPR:$c, (mul GPR:$a, GPR:$b)))]>; |
| 849 | |
Evan Cheng | a562626 | 2009-07-07 01:17:28 +0000 | [diff] [blame] | 850 | // Extra precision multiplies with low / high results |
| 851 | let neverHasSideEffects = 1 in { |
| 852 | let isCommutable = 1 in { |
David Goodwin | 236ccb5 | 2009-08-19 18:00:44 +0000 | [diff] [blame] | 853 | def t2SMULL : T2I<(outs GPR:$ldst, GPR:$hdst), (ins GPR:$a, GPR:$b), IIC_iMUL64, |
Evan Cheng | 08540a9 | 2009-10-27 00:08:59 +0000 | [diff] [blame] | 854 | "smull", "\t$ldst, $hdst, $a, $b", []>; |
Evan Cheng | a562626 | 2009-07-07 01:17:28 +0000 | [diff] [blame] | 855 | |
David Goodwin | 236ccb5 | 2009-08-19 18:00:44 +0000 | [diff] [blame] | 856 | def t2UMULL : T2I<(outs GPR:$ldst, GPR:$hdst), (ins GPR:$a, GPR:$b), IIC_iMUL64, |
Evan Cheng | 08540a9 | 2009-10-27 00:08:59 +0000 | [diff] [blame] | 857 | "umull", "\t$ldst, $hdst, $a, $b", []>; |
Evan Cheng | a562626 | 2009-07-07 01:17:28 +0000 | [diff] [blame] | 858 | } |
| 859 | |
| 860 | // Multiply + accumulate |
David Goodwin | 236ccb5 | 2009-08-19 18:00:44 +0000 | [diff] [blame] | 861 | def t2SMLAL : T2I<(outs GPR:$ldst, GPR:$hdst), (ins GPR:$a, GPR:$b), IIC_iMAC64, |
Evan Cheng | 08540a9 | 2009-10-27 00:08:59 +0000 | [diff] [blame] | 862 | "smlal", "\t$ldst, $hdst, $a, $b", []>; |
Evan Cheng | a562626 | 2009-07-07 01:17:28 +0000 | [diff] [blame] | 863 | |
David Goodwin | 236ccb5 | 2009-08-19 18:00:44 +0000 | [diff] [blame] | 864 | def t2UMLAL : T2I<(outs GPR:$ldst, GPR:$hdst), (ins GPR:$a, GPR:$b), IIC_iMAC64, |
Evan Cheng | 08540a9 | 2009-10-27 00:08:59 +0000 | [diff] [blame] | 865 | "umlal", "\t$ldst, $hdst, $a, $b", []>; |
Evan Cheng | a562626 | 2009-07-07 01:17:28 +0000 | [diff] [blame] | 866 | |
David Goodwin | 236ccb5 | 2009-08-19 18:00:44 +0000 | [diff] [blame] | 867 | def t2UMAAL : T2I<(outs GPR:$ldst, GPR:$hdst), (ins GPR:$a, GPR:$b), IIC_iMAC64, |
Evan Cheng | 08540a9 | 2009-10-27 00:08:59 +0000 | [diff] [blame] | 868 | "umaal", "\t$ldst, $hdst, $a, $b", []>; |
Evan Cheng | a562626 | 2009-07-07 01:17:28 +0000 | [diff] [blame] | 869 | } // neverHasSideEffects |
| 870 | |
| 871 | // Most significant word multiply |
David Goodwin | 236ccb5 | 2009-08-19 18:00:44 +0000 | [diff] [blame] | 872 | def t2SMMUL : T2I<(outs GPR:$dst), (ins GPR:$a, GPR:$b), IIC_iMUL32, |
Evan Cheng | 08540a9 | 2009-10-27 00:08:59 +0000 | [diff] [blame] | 873 | "smmul", "\t$dst, $a, $b", |
Evan Cheng | a562626 | 2009-07-07 01:17:28 +0000 | [diff] [blame] | 874 | [(set GPR:$dst, (mulhs GPR:$a, GPR:$b))]>; |
| 875 | |
David Goodwin | 236ccb5 | 2009-08-19 18:00:44 +0000 | [diff] [blame] | 876 | def t2SMMLA : T2I<(outs GPR:$dst), (ins GPR:$a, GPR:$b, GPR:$c), IIC_iMAC32, |
Evan Cheng | 08540a9 | 2009-10-27 00:08:59 +0000 | [diff] [blame] | 877 | "smmla", "\t$dst, $a, $b, $c", |
Evan Cheng | a562626 | 2009-07-07 01:17:28 +0000 | [diff] [blame] | 878 | [(set GPR:$dst, (add (mulhs GPR:$a, GPR:$b), GPR:$c))]>; |
| 879 | |
| 880 | |
David Goodwin | 236ccb5 | 2009-08-19 18:00:44 +0000 | [diff] [blame] | 881 | def t2SMMLS : T2I <(outs GPR:$dst), (ins GPR:$a, GPR:$b, GPR:$c), IIC_iMAC32, |
Evan Cheng | 08540a9 | 2009-10-27 00:08:59 +0000 | [diff] [blame] | 882 | "smmls", "\t$dst, $a, $b, $c", |
Evan Cheng | a562626 | 2009-07-07 01:17:28 +0000 | [diff] [blame] | 883 | [(set GPR:$dst, (sub GPR:$c, (mulhs GPR:$a, GPR:$b)))]>; |
| 884 | |
| 885 | multiclass T2I_smul<string opc, PatFrag opnode> { |
David Goodwin | 236ccb5 | 2009-08-19 18:00:44 +0000 | [diff] [blame] | 886 | def BB : T2I<(outs GPR:$dst), (ins GPR:$a, GPR:$b), IIC_iMUL32, |
Evan Cheng | 08540a9 | 2009-10-27 00:08:59 +0000 | [diff] [blame] | 887 | !strconcat(opc, "bb"), "\t$dst, $a, $b", |
Evan Cheng | a562626 | 2009-07-07 01:17:28 +0000 | [diff] [blame] | 888 | [(set GPR:$dst, (opnode (sext_inreg GPR:$a, i16), |
| 889 | (sext_inreg GPR:$b, i16)))]>; |
| 890 | |
David Goodwin | 236ccb5 | 2009-08-19 18:00:44 +0000 | [diff] [blame] | 891 | def BT : T2I<(outs GPR:$dst), (ins GPR:$a, GPR:$b), IIC_iMUL32, |
Evan Cheng | 08540a9 | 2009-10-27 00:08:59 +0000 | [diff] [blame] | 892 | !strconcat(opc, "bt"), "\t$dst, $a, $b", |
Evan Cheng | a562626 | 2009-07-07 01:17:28 +0000 | [diff] [blame] | 893 | [(set GPR:$dst, (opnode (sext_inreg GPR:$a, i16), |
| 894 | (sra GPR:$b, (i32 16))))]>; |
| 895 | |
David Goodwin | 236ccb5 | 2009-08-19 18:00:44 +0000 | [diff] [blame] | 896 | def TB : T2I<(outs GPR:$dst), (ins GPR:$a, GPR:$b), IIC_iMUL32, |
Evan Cheng | 08540a9 | 2009-10-27 00:08:59 +0000 | [diff] [blame] | 897 | !strconcat(opc, "tb"), "\t$dst, $a, $b", |
Evan Cheng | a562626 | 2009-07-07 01:17:28 +0000 | [diff] [blame] | 898 | [(set GPR:$dst, (opnode (sra GPR:$a, (i32 16)), |
| 899 | (sext_inreg GPR:$b, i16)))]>; |
| 900 | |
David Goodwin | 236ccb5 | 2009-08-19 18:00:44 +0000 | [diff] [blame] | 901 | def TT : T2I<(outs GPR:$dst), (ins GPR:$a, GPR:$b), IIC_iMUL32, |
Evan Cheng | 08540a9 | 2009-10-27 00:08:59 +0000 | [diff] [blame] | 902 | !strconcat(opc, "tt"), "\t$dst, $a, $b", |
Evan Cheng | a562626 | 2009-07-07 01:17:28 +0000 | [diff] [blame] | 903 | [(set GPR:$dst, (opnode (sra GPR:$a, (i32 16)), |
| 904 | (sra GPR:$b, (i32 16))))]>; |
| 905 | |
David Goodwin | 236ccb5 | 2009-08-19 18:00:44 +0000 | [diff] [blame] | 906 | def WB : T2I<(outs GPR:$dst), (ins GPR:$a, GPR:$b), IIC_iMUL16, |
Evan Cheng | 08540a9 | 2009-10-27 00:08:59 +0000 | [diff] [blame] | 907 | !strconcat(opc, "wb"), "\t$dst, $a, $b", |
Evan Cheng | a562626 | 2009-07-07 01:17:28 +0000 | [diff] [blame] | 908 | [(set GPR:$dst, (sra (opnode GPR:$a, |
| 909 | (sext_inreg GPR:$b, i16)), (i32 16)))]>; |
| 910 | |
David Goodwin | 236ccb5 | 2009-08-19 18:00:44 +0000 | [diff] [blame] | 911 | def WT : T2I<(outs GPR:$dst), (ins GPR:$a, GPR:$b), IIC_iMUL16, |
Evan Cheng | 08540a9 | 2009-10-27 00:08:59 +0000 | [diff] [blame] | 912 | !strconcat(opc, "wt"), "\t$dst, $a, $b", |
Evan Cheng | a562626 | 2009-07-07 01:17:28 +0000 | [diff] [blame] | 913 | [(set GPR:$dst, (sra (opnode GPR:$a, |
| 914 | (sra GPR:$b, (i32 16))), (i32 16)))]>; |
| 915 | } |
| 916 | |
| 917 | |
| 918 | multiclass T2I_smla<string opc, PatFrag opnode> { |
David Goodwin | 236ccb5 | 2009-08-19 18:00:44 +0000 | [diff] [blame] | 919 | def BB : T2I<(outs GPR:$dst), (ins GPR:$a, GPR:$b, GPR:$acc), IIC_iMAC16, |
Evan Cheng | 08540a9 | 2009-10-27 00:08:59 +0000 | [diff] [blame] | 920 | !strconcat(opc, "bb"), "\t$dst, $a, $b, $acc", |
Evan Cheng | a562626 | 2009-07-07 01:17:28 +0000 | [diff] [blame] | 921 | [(set GPR:$dst, (add GPR:$acc, |
| 922 | (opnode (sext_inreg GPR:$a, i16), |
| 923 | (sext_inreg GPR:$b, i16))))]>; |
| 924 | |
David Goodwin | 236ccb5 | 2009-08-19 18:00:44 +0000 | [diff] [blame] | 925 | def BT : T2I<(outs GPR:$dst), (ins GPR:$a, GPR:$b, GPR:$acc), IIC_iMAC16, |
Evan Cheng | 08540a9 | 2009-10-27 00:08:59 +0000 | [diff] [blame] | 926 | !strconcat(opc, "bt"), "\t$dst, $a, $b, $acc", |
Evan Cheng | a562626 | 2009-07-07 01:17:28 +0000 | [diff] [blame] | 927 | [(set GPR:$dst, (add GPR:$acc, (opnode (sext_inreg GPR:$a, i16), |
| 928 | (sra GPR:$b, (i32 16)))))]>; |
| 929 | |
David Goodwin | 236ccb5 | 2009-08-19 18:00:44 +0000 | [diff] [blame] | 930 | def TB : T2I<(outs GPR:$dst), (ins GPR:$a, GPR:$b, GPR:$acc), IIC_iMAC16, |
Evan Cheng | 08540a9 | 2009-10-27 00:08:59 +0000 | [diff] [blame] | 931 | !strconcat(opc, "tb"), "\t$dst, $a, $b, $acc", |
Evan Cheng | a562626 | 2009-07-07 01:17:28 +0000 | [diff] [blame] | 932 | [(set GPR:$dst, (add GPR:$acc, (opnode (sra GPR:$a, (i32 16)), |
| 933 | (sext_inreg GPR:$b, i16))))]>; |
| 934 | |
David Goodwin | 236ccb5 | 2009-08-19 18:00:44 +0000 | [diff] [blame] | 935 | def TT : T2I<(outs GPR:$dst), (ins GPR:$a, GPR:$b, GPR:$acc), IIC_iMAC16, |
Evan Cheng | 08540a9 | 2009-10-27 00:08:59 +0000 | [diff] [blame] | 936 | !strconcat(opc, "tt"), "\t$dst, $a, $b, $acc", |
Evan Cheng | a562626 | 2009-07-07 01:17:28 +0000 | [diff] [blame] | 937 | [(set GPR:$dst, (add GPR:$acc, (opnode (sra GPR:$a, (i32 16)), |
| 938 | (sra GPR:$b, (i32 16)))))]>; |
| 939 | |
David Goodwin | 236ccb5 | 2009-08-19 18:00:44 +0000 | [diff] [blame] | 940 | def WB : T2I<(outs GPR:$dst), (ins GPR:$a, GPR:$b, GPR:$acc), IIC_iMAC16, |
Evan Cheng | 08540a9 | 2009-10-27 00:08:59 +0000 | [diff] [blame] | 941 | !strconcat(opc, "wb"), "\t$dst, $a, $b, $acc", |
Evan Cheng | a562626 | 2009-07-07 01:17:28 +0000 | [diff] [blame] | 942 | [(set GPR:$dst, (add GPR:$acc, (sra (opnode GPR:$a, |
| 943 | (sext_inreg GPR:$b, i16)), (i32 16))))]>; |
| 944 | |
David Goodwin | 236ccb5 | 2009-08-19 18:00:44 +0000 | [diff] [blame] | 945 | def WT : T2I<(outs GPR:$dst), (ins GPR:$a, GPR:$b, GPR:$acc), IIC_iMAC16, |
Evan Cheng | 08540a9 | 2009-10-27 00:08:59 +0000 | [diff] [blame] | 946 | !strconcat(opc, "wt"), "\t$dst, $a, $b, $acc", |
Evan Cheng | a562626 | 2009-07-07 01:17:28 +0000 | [diff] [blame] | 947 | [(set GPR:$dst, (add GPR:$acc, (sra (opnode GPR:$a, |
| 948 | (sra GPR:$b, (i32 16))), (i32 16))))]>; |
| 949 | } |
| 950 | |
| 951 | defm t2SMUL : T2I_smul<"smul", BinOpFrag<(mul node:$LHS, node:$RHS)>>; |
| 952 | defm t2SMLA : T2I_smla<"smla", BinOpFrag<(mul node:$LHS, node:$RHS)>>; |
| 953 | |
| 954 | // TODO: Halfword multiple accumulate long: SMLAL<x><y> |
| 955 | // TODO: Dual halfword multiple: SMUAD, SMUSD, SMLAD, SMLSD, SMLALD, SMLSLD |
| 956 | |
Evan Cheng | 3617371 | 2009-06-23 17:48:47 +0000 | [diff] [blame] | 957 | |
| 958 | //===----------------------------------------------------------------------===// |
| 959 | // Misc. Arithmetic Instructions. |
| 960 | // |
| 961 | |
David Goodwin | 236ccb5 | 2009-08-19 18:00:44 +0000 | [diff] [blame] | 962 | def t2CLZ : T2I<(outs GPR:$dst), (ins GPR:$src), IIC_iUNAr, |
Evan Cheng | 08540a9 | 2009-10-27 00:08:59 +0000 | [diff] [blame] | 963 | "clz", "\t$dst, $src", |
Evan Cheng | 3617371 | 2009-06-23 17:48:47 +0000 | [diff] [blame] | 964 | [(set GPR:$dst, (ctlz GPR:$src))]>; |
| 965 | |
David Goodwin | 236ccb5 | 2009-08-19 18:00:44 +0000 | [diff] [blame] | 966 | def t2REV : T2I<(outs GPR:$dst), (ins GPR:$src), IIC_iUNAr, |
Evan Cheng | 08540a9 | 2009-10-27 00:08:59 +0000 | [diff] [blame] | 967 | "rev", ".w\t$dst, $src", |
Evan Cheng | 3617371 | 2009-06-23 17:48:47 +0000 | [diff] [blame] | 968 | [(set GPR:$dst, (bswap GPR:$src))]>; |
| 969 | |
David Goodwin | 236ccb5 | 2009-08-19 18:00:44 +0000 | [diff] [blame] | 970 | def t2REV16 : T2I<(outs GPR:$dst), (ins GPR:$src), IIC_iUNAr, |
Evan Cheng | 08540a9 | 2009-10-27 00:08:59 +0000 | [diff] [blame] | 971 | "rev16", ".w\t$dst, $src", |
Evan Cheng | 3617371 | 2009-06-23 17:48:47 +0000 | [diff] [blame] | 972 | [(set GPR:$dst, |
| 973 | (or (and (srl GPR:$src, (i32 8)), 0xFF), |
| 974 | (or (and (shl GPR:$src, (i32 8)), 0xFF00), |
| 975 | (or (and (srl GPR:$src, (i32 8)), 0xFF0000), |
| 976 | (and (shl GPR:$src, (i32 8)), 0xFF000000)))))]>; |
| 977 | |
David Goodwin | 236ccb5 | 2009-08-19 18:00:44 +0000 | [diff] [blame] | 978 | def t2REVSH : T2I<(outs GPR:$dst), (ins GPR:$src), IIC_iUNAr, |
Evan Cheng | 08540a9 | 2009-10-27 00:08:59 +0000 | [diff] [blame] | 979 | "revsh", ".w\t$dst, $src", |
Evan Cheng | 3617371 | 2009-06-23 17:48:47 +0000 | [diff] [blame] | 980 | [(set GPR:$dst, |
| 981 | (sext_inreg |
Evan Cheng | b4c98a3 | 2009-08-18 05:43:23 +0000 | [diff] [blame] | 982 | (or (srl (and GPR:$src, 0xFF00), (i32 8)), |
Evan Cheng | 3617371 | 2009-06-23 17:48:47 +0000 | [diff] [blame] | 983 | (shl GPR:$src, (i32 8))), i16))]>; |
| 984 | |
Evan Cheng | cd0ae28 | 2009-07-07 05:35:52 +0000 | [diff] [blame] | 985 | def t2PKHBT : T2I<(outs GPR:$dst), (ins GPR:$src1, GPR:$src2, i32imm:$shamt), |
Evan Cheng | 08540a9 | 2009-10-27 00:08:59 +0000 | [diff] [blame] | 986 | IIC_iALUsi, "pkhbt", "\t$dst, $src1, $src2, LSL $shamt", |
Evan Cheng | cd0ae28 | 2009-07-07 05:35:52 +0000 | [diff] [blame] | 987 | [(set GPR:$dst, (or (and GPR:$src1, 0xFFFF), |
| 988 | (and (shl GPR:$src2, (i32 imm:$shamt)), |
| 989 | 0xFFFF0000)))]>; |
| 990 | |
| 991 | // Alternate cases for PKHBT where identities eliminate some nodes. |
| 992 | def : T2Pat<(or (and GPR:$src1, 0xFFFF), (and GPR:$src2, 0xFFFF0000)), |
| 993 | (t2PKHBT GPR:$src1, GPR:$src2, 0)>; |
| 994 | def : T2Pat<(or (and GPR:$src1, 0xFFFF), (shl GPR:$src2, imm16_31:$shamt)), |
| 995 | (t2PKHBT GPR:$src1, GPR:$src2, imm16_31:$shamt)>; |
| 996 | |
| 997 | def t2PKHTB : T2I<(outs GPR:$dst), (ins GPR:$src1, GPR:$src2, i32imm:$shamt), |
Evan Cheng | 08540a9 | 2009-10-27 00:08:59 +0000 | [diff] [blame] | 998 | IIC_iALUsi, "pkhtb", "\t$dst, $src1, $src2, ASR $shamt", |
Evan Cheng | cd0ae28 | 2009-07-07 05:35:52 +0000 | [diff] [blame] | 999 | [(set GPR:$dst, (or (and GPR:$src1, 0xFFFF0000), |
| 1000 | (and (sra GPR:$src2, imm16_31:$shamt), |
| 1001 | 0xFFFF)))]>; |
| 1002 | |
| 1003 | // Alternate cases for PKHTB where identities eliminate some nodes. Note that |
| 1004 | // a shift amount of 0 is *not legal* here, it is PKHBT instead. |
| 1005 | def : T2Pat<(or (and GPR:$src1, 0xFFFF0000), (srl GPR:$src2, (i32 16))), |
| 1006 | (t2PKHTB GPR:$src1, GPR:$src2, 16)>; |
| 1007 | def : T2Pat<(or (and GPR:$src1, 0xFFFF0000), |
| 1008 | (and (srl GPR:$src2, imm1_15:$shamt), 0xFFFF)), |
| 1009 | (t2PKHTB GPR:$src1, GPR:$src2, imm1_15:$shamt)>; |
Evan Cheng | 3617371 | 2009-06-23 17:48:47 +0000 | [diff] [blame] | 1010 | |
| 1011 | //===----------------------------------------------------------------------===// |
| 1012 | // Comparison Instructions... |
| 1013 | // |
| 1014 | |
Evan Cheng | 6dadbee | 2009-08-10 02:37:24 +0000 | [diff] [blame] | 1015 | defm t2CMP : T2I_cmp_is<"cmp", |
| 1016 | BinOpFrag<(ARMcmp node:$LHS, node:$RHS)>>; |
David Goodwin | 8bdcbb3 | 2009-06-29 15:33:01 +0000 | [diff] [blame] | 1017 | defm t2CMPz : T2I_cmp_is<"cmp", |
| 1018 | BinOpFrag<(ARMcmpZ node:$LHS, node:$RHS)>>; |
Evan Cheng | 3617371 | 2009-06-23 17:48:47 +0000 | [diff] [blame] | 1019 | |
Evan Cheng | 6dadbee | 2009-08-10 02:37:24 +0000 | [diff] [blame] | 1020 | defm t2CMN : T2I_cmp_is<"cmn", |
| 1021 | BinOpFrag<(ARMcmp node:$LHS,(ineg node:$RHS))>>; |
David Goodwin | 8bdcbb3 | 2009-06-29 15:33:01 +0000 | [diff] [blame] | 1022 | defm t2CMNz : T2I_cmp_is<"cmn", |
| 1023 | BinOpFrag<(ARMcmpZ node:$LHS,(ineg node:$RHS))>>; |
Evan Cheng | 3617371 | 2009-06-23 17:48:47 +0000 | [diff] [blame] | 1024 | |
Evan Cheng | 19bb7c7 | 2009-06-27 02:26:13 +0000 | [diff] [blame] | 1025 | def : T2Pat<(ARMcmp GPR:$src, t2_so_imm_neg:$imm), |
| 1026 | (t2CMNri GPR:$src, t2_so_imm_neg:$imm)>; |
Evan Cheng | 3617371 | 2009-06-23 17:48:47 +0000 | [diff] [blame] | 1027 | |
David Goodwin | 8bdcbb3 | 2009-06-29 15:33:01 +0000 | [diff] [blame] | 1028 | def : T2Pat<(ARMcmpZ GPR:$src, t2_so_imm_neg:$imm), |
Evan Cheng | 19bb7c7 | 2009-06-27 02:26:13 +0000 | [diff] [blame] | 1029 | (t2CMNri GPR:$src, t2_so_imm_neg:$imm)>; |
Evan Cheng | 3617371 | 2009-06-23 17:48:47 +0000 | [diff] [blame] | 1030 | |
David Goodwin | ec52c89 | 2009-06-29 22:49:42 +0000 | [diff] [blame] | 1031 | defm t2TST : T2I_cmp_is<"tst", |
| 1032 | BinOpFrag<(ARMcmpZ (and node:$LHS, node:$RHS), 0)>>; |
| 1033 | defm t2TEQ : T2I_cmp_is<"teq", |
| 1034 | BinOpFrag<(ARMcmpZ (xor node:$LHS, node:$RHS), 0)>>; |
Evan Cheng | 3617371 | 2009-06-23 17:48:47 +0000 | [diff] [blame] | 1035 | |
| 1036 | // A8.6.27 CBNZ, CBZ - Compare and branch on (non)zero. |
| 1037 | // Short range conditional branch. Looks awesome for loops. Need to figure |
| 1038 | // out how to use this one. |
| 1039 | |
Evan Cheng | 0313767 | 2009-07-07 20:39:03 +0000 | [diff] [blame] | 1040 | |
| 1041 | // Conditional moves |
| 1042 | // FIXME: should be able to write a pattern for ARMcmov, but can't use |
| 1043 | // a two-value operand where a dag node expects two operands. :( |
David Goodwin | 236ccb5 | 2009-08-19 18:00:44 +0000 | [diff] [blame] | 1044 | def t2MOVCCr : T2I<(outs GPR:$dst), (ins GPR:$false, GPR:$true), IIC_iCMOVr, |
Evan Cheng | 08540a9 | 2009-10-27 00:08:59 +0000 | [diff] [blame] | 1045 | "mov", ".w\t$dst, $true", |
Evan Cheng | 0313767 | 2009-07-07 20:39:03 +0000 | [diff] [blame] | 1046 | [/*(set GPR:$dst, (ARMcmov GPR:$false, GPR:$true, imm:$cc, CCR:$ccr))*/]>, |
| 1047 | RegConstraint<"$false = $dst">; |
| 1048 | |
David Goodwin | 236ccb5 | 2009-08-19 18:00:44 +0000 | [diff] [blame] | 1049 | def t2MOVCCi : T2I<(outs GPR:$dst), (ins GPR:$false, t2_so_imm:$true), |
Evan Cheng | 08540a9 | 2009-10-27 00:08:59 +0000 | [diff] [blame] | 1050 | IIC_iCMOVi, "mov", ".w\t$dst, $true", |
Evan Cheng | 0313767 | 2009-07-07 20:39:03 +0000 | [diff] [blame] | 1051 | [/*(set GPR:$dst, (ARMcmov GPR:$false, t2_so_imm:$true, imm:$cc, CCR:$ccr))*/]>, |
| 1052 | RegConstraint<"$false = $dst">; |
Evan Cheng | 3617371 | 2009-06-23 17:48:47 +0000 | [diff] [blame] | 1053 | |
Evan Cheng | 7c002f3 | 2009-08-01 01:43:45 +0000 | [diff] [blame] | 1054 | def t2MOVCClsl : T2I<(outs GPR:$dst), (ins GPR:$false, GPR:$true, i32imm:$rhs), |
Evan Cheng | 08540a9 | 2009-10-27 00:08:59 +0000 | [diff] [blame] | 1055 | IIC_iCMOVsi, "lsl", ".w\t$dst, $true, $rhs", []>, |
Evan Cheng | 7c002f3 | 2009-08-01 01:43:45 +0000 | [diff] [blame] | 1056 | RegConstraint<"$false = $dst">; |
| 1057 | def t2MOVCClsr : T2I<(outs GPR:$dst), (ins GPR:$false, GPR:$true, i32imm:$rhs), |
Evan Cheng | 08540a9 | 2009-10-27 00:08:59 +0000 | [diff] [blame] | 1058 | IIC_iCMOVsi, "lsr", ".w\t$dst, $true, $rhs", []>, |
Evan Cheng | 7c002f3 | 2009-08-01 01:43:45 +0000 | [diff] [blame] | 1059 | RegConstraint<"$false = $dst">; |
| 1060 | def t2MOVCCasr : T2I<(outs GPR:$dst), (ins GPR:$false, GPR:$true, i32imm:$rhs), |
Evan Cheng | 08540a9 | 2009-10-27 00:08:59 +0000 | [diff] [blame] | 1061 | IIC_iCMOVsi, "asr", ".w\t$dst, $true, $rhs", []>, |
Evan Cheng | 7c002f3 | 2009-08-01 01:43:45 +0000 | [diff] [blame] | 1062 | RegConstraint<"$false = $dst">; |
| 1063 | def t2MOVCCror : T2I<(outs GPR:$dst), (ins GPR:$false, GPR:$true, i32imm:$rhs), |
Evan Cheng | 08540a9 | 2009-10-27 00:08:59 +0000 | [diff] [blame] | 1064 | IIC_iCMOVsi, "ror", ".w\t$dst, $true, $rhs", []>, |
Evan Cheng | 7c002f3 | 2009-08-01 01:43:45 +0000 | [diff] [blame] | 1065 | RegConstraint<"$false = $dst">; |
| 1066 | |
David Goodwin | f615470 | 2009-06-30 18:04:13 +0000 | [diff] [blame] | 1067 | //===----------------------------------------------------------------------===// |
Jim Grosbach | efbc1f0 | 2009-12-14 18:56:47 +0000 | [diff] [blame] | 1068 | // Atomic operations intrinsics |
| 1069 | // |
| 1070 | |
| 1071 | // memory barriers protect the atomic sequences |
| 1072 | let hasSideEffects = 1 in { |
| 1073 | def t2Int_MemBarrierV7 : AInoP<(outs), (ins), |
| 1074 | Pseudo, NoItinerary, |
| 1075 | "dmb", "", |
Jim Grosbach | 2d6e249 | 2009-12-14 19:24:11 +0000 | [diff] [blame^] | 1076 | [(ARMMemBarrier)]>, |
| 1077 | Requires<[IsThumb2]> { |
Jim Grosbach | efbc1f0 | 2009-12-14 18:56:47 +0000 | [diff] [blame] | 1078 | // FIXME: add support for options other than a full system DMB |
| 1079 | } |
| 1080 | |
| 1081 | def t2Int_SyncBarrierV7 : AInoP<(outs), (ins), |
| 1082 | Pseudo, NoItinerary, |
| 1083 | "dsb", "", |
Jim Grosbach | 2d6e249 | 2009-12-14 19:24:11 +0000 | [diff] [blame^] | 1084 | [(ARMSyncBarrier)]>, |
| 1085 | Requires<[IsThumb2]> { |
Jim Grosbach | efbc1f0 | 2009-12-14 18:56:47 +0000 | [diff] [blame] | 1086 | // FIXME: add support for options other than a full system DSB |
| 1087 | } |
| 1088 | } |
| 1089 | |
| 1090 | let mayLoad = 1 in { |
| 1091 | def t2LDREXB : Thumb2I<(outs GPR:$dest), (ins GPR:$ptr), AddrModeNone, |
| 1092 | Size4Bytes, NoItinerary, |
| 1093 | "ldrexb", "\t$dest, [$ptr]", "", |
| 1094 | []>; |
| 1095 | def t2LDREXH : Thumb2I<(outs GPR:$dest), (ins GPR:$ptr), AddrModeNone, |
| 1096 | Size4Bytes, NoItinerary, |
| 1097 | "ldrexh", "\t$dest, [$ptr]", "", |
| 1098 | []>; |
| 1099 | def t2LDREX : Thumb2I<(outs GPR:$dest), (ins GPR:$ptr), AddrModeNone, |
| 1100 | Size4Bytes, NoItinerary, |
| 1101 | "ldrex", "\t$dest, [$ptr]", "", |
| 1102 | []>; |
| 1103 | def t2LDREXD : Thumb2I<(outs GPR:$dest, GPR:$dest2), (ins GPR:$ptr), |
| 1104 | AddrModeNone, Size4Bytes, NoItinerary, |
| 1105 | "ldrexd", "\t$dest, $dest2, [$ptr]", "", |
| 1106 | []>; |
| 1107 | } |
| 1108 | |
| 1109 | let mayStore = 1 in { |
| 1110 | def t2STREXB : Thumb2I<(outs GPR:$success), (ins GPR:$src, GPR:$ptr), |
| 1111 | AddrModeNone, Size4Bytes, NoItinerary, |
| 1112 | "strexb", "\t$success, $src, [$ptr]", "", |
| 1113 | []>; |
| 1114 | def t2STREXH : Thumb2I<(outs GPR:$success), (ins GPR:$src, GPR:$ptr), |
| 1115 | AddrModeNone, Size4Bytes, NoItinerary, |
| 1116 | "strexh", "\t$success, $src, [$ptr]", "", |
| 1117 | []>; |
| 1118 | def t2STREX : Thumb2I<(outs GPR:$success), (ins GPR:$src, GPR:$ptr), |
| 1119 | AddrModeNone, Size4Bytes, NoItinerary, |
| 1120 | "strex", "\t$success, $src, [$ptr]", "", |
| 1121 | []>; |
| 1122 | def t2STREXD : Thumb2I<(outs GPR:$success), |
| 1123 | (ins GPR:$src, GPR:$src2, GPR:$ptr), |
| 1124 | AddrModeNone, Size4Bytes, NoItinerary, |
| 1125 | "strexd", "\t$success, $src, $src2, [$ptr]", "", |
| 1126 | []>; |
| 1127 | } |
| 1128 | |
| 1129 | //===----------------------------------------------------------------------===// |
David Goodwin | 41afec2 | 2009-07-08 16:09:28 +0000 | [diff] [blame] | 1130 | // TLS Instructions |
| 1131 | // |
| 1132 | |
| 1133 | // __aeabi_read_tp preserves the registers r1-r3. |
| 1134 | let isCall = 1, |
| 1135 | Defs = [R0, R12, LR, CPSR] in { |
David Goodwin | cfd6765 | 2009-08-06 16:52:47 +0000 | [diff] [blame] | 1136 | def t2TPsoft : T2XI<(outs), (ins), IIC_Br, |
Evan Cheng | 08540a9 | 2009-10-27 00:08:59 +0000 | [diff] [blame] | 1137 | "bl\t__aeabi_read_tp", |
David Goodwin | 41afec2 | 2009-07-08 16:09:28 +0000 | [diff] [blame] | 1138 | [(set R0, ARMthread_pointer)]>; |
| 1139 | } |
| 1140 | |
| 1141 | //===----------------------------------------------------------------------===// |
Jim Grosbach | cc6e66a | 2009-08-11 19:42:21 +0000 | [diff] [blame] | 1142 | // SJLJ Exception handling intrinsics |
Jim Grosbach | 207a4ba | 2009-08-13 15:11:43 +0000 | [diff] [blame] | 1143 | // eh_sjlj_setjmp() is an instruction sequence to store the return |
Jim Grosbach | cc6e66a | 2009-08-11 19:42:21 +0000 | [diff] [blame] | 1144 | // address and save #0 in R0 for the non-longjmp case. |
| 1145 | // Since by its nature we may be coming from some other function to get |
| 1146 | // here, and we're using the stack frame for the containing function to |
| 1147 | // save/restore registers, we can't keep anything live in regs across |
| 1148 | // the eh_sjlj_setjmp(), else it will almost certainly have been tromped upon |
| 1149 | // when we get here from a longjmp(). We force everthing out of registers |
| 1150 | // except for our own input by listing the relevant registers in Defs. By |
| 1151 | // doing so, we also cause the prologue/epilogue code to actively preserve |
| 1152 | // all of the callee-saved resgisters, which is exactly what we want. |
| 1153 | let Defs = |
Jim Grosbach | 3990e39 | 2009-08-13 16:59:44 +0000 | [diff] [blame] | 1154 | [ R0, R1, R2, R3, R4, R5, R6, R7, R8, R9, R10, R11, R12, LR, D0, |
| 1155 | D1, D2, D3, D4, D5, D6, D7, D8, D9, D10, D11, D12, D13, D14, D15, |
Jim Grosbach | cc6e66a | 2009-08-11 19:42:21 +0000 | [diff] [blame] | 1156 | D16, D17, D18, D19, D20, D21, D22, D23, D24, D25, D26, D27, D28, D29, D30, |
| 1157 | D31 ] in { |
| 1158 | def t2Int_eh_sjlj_setjmp : Thumb2XI<(outs), (ins GPR:$src), |
| 1159 | AddrModeNone, SizeSpecial, NoItinerary, |
Evan Cheng | 08540a9 | 2009-10-27 00:08:59 +0000 | [diff] [blame] | 1160 | "str.w\tsp, [$src, #+8] @ eh_setjmp begin\n" |
| 1161 | "\tadr\tr12, 0f\n" |
Evan Cheng | 276f816 | 2009-11-03 23:13:34 +0000 | [diff] [blame] | 1162 | "\torr.w\tr12, r12, #1\n" |
Evan Cheng | 08540a9 | 2009-10-27 00:08:59 +0000 | [diff] [blame] | 1163 | "\tstr.w\tr12, [$src, #+4]\n" |
| 1164 | "\tmovs\tr0, #0\n" |
| 1165 | "\tb\t1f\n" |
| 1166 | "0:\tmovs\tr0, #1 @ eh_setjmp end\n" |
Jim Grosbach | dd4f75b | 2009-08-13 15:12:16 +0000 | [diff] [blame] | 1167 | "1:", "", |
Jim Grosbach | cc6e66a | 2009-08-11 19:42:21 +0000 | [diff] [blame] | 1168 | [(set R0, (ARMeh_sjlj_setjmp GPR:$src))]>; |
| 1169 | } |
| 1170 | |
| 1171 | |
| 1172 | |
| 1173 | //===----------------------------------------------------------------------===// |
David Goodwin | f615470 | 2009-06-30 18:04:13 +0000 | [diff] [blame] | 1174 | // Control-Flow Instructions |
| 1175 | // |
| 1176 | |
Evan Cheng | ad877c8 | 2009-07-09 22:58:39 +0000 | [diff] [blame] | 1177 | // FIXME: remove when we have a way to marking a MI with these properties. |
| 1178 | // FIXME: $dst1 should be a def. But the extra ops must be in the end of the |
| 1179 | // operand list. |
| 1180 | // FIXME: Should pc be an implicit operand like PICADD, etc? |
Evan Cheng | 7c8d5ea | 2009-10-01 08:22:27 +0000 | [diff] [blame] | 1181 | let isReturn = 1, isTerminator = 1, isBarrier = 1, mayLoad = 1, |
| 1182 | hasExtraDefRegAllocReq = 1 in |
Evan Cheng | ad877c8 | 2009-07-09 22:58:39 +0000 | [diff] [blame] | 1183 | def t2LDM_RET : T2XI<(outs), |
Evan Cheng | b43a20e | 2009-10-01 01:33:39 +0000 | [diff] [blame] | 1184 | (ins addrmode4:$addr, pred:$p, reglist:$wb, variable_ops), |
Evan Cheng | 08540a9 | 2009-10-27 00:08:59 +0000 | [diff] [blame] | 1185 | IIC_Br, "ldm${addr:submode}${p}${addr:wide}\t$addr, $wb", |
Evan Cheng | ad877c8 | 2009-07-09 22:58:39 +0000 | [diff] [blame] | 1186 | []>; |
| 1187 | |
David Goodwin | f615470 | 2009-06-30 18:04:13 +0000 | [diff] [blame] | 1188 | let isBranch = 1, isTerminator = 1, isBarrier = 1 in { |
| 1189 | let isPredicable = 1 in |
David Goodwin | cfd6765 | 2009-08-06 16:52:47 +0000 | [diff] [blame] | 1190 | def t2B : T2XI<(outs), (ins brtarget:$target), IIC_Br, |
Evan Cheng | 08540a9 | 2009-10-27 00:08:59 +0000 | [diff] [blame] | 1191 | "b.w\t$target", |
David Goodwin | f615470 | 2009-06-30 18:04:13 +0000 | [diff] [blame] | 1192 | [(br bb:$target)]>; |
| 1193 | |
Evan Cheng | 1b2b3e2 | 2009-07-29 02:18:14 +0000 | [diff] [blame] | 1194 | let isNotDuplicable = 1, isIndirectBranch = 1 in { |
Evan Cheng | 6e2ebc9 | 2009-07-25 00:33:29 +0000 | [diff] [blame] | 1195 | def t2BR_JT : |
Evan Cheng | 1b2b3e2 | 2009-07-29 02:18:14 +0000 | [diff] [blame] | 1196 | T2JTI<(outs), |
| 1197 | (ins GPR:$target, GPR:$index, jt2block_operand:$jt, i32imm:$id), |
Evan Cheng | 08540a9 | 2009-10-27 00:08:59 +0000 | [diff] [blame] | 1198 | IIC_Br, "mov\tpc, $target\n$jt", |
Evan Cheng | 1b2b3e2 | 2009-07-29 02:18:14 +0000 | [diff] [blame] | 1199 | [(ARMbr2jt GPR:$target, GPR:$index, tjumptable:$jt, imm:$id)]>; |
| 1200 | |
Evan Cheng | 04f40fa | 2009-08-01 06:13:52 +0000 | [diff] [blame] | 1201 | // FIXME: Add a non-pc based case that can be predicated. |
Evan Cheng | 1b2b3e2 | 2009-07-29 02:18:14 +0000 | [diff] [blame] | 1202 | def t2TBB : |
Evan Cheng | 04f40fa | 2009-08-01 06:13:52 +0000 | [diff] [blame] | 1203 | T2JTI<(outs), |
Evan Cheng | 1b2b3e2 | 2009-07-29 02:18:14 +0000 | [diff] [blame] | 1204 | (ins tb_addrmode:$index, jt2block_operand:$jt, i32imm:$id), |
Evan Cheng | 08540a9 | 2009-10-27 00:08:59 +0000 | [diff] [blame] | 1205 | IIC_Br, "tbb\t$index\n$jt", []>; |
Evan Cheng | 1b2b3e2 | 2009-07-29 02:18:14 +0000 | [diff] [blame] | 1206 | |
| 1207 | def t2TBH : |
Evan Cheng | 04f40fa | 2009-08-01 06:13:52 +0000 | [diff] [blame] | 1208 | T2JTI<(outs), |
Evan Cheng | 1b2b3e2 | 2009-07-29 02:18:14 +0000 | [diff] [blame] | 1209 | (ins tb_addrmode:$index, jt2block_operand:$jt, i32imm:$id), |
Evan Cheng | 08540a9 | 2009-10-27 00:08:59 +0000 | [diff] [blame] | 1210 | IIC_Br, "tbh\t$index\n$jt", []>; |
Evan Cheng | 1b2b3e2 | 2009-07-29 02:18:14 +0000 | [diff] [blame] | 1211 | } // isNotDuplicable, isIndirectBranch |
| 1212 | |
David Goodwin | 13d2f4e | 2009-06-30 19:50:22 +0000 | [diff] [blame] | 1213 | } // isBranch, isTerminator, isBarrier |
David Goodwin | f615470 | 2009-06-30 18:04:13 +0000 | [diff] [blame] | 1214 | |
| 1215 | // FIXME: should be able to write a pattern for ARMBrcond, but can't use |
| 1216 | // a two-value operand where a dag node expects two operands. :( |
| 1217 | let isBranch = 1, isTerminator = 1 in |
David Goodwin | cfd6765 | 2009-08-06 16:52:47 +0000 | [diff] [blame] | 1218 | def t2Bcc : T2I<(outs), (ins brtarget:$target), IIC_Br, |
Evan Cheng | 08540a9 | 2009-10-27 00:08:59 +0000 | [diff] [blame] | 1219 | "b", ".w\t$target", |
David Goodwin | f615470 | 2009-06-30 18:04:13 +0000 | [diff] [blame] | 1220 | [/*(ARMbrcond bb:$target, imm:$cc)*/]>; |
Evan Cheng | 3617371 | 2009-06-23 17:48:47 +0000 | [diff] [blame] | 1221 | |
Evan Cheng | d5b67fa | 2009-07-10 01:54:42 +0000 | [diff] [blame] | 1222 | |
| 1223 | // IT block |
| 1224 | def t2IT : Thumb2XI<(outs), (ins it_pred:$cc, it_mask:$mask), |
David Goodwin | 236ccb5 | 2009-08-19 18:00:44 +0000 | [diff] [blame] | 1225 | AddrModeNone, Size2Bytes, IIC_iALUx, |
Evan Cheng | 08540a9 | 2009-10-27 00:08:59 +0000 | [diff] [blame] | 1226 | "it$mask\t$cc", "", []>; |
Evan Cheng | d5b67fa | 2009-07-10 01:54:42 +0000 | [diff] [blame] | 1227 | |
Evan Cheng | 3617371 | 2009-06-23 17:48:47 +0000 | [diff] [blame] | 1228 | //===----------------------------------------------------------------------===// |
| 1229 | // Non-Instruction Patterns |
| 1230 | // |
| 1231 | |
Jim Grosbach | 1afc8e2 | 2009-10-21 20:44:34 +0000 | [diff] [blame] | 1232 | // Two piece so_imms. |
| 1233 | def : T2Pat<(or GPR:$LHS, t2_so_imm2part:$RHS), |
| 1234 | (t2ORRri (t2ORRri GPR:$LHS, (t2_so_imm2part_1 imm:$RHS)), |
| 1235 | (t2_so_imm2part_2 imm:$RHS))>; |
| 1236 | def : T2Pat<(xor GPR:$LHS, t2_so_imm2part:$RHS), |
| 1237 | (t2EORri (t2EORri GPR:$LHS, (t2_so_imm2part_1 imm:$RHS)), |
| 1238 | (t2_so_imm2part_2 imm:$RHS))>; |
| 1239 | def : T2Pat<(add GPR:$LHS, t2_so_imm2part:$RHS), |
| 1240 | (t2ADDri (t2ADDri GPR:$LHS, (t2_so_imm2part_1 imm:$RHS)), |
| 1241 | (t2_so_imm2part_2 imm:$RHS))>; |
Jim Grosbach | 66e70cd | 2009-11-23 20:35:53 +0000 | [diff] [blame] | 1242 | def : T2Pat<(add GPR:$LHS, t2_so_neg_imm2part:$RHS), |
| 1243 | (t2SUBri (t2SUBri GPR:$LHS, (t2_so_neg_imm2part_1 imm:$RHS)), |
| 1244 | (t2_so_neg_imm2part_2 imm:$RHS))>; |
Jim Grosbach | 1afc8e2 | 2009-10-21 20:44:34 +0000 | [diff] [blame] | 1245 | |
Evan Cheng | 16c012d | 2009-09-28 09:14:39 +0000 | [diff] [blame] | 1246 | // 32-bit immediate using movw + movt. |
| 1247 | // This is a single pseudo instruction to make it re-materializable. Remove |
| 1248 | // when we can do generalized remat. |
| 1249 | let isReMaterializable = 1 in |
| 1250 | def t2MOVi32imm : T2Ix2<(outs GPR:$dst), (ins i32imm:$src), IIC_iMOVi, |
Evan Cheng | 08540a9 | 2009-10-27 00:08:59 +0000 | [diff] [blame] | 1251 | "movw", "\t$dst, ${src:lo16}\n\tmovt${p}\t$dst, ${src:hi16}", |
Evan Cheng | 16c012d | 2009-09-28 09:14:39 +0000 | [diff] [blame] | 1252 | [(set GPR:$dst, (i32 imm:$src))]>; |
Evan Cheng | 7921e58 | 2009-11-06 23:52:48 +0000 | [diff] [blame] | 1253 | |
Anton Korobeynikov | a414f36 | 2009-11-24 00:44:37 +0000 | [diff] [blame] | 1254 | // ConstantPool, GlobalAddress, and JumpTable |
| 1255 | def : T2Pat<(ARMWrapper tglobaladdr :$dst), (t2LEApcrel tglobaladdr :$dst)>, |
| 1256 | Requires<[IsThumb2, DontUseMovt]>; |
| 1257 | def : T2Pat<(ARMWrapper tconstpool :$dst), (t2LEApcrel tconstpool :$dst)>; |
| 1258 | def : T2Pat<(ARMWrapper tglobaladdr :$dst), (t2MOVi32imm tglobaladdr :$dst)>, |
| 1259 | Requires<[IsThumb2, UseMovt]>; |
| 1260 | |
| 1261 | def : T2Pat<(ARMWrapperJT tjumptable:$dst, imm:$id), |
| 1262 | (t2LEApcrelJT tjumptable:$dst, imm:$id)>; |
| 1263 | |
Evan Cheng | 7921e58 | 2009-11-06 23:52:48 +0000 | [diff] [blame] | 1264 | // Pseudo instruction that combines ldr from constpool and add pc. This should |
| 1265 | // be expanded into two instructions late to allow if-conversion and |
| 1266 | // scheduling. |
Evan Cheng | 2f6bfd4 | 2009-11-20 19:57:15 +0000 | [diff] [blame] | 1267 | let canFoldAsLoad = 1, isReMaterializable = 1, mayHaveSideEffects = 1 in |
Evan Cheng | 7921e58 | 2009-11-06 23:52:48 +0000 | [diff] [blame] | 1268 | def t2LDRpci_pic : PseudoInst<(outs GPR:$dst), (ins i32imm:$addr, pclabel:$cp), |
| 1269 | NoItinerary, "@ ldr.w\t$dst, $addr\n$cp:\n\tadd\t$dst, pc", |
| 1270 | [(set GPR:$dst, (ARMpic_add (load (ARMWrapper tconstpool:$addr)), |
| 1271 | imm:$cp))]>, |
| 1272 | Requires<[IsThumb2]>; |