Evan Cheng | a8e2989 | 2007-01-19 07:51:42 +0000 | [diff] [blame] | 1 | //===- ARMInstrThumb.td - Thumb support for ARM ---------------------------===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
Chris Lattner | 4ee451d | 2007-12-29 20:36:04 +0000 | [diff] [blame] | 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
Evan Cheng | a8e2989 | 2007-01-19 07:51:42 +0000 | [diff] [blame] | 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // This file describes the Thumb instruction set. |
| 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
| 14 | //===----------------------------------------------------------------------===// |
| 15 | // Thumb specific DAG Nodes. |
| 16 | // |
| 17 | |
| 18 | def ARMtcall : SDNode<"ARMISD::tCALL", SDT_ARMcall, |
| 19 | [SDNPHasChain, SDNPOptInFlag, SDNPOutFlag]>; |
| 20 | |
Evan Cheng | a8e2989 | 2007-01-19 07:51:42 +0000 | [diff] [blame] | 21 | def imm_neg_XFORM : SDNodeXForm<imm, [{ |
Dan Gohman | f5aeb1a | 2008-09-12 16:56:44 +0000 | [diff] [blame] | 22 | return CurDAG->getTargetConstant(-(int)N->getZExtValue(), MVT::i32); |
Evan Cheng | a8e2989 | 2007-01-19 07:51:42 +0000 | [diff] [blame] | 23 | }]>; |
| 24 | def imm_comp_XFORM : SDNodeXForm<imm, [{ |
Dan Gohman | f5aeb1a | 2008-09-12 16:56:44 +0000 | [diff] [blame] | 25 | return CurDAG->getTargetConstant(~((uint32_t)N->getZExtValue()), MVT::i32); |
Evan Cheng | a8e2989 | 2007-01-19 07:51:42 +0000 | [diff] [blame] | 26 | }]>; |
| 27 | |
| 28 | |
| 29 | /// imm0_7 predicate - True if the 32-bit immediate is in the range [0,7]. |
| 30 | def imm0_7 : PatLeaf<(i32 imm), [{ |
Dan Gohman | f5aeb1a | 2008-09-12 16:56:44 +0000 | [diff] [blame] | 31 | return (uint32_t)N->getZExtValue() < 8; |
Evan Cheng | a8e2989 | 2007-01-19 07:51:42 +0000 | [diff] [blame] | 32 | }]>; |
| 33 | def imm0_7_neg : PatLeaf<(i32 imm), [{ |
Dan Gohman | f5aeb1a | 2008-09-12 16:56:44 +0000 | [diff] [blame] | 34 | return (uint32_t)-N->getZExtValue() < 8; |
Evan Cheng | a8e2989 | 2007-01-19 07:51:42 +0000 | [diff] [blame] | 35 | }], imm_neg_XFORM>; |
| 36 | |
| 37 | def imm0_255 : PatLeaf<(i32 imm), [{ |
Dan Gohman | f5aeb1a | 2008-09-12 16:56:44 +0000 | [diff] [blame] | 38 | return (uint32_t)N->getZExtValue() < 256; |
Evan Cheng | a8e2989 | 2007-01-19 07:51:42 +0000 | [diff] [blame] | 39 | }]>; |
| 40 | def imm0_255_comp : PatLeaf<(i32 imm), [{ |
Dan Gohman | f5aeb1a | 2008-09-12 16:56:44 +0000 | [diff] [blame] | 41 | return ~((uint32_t)N->getZExtValue()) < 256; |
Evan Cheng | a8e2989 | 2007-01-19 07:51:42 +0000 | [diff] [blame] | 42 | }]>; |
| 43 | |
| 44 | def imm8_255 : PatLeaf<(i32 imm), [{ |
Dan Gohman | f5aeb1a | 2008-09-12 16:56:44 +0000 | [diff] [blame] | 45 | return (uint32_t)N->getZExtValue() >= 8 && (uint32_t)N->getZExtValue() < 256; |
Evan Cheng | a8e2989 | 2007-01-19 07:51:42 +0000 | [diff] [blame] | 46 | }]>; |
| 47 | def imm8_255_neg : PatLeaf<(i32 imm), [{ |
Dan Gohman | f5aeb1a | 2008-09-12 16:56:44 +0000 | [diff] [blame] | 48 | unsigned Val = -N->getZExtValue(); |
Evan Cheng | a8e2989 | 2007-01-19 07:51:42 +0000 | [diff] [blame] | 49 | return Val >= 8 && Val < 256; |
| 50 | }], imm_neg_XFORM>; |
| 51 | |
| 52 | // Break imm's up into two pieces: an immediate + a left shift. |
| 53 | // This uses thumb_immshifted to match and thumb_immshifted_val and |
| 54 | // thumb_immshifted_shamt to get the val/shift pieces. |
| 55 | def thumb_immshifted : PatLeaf<(imm), [{ |
Dan Gohman | f5aeb1a | 2008-09-12 16:56:44 +0000 | [diff] [blame] | 56 | return ARM_AM::isThumbImmShiftedVal((unsigned)N->getZExtValue()); |
Evan Cheng | a8e2989 | 2007-01-19 07:51:42 +0000 | [diff] [blame] | 57 | }]>; |
| 58 | |
| 59 | def thumb_immshifted_val : SDNodeXForm<imm, [{ |
Dan Gohman | f5aeb1a | 2008-09-12 16:56:44 +0000 | [diff] [blame] | 60 | unsigned V = ARM_AM::getThumbImmNonShiftedVal((unsigned)N->getZExtValue()); |
Evan Cheng | a8e2989 | 2007-01-19 07:51:42 +0000 | [diff] [blame] | 61 | return CurDAG->getTargetConstant(V, MVT::i32); |
| 62 | }]>; |
| 63 | |
| 64 | def thumb_immshifted_shamt : SDNodeXForm<imm, [{ |
Dan Gohman | f5aeb1a | 2008-09-12 16:56:44 +0000 | [diff] [blame] | 65 | unsigned V = ARM_AM::getThumbImmValShift((unsigned)N->getZExtValue()); |
Evan Cheng | a8e2989 | 2007-01-19 07:51:42 +0000 | [diff] [blame] | 66 | return CurDAG->getTargetConstant(V, MVT::i32); |
| 67 | }]>; |
| 68 | |
| 69 | // Define Thumb specific addressing modes. |
| 70 | |
| 71 | // t_addrmode_rr := reg + reg |
| 72 | // |
| 73 | def t_addrmode_rr : Operand<i32>, |
| 74 | ComplexPattern<i32, 2, "SelectThumbAddrModeRR", []> { |
| 75 | let PrintMethod = "printThumbAddrModeRROperand"; |
| 76 | let MIOperandInfo = (ops GPR:$base, GPR:$offsreg); |
| 77 | } |
| 78 | |
Evan Cheng | c38f2bc | 2007-01-23 22:59:13 +0000 | [diff] [blame] | 79 | // t_addrmode_s4 := reg + reg |
| 80 | // reg + imm5 * 4 |
Evan Cheng | a8e2989 | 2007-01-19 07:51:42 +0000 | [diff] [blame] | 81 | // |
Evan Cheng | c38f2bc | 2007-01-23 22:59:13 +0000 | [diff] [blame] | 82 | def t_addrmode_s4 : Operand<i32>, |
| 83 | ComplexPattern<i32, 3, "SelectThumbAddrModeS4", []> { |
| 84 | let PrintMethod = "printThumbAddrModeS4Operand"; |
Evan Cheng | cea117d | 2007-01-30 02:35:32 +0000 | [diff] [blame] | 85 | let MIOperandInfo = (ops GPR:$base, i32imm:$offsimm, GPR:$offsreg); |
Evan Cheng | a8e2989 | 2007-01-19 07:51:42 +0000 | [diff] [blame] | 86 | } |
Evan Cheng | c38f2bc | 2007-01-23 22:59:13 +0000 | [diff] [blame] | 87 | |
| 88 | // t_addrmode_s2 := reg + reg |
| 89 | // reg + imm5 * 2 |
| 90 | // |
| 91 | def t_addrmode_s2 : Operand<i32>, |
| 92 | ComplexPattern<i32, 3, "SelectThumbAddrModeS2", []> { |
| 93 | let PrintMethod = "printThumbAddrModeS2Operand"; |
Evan Cheng | cea117d | 2007-01-30 02:35:32 +0000 | [diff] [blame] | 94 | let MIOperandInfo = (ops GPR:$base, i32imm:$offsimm, GPR:$offsreg); |
Evan Cheng | a8e2989 | 2007-01-19 07:51:42 +0000 | [diff] [blame] | 95 | } |
Evan Cheng | c38f2bc | 2007-01-23 22:59:13 +0000 | [diff] [blame] | 96 | |
| 97 | // t_addrmode_s1 := reg + reg |
| 98 | // reg + imm5 |
| 99 | // |
| 100 | def t_addrmode_s1 : Operand<i32>, |
| 101 | ComplexPattern<i32, 3, "SelectThumbAddrModeS1", []> { |
| 102 | let PrintMethod = "printThumbAddrModeS1Operand"; |
Evan Cheng | cea117d | 2007-01-30 02:35:32 +0000 | [diff] [blame] | 103 | let MIOperandInfo = (ops GPR:$base, i32imm:$offsimm, GPR:$offsreg); |
Evan Cheng | a8e2989 | 2007-01-19 07:51:42 +0000 | [diff] [blame] | 104 | } |
| 105 | |
| 106 | // t_addrmode_sp := sp + imm8 * 4 |
| 107 | // |
| 108 | def t_addrmode_sp : Operand<i32>, |
| 109 | ComplexPattern<i32, 2, "SelectThumbAddrModeSP", []> { |
| 110 | let PrintMethod = "printThumbAddrModeSPOperand"; |
| 111 | let MIOperandInfo = (ops GPR:$base, i32imm:$offsimm); |
| 112 | } |
| 113 | |
| 114 | //===----------------------------------------------------------------------===// |
| 115 | // Miscellaneous Instructions. |
| 116 | // |
| 117 | |
Evan Cheng | 071a279 | 2007-09-11 19:55:27 +0000 | [diff] [blame] | 118 | let Defs = [SP], Uses = [SP] in { |
Evan Cheng | 44bec52 | 2007-05-15 01:29:07 +0000 | [diff] [blame] | 119 | def tADJCALLSTACKUP : |
Bill Wendling | 0f8d9c0 | 2007-11-13 00:44:25 +0000 | [diff] [blame] | 120 | PseudoInst<(outs), (ins i32imm:$amt1, i32imm:$amt2), |
| 121 | "@ tADJCALLSTACKUP $amt1", |
| 122 | [(ARMcallseq_end imm:$amt1, imm:$amt2)]>, Requires<[IsThumb]>; |
Evan Cheng | 44bec52 | 2007-05-15 01:29:07 +0000 | [diff] [blame] | 123 | |
| 124 | def tADJCALLSTACKDOWN : |
Evan Cheng | 64d80e3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 125 | PseudoInst<(outs), (ins i32imm:$amt), |
Evan Cheng | 44bec52 | 2007-05-15 01:29:07 +0000 | [diff] [blame] | 126 | "@ tADJCALLSTACKDOWN $amt", |
Evan Cheng | 071a279 | 2007-09-11 19:55:27 +0000 | [diff] [blame] | 127 | [(ARMcallseq_start imm:$amt)]>, Requires<[IsThumb]>; |
| 128 | } |
Evan Cheng | 44bec52 | 2007-05-15 01:29:07 +0000 | [diff] [blame] | 129 | |
Evan Cheng | eaa91b0 | 2007-06-19 01:26:51 +0000 | [diff] [blame] | 130 | let isNotDuplicable = 1 in |
Evan Cheng | 64d80e3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 131 | def tPICADD : TIt<(outs GPR:$dst), (ins GPR:$lhs, pclabel:$cp), |
Evan Cheng | c60e76d | 2007-01-30 20:37:08 +0000 | [diff] [blame] | 132 | "$cp:\n\tadd $dst, pc", |
Evan Cheng | a8e2989 | 2007-01-19 07:51:42 +0000 | [diff] [blame] | 133 | [(set GPR:$dst, (ARMpic_add GPR:$lhs, imm:$cp))]>; |
| 134 | |
| 135 | //===----------------------------------------------------------------------===// |
| 136 | // Control Flow Instructions. |
| 137 | // |
| 138 | |
Evan Cheng | 9d945f7 | 2007-02-01 01:49:46 +0000 | [diff] [blame] | 139 | let isReturn = 1, isTerminator = 1 in { |
Evan Cheng | 64d80e3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 140 | def tBX_RET : TI<(outs), (ins), "bx lr", [(ARMretflag)]>; |
Evan Cheng | 9d945f7 | 2007-02-01 01:49:46 +0000 | [diff] [blame] | 141 | // Alternative return instruction used by vararg functions. |
Evan Cheng | 64d80e3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 142 | def tBX_RET_vararg : TI<(outs), (ins GPR:$target), "bx $target", []>; |
Evan Cheng | 9d945f7 | 2007-02-01 01:49:46 +0000 | [diff] [blame] | 143 | } |
Evan Cheng | a8e2989 | 2007-01-19 07:51:42 +0000 | [diff] [blame] | 144 | |
| 145 | // FIXME: remove when we have a way to marking a MI with these properties. |
Evan Cheng | 325474e | 2008-01-07 23:56:57 +0000 | [diff] [blame] | 146 | let isReturn = 1, isTerminator = 1 in |
Evan Cheng | 64d80e3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 147 | def tPOP_RET : TI<(outs reglist:$dst1, variable_ops), (ins), |
Evan Cheng | a8e2989 | 2007-01-19 07:51:42 +0000 | [diff] [blame] | 148 | "pop $dst1", []>; |
| 149 | |
Evan Cheng | ffbacca | 2007-07-21 00:34:19 +0000 | [diff] [blame] | 150 | let isCall = 1, |
Evan Cheng | a8e2989 | 2007-01-19 07:51:42 +0000 | [diff] [blame] | 151 | Defs = [R0, R1, R2, R3, LR, |
| 152 | D0, D1, D2, D3, D4, D5, D6, D7] in { |
Evan Cheng | 64d80e3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 153 | def tBL : TIx2<(outs), (ins i32imm:$func, variable_ops), |
Evan Cheng | a8e2989 | 2007-01-19 07:51:42 +0000 | [diff] [blame] | 154 | "bl ${func:call}", |
| 155 | [(ARMtcall tglobaladdr:$func)]>; |
| 156 | // ARMv5T and above |
Evan Cheng | 64d80e3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 157 | def tBLXi : TIx2<(outs), (ins i32imm:$func, variable_ops), |
Evan Cheng | a8e2989 | 2007-01-19 07:51:42 +0000 | [diff] [blame] | 158 | "blx ${func:call}", |
| 159 | [(ARMcall tglobaladdr:$func)]>, Requires<[HasV5T]>; |
Evan Cheng | 64d80e3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 160 | def tBLXr : TI<(outs), (ins GPR:$func, variable_ops), |
| 161 | "blx $func", |
| 162 | [(ARMtcall GPR:$func)]>, Requires<[HasV5T]>; |
Lauro Ramos Venancio | b8a93a4 | 2007-03-27 16:19:21 +0000 | [diff] [blame] | 163 | // ARMv4T |
Evan Cheng | 64d80e3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 164 | def tBX : TIx2<(outs), (ins GPR:$func, variable_ops), |
| 165 | "cpy lr, pc\n\tbx $func", |
| 166 | [(ARMcall_nolink GPR:$func)]>; |
Evan Cheng | a8e2989 | 2007-01-19 07:51:42 +0000 | [diff] [blame] | 167 | } |
| 168 | |
Evan Cheng | ffbacca | 2007-07-21 00:34:19 +0000 | [diff] [blame] | 169 | let isBranch = 1, isTerminator = 1 in { |
Evan Cheng | 3f8602c | 2007-05-16 21:53:43 +0000 | [diff] [blame] | 170 | let isBarrier = 1 in { |
| 171 | let isPredicable = 1 in |
Evan Cheng | 64d80e3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 172 | def tB : TI<(outs), (ins brtarget:$target), "b $target", |
| 173 | [(br bb:$target)]>; |
Evan Cheng | a8e2989 | 2007-01-19 07:51:42 +0000 | [diff] [blame] | 174 | |
Evan Cheng | 225dfe9 | 2007-01-30 01:13:37 +0000 | [diff] [blame] | 175 | // Far jump |
Evan Cheng | 64d80e3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 176 | def tBfar : TIx2<(outs), (ins brtarget:$target), "bl $target\t@ far jump",[]>; |
Evan Cheng | 225dfe9 | 2007-01-30 01:13:37 +0000 | [diff] [blame] | 177 | |
Evan Cheng | 64d80e3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 178 | def tBR_JTr : TJTI<(outs), |
| 179 | (ins GPR:$target, jtblock_operand:$jt, i32imm:$id), |
| 180 | "cpy pc, $target \n\t.align\t2\n$jt", |
| 181 | [(ARMbrjt GPR:$target, tjumptable:$jt, imm:$id)]>; |
Evan Cheng | 3f8602c | 2007-05-16 21:53:43 +0000 | [diff] [blame] | 182 | } |
Evan Cheng | d85ac4d | 2007-01-27 02:29:45 +0000 | [diff] [blame] | 183 | } |
| 184 | |
Evan Cheng | c85e832 | 2007-07-05 07:13:32 +0000 | [diff] [blame] | 185 | // FIXME: should be able to write a pattern for ARMBrcond, but can't use |
| 186 | // a two-value operand where a dag node expects two operands. :( |
Evan Cheng | ffbacca | 2007-07-21 00:34:19 +0000 | [diff] [blame] | 187 | let isBranch = 1, isTerminator = 1 in |
Evan Cheng | 64d80e3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 188 | def tBcc : TI<(outs), (ins brtarget:$target, pred:$cc), "b$cc $target", |
| 189 | [/*(ARMbrcond bb:$target, imm:$cc)*/]>; |
Evan Cheng | a8e2989 | 2007-01-19 07:51:42 +0000 | [diff] [blame] | 190 | |
| 191 | //===----------------------------------------------------------------------===// |
| 192 | // Load Store Instructions. |
| 193 | // |
| 194 | |
Dan Gohman | 15511cf | 2008-12-03 18:15:48 +0000 | [diff] [blame^] | 195 | let canFoldAsLoad = 1 in |
Evan Cheng | 64d80e3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 196 | def tLDR : TI4<(outs GPR:$dst), (ins t_addrmode_s4:$addr), |
Evan Cheng | c38f2bc | 2007-01-23 22:59:13 +0000 | [diff] [blame] | 197 | "ldr $dst, $addr", |
| 198 | [(set GPR:$dst, (load t_addrmode_s4:$addr))]>; |
Evan Cheng | a8e2989 | 2007-01-19 07:51:42 +0000 | [diff] [blame] | 199 | |
Evan Cheng | 64d80e3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 200 | def tLDRB : TI1<(outs GPR:$dst), (ins t_addrmode_s1:$addr), |
Evan Cheng | c38f2bc | 2007-01-23 22:59:13 +0000 | [diff] [blame] | 201 | "ldrb $dst, $addr", |
| 202 | [(set GPR:$dst, (zextloadi8 t_addrmode_s1:$addr))]>; |
| 203 | |
Evan Cheng | 64d80e3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 204 | def tLDRH : TI2<(outs GPR:$dst), (ins t_addrmode_s2:$addr), |
Evan Cheng | c38f2bc | 2007-01-23 22:59:13 +0000 | [diff] [blame] | 205 | "ldrh $dst, $addr", |
| 206 | [(set GPR:$dst, (zextloadi16 t_addrmode_s2:$addr))]>; |
| 207 | |
Evan Cheng | 64d80e3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 208 | def tLDRSB : TI1<(outs GPR:$dst), (ins t_addrmode_rr:$addr), |
Evan Cheng | c38f2bc | 2007-01-23 22:59:13 +0000 | [diff] [blame] | 209 | "ldrsb $dst, $addr", |
| 210 | [(set GPR:$dst, (sextloadi8 t_addrmode_rr:$addr))]>; |
| 211 | |
Evan Cheng | 64d80e3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 212 | def tLDRSH : TI2<(outs GPR:$dst), (ins t_addrmode_rr:$addr), |
Evan Cheng | c38f2bc | 2007-01-23 22:59:13 +0000 | [diff] [blame] | 213 | "ldrsh $dst, $addr", |
| 214 | [(set GPR:$dst, (sextloadi16 t_addrmode_rr:$addr))]>; |
| 215 | |
Dan Gohman | 15511cf | 2008-12-03 18:15:48 +0000 | [diff] [blame^] | 216 | let canFoldAsLoad = 1 in |
Evan Cheng | 64d80e3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 217 | def tLDRspi : TIs<(outs GPR:$dst), (ins t_addrmode_sp:$addr), |
Evan Cheng | a8e2989 | 2007-01-19 07:51:42 +0000 | [diff] [blame] | 218 | "ldr $dst, $addr", |
| 219 | [(set GPR:$dst, (load t_addrmode_sp:$addr))]>; |
Evan Cheng | 012f2d9 | 2007-01-24 08:53:17 +0000 | [diff] [blame] | 220 | |
Evan Cheng | 8e59ea9 | 2007-02-07 00:06:56 +0000 | [diff] [blame] | 221 | // Special instruction for restore. It cannot clobber condition register |
| 222 | // when it's expanded by eliminateCallFramePseudoInstr(). |
Dan Gohman | 15511cf | 2008-12-03 18:15:48 +0000 | [diff] [blame^] | 223 | let canFoldAsLoad = 1, mayLoad = 1 in |
Evan Cheng | 64d80e3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 224 | def tRestore : TIs<(outs GPR:$dst), (ins t_addrmode_sp:$addr), |
Evan Cheng | 8e59ea9 | 2007-02-07 00:06:56 +0000 | [diff] [blame] | 225 | "ldr $dst, $addr", []>; |
| 226 | |
Evan Cheng | 012f2d9 | 2007-01-24 08:53:17 +0000 | [diff] [blame] | 227 | // Load tconstpool |
Dan Gohman | 15511cf | 2008-12-03 18:15:48 +0000 | [diff] [blame^] | 228 | let canFoldAsLoad = 1 in |
Evan Cheng | 64d80e3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 229 | def tLDRpci : TIs<(outs GPR:$dst), (ins i32imm:$addr), |
Evan Cheng | 012f2d9 | 2007-01-24 08:53:17 +0000 | [diff] [blame] | 230 | "ldr $dst, $addr", |
| 231 | [(set GPR:$dst, (load (ARMWrapper tconstpool:$addr)))]>; |
Evan Cheng | fa775d0 | 2007-03-19 07:20:03 +0000 | [diff] [blame] | 232 | |
| 233 | // Special LDR for loads from non-pc-relative constpools. |
Dan Gohman | 15511cf | 2008-12-03 18:15:48 +0000 | [diff] [blame^] | 234 | let canFoldAsLoad = 1, mayLoad = 1, isReMaterializable = 1 in |
Evan Cheng | 64d80e3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 235 | def tLDRcp : TIs<(outs GPR:$dst), (ins i32imm:$addr), |
Evan Cheng | fa775d0 | 2007-03-19 07:20:03 +0000 | [diff] [blame] | 236 | "ldr $dst, $addr", []>; |
Evan Cheng | a8e2989 | 2007-01-19 07:51:42 +0000 | [diff] [blame] | 237 | |
Evan Cheng | 64d80e3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 238 | def tSTR : TI4<(outs), (ins GPR:$src, t_addrmode_s4:$addr), |
Evan Cheng | c38f2bc | 2007-01-23 22:59:13 +0000 | [diff] [blame] | 239 | "str $src, $addr", |
| 240 | [(store GPR:$src, t_addrmode_s4:$addr)]>; |
Evan Cheng | a8e2989 | 2007-01-19 07:51:42 +0000 | [diff] [blame] | 241 | |
Evan Cheng | 64d80e3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 242 | def tSTRB : TI1<(outs), (ins GPR:$src, t_addrmode_s1:$addr), |
Evan Cheng | c38f2bc | 2007-01-23 22:59:13 +0000 | [diff] [blame] | 243 | "strb $src, $addr", |
| 244 | [(truncstorei8 GPR:$src, t_addrmode_s1:$addr)]>; |
| 245 | |
Evan Cheng | 64d80e3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 246 | def tSTRH : TI2<(outs), (ins GPR:$src, t_addrmode_s2:$addr), |
Evan Cheng | c38f2bc | 2007-01-23 22:59:13 +0000 | [diff] [blame] | 247 | "strh $src, $addr", |
| 248 | [(truncstorei16 GPR:$src, t_addrmode_s2:$addr)]>; |
Evan Cheng | a8e2989 | 2007-01-19 07:51:42 +0000 | [diff] [blame] | 249 | |
Evan Cheng | 64d80e3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 250 | def tSTRspi : TIs<(outs), (ins GPR:$src, t_addrmode_sp:$addr), |
Evan Cheng | a8e2989 | 2007-01-19 07:51:42 +0000 | [diff] [blame] | 251 | "str $src, $addr", |
| 252 | [(store GPR:$src, t_addrmode_sp:$addr)]>; |
Evan Cheng | 8e59ea9 | 2007-02-07 00:06:56 +0000 | [diff] [blame] | 253 | |
Chris Lattner | 2e48a70 | 2008-01-06 08:36:04 +0000 | [diff] [blame] | 254 | let mayStore = 1 in { |
Evan Cheng | 8e59ea9 | 2007-02-07 00:06:56 +0000 | [diff] [blame] | 255 | // Special instruction for spill. It cannot clobber condition register |
| 256 | // when it's expanded by eliminateCallFramePseudoInstr(). |
Evan Cheng | 64d80e3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 257 | def tSpill : TIs<(outs), (ins GPR:$src, t_addrmode_sp:$addr), |
Evan Cheng | 8e59ea9 | 2007-02-07 00:06:56 +0000 | [diff] [blame] | 258 | "str $src, $addr", []>; |
Evan Cheng | a8e2989 | 2007-01-19 07:51:42 +0000 | [diff] [blame] | 259 | } |
| 260 | |
| 261 | //===----------------------------------------------------------------------===// |
| 262 | // Load / store multiple Instructions. |
| 263 | // |
| 264 | |
| 265 | // TODO: A7-44: LDMIA - load multiple |
| 266 | |
Chris Lattner | 9b37aaf | 2008-01-10 05:12:37 +0000 | [diff] [blame] | 267 | let mayLoad = 1 in |
Evan Cheng | 64d80e3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 268 | def tPOP : TI<(outs reglist:$dst1, variable_ops), (ins), |
Evan Cheng | a8e2989 | 2007-01-19 07:51:42 +0000 | [diff] [blame] | 269 | "pop $dst1", []>; |
| 270 | |
Chris Lattner | 2e48a70 | 2008-01-06 08:36:04 +0000 | [diff] [blame] | 271 | let mayStore = 1 in |
Evan Cheng | 64d80e3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 272 | def tPUSH : TI<(outs), (ins reglist:$src1, variable_ops), |
Evan Cheng | a8e2989 | 2007-01-19 07:51:42 +0000 | [diff] [blame] | 273 | "push $src1", []>; |
| 274 | |
| 275 | //===----------------------------------------------------------------------===// |
| 276 | // Arithmetic Instructions. |
| 277 | // |
| 278 | |
Evan Cheng | 53d7dba | 2007-01-27 00:07:15 +0000 | [diff] [blame] | 279 | // Add with carry |
Evan Cheng | 64d80e3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 280 | def tADC : TIt<(outs GPR:$dst), (ins GPR:$lhs, GPR:$rhs), |
Evan Cheng | 53d7dba | 2007-01-27 00:07:15 +0000 | [diff] [blame] | 281 | "adc $dst, $rhs", |
| 282 | [(set GPR:$dst, (adde GPR:$lhs, GPR:$rhs))]>; |
| 283 | |
Evan Cheng | 64d80e3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 284 | def tADDS : TI<(outs GPR:$dst), (ins GPR:$lhs, GPR:$rhs), |
Evan Cheng | 3471b60 | 2007-01-31 20:12:31 +0000 | [diff] [blame] | 285 | "add $dst, $lhs, $rhs", |
Evan Cheng | 53d7dba | 2007-01-27 00:07:15 +0000 | [diff] [blame] | 286 | [(set GPR:$dst, (addc GPR:$lhs, GPR:$rhs))]>; |
| 287 | |
| 288 | |
Evan Cheng | 64d80e3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 289 | def tADDi3 : TI<(outs GPR:$dst), (ins GPR:$lhs, i32imm:$rhs), |
Evan Cheng | a8e2989 | 2007-01-19 07:51:42 +0000 | [diff] [blame] | 290 | "add $dst, $lhs, $rhs", |
| 291 | [(set GPR:$dst, (add GPR:$lhs, imm0_7:$rhs))]>; |
| 292 | |
Evan Cheng | 64d80e3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 293 | def tADDi8 : TIt<(outs GPR:$dst), (ins GPR:$lhs, i32imm:$rhs), |
Evan Cheng | a8e2989 | 2007-01-19 07:51:42 +0000 | [diff] [blame] | 294 | "add $dst, $rhs", |
| 295 | [(set GPR:$dst, (add GPR:$lhs, imm8_255:$rhs))]>; |
| 296 | |
Evan Cheng | 64d80e3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 297 | def tADDrr : TI<(outs GPR:$dst), (ins GPR:$lhs, GPR:$rhs), |
Evan Cheng | a8e2989 | 2007-01-19 07:51:42 +0000 | [diff] [blame] | 298 | "add $dst, $lhs, $rhs", |
| 299 | [(set GPR:$dst, (add GPR:$lhs, GPR:$rhs))]>; |
| 300 | |
Evan Cheng | 64d80e3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 301 | def tADDhirr : TIt<(outs GPR:$dst), (ins GPR:$lhs, GPR:$rhs), |
Evan Cheng | a8e2989 | 2007-01-19 07:51:42 +0000 | [diff] [blame] | 302 | "add $dst, $rhs", []>; |
| 303 | |
Evan Cheng | 64d80e3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 304 | def tADDrPCi : TI<(outs GPR:$dst), (ins i32imm:$rhs), |
Evan Cheng | a8e2989 | 2007-01-19 07:51:42 +0000 | [diff] [blame] | 305 | "add $dst, pc, $rhs * 4", []>; |
Evan Cheng | 64d80e3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 306 | def tADDrSPi : TI<(outs GPR:$dst), (ins GPR:$sp, i32imm:$rhs), |
Evan Cheng | a8e2989 | 2007-01-19 07:51:42 +0000 | [diff] [blame] | 307 | "add $dst, $sp, $rhs * 4", []>; |
Evan Cheng | 64d80e3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 308 | def tADDspi : TIt<(outs GPR:$dst), (ins GPR:$lhs, i32imm:$rhs), |
Evan Cheng | 3fdadfc | 2007-01-26 21:33:19 +0000 | [diff] [blame] | 309 | "add $dst, $rhs * 4", []>; |
Evan Cheng | a8e2989 | 2007-01-19 07:51:42 +0000 | [diff] [blame] | 310 | |
Evan Cheng | 64d80e3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 311 | def tAND : TIt<(outs GPR:$dst), (ins GPR:$lhs, GPR:$rhs), |
Evan Cheng | a8e2989 | 2007-01-19 07:51:42 +0000 | [diff] [blame] | 312 | "and $dst, $rhs", |
| 313 | [(set GPR:$dst, (and GPR:$lhs, GPR:$rhs))]>; |
| 314 | |
Evan Cheng | 64d80e3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 315 | def tASRri : TI<(outs GPR:$dst), (ins GPR:$lhs, i32imm:$rhs), |
Evan Cheng | a8e2989 | 2007-01-19 07:51:42 +0000 | [diff] [blame] | 316 | "asr $dst, $lhs, $rhs", |
| 317 | [(set GPR:$dst, (sra GPR:$lhs, imm:$rhs))]>; |
| 318 | |
Evan Cheng | 64d80e3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 319 | def tASRrr : TIt<(outs GPR:$dst), (ins GPR:$lhs, GPR:$rhs), |
Evan Cheng | a8e2989 | 2007-01-19 07:51:42 +0000 | [diff] [blame] | 320 | "asr $dst, $rhs", |
| 321 | [(set GPR:$dst, (sra GPR:$lhs, GPR:$rhs))]>; |
| 322 | |
Evan Cheng | 64d80e3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 323 | def tBIC : TIt<(outs GPR:$dst), (ins GPR:$lhs, GPR:$rhs), |
Evan Cheng | a8e2989 | 2007-01-19 07:51:42 +0000 | [diff] [blame] | 324 | "bic $dst, $rhs", |
| 325 | [(set GPR:$dst, (and GPR:$lhs, (not GPR:$rhs)))]>; |
| 326 | |
| 327 | |
Evan Cheng | 64d80e3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 328 | def tCMN : TI<(outs), (ins GPR:$lhs, GPR:$rhs), |
Evan Cheng | a8e2989 | 2007-01-19 07:51:42 +0000 | [diff] [blame] | 329 | "cmn $lhs, $rhs", |
| 330 | [(ARMcmp GPR:$lhs, (ineg GPR:$rhs))]>; |
| 331 | |
Evan Cheng | 64d80e3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 332 | def tCMPi8 : TI<(outs), (ins GPR:$lhs, i32imm:$rhs), |
Evan Cheng | a8e2989 | 2007-01-19 07:51:42 +0000 | [diff] [blame] | 333 | "cmp $lhs, $rhs", |
| 334 | [(ARMcmp GPR:$lhs, imm0_255:$rhs)]>; |
| 335 | |
Evan Cheng | 64d80e3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 336 | def tCMPr : TI<(outs), (ins GPR:$lhs, GPR:$rhs), |
Evan Cheng | a8e2989 | 2007-01-19 07:51:42 +0000 | [diff] [blame] | 337 | "cmp $lhs, $rhs", |
| 338 | [(ARMcmp GPR:$lhs, GPR:$rhs)]>; |
Lauro Ramos Venancio | 9996663 | 2007-04-02 01:30:03 +0000 | [diff] [blame] | 339 | |
Evan Cheng | 64d80e3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 340 | def tTST : TI<(outs), (ins GPR:$lhs, GPR:$rhs), |
Lauro Ramos Venancio | 9996663 | 2007-04-02 01:30:03 +0000 | [diff] [blame] | 341 | "tst $lhs, $rhs", |
| 342 | [(ARMcmpNZ (and GPR:$lhs, GPR:$rhs), 0)]>; |
| 343 | |
Evan Cheng | 64d80e3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 344 | def tCMNNZ : TI<(outs), (ins GPR:$lhs, GPR:$rhs), |
Lauro Ramos Venancio | 9996663 | 2007-04-02 01:30:03 +0000 | [diff] [blame] | 345 | "cmn $lhs, $rhs", |
| 346 | [(ARMcmpNZ GPR:$lhs, (ineg GPR:$rhs))]>; |
| 347 | |
Evan Cheng | 64d80e3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 348 | def tCMPNZi8 : TI<(outs), (ins GPR:$lhs, i32imm:$rhs), |
Lauro Ramos Venancio | 9996663 | 2007-04-02 01:30:03 +0000 | [diff] [blame] | 349 | "cmp $lhs, $rhs", |
| 350 | [(ARMcmpNZ GPR:$lhs, imm0_255:$rhs)]>; |
| 351 | |
Evan Cheng | 64d80e3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 352 | def tCMPNZr : TI<(outs), (ins GPR:$lhs, GPR:$rhs), |
Lauro Ramos Venancio | 9996663 | 2007-04-02 01:30:03 +0000 | [diff] [blame] | 353 | "cmp $lhs, $rhs", |
| 354 | [(ARMcmpNZ GPR:$lhs, GPR:$rhs)]>; |
| 355 | |
Evan Cheng | a8e2989 | 2007-01-19 07:51:42 +0000 | [diff] [blame] | 356 | // TODO: A7-37: CMP(3) - cmp hi regs |
| 357 | |
Evan Cheng | 64d80e3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 358 | def tEOR : TIt<(outs GPR:$dst), (ins GPR:$lhs, GPR:$rhs), |
Evan Cheng | a8e2989 | 2007-01-19 07:51:42 +0000 | [diff] [blame] | 359 | "eor $dst, $rhs", |
| 360 | [(set GPR:$dst, (xor GPR:$lhs, GPR:$rhs))]>; |
| 361 | |
Evan Cheng | 64d80e3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 362 | def tLSLri : TI<(outs GPR:$dst), (ins GPR:$lhs, i32imm:$rhs), |
Evan Cheng | a8e2989 | 2007-01-19 07:51:42 +0000 | [diff] [blame] | 363 | "lsl $dst, $lhs, $rhs", |
| 364 | [(set GPR:$dst, (shl GPR:$lhs, imm:$rhs))]>; |
| 365 | |
Evan Cheng | 64d80e3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 366 | def tLSLrr : TIt<(outs GPR:$dst), (ins GPR:$lhs, GPR:$rhs), |
Evan Cheng | a8e2989 | 2007-01-19 07:51:42 +0000 | [diff] [blame] | 367 | "lsl $dst, $rhs", |
| 368 | [(set GPR:$dst, (shl GPR:$lhs, GPR:$rhs))]>; |
| 369 | |
Evan Cheng | 64d80e3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 370 | def tLSRri : TI<(outs GPR:$dst), (ins GPR:$lhs, i32imm:$rhs), |
Evan Cheng | a8e2989 | 2007-01-19 07:51:42 +0000 | [diff] [blame] | 371 | "lsr $dst, $lhs, $rhs", |
| 372 | [(set GPR:$dst, (srl GPR:$lhs, imm:$rhs))]>; |
| 373 | |
Evan Cheng | 64d80e3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 374 | def tLSRrr : TIt<(outs GPR:$dst), (ins GPR:$lhs, GPR:$rhs), |
Evan Cheng | a8e2989 | 2007-01-19 07:51:42 +0000 | [diff] [blame] | 375 | "lsr $dst, $rhs", |
| 376 | [(set GPR:$dst, (srl GPR:$lhs, GPR:$rhs))]>; |
| 377 | |
Evan Cheng | 5e3c203 | 2007-03-29 21:38:31 +0000 | [diff] [blame] | 378 | // FIXME: This is not rematerializable because mov changes the condition code. |
Evan Cheng | 64d80e3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 379 | def tMOVi8 : TI<(outs GPR:$dst), (ins i32imm:$src), |
Evan Cheng | a8e2989 | 2007-01-19 07:51:42 +0000 | [diff] [blame] | 380 | "mov $dst, $src", |
| 381 | [(set GPR:$dst, imm0_255:$src)]>; |
| 382 | |
| 383 | // TODO: A7-73: MOV(2) - mov setting flag. |
| 384 | |
| 385 | |
| 386 | // Note: MOV(2) of two low regs updates the flags, so we emit this as 'cpy', |
| 387 | // which is MOV(3). This also supports high registers. |
Evan Cheng | 64d80e3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 388 | def tMOVr : TI<(outs GPR:$dst), (ins GPR:$src), |
Evan Cheng | a8e2989 | 2007-01-19 07:51:42 +0000 | [diff] [blame] | 389 | "cpy $dst, $src", []>; |
| 390 | |
Evan Cheng | 64d80e3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 391 | def tMUL : TIt<(outs GPR:$dst), (ins GPR:$lhs, GPR:$rhs), |
Evan Cheng | a8e2989 | 2007-01-19 07:51:42 +0000 | [diff] [blame] | 392 | "mul $dst, $rhs", |
| 393 | [(set GPR:$dst, (mul GPR:$lhs, GPR:$rhs))]>; |
| 394 | |
Evan Cheng | 64d80e3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 395 | def tMVN : TI<(outs GPR:$dst), (ins GPR:$src), |
Evan Cheng | a8e2989 | 2007-01-19 07:51:42 +0000 | [diff] [blame] | 396 | "mvn $dst, $src", |
| 397 | [(set GPR:$dst, (not GPR:$src))]>; |
| 398 | |
Evan Cheng | 64d80e3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 399 | def tNEG : TI<(outs GPR:$dst), (ins GPR:$src), |
Evan Cheng | a8e2989 | 2007-01-19 07:51:42 +0000 | [diff] [blame] | 400 | "neg $dst, $src", |
| 401 | [(set GPR:$dst, (ineg GPR:$src))]>; |
| 402 | |
Evan Cheng | 64d80e3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 403 | def tORR : TIt<(outs GPR:$dst), (ins GPR:$lhs, GPR:$rhs), |
Evan Cheng | a8e2989 | 2007-01-19 07:51:42 +0000 | [diff] [blame] | 404 | "orr $dst, $rhs", |
| 405 | [(set GPR:$dst, (or GPR:$lhs, GPR:$rhs))]>; |
| 406 | |
| 407 | |
Evan Cheng | 64d80e3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 408 | def tREV : TI<(outs GPR:$dst), (ins GPR:$src), |
Evan Cheng | a8e2989 | 2007-01-19 07:51:42 +0000 | [diff] [blame] | 409 | "rev $dst, $src", |
| 410 | [(set GPR:$dst, (bswap GPR:$src))]>, |
| 411 | Requires<[IsThumb, HasV6]>; |
| 412 | |
Evan Cheng | 64d80e3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 413 | def tREV16 : TI<(outs GPR:$dst), (ins GPR:$src), |
Evan Cheng | a8e2989 | 2007-01-19 07:51:42 +0000 | [diff] [blame] | 414 | "rev16 $dst, $src", |
| 415 | [(set GPR:$dst, |
| 416 | (or (and (srl GPR:$src, 8), 0xFF), |
| 417 | (or (and (shl GPR:$src, 8), 0xFF00), |
| 418 | (or (and (srl GPR:$src, 8), 0xFF0000), |
| 419 | (and (shl GPR:$src, 8), 0xFF000000)))))]>, |
| 420 | Requires<[IsThumb, HasV6]>; |
| 421 | |
Evan Cheng | 64d80e3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 422 | def tREVSH : TI<(outs GPR:$dst), (ins GPR:$src), |
Evan Cheng | a8e2989 | 2007-01-19 07:51:42 +0000 | [diff] [blame] | 423 | "revsh $dst, $src", |
| 424 | [(set GPR:$dst, |
| 425 | (sext_inreg |
| 426 | (or (srl (and GPR:$src, 0xFFFF), 8), |
| 427 | (shl GPR:$src, 8)), i16))]>, |
| 428 | Requires<[IsThumb, HasV6]>; |
| 429 | |
Evan Cheng | 64d80e3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 430 | def tROR : TIt<(outs GPR:$dst), (ins GPR:$lhs, GPR:$rhs), |
Evan Cheng | a8e2989 | 2007-01-19 07:51:42 +0000 | [diff] [blame] | 431 | "ror $dst, $rhs", |
| 432 | [(set GPR:$dst, (rotr GPR:$lhs, GPR:$rhs))]>; |
| 433 | |
Evan Cheng | 53d7dba | 2007-01-27 00:07:15 +0000 | [diff] [blame] | 434 | |
| 435 | // Subtract with carry |
Evan Cheng | 64d80e3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 436 | def tSBC : TIt<(outs GPR:$dst), (ins GPR:$lhs, GPR:$rhs), |
Evan Cheng | a8e2989 | 2007-01-19 07:51:42 +0000 | [diff] [blame] | 437 | "sbc $dst, $rhs", |
| 438 | [(set GPR:$dst, (sube GPR:$lhs, GPR:$rhs))]>; |
| 439 | |
Evan Cheng | 64d80e3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 440 | def tSUBS : TI<(outs GPR:$dst), (ins GPR:$lhs, GPR:$rhs), |
Evan Cheng | 3471b60 | 2007-01-31 20:12:31 +0000 | [diff] [blame] | 441 | "sub $dst, $lhs, $rhs", |
Evan Cheng | 53d7dba | 2007-01-27 00:07:15 +0000 | [diff] [blame] | 442 | [(set GPR:$dst, (subc GPR:$lhs, GPR:$rhs))]>; |
| 443 | |
| 444 | |
Evan Cheng | a8e2989 | 2007-01-19 07:51:42 +0000 | [diff] [blame] | 445 | // TODO: A7-96: STMIA - store multiple. |
| 446 | |
Evan Cheng | 64d80e3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 447 | def tSUBi3 : TI<(outs GPR:$dst), (ins GPR:$lhs, i32imm:$rhs), |
Evan Cheng | a8e2989 | 2007-01-19 07:51:42 +0000 | [diff] [blame] | 448 | "sub $dst, $lhs, $rhs", |
| 449 | [(set GPR:$dst, (add GPR:$lhs, imm0_7_neg:$rhs))]>; |
| 450 | |
Evan Cheng | 64d80e3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 451 | def tSUBi8 : TIt<(outs GPR:$dst), (ins GPR:$lhs, i32imm:$rhs), |
Evan Cheng | a8e2989 | 2007-01-19 07:51:42 +0000 | [diff] [blame] | 452 | "sub $dst, $rhs", |
| 453 | [(set GPR:$dst, (add GPR:$lhs, imm8_255_neg:$rhs))]>; |
| 454 | |
Evan Cheng | 64d80e3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 455 | def tSUBrr : TI<(outs GPR:$dst), (ins GPR:$lhs, GPR:$rhs), |
Evan Cheng | a8e2989 | 2007-01-19 07:51:42 +0000 | [diff] [blame] | 456 | "sub $dst, $lhs, $rhs", |
| 457 | [(set GPR:$dst, (sub GPR:$lhs, GPR:$rhs))]>; |
| 458 | |
Evan Cheng | 64d80e3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 459 | def tSUBspi : TIt<(outs GPR:$dst), (ins GPR:$lhs, i32imm:$rhs), |
Evan Cheng | 3fdadfc | 2007-01-26 21:33:19 +0000 | [diff] [blame] | 460 | "sub $dst, $rhs * 4", []>; |
Evan Cheng | a8e2989 | 2007-01-19 07:51:42 +0000 | [diff] [blame] | 461 | |
Evan Cheng | 64d80e3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 462 | def tSXTB : TI<(outs GPR:$dst), (ins GPR:$src), |
Evan Cheng | a8e2989 | 2007-01-19 07:51:42 +0000 | [diff] [blame] | 463 | "sxtb $dst, $src", |
| 464 | [(set GPR:$dst, (sext_inreg GPR:$src, i8))]>, |
| 465 | Requires<[IsThumb, HasV6]>; |
Evan Cheng | 64d80e3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 466 | def tSXTH : TI<(outs GPR:$dst), (ins GPR:$src), |
Evan Cheng | a8e2989 | 2007-01-19 07:51:42 +0000 | [diff] [blame] | 467 | "sxth $dst, $src", |
| 468 | [(set GPR:$dst, (sext_inreg GPR:$src, i16))]>, |
| 469 | Requires<[IsThumb, HasV6]>; |
| 470 | |
Evan Cheng | a8e2989 | 2007-01-19 07:51:42 +0000 | [diff] [blame] | 471 | |
Evan Cheng | 64d80e3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 472 | def tUXTB : TI<(outs GPR:$dst), (ins GPR:$src), |
Evan Cheng | a8e2989 | 2007-01-19 07:51:42 +0000 | [diff] [blame] | 473 | "uxtb $dst, $src", |
| 474 | [(set GPR:$dst, (and GPR:$src, 0xFF))]>, |
| 475 | Requires<[IsThumb, HasV6]>; |
Evan Cheng | 64d80e3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 476 | def tUXTH : TI<(outs GPR:$dst), (ins GPR:$src), |
Evan Cheng | a8e2989 | 2007-01-19 07:51:42 +0000 | [diff] [blame] | 477 | "uxth $dst, $src", |
| 478 | [(set GPR:$dst, (and GPR:$src, 0xFFFF))]>, |
| 479 | Requires<[IsThumb, HasV6]>; |
| 480 | |
| 481 | |
| 482 | // Conditional move tMOVCCr - Used to implement the Thumb SELECT_CC DAG operation. |
| 483 | // Expanded by the scheduler into a branch sequence. |
| 484 | let usesCustomDAGSchedInserter = 1 in // Expanded by the scheduler. |
| 485 | def tMOVCCr : |
Evan Cheng | 64d80e3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 486 | PseudoInst<(outs GPR:$dst), (ins GPR:$false, GPR:$true, pred:$cc), |
Evan Cheng | a8e2989 | 2007-01-19 07:51:42 +0000 | [diff] [blame] | 487 | "@ tMOVCCr $cc", |
Evan Cheng | c85e832 | 2007-07-05 07:13:32 +0000 | [diff] [blame] | 488 | [/*(set GPR:$dst, (ARMcmov GPR:$false, GPR:$true, imm:$cc))*/]>; |
Evan Cheng | a8e2989 | 2007-01-19 07:51:42 +0000 | [diff] [blame] | 489 | |
| 490 | // tLEApcrel - Load a pc-relative address into a register without offending the |
| 491 | // assembler. |
Evan Cheng | 64d80e3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 492 | def tLEApcrel : TIx2<(outs GPR:$dst), (ins i32imm:$label), |
Evan Cheng | a8e2989 | 2007-01-19 07:51:42 +0000 | [diff] [blame] | 493 | !strconcat(!strconcat(".set PCRELV${:uid}, ($label-(", |
Evan Cheng | 1b20168 | 2007-05-01 20:27:19 +0000 | [diff] [blame] | 494 | "${:private}PCRELL${:uid}+4))\n"), |
Evan Cheng | e0c2b6b | 2007-02-01 03:04:49 +0000 | [diff] [blame] | 495 | !strconcat("\tmov $dst, #PCRELV${:uid}\n", |
| 496 | "${:private}PCRELL${:uid}:\n\tadd $dst, pc")), |
Evan Cheng | a8e2989 | 2007-01-19 07:51:42 +0000 | [diff] [blame] | 497 | []>; |
| 498 | |
Evan Cheng | 64d80e3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 499 | def tLEApcrelJT : TIx2<(outs GPR:$dst), (ins i32imm:$label, i32imm:$id), |
Evan Cheng | d85ac4d | 2007-01-27 02:29:45 +0000 | [diff] [blame] | 500 | !strconcat(!strconcat(".set PCRELV${:uid}, (${label}_${id:no_hash}-(", |
| 501 | "${:private}PCRELL${:uid}+4))\n"), |
Evan Cheng | e0c2b6b | 2007-02-01 03:04:49 +0000 | [diff] [blame] | 502 | !strconcat("\tmov $dst, #PCRELV${:uid}\n", |
| 503 | "${:private}PCRELL${:uid}:\n\tadd $dst, pc")), |
| 504 | []>; |
Evan Cheng | d85ac4d | 2007-01-27 02:29:45 +0000 | [diff] [blame] | 505 | |
Evan Cheng | a8e2989 | 2007-01-19 07:51:42 +0000 | [diff] [blame] | 506 | //===----------------------------------------------------------------------===// |
Lauro Ramos Venancio | 64f4fa5 | 2007-04-27 13:54:47 +0000 | [diff] [blame] | 507 | // TLS Instructions |
| 508 | // |
| 509 | |
| 510 | // __aeabi_read_tp preserves the registers r1-r3. |
| 511 | let isCall = 1, |
| 512 | Defs = [R0, LR] in { |
Evan Cheng | 64d80e3 | 2007-07-19 01:14:50 +0000 | [diff] [blame] | 513 | def tTPsoft : TIx2<(outs), (ins), |
Lauro Ramos Venancio | 64f4fa5 | 2007-04-27 13:54:47 +0000 | [diff] [blame] | 514 | "bl __aeabi_read_tp", |
| 515 | [(set R0, ARMthread_pointer)]>; |
| 516 | } |
| 517 | |
| 518 | //===----------------------------------------------------------------------===// |
Evan Cheng | a8e2989 | 2007-01-19 07:51:42 +0000 | [diff] [blame] | 519 | // Non-Instruction Patterns |
| 520 | // |
| 521 | |
| 522 | // ConstantPool, GlobalAddress |
| 523 | def : ThumbPat<(ARMWrapper tglobaladdr :$dst), (tLEApcrel tglobaladdr :$dst)>; |
| 524 | def : ThumbPat<(ARMWrapper tconstpool :$dst), (tLEApcrel tconstpool :$dst)>; |
Evan Cheng | a8e2989 | 2007-01-19 07:51:42 +0000 | [diff] [blame] | 525 | |
Evan Cheng | d85ac4d | 2007-01-27 02:29:45 +0000 | [diff] [blame] | 526 | // JumpTable |
| 527 | def : ThumbPat<(ARMWrapperJT tjumptable:$dst, imm:$id), |
| 528 | (tLEApcrelJT tjumptable:$dst, imm:$id)>; |
| 529 | |
Evan Cheng | a8e2989 | 2007-01-19 07:51:42 +0000 | [diff] [blame] | 530 | // Direct calls |
| 531 | def : ThumbPat<(ARMtcall texternalsym:$func), (tBL texternalsym:$func)>; |
| 532 | def : ThumbV5Pat<(ARMcall texternalsym:$func), (tBLXi texternalsym:$func)>; |
| 533 | |
| 534 | // Indirect calls to ARM routines |
| 535 | def : ThumbV5Pat<(ARMcall GPR:$dst), (tBLXr GPR:$dst)>; |
| 536 | |
| 537 | // zextload i1 -> zextload i8 |
Evan Cheng | c38f2bc | 2007-01-23 22:59:13 +0000 | [diff] [blame] | 538 | def : ThumbPat<(zextloadi1 t_addrmode_s1:$addr), |
| 539 | (tLDRB t_addrmode_s1:$addr)>; |
Evan Cheng | a8e2989 | 2007-01-19 07:51:42 +0000 | [diff] [blame] | 540 | |
Evan Cheng | b60c02e | 2007-01-26 19:13:16 +0000 | [diff] [blame] | 541 | // extload -> zextload |
| 542 | def : ThumbPat<(extloadi1 t_addrmode_s1:$addr), (tLDRB t_addrmode_s1:$addr)>; |
| 543 | def : ThumbPat<(extloadi8 t_addrmode_s1:$addr), (tLDRB t_addrmode_s1:$addr)>; |
| 544 | def : ThumbPat<(extloadi16 t_addrmode_s2:$addr), (tLDRH t_addrmode_s2:$addr)>; |
| 545 | |
Evan Cheng | a8e2989 | 2007-01-19 07:51:42 +0000 | [diff] [blame] | 546 | // Large immediate handling. |
| 547 | |
| 548 | // Two piece imms. |
| 549 | def : ThumbPat<(i32 thumb_immshifted:$src), |
Evan Cheng | 9f6636f | 2007-03-19 07:48:02 +0000 | [diff] [blame] | 550 | (tLSLri (tMOVi8 (thumb_immshifted_val imm:$src)), |
Evan Cheng | a8e2989 | 2007-01-19 07:51:42 +0000 | [diff] [blame] | 551 | (thumb_immshifted_shamt imm:$src))>; |
| 552 | |
| 553 | def : ThumbPat<(i32 imm0_255_comp:$src), |
Evan Cheng | 9f6636f | 2007-03-19 07:48:02 +0000 | [diff] [blame] | 554 | (tMVN (tMOVi8 (imm_comp_XFORM imm:$src)))>; |