blob: 4fea0550bb5215226a16907058d99eb3e6447386 [file] [log] [blame]
Anton Korobeynikovd4022c32009-05-29 23:41:08 +00001//===- 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 Korobeynikov52237112009-06-17 18:13:58 +000013
Evan Cheng06e16582009-07-10 01:54:42 +000014// IT block predicate field
15def it_pred : Operand<i32> {
Johnny Chen9d3acaa2010-03-02 17:57:15 +000016 let PrintMethod = "printMandatoryPredicateOperand";
Evan Cheng06e16582009-07-10 01:54:42 +000017}
18
19// IT block condition mask
20def it_mask : Operand<i32> {
21 let PrintMethod = "printThumbITMask";
22}
23
Evan Cheng5657c012009-07-29 02:18:14 +000024// Table branch address
25def tb_addrmode : Operand<i32> {
26 let PrintMethod = "printTBAddrMode";
27}
28
Anton Korobeynikov52237112009-06-17 18:13:58 +000029// Shifted operands. No register controlled shifts for Thumb2.
30// Note: We do not support rrx shifted operands yet.
31def t2_so_reg : Operand<i32>, // reg imm
Evan Cheng9cb9e672009-06-27 02:26:13 +000032 ComplexPattern<i32, 2, "SelectT2ShifterOperandReg",
Anton Korobeynikov52237112009-06-17 18:13:58 +000033 [shl,srl,sra,rotr]> {
Evan Cheng9cb9e672009-06-27 02:26:13 +000034 let PrintMethod = "printT2SOOperand";
Jim Grosbach6ccfc502010-07-30 02:41:01 +000035 let MIOperandInfo = (ops rGPR, i32imm);
Anton Korobeynikov52237112009-06-17 18:13:58 +000036}
37
Evan Chengf49810c2009-06-23 17:48:47 +000038// t2_so_imm_not_XFORM - Return the complement of a t2_so_imm value
39def t2_so_imm_not_XFORM : SDNodeXForm<imm, [{
Owen Anderson825b72b2009-08-11 20:47:22 +000040 return CurDAG->getTargetConstant(~((uint32_t)N->getZExtValue()), MVT::i32);
Anton Korobeynikov52237112009-06-17 18:13:58 +000041}]>;
42
Evan Chengf49810c2009-06-23 17:48:47 +000043// t2_so_imm_neg_XFORM - Return the negation of a t2_so_imm value
44def t2_so_imm_neg_XFORM : SDNodeXForm<imm, [{
Owen Anderson825b72b2009-08-11 20:47:22 +000045 return CurDAG->getTargetConstant(-((int)N->getZExtValue()), MVT::i32);
Evan Chengf49810c2009-06-23 17:48:47 +000046}]>;
Anton Korobeynikov52237112009-06-17 18:13:58 +000047
Evan Chengf49810c2009-06-23 17:48:47 +000048// 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 Grosbach6935efc2009-11-24 00:20:27 +000052// 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].
Jakob Stoklund Olesen00d3dda2010-08-17 20:39:04 +000054def t2_so_imm : Operand<i32>, PatLeaf<(imm), [{ return Pred_t2_so_imm(N); }]>;
Anton Korobeynikov52237112009-06-17 18:13:58 +000055
Jim Grosbach64171712010-02-16 21:07:46 +000056// t2_so_imm_not - Match an immediate that is a complement
Evan Chengf49810c2009-06-23 17:48:47 +000057// of a t2_so_imm.
58def t2_so_imm_not : Operand<i32>,
59 PatLeaf<(imm), [{
Evan Chenge7cbe412009-07-08 21:03:57 +000060 return ARM_AM::getT2SOImmVal(~((uint32_t)N->getZExtValue())) != -1;
61}], t2_so_imm_not_XFORM>;
Evan Chengf49810c2009-06-23 17:48:47 +000062
63// t2_so_imm_neg - Match an immediate that is a negation of a t2_so_imm.
64def t2_so_imm_neg : Operand<i32>,
65 PatLeaf<(imm), [{
Evan Chenge7cbe412009-07-08 21:03:57 +000066 return ARM_AM::getT2SOImmVal(-((int)N->getZExtValue())) != -1;
67}], t2_so_imm_neg_XFORM>;
Evan Chengf49810c2009-06-23 17:48:47 +000068
Jim Grosbach65b7f3a2009-10-21 20:44:34 +000069// Break t2_so_imm's up into two pieces. This handles immediates with up to 16
70// bits set in them. This uses t2_so_imm2part to match and t2_so_imm2part_[12]
71// to get the first/second pieces.
72def t2_so_imm2part : Operand<i32>,
73 PatLeaf<(imm), [{
74 return ARM_AM::isT2SOImmTwoPartVal((unsigned)N->getZExtValue());
75 }]> {
76}
77
78def t2_so_imm2part_1 : SDNodeXForm<imm, [{
79 unsigned V = ARM_AM::getT2SOImmTwoPartFirst((unsigned)N->getZExtValue());
80 return CurDAG->getTargetConstant(V, MVT::i32);
81}]>;
82
83def t2_so_imm2part_2 : SDNodeXForm<imm, [{
84 unsigned V = ARM_AM::getT2SOImmTwoPartSecond((unsigned)N->getZExtValue());
85 return CurDAG->getTargetConstant(V, MVT::i32);
86}]>;
87
Jim Grosbach15e6ef82009-11-23 20:35:53 +000088def t2_so_neg_imm2part : Operand<i32>, PatLeaf<(imm), [{
89 return ARM_AM::isT2SOImmTwoPartVal(-(int)N->getZExtValue());
90 }]> {
91}
92
93def t2_so_neg_imm2part_1 : SDNodeXForm<imm, [{
94 unsigned V = ARM_AM::getT2SOImmTwoPartFirst(-(int)N->getZExtValue());
95 return CurDAG->getTargetConstant(V, MVT::i32);
96}]>;
97
98def t2_so_neg_imm2part_2 : SDNodeXForm<imm, [{
99 unsigned V = ARM_AM::getT2SOImmTwoPartSecond(-(int)N->getZExtValue());
100 return CurDAG->getTargetConstant(V, MVT::i32);
101}]>;
102
Evan Chenga67efd12009-06-23 19:39:13 +0000103/// imm1_31 predicate - True if the 32-bit immediate is in the range [1,31].
104def imm1_31 : PatLeaf<(i32 imm), [{
105 return (int32_t)N->getZExtValue() >= 1 && (int32_t)N->getZExtValue() < 32;
106}]>;
107
Evan Chengf49810c2009-06-23 17:48:47 +0000108/// imm0_4095 predicate - True if the 32-bit immediate is in the range [0.4095].
Evan Cheng86198642009-08-07 00:34:42 +0000109def imm0_4095 : Operand<i32>,
110 PatLeaf<(i32 imm), [{
Evan Chengf49810c2009-06-23 17:48:47 +0000111 return (uint32_t)N->getZExtValue() < 4096;
112}]>;
Anton Korobeynikov52237112009-06-17 18:13:58 +0000113
Jim Grosbach64171712010-02-16 21:07:46 +0000114def imm0_4095_neg : PatLeaf<(i32 imm), [{
115 return (uint32_t)(-N->getZExtValue()) < 4096;
116}], imm_neg_XFORM>;
Anton Korobeynikov52237112009-06-17 18:13:58 +0000117
Evan Chengfa2ea1a2009-08-04 01:41:15 +0000118def imm0_255_neg : PatLeaf<(i32 imm), [{
119 return (uint32_t)(-N->getZExtValue()) < 255;
Jim Grosbach64171712010-02-16 21:07:46 +0000120}], imm_neg_XFORM>;
Evan Chengfa2ea1a2009-08-04 01:41:15 +0000121
Jim Grosbach502e0aa2010-07-14 17:45:16 +0000122def imm0_255_not : PatLeaf<(i32 imm), [{
123 return (uint32_t)(~N->getZExtValue()) < 255;
124}], imm_comp_XFORM>;
125
Evan Cheng055b0312009-06-29 07:51:04 +0000126// Define Thumb2 specific addressing modes.
127
128// t2addrmode_imm12 := reg + imm12
129def t2addrmode_imm12 : Operand<i32>,
130 ComplexPattern<i32, 2, "SelectT2AddrModeImm12", []> {
131 let PrintMethod = "printT2AddrModeImm12Operand";
132 let MIOperandInfo = (ops GPR:$base, i32imm:$offsimm);
133}
134
Johnny Chen0635fc52010-03-04 17:40:44 +0000135// t2addrmode_imm8 := reg +/- imm8
Evan Cheng055b0312009-06-29 07:51:04 +0000136def t2addrmode_imm8 : Operand<i32>,
137 ComplexPattern<i32, 2, "SelectT2AddrModeImm8", []> {
138 let PrintMethod = "printT2AddrModeImm8Operand";
139 let MIOperandInfo = (ops GPR:$base, i32imm:$offsimm);
140}
141
Evan Cheng6d94f112009-07-03 00:06:39 +0000142def t2am_imm8_offset : Operand<i32>,
Chris Lattner52a261b2010-09-21 20:31:19 +0000143 ComplexPattern<i32, 1, "SelectT2AddrModeImm8Offset",
144 [], [SDNPWantRoot]> {
Evan Chenge88d5ce2009-07-02 07:28:31 +0000145 let PrintMethod = "printT2AddrModeImm8OffsetOperand";
146}
147
Evan Cheng5c874172009-07-09 22:21:59 +0000148// t2addrmode_imm8s4 := reg +/- (imm8 << 2)
Chris Lattner979b0612010-09-05 22:51:11 +0000149def t2addrmode_imm8s4 : Operand<i32> {
Evan Cheng5c874172009-07-09 22:21:59 +0000150 let PrintMethod = "printT2AddrModeImm8s4Operand";
David Goodwin6647cea2009-06-30 22:50:01 +0000151 let MIOperandInfo = (ops GPR:$base, i32imm:$offsimm);
152}
153
Johnny Chenae1757b2010-03-11 01:13:36 +0000154def t2am_imm8s4_offset : Operand<i32> {
155 let PrintMethod = "printT2AddrModeImm8s4OffsetOperand";
156}
157
Evan Chengcba962d2009-07-09 20:40:44 +0000158// t2addrmode_so_reg := reg + (reg << imm2)
Evan Cheng055b0312009-06-29 07:51:04 +0000159def t2addrmode_so_reg : Operand<i32>,
160 ComplexPattern<i32, 3, "SelectT2AddrModeSoReg", []> {
161 let PrintMethod = "printT2AddrModeSoRegOperand";
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000162 let MIOperandInfo = (ops GPR:$base, rGPR:$offsreg, i32imm:$offsimm);
Evan Cheng055b0312009-06-29 07:51:04 +0000163}
164
165
Anton Korobeynikov52237112009-06-17 18:13:58 +0000166//===----------------------------------------------------------------------===//
Evan Cheng9cb9e672009-06-27 02:26:13 +0000167// Multiclass helpers...
Anton Korobeynikov52237112009-06-17 18:13:58 +0000168//
169
Evan Chenga67efd12009-06-23 19:39:13 +0000170/// T2I_un_irs - Defines a set of (op reg, {so_imm|r|so_reg}) patterns for a
Evan Cheng0aa1d8c2009-06-25 02:08:06 +0000171/// unary operation that produces a value. These are predicable and can be
172/// changed to modify CPSR.
Johnny Chend68e1192009-12-15 17:24:14 +0000173multiclass T2I_un_irs<bits<4> opcod, string opc, PatFrag opnode,
174 bit Cheap = 0, bit ReMat = 0> {
Evan Chenga67efd12009-06-23 19:39:13 +0000175 // shifted imm
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000176 def i : T2sI<(outs rGPR:$dst), (ins t2_so_imm:$src), IIC_iMOVi,
Evan Cheng699beba2009-10-27 00:08:59 +0000177 opc, "\t$dst, $src",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000178 [(set rGPR:$dst, (opnode t2_so_imm:$src))]> {
Evan Chenga67efd12009-06-23 19:39:13 +0000179 let isAsCheapAsAMove = Cheap;
180 let isReMaterializable = ReMat;
Johnny Chend68e1192009-12-15 17:24:14 +0000181 let Inst{31-27} = 0b11110;
182 let Inst{25} = 0;
183 let Inst{24-21} = opcod;
184 let Inst{20} = ?; // The S bit.
185 let Inst{19-16} = 0b1111; // Rn
186 let Inst{15} = 0;
Evan Chenga67efd12009-06-23 19:39:13 +0000187 }
188 // register
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000189 def r : T2sI<(outs rGPR:$dst), (ins rGPR:$src), IIC_iMOVr,
Bob Wilsonc21763f2010-05-24 22:41:19 +0000190 opc, ".w\t$dst, $src",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000191 [(set rGPR:$dst, (opnode rGPR:$src))]> {
Johnny Chend68e1192009-12-15 17:24:14 +0000192 let Inst{31-27} = 0b11101;
193 let Inst{26-25} = 0b01;
194 let Inst{24-21} = opcod;
195 let Inst{20} = ?; // The S bit.
196 let Inst{19-16} = 0b1111; // Rn
197 let Inst{14-12} = 0b000; // imm3
198 let Inst{7-6} = 0b00; // imm2
199 let Inst{5-4} = 0b00; // type
200 }
Evan Chenga67efd12009-06-23 19:39:13 +0000201 // shifted register
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000202 def s : T2sI<(outs rGPR:$dst), (ins t2_so_reg:$src), IIC_iMOVsi,
Bob Wilsonc21763f2010-05-24 22:41:19 +0000203 opc, ".w\t$dst, $src",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000204 [(set rGPR:$dst, (opnode t2_so_reg:$src))]> {
Johnny Chend68e1192009-12-15 17:24:14 +0000205 let Inst{31-27} = 0b11101;
206 let Inst{26-25} = 0b01;
207 let Inst{24-21} = opcod;
208 let Inst{20} = ?; // The S bit.
209 let Inst{19-16} = 0b1111; // Rn
210 }
Evan Chenga67efd12009-06-23 19:39:13 +0000211}
212
213/// T2I_bin_irs - Defines a set of (op reg, {so_imm|r|so_reg}) patterns for a
Bob Wilson4876bdb2010-05-25 04:43:08 +0000214/// binary operation that produces a value. These are predicable and can be
Evan Cheng0aa1d8c2009-06-25 02:08:06 +0000215/// changed to modify CPSR.
Evan Cheng7e1bf302010-09-29 00:27:46 +0000216multiclass T2I_bin_irs<bits<4> opcod, string opc,
217 InstrItinClass iii, InstrItinClass iir, InstrItinClass iis,
218 PatFrag opnode, bit Commutable = 0, string wide = ""> {
Anton Korobeynikov52237112009-06-17 18:13:58 +0000219 // shifted imm
Evan Cheng7e1bf302010-09-29 00:27:46 +0000220 def ri : T2sI<(outs rGPR:$dst), (ins rGPR:$lhs, t2_so_imm:$rhs), iii,
Evan Cheng699beba2009-10-27 00:08:59 +0000221 opc, "\t$dst, $lhs, $rhs",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000222 [(set rGPR:$dst, (opnode rGPR:$lhs, t2_so_imm:$rhs))]> {
Johnny Chend68e1192009-12-15 17:24:14 +0000223 let Inst{31-27} = 0b11110;
224 let Inst{25} = 0;
225 let Inst{24-21} = opcod;
Bill Wendling4822bce2010-08-30 01:47:35 +0000226 let Inst{20} = ?; // The S bit.
Johnny Chend68e1192009-12-15 17:24:14 +0000227 let Inst{15} = 0;
228 }
Evan Chenga67efd12009-06-23 19:39:13 +0000229 // register
Evan Cheng7e1bf302010-09-29 00:27:46 +0000230 def rr : T2sI<(outs rGPR:$dst), (ins rGPR:$lhs, rGPR:$rhs), iir,
Evan Cheng699beba2009-10-27 00:08:59 +0000231 opc, !strconcat(wide, "\t$dst, $lhs, $rhs"),
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000232 [(set rGPR:$dst, (opnode rGPR:$lhs, rGPR:$rhs))]> {
Evan Cheng8de898a2009-06-26 00:19:44 +0000233 let isCommutable = Commutable;
Johnny Chend68e1192009-12-15 17:24:14 +0000234 let Inst{31-27} = 0b11101;
235 let Inst{26-25} = 0b01;
236 let Inst{24-21} = opcod;
Bill Wendling4822bce2010-08-30 01:47:35 +0000237 let Inst{20} = ?; // The S bit.
Johnny Chend68e1192009-12-15 17:24:14 +0000238 let Inst{14-12} = 0b000; // imm3
239 let Inst{7-6} = 0b00; // imm2
240 let Inst{5-4} = 0b00; // type
Evan Cheng8de898a2009-06-26 00:19:44 +0000241 }
Anton Korobeynikov52237112009-06-17 18:13:58 +0000242 // shifted register
Evan Cheng7e1bf302010-09-29 00:27:46 +0000243 def rs : T2sI<(outs rGPR:$dst), (ins rGPR:$lhs, t2_so_reg:$rhs), iis,
Evan Cheng699beba2009-10-27 00:08:59 +0000244 opc, !strconcat(wide, "\t$dst, $lhs, $rhs"),
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000245 [(set rGPR:$dst, (opnode rGPR:$lhs, t2_so_reg:$rhs))]> {
Johnny Chend68e1192009-12-15 17:24:14 +0000246 let Inst{31-27} = 0b11101;
247 let Inst{26-25} = 0b01;
248 let Inst{24-21} = opcod;
Bill Wendling4822bce2010-08-30 01:47:35 +0000249 let Inst{20} = ?; // The S bit.
250 }
251}
252
David Goodwin1f096272009-07-27 23:34:12 +0000253/// T2I_bin_w_irs - Same as T2I_bin_irs except these operations need
254// the ".w" prefix to indicate that they are wide.
Evan Cheng7e1bf302010-09-29 00:27:46 +0000255multiclass T2I_bin_w_irs<bits<4> opcod, string opc,
256 InstrItinClass iii, InstrItinClass iir, InstrItinClass iis,
257 PatFrag opnode, bit Commutable = 0> :
258 T2I_bin_irs<opcod, opc, iii, iir, iis, opnode, Commutable, ".w">;
Bill Wendling1f7bf0e2010-08-29 03:55:31 +0000259
Evan Cheng1e249e32009-06-25 20:59:23 +0000260/// T2I_rbin_is - Same as T2I_bin_irs except the order of operands are
Bob Wilson20d8e4e2010-08-13 23:24:25 +0000261/// reversed. The 'rr' form is only defined for the disassembler; for codegen
262/// it is equivalent to the T2I_bin_irs counterpart.
263multiclass T2I_rbin_irs<bits<4> opcod, string opc, PatFrag opnode> {
Evan Chengf49810c2009-06-23 17:48:47 +0000264 // shifted imm
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000265 def ri : T2sI<(outs rGPR:$dst), (ins rGPR:$rhs, t2_so_imm:$lhs), IIC_iALUi,
Bob Wilson4876bdb2010-05-25 04:43:08 +0000266 opc, ".w\t$dst, $rhs, $lhs",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000267 [(set rGPR:$dst, (opnode t2_so_imm:$lhs, rGPR:$rhs))]> {
Johnny Chend68e1192009-12-15 17:24:14 +0000268 let Inst{31-27} = 0b11110;
269 let Inst{25} = 0;
270 let Inst{24-21} = opcod;
Bob Wilson4876bdb2010-05-25 04:43:08 +0000271 let Inst{20} = ?; // The S bit.
Johnny Chend68e1192009-12-15 17:24:14 +0000272 let Inst{15} = 0;
273 }
Bob Wilson20d8e4e2010-08-13 23:24:25 +0000274 // register
275 def rr : T2sI<(outs rGPR:$dst), (ins rGPR:$rhs, rGPR:$lhs), IIC_iALUr,
276 opc, "\t$dst, $rhs, $lhs",
Bob Wilson136e4912010-08-14 03:18:29 +0000277 [/* For disassembly only; pattern left blank */]> {
Bob Wilson20d8e4e2010-08-13 23:24:25 +0000278 let Inst{31-27} = 0b11101;
279 let Inst{26-25} = 0b01;
280 let Inst{24-21} = opcod;
281 let Inst{20} = ?; // The S bit.
282 let Inst{14-12} = 0b000; // imm3
283 let Inst{7-6} = 0b00; // imm2
284 let Inst{5-4} = 0b00; // type
285 }
Evan Chengf49810c2009-06-23 17:48:47 +0000286 // shifted register
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000287 def rs : T2sI<(outs rGPR:$dst), (ins rGPR:$rhs, t2_so_reg:$lhs), IIC_iALUsi,
Bob Wilson4876bdb2010-05-25 04:43:08 +0000288 opc, "\t$dst, $rhs, $lhs",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000289 [(set rGPR:$dst, (opnode t2_so_reg:$lhs, rGPR:$rhs))]> {
Johnny Chend68e1192009-12-15 17:24:14 +0000290 let Inst{31-27} = 0b11101;
291 let Inst{26-25} = 0b01;
292 let Inst{24-21} = opcod;
Bob Wilson4876bdb2010-05-25 04:43:08 +0000293 let Inst{20} = ?; // The S bit.
Johnny Chend68e1192009-12-15 17:24:14 +0000294 }
Evan Chengf49810c2009-06-23 17:48:47 +0000295}
296
Evan Chenga67efd12009-06-23 19:39:13 +0000297/// T2I_bin_s_irs - Similar to T2I_bin_irs except it sets the 's' bit so the
Anton Korobeynikov52237112009-06-17 18:13:58 +0000298/// instruction modifies the CPSR register.
299let Defs = [CPSR] in {
Evan Cheng7e1bf302010-09-29 00:27:46 +0000300multiclass T2I_bin_s_irs<bits<4> opcod, string opc,
301 InstrItinClass iii, InstrItinClass iir, InstrItinClass iis,
302 PatFrag opnode, bit Commutable = 0> {
Anton Korobeynikov52237112009-06-17 18:13:58 +0000303 // shifted imm
Evan Cheng7e1bf302010-09-29 00:27:46 +0000304 def ri : T2I<(outs rGPR:$dst), (ins GPR:$lhs, t2_so_imm:$rhs), iii,
Evan Cheng699beba2009-10-27 00:08:59 +0000305 !strconcat(opc, "s"), ".w\t$dst, $lhs, $rhs",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000306 [(set rGPR:$dst, (opnode GPR:$lhs, t2_so_imm:$rhs))]> {
Johnny Chend68e1192009-12-15 17:24:14 +0000307 let Inst{31-27} = 0b11110;
308 let Inst{25} = 0;
309 let Inst{24-21} = opcod;
310 let Inst{20} = 1; // The S bit.
311 let Inst{15} = 0;
312 }
Evan Chenga67efd12009-06-23 19:39:13 +0000313 // register
Evan Cheng7e1bf302010-09-29 00:27:46 +0000314 def rr : T2I<(outs rGPR:$dst), (ins GPR:$lhs, rGPR:$rhs), iir,
Evan Cheng699beba2009-10-27 00:08:59 +0000315 !strconcat(opc, "s"), ".w\t$dst, $lhs, $rhs",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000316 [(set rGPR:$dst, (opnode GPR:$lhs, rGPR:$rhs))]> {
Evan Cheng8de898a2009-06-26 00:19:44 +0000317 let isCommutable = Commutable;
Johnny Chend68e1192009-12-15 17:24:14 +0000318 let Inst{31-27} = 0b11101;
319 let Inst{26-25} = 0b01;
320 let Inst{24-21} = opcod;
321 let Inst{20} = 1; // The S bit.
322 let Inst{14-12} = 0b000; // imm3
323 let Inst{7-6} = 0b00; // imm2
324 let Inst{5-4} = 0b00; // type
Evan Cheng8de898a2009-06-26 00:19:44 +0000325 }
Anton Korobeynikov52237112009-06-17 18:13:58 +0000326 // shifted register
Evan Cheng7e1bf302010-09-29 00:27:46 +0000327 def rs : T2I<(outs rGPR:$dst), (ins GPR:$lhs, t2_so_reg:$rhs), iis,
Evan Cheng699beba2009-10-27 00:08:59 +0000328 !strconcat(opc, "s"), ".w\t$dst, $lhs, $rhs",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000329 [(set rGPR:$dst, (opnode GPR:$lhs, t2_so_reg:$rhs))]> {
Johnny Chend68e1192009-12-15 17:24:14 +0000330 let Inst{31-27} = 0b11101;
331 let Inst{26-25} = 0b01;
332 let Inst{24-21} = opcod;
333 let Inst{20} = 1; // The S bit.
334 }
Anton Korobeynikov52237112009-06-17 18:13:58 +0000335}
336}
337
Evan Chenga67efd12009-06-23 19:39:13 +0000338/// T2I_bin_ii12rs - Defines a set of (op reg, {so_imm|imm0_4095|r|so_reg})
339/// patterns for a binary operation that produces a value.
Johnny Chend68e1192009-12-15 17:24:14 +0000340multiclass T2I_bin_ii12rs<bits<3> op23_21, string opc, PatFrag opnode,
341 bit Commutable = 0> {
Evan Chengf49810c2009-06-23 17:48:47 +0000342 // shifted imm
Jim Grosbach663e3392010-08-30 19:49:58 +0000343 // The register-immediate version is re-materializable. This is useful
344 // in particular for taking the address of a local.
345 let isReMaterializable = 1 in {
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000346 def ri : T2sI<(outs rGPR:$dst), (ins GPR:$lhs, t2_so_imm:$rhs), IIC_iALUi,
Evan Cheng699beba2009-10-27 00:08:59 +0000347 opc, ".w\t$dst, $lhs, $rhs",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000348 [(set rGPR:$dst, (opnode GPR:$lhs, t2_so_imm:$rhs))]> {
Johnny Chend68e1192009-12-15 17:24:14 +0000349 let Inst{31-27} = 0b11110;
350 let Inst{25} = 0;
351 let Inst{24} = 1;
352 let Inst{23-21} = op23_21;
353 let Inst{20} = 0; // The S bit.
354 let Inst{15} = 0;
355 }
Jim Grosbach663e3392010-08-30 19:49:58 +0000356 }
Evan Chengf49810c2009-06-23 17:48:47 +0000357 // 12-bit imm
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000358 def ri12 : T2I<(outs rGPR:$dst), (ins GPR:$lhs, imm0_4095:$rhs), IIC_iALUi,
Bob Wilsonf5fd4992010-03-08 22:56:15 +0000359 !strconcat(opc, "w"), "\t$dst, $lhs, $rhs",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000360 [(set rGPR:$dst, (opnode GPR:$lhs, imm0_4095:$rhs))]> {
Johnny Chend68e1192009-12-15 17:24:14 +0000361 let Inst{31-27} = 0b11110;
362 let Inst{25} = 1;
363 let Inst{24} = 0;
364 let Inst{23-21} = op23_21;
365 let Inst{20} = 0; // The S bit.
366 let Inst{15} = 0;
367 }
Evan Chenga67efd12009-06-23 19:39:13 +0000368 // register
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000369 def rr : T2sI<(outs rGPR:$dst), (ins GPR:$lhs, rGPR:$rhs), IIC_iALUr,
Evan Cheng699beba2009-10-27 00:08:59 +0000370 opc, ".w\t$dst, $lhs, $rhs",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000371 [(set rGPR:$dst, (opnode GPR:$lhs, rGPR:$rhs))]> {
Evan Cheng8de898a2009-06-26 00:19:44 +0000372 let isCommutable = Commutable;
Johnny Chend68e1192009-12-15 17:24:14 +0000373 let Inst{31-27} = 0b11101;
374 let Inst{26-25} = 0b01;
375 let Inst{24} = 1;
376 let Inst{23-21} = op23_21;
377 let Inst{20} = 0; // The S bit.
378 let Inst{14-12} = 0b000; // imm3
379 let Inst{7-6} = 0b00; // imm2
380 let Inst{5-4} = 0b00; // type
Evan Cheng8de898a2009-06-26 00:19:44 +0000381 }
Evan Chengf49810c2009-06-23 17:48:47 +0000382 // shifted register
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000383 def rs : T2sI<(outs rGPR:$dst), (ins GPR:$lhs, t2_so_reg:$rhs), IIC_iALUsi,
Evan Cheng699beba2009-10-27 00:08:59 +0000384 opc, ".w\t$dst, $lhs, $rhs",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000385 [(set rGPR:$dst, (opnode GPR:$lhs, t2_so_reg:$rhs))]> {
Johnny Chend68e1192009-12-15 17:24:14 +0000386 let Inst{31-27} = 0b11101;
Johnny Chend68e1192009-12-15 17:24:14 +0000387 let Inst{26-25} = 0b01;
Johnny Chend248ffb2010-01-08 17:41:33 +0000388 let Inst{24} = 1;
Johnny Chend68e1192009-12-15 17:24:14 +0000389 let Inst{23-21} = op23_21;
390 let Inst{20} = 0; // The S bit.
391 }
Evan Chengf49810c2009-06-23 17:48:47 +0000392}
393
Jim Grosbach6935efc2009-11-24 00:20:27 +0000394/// T2I_adde_sube_irs - Defines a set of (op reg, {so_imm|r|so_reg}) patterns
Jim Grosbach39be8fc2010-02-16 20:42:29 +0000395/// for a binary operation that produces a value and use the carry
Jim Grosbach6935efc2009-11-24 00:20:27 +0000396/// bit. It's not predicable.
Evan Cheng62674222009-06-25 23:34:10 +0000397let Uses = [CPSR] in {
Jim Grosbach80dc1162010-02-16 21:23:02 +0000398multiclass T2I_adde_sube_irs<bits<4> opcod, string opc, PatFrag opnode,
399 bit Commutable = 0> {
Anton Korobeynikov52237112009-06-17 18:13:58 +0000400 // shifted imm
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000401 def ri : T2sI<(outs rGPR:$dst), (ins rGPR:$lhs, t2_so_imm:$rhs), IIC_iALUi,
Evan Cheng699beba2009-10-27 00:08:59 +0000402 opc, "\t$dst, $lhs, $rhs",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000403 [(set rGPR:$dst, (opnode rGPR:$lhs, t2_so_imm:$rhs))]>,
Jim Grosbach39be8fc2010-02-16 20:42:29 +0000404 Requires<[IsThumb2]> {
Johnny Chend68e1192009-12-15 17:24:14 +0000405 let Inst{31-27} = 0b11110;
406 let Inst{25} = 0;
407 let Inst{24-21} = opcod;
408 let Inst{20} = 0; // The S bit.
409 let Inst{15} = 0;
410 }
Evan Chenga67efd12009-06-23 19:39:13 +0000411 // register
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000412 def rr : T2sI<(outs rGPR:$dst), (ins rGPR:$lhs, rGPR:$rhs), IIC_iALUr,
Evan Cheng699beba2009-10-27 00:08:59 +0000413 opc, ".w\t$dst, $lhs, $rhs",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000414 [(set rGPR:$dst, (opnode rGPR:$lhs, rGPR:$rhs))]>,
Jim Grosbach39be8fc2010-02-16 20:42:29 +0000415 Requires<[IsThumb2]> {
Evan Cheng8de898a2009-06-26 00:19:44 +0000416 let isCommutable = Commutable;
Johnny Chend68e1192009-12-15 17:24:14 +0000417 let Inst{31-27} = 0b11101;
418 let Inst{26-25} = 0b01;
419 let Inst{24-21} = opcod;
420 let Inst{20} = 0; // The S bit.
421 let Inst{14-12} = 0b000; // imm3
422 let Inst{7-6} = 0b00; // imm2
423 let Inst{5-4} = 0b00; // type
Evan Cheng8de898a2009-06-26 00:19:44 +0000424 }
Anton Korobeynikov52237112009-06-17 18:13:58 +0000425 // shifted register
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000426 def rs : T2sI<(outs rGPR:$dst), (ins rGPR:$lhs, t2_so_reg:$rhs), IIC_iALUsi,
Evan Cheng699beba2009-10-27 00:08:59 +0000427 opc, ".w\t$dst, $lhs, $rhs",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000428 [(set rGPR:$dst, (opnode rGPR:$lhs, t2_so_reg:$rhs))]>,
Jim Grosbach39be8fc2010-02-16 20:42:29 +0000429 Requires<[IsThumb2]> {
Johnny Chend68e1192009-12-15 17:24:14 +0000430 let Inst{31-27} = 0b11101;
431 let Inst{26-25} = 0b01;
432 let Inst{24-21} = opcod;
433 let Inst{20} = 0; // The S bit.
434 }
Jim Grosbach39be8fc2010-02-16 20:42:29 +0000435}
436
437// Carry setting variants
438let Defs = [CPSR] in {
Jim Grosbach80dc1162010-02-16 21:23:02 +0000439multiclass T2I_adde_sube_s_irs<bits<4> opcod, string opc, PatFrag opnode,
440 bit Commutable = 0> {
Evan Cheng62674222009-06-25 23:34:10 +0000441 // shifted imm
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000442 def ri : T2sI<(outs rGPR:$dst), (ins rGPR:$lhs, t2_so_imm:$rhs), IIC_iALUi,
Johnny Chenb5031ad2010-03-02 19:38:59 +0000443 opc, "\t$dst, $lhs, $rhs",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000444 [(set rGPR:$dst, (opnode rGPR:$lhs, t2_so_imm:$rhs))]>,
Johnny Chenb5031ad2010-03-02 19:38:59 +0000445 Requires<[IsThumb2]> {
Johnny Chend68e1192009-12-15 17:24:14 +0000446 let Inst{31-27} = 0b11110;
447 let Inst{25} = 0;
448 let Inst{24-21} = opcod;
449 let Inst{20} = 1; // The S bit.
450 let Inst{15} = 0;
451 }
Evan Cheng62674222009-06-25 23:34:10 +0000452 // register
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000453 def rr : T2sI<(outs rGPR:$dst), (ins rGPR:$lhs, rGPR:$rhs), IIC_iALUr,
Johnny Chenb5031ad2010-03-02 19:38:59 +0000454 opc, ".w\t$dst, $lhs, $rhs",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000455 [(set rGPR:$dst, (opnode rGPR:$lhs, rGPR:$rhs))]>,
Johnny Chenb5031ad2010-03-02 19:38:59 +0000456 Requires<[IsThumb2]> {
Johnny Chend68e1192009-12-15 17:24:14 +0000457 let isCommutable = Commutable;
458 let Inst{31-27} = 0b11101;
459 let Inst{26-25} = 0b01;
460 let Inst{24-21} = opcod;
461 let Inst{20} = 1; // The S bit.
462 let Inst{14-12} = 0b000; // imm3
463 let Inst{7-6} = 0b00; // imm2
464 let Inst{5-4} = 0b00; // type
Evan Cheng8de898a2009-06-26 00:19:44 +0000465 }
Evan Cheng62674222009-06-25 23:34:10 +0000466 // shifted register
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000467 def rs : T2sI<(outs rGPR:$dst), (ins rGPR:$lhs, t2_so_reg:$rhs), IIC_iALUsi,
Johnny Chenb5031ad2010-03-02 19:38:59 +0000468 opc, ".w\t$dst, $lhs, $rhs",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000469 [(set rGPR:$dst, (opnode rGPR:$lhs, t2_so_reg:$rhs))]>,
Johnny Chenb5031ad2010-03-02 19:38:59 +0000470 Requires<[IsThumb2]> {
Johnny Chend68e1192009-12-15 17:24:14 +0000471 let Inst{31-27} = 0b11101;
472 let Inst{26-25} = 0b01;
473 let Inst{24-21} = opcod;
474 let Inst{20} = 1; // The S bit.
Evan Cheng8de898a2009-06-26 00:19:44 +0000475 }
Evan Chengf49810c2009-06-23 17:48:47 +0000476}
477}
Jim Grosbach39be8fc2010-02-16 20:42:29 +0000478}
Evan Chengf49810c2009-06-23 17:48:47 +0000479
Bob Wilson20d8e4e2010-08-13 23:24:25 +0000480/// T2I_rbin_s_is - Same as T2I_rbin_irs except sets 's' bit and the register
481/// version is not needed since this is only for codegen.
Evan Cheng1e249e32009-06-25 20:59:23 +0000482let Defs = [CPSR] in {
Johnny Chend68e1192009-12-15 17:24:14 +0000483multiclass T2I_rbin_s_is<bits<4> opcod, string opc, PatFrag opnode> {
Evan Chengf49810c2009-06-23 17:48:47 +0000484 // shifted imm
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000485 def ri : T2I<(outs rGPR:$dst), (ins rGPR:$rhs, t2_so_imm:$lhs), IIC_iALUi,
Bob Wilson4876bdb2010-05-25 04:43:08 +0000486 !strconcat(opc, "s"), ".w\t$dst, $rhs, $lhs",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000487 [(set rGPR:$dst, (opnode t2_so_imm:$lhs, rGPR:$rhs))]> {
Johnny Chend68e1192009-12-15 17:24:14 +0000488 let Inst{31-27} = 0b11110;
489 let Inst{25} = 0;
490 let Inst{24-21} = opcod;
491 let Inst{20} = 1; // The S bit.
492 let Inst{15} = 0;
493 }
Evan Chengf49810c2009-06-23 17:48:47 +0000494 // shifted register
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000495 def rs : T2I<(outs rGPR:$dst), (ins rGPR:$rhs, t2_so_reg:$lhs), IIC_iALUsi,
Bob Wilson4876bdb2010-05-25 04:43:08 +0000496 !strconcat(opc, "s"), "\t$dst, $rhs, $lhs",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000497 [(set rGPR:$dst, (opnode t2_so_reg:$lhs, rGPR:$rhs))]> {
Johnny Chend68e1192009-12-15 17:24:14 +0000498 let Inst{31-27} = 0b11101;
499 let Inst{26-25} = 0b01;
500 let Inst{24-21} = opcod;
501 let Inst{20} = 1; // The S bit.
502 }
Evan Chengf49810c2009-06-23 17:48:47 +0000503}
504}
505
Evan Chenga67efd12009-06-23 19:39:13 +0000506/// T2I_sh_ir - Defines a set of (op reg, {so_imm|r}) patterns for a shift /
507// rotate operation that produces a value.
Johnny Chend68e1192009-12-15 17:24:14 +0000508multiclass T2I_sh_ir<bits<2> opcod, string opc, PatFrag opnode> {
Evan Chenga67efd12009-06-23 19:39:13 +0000509 // 5-bit imm
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000510 def ri : T2sI<(outs rGPR:$dst), (ins rGPR:$lhs, i32imm:$rhs), IIC_iMOVsi,
Evan Cheng699beba2009-10-27 00:08:59 +0000511 opc, ".w\t$dst, $lhs, $rhs",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000512 [(set rGPR:$dst, (opnode rGPR:$lhs, imm1_31:$rhs))]> {
Johnny Chend68e1192009-12-15 17:24:14 +0000513 let Inst{31-27} = 0b11101;
514 let Inst{26-21} = 0b010010;
515 let Inst{19-16} = 0b1111; // Rn
516 let Inst{5-4} = opcod;
517 }
Evan Chenga67efd12009-06-23 19:39:13 +0000518 // register
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000519 def rr : T2sI<(outs rGPR:$dst), (ins rGPR:$lhs, rGPR:$rhs), IIC_iMOVsr,
Evan Cheng699beba2009-10-27 00:08:59 +0000520 opc, ".w\t$dst, $lhs, $rhs",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000521 [(set rGPR:$dst, (opnode rGPR:$lhs, rGPR:$rhs))]> {
Johnny Chend68e1192009-12-15 17:24:14 +0000522 let Inst{31-27} = 0b11111;
523 let Inst{26-23} = 0b0100;
524 let Inst{22-21} = opcod;
525 let Inst{15-12} = 0b1111;
526 let Inst{7-4} = 0b0000;
527 }
Evan Chenga67efd12009-06-23 19:39:13 +0000528}
Evan Chengf49810c2009-06-23 17:48:47 +0000529
Johnny Chend68e1192009-12-15 17:24:14 +0000530/// T2I_cmp_irs - Defines a set of (op r, {so_imm|r|so_reg}) cmp / test
Evan Chenga67efd12009-06-23 19:39:13 +0000531/// patterns. Similar to T2I_bin_irs except the instruction does not produce
Evan Chengf49810c2009-06-23 17:48:47 +0000532/// a explicit result, only implicitly set CPSR.
Bill Wendlingf0e132c2010-08-19 00:05:48 +0000533let isCompare = 1, Defs = [CPSR] in {
Johnny Chend68e1192009-12-15 17:24:14 +0000534multiclass T2I_cmp_irs<bits<4> opcod, string opc, PatFrag opnode> {
Evan Chengf49810c2009-06-23 17:48:47 +0000535 // shifted imm
David Goodwin5d598aa2009-08-19 18:00:44 +0000536 def ri : T2I<(outs), (ins GPR:$lhs, t2_so_imm:$rhs), IIC_iCMPi,
Evan Cheng699beba2009-10-27 00:08:59 +0000537 opc, ".w\t$lhs, $rhs",
Johnny Chend68e1192009-12-15 17:24:14 +0000538 [(opnode GPR:$lhs, t2_so_imm:$rhs)]> {
539 let Inst{31-27} = 0b11110;
540 let Inst{25} = 0;
541 let Inst{24-21} = opcod;
542 let Inst{20} = 1; // The S bit.
543 let Inst{15} = 0;
544 let Inst{11-8} = 0b1111; // Rd
545 }
Evan Chenga67efd12009-06-23 19:39:13 +0000546 // register
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000547 def rr : T2I<(outs), (ins GPR:$lhs, rGPR:$rhs), IIC_iCMPr,
Evan Cheng699beba2009-10-27 00:08:59 +0000548 opc, ".w\t$lhs, $rhs",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000549 [(opnode GPR:$lhs, rGPR:$rhs)]> {
Johnny Chend68e1192009-12-15 17:24:14 +0000550 let Inst{31-27} = 0b11101;
551 let Inst{26-25} = 0b01;
552 let Inst{24-21} = opcod;
553 let Inst{20} = 1; // The S bit.
554 let Inst{14-12} = 0b000; // imm3
555 let Inst{11-8} = 0b1111; // Rd
556 let Inst{7-6} = 0b00; // imm2
557 let Inst{5-4} = 0b00; // type
558 }
Evan Chengf49810c2009-06-23 17:48:47 +0000559 // shifted register
David Goodwin5d598aa2009-08-19 18:00:44 +0000560 def rs : T2I<(outs), (ins GPR:$lhs, t2_so_reg:$rhs), IIC_iCMPsi,
Evan Cheng699beba2009-10-27 00:08:59 +0000561 opc, ".w\t$lhs, $rhs",
Johnny Chend68e1192009-12-15 17:24:14 +0000562 [(opnode GPR:$lhs, t2_so_reg:$rhs)]> {
563 let Inst{31-27} = 0b11101;
564 let Inst{26-25} = 0b01;
565 let Inst{24-21} = opcod;
566 let Inst{20} = 1; // The S bit.
567 let Inst{11-8} = 0b1111; // Rd
568 }
Anton Korobeynikov52237112009-06-17 18:13:58 +0000569}
570}
571
Evan Chengf3c21b82009-06-30 02:15:48 +0000572/// T2I_ld - Defines a set of (op r, {imm12|imm8|so_reg}) load patterns.
Johnny Chend68e1192009-12-15 17:24:14 +0000573multiclass T2I_ld<bit signed, bits<2> opcod, string opc, PatFrag opnode> {
David Goodwin5d598aa2009-08-19 18:00:44 +0000574 def i12 : T2Ii12<(outs GPR:$dst), (ins t2addrmode_imm12:$addr), IIC_iLoadi,
Evan Cheng699beba2009-10-27 00:08:59 +0000575 opc, ".w\t$dst, $addr",
Johnny Chend68e1192009-12-15 17:24:14 +0000576 [(set GPR:$dst, (opnode t2addrmode_imm12:$addr))]> {
577 let Inst{31-27} = 0b11111;
578 let Inst{26-25} = 0b00;
579 let Inst{24} = signed;
580 let Inst{23} = 1;
581 let Inst{22-21} = opcod;
582 let Inst{20} = 1; // load
583 }
David Goodwin5d598aa2009-08-19 18:00:44 +0000584 def i8 : T2Ii8 <(outs GPR:$dst), (ins t2addrmode_imm8:$addr), IIC_iLoadi,
Evan Cheng699beba2009-10-27 00:08:59 +0000585 opc, "\t$dst, $addr",
Johnny Chend68e1192009-12-15 17:24:14 +0000586 [(set GPR:$dst, (opnode t2addrmode_imm8:$addr))]> {
587 let Inst{31-27} = 0b11111;
588 let Inst{26-25} = 0b00;
589 let Inst{24} = signed;
590 let Inst{23} = 0;
591 let Inst{22-21} = opcod;
592 let Inst{20} = 1; // load
593 let Inst{11} = 1;
594 // Offset: index==TRUE, wback==FALSE
595 let Inst{10} = 1; // The P bit.
596 let Inst{8} = 0; // The W bit.
597 }
David Goodwin5d598aa2009-08-19 18:00:44 +0000598 def s : T2Iso <(outs GPR:$dst), (ins t2addrmode_so_reg:$addr), IIC_iLoadr,
Evan Cheng699beba2009-10-27 00:08:59 +0000599 opc, ".w\t$dst, $addr",
Johnny Chend68e1192009-12-15 17:24:14 +0000600 [(set GPR:$dst, (opnode t2addrmode_so_reg:$addr))]> {
601 let Inst{31-27} = 0b11111;
602 let Inst{26-25} = 0b00;
603 let Inst{24} = signed;
604 let Inst{23} = 0;
605 let Inst{22-21} = opcod;
606 let Inst{20} = 1; // load
607 let Inst{11-6} = 0b000000;
608 }
David Goodwin5d598aa2009-08-19 18:00:44 +0000609 def pci : T2Ipc <(outs GPR:$dst), (ins i32imm:$addr), IIC_iLoadi,
Evan Cheng699beba2009-10-27 00:08:59 +0000610 opc, ".w\t$dst, $addr",
Evan Cheng9eda6892009-10-31 03:39:36 +0000611 [(set GPR:$dst, (opnode (ARMWrapper tconstpool:$addr)))]> {
612 let isReMaterializable = 1;
Johnny Chend68e1192009-12-15 17:24:14 +0000613 let Inst{31-27} = 0b11111;
614 let Inst{26-25} = 0b00;
615 let Inst{24} = signed;
616 let Inst{23} = ?; // add = (U == '1')
617 let Inst{22-21} = opcod;
618 let Inst{20} = 1; // load
619 let Inst{19-16} = 0b1111; // Rn
Evan Cheng9eda6892009-10-31 03:39:36 +0000620 }
Evan Chengf3c21b82009-06-30 02:15:48 +0000621}
622
David Goodwin73b8f162009-06-30 22:11:34 +0000623/// T2I_st - Defines a set of (op r, {imm12|imm8|so_reg}) store patterns.
Johnny Chend68e1192009-12-15 17:24:14 +0000624multiclass T2I_st<bits<2> opcod, string opc, PatFrag opnode> {
David Goodwin5d598aa2009-08-19 18:00:44 +0000625 def i12 : T2Ii12<(outs), (ins GPR:$src, t2addrmode_imm12:$addr), IIC_iStorei,
Evan Cheng699beba2009-10-27 00:08:59 +0000626 opc, ".w\t$src, $addr",
Johnny Chend68e1192009-12-15 17:24:14 +0000627 [(opnode GPR:$src, t2addrmode_imm12:$addr)]> {
628 let Inst{31-27} = 0b11111;
629 let Inst{26-23} = 0b0001;
630 let Inst{22-21} = opcod;
631 let Inst{20} = 0; // !load
632 }
David Goodwin5d598aa2009-08-19 18:00:44 +0000633 def i8 : T2Ii8 <(outs), (ins GPR:$src, t2addrmode_imm8:$addr), IIC_iStorei,
Evan Cheng699beba2009-10-27 00:08:59 +0000634 opc, "\t$src, $addr",
Johnny Chend68e1192009-12-15 17:24:14 +0000635 [(opnode GPR:$src, t2addrmode_imm8:$addr)]> {
636 let Inst{31-27} = 0b11111;
637 let Inst{26-23} = 0b0000;
638 let Inst{22-21} = opcod;
639 let Inst{20} = 0; // !load
640 let Inst{11} = 1;
641 // Offset: index==TRUE, wback==FALSE
642 let Inst{10} = 1; // The P bit.
643 let Inst{8} = 0; // The W bit.
644 }
David Goodwin5d598aa2009-08-19 18:00:44 +0000645 def s : T2Iso <(outs), (ins GPR:$src, t2addrmode_so_reg:$addr), IIC_iStorer,
Evan Cheng699beba2009-10-27 00:08:59 +0000646 opc, ".w\t$src, $addr",
Johnny Chend68e1192009-12-15 17:24:14 +0000647 [(opnode GPR:$src, t2addrmode_so_reg:$addr)]> {
648 let Inst{31-27} = 0b11111;
649 let Inst{26-23} = 0b0000;
650 let Inst{22-21} = opcod;
651 let Inst{20} = 0; // !load
652 let Inst{11-6} = 0b000000;
653 }
David Goodwin73b8f162009-06-30 22:11:34 +0000654}
655
Evan Chengd27c9fc2009-07-03 01:43:10 +0000656/// T2I_unary_rrot - A unary operation with two forms: one whose operand is a
657/// register and one whose operand is a register rotated by 8/16/24.
Johnny Chend68e1192009-12-15 17:24:14 +0000658multiclass T2I_unary_rrot<bits<3> opcod, string opc, PatFrag opnode> {
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000659 def r : T2I<(outs rGPR:$dst), (ins rGPR:$src), IIC_iUNAr,
Evan Cheng699beba2009-10-27 00:08:59 +0000660 opc, ".w\t$dst, $src",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000661 [(set rGPR:$dst, (opnode rGPR:$src))]> {
Johnny Chend68e1192009-12-15 17:24:14 +0000662 let Inst{31-27} = 0b11111;
663 let Inst{26-23} = 0b0100;
664 let Inst{22-20} = opcod;
665 let Inst{19-16} = 0b1111; // Rn
666 let Inst{15-12} = 0b1111;
667 let Inst{7} = 1;
668 let Inst{5-4} = 0b00; // rotate
669 }
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000670 def r_rot : T2I<(outs rGPR:$dst), (ins rGPR:$src, i32imm:$rot), IIC_iUNAsi,
Evan Cheng699beba2009-10-27 00:08:59 +0000671 opc, ".w\t$dst, $src, ror $rot",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000672 [(set rGPR:$dst, (opnode (rotr rGPR:$src, rot_imm:$rot)))]> {
Johnny Chend68e1192009-12-15 17:24:14 +0000673 let Inst{31-27} = 0b11111;
674 let Inst{26-23} = 0b0100;
675 let Inst{22-20} = opcod;
676 let Inst{19-16} = 0b1111; // Rn
677 let Inst{15-12} = 0b1111;
678 let Inst{7} = 1;
679 let Inst{5-4} = {?,?}; // rotate
680 }
Evan Chengd27c9fc2009-07-03 01:43:10 +0000681}
682
Eli Friedman761fa7a2010-06-24 18:20:04 +0000683// UXTB16 - Requres T2ExtractPack, does not need the .w qualifier.
684multiclass T2I_unary_rrot_uxtb16<bits<3> opcod, string opc, PatFrag opnode> {
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000685 def r : T2I<(outs rGPR:$dst), (ins rGPR:$src), IIC_iUNAr,
Johnny Chen267124c2010-03-04 22:24:41 +0000686 opc, "\t$dst, $src",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000687 [(set rGPR:$dst, (opnode rGPR:$src))]>,
Jim Grosbach29402132010-05-05 23:44:43 +0000688 Requires<[HasT2ExtractPack]> {
Johnny Chen267124c2010-03-04 22:24:41 +0000689 let Inst{31-27} = 0b11111;
690 let Inst{26-23} = 0b0100;
691 let Inst{22-20} = opcod;
692 let Inst{19-16} = 0b1111; // Rn
693 let Inst{15-12} = 0b1111;
694 let Inst{7} = 1;
695 let Inst{5-4} = 0b00; // rotate
696 }
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000697 def r_rot : T2I<(outs rGPR:$dst), (ins rGPR:$src, i32imm:$rot), IIC_iUNAsi,
Johnny Chen267124c2010-03-04 22:24:41 +0000698 opc, "\t$dst, $src, ror $rot",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000699 [(set rGPR:$dst, (opnode (rotr rGPR:$src, rot_imm:$rot)))]>,
Jim Grosbach29402132010-05-05 23:44:43 +0000700 Requires<[HasT2ExtractPack]> {
Johnny Chen267124c2010-03-04 22:24:41 +0000701 let Inst{31-27} = 0b11111;
702 let Inst{26-23} = 0b0100;
703 let Inst{22-20} = opcod;
704 let Inst{19-16} = 0b1111; // Rn
705 let Inst{15-12} = 0b1111;
706 let Inst{7} = 1;
707 let Inst{5-4} = {?,?}; // rotate
708 }
709}
710
Eli Friedman761fa7a2010-06-24 18:20:04 +0000711// SXTB16 - Requres T2ExtractPack, does not need the .w qualifier, no pattern
712// supported yet.
713multiclass T2I_unary_rrot_sxtb16<bits<3> opcod, string opc> {
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000714 def r : T2I<(outs rGPR:$dst), (ins rGPR:$src), IIC_iUNAr,
Johnny Chen93042d12010-03-02 18:14:57 +0000715 opc, "\t$dst, $src", []> {
716 let Inst{31-27} = 0b11111;
717 let Inst{26-23} = 0b0100;
718 let Inst{22-20} = opcod;
719 let Inst{19-16} = 0b1111; // Rn
720 let Inst{15-12} = 0b1111;
721 let Inst{7} = 1;
722 let Inst{5-4} = 0b00; // rotate
723 }
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000724 def r_rot : T2I<(outs rGPR:$dst), (ins rGPR:$src, i32imm:$rot), IIC_iUNAsi,
Johnny Chen93042d12010-03-02 18:14:57 +0000725 opc, "\t$dst, $src, ror $rot", []> {
726 let Inst{31-27} = 0b11111;
727 let Inst{26-23} = 0b0100;
728 let Inst{22-20} = opcod;
729 let Inst{19-16} = 0b1111; // Rn
730 let Inst{15-12} = 0b1111;
731 let Inst{7} = 1;
732 let Inst{5-4} = {?,?}; // rotate
733 }
734}
735
Evan Chengd27c9fc2009-07-03 01:43:10 +0000736/// T2I_bin_rrot - A binary operation with two forms: one whose operand is a
737/// register and one whose operand is a register rotated by 8/16/24.
Johnny Chend68e1192009-12-15 17:24:14 +0000738multiclass T2I_bin_rrot<bits<3> opcod, string opc, PatFrag opnode> {
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000739 def rr : T2I<(outs rGPR:$dst), (ins rGPR:$LHS, rGPR:$RHS), IIC_iALUr,
Evan Cheng699beba2009-10-27 00:08:59 +0000740 opc, "\t$dst, $LHS, $RHS",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000741 [(set rGPR:$dst, (opnode rGPR:$LHS, rGPR:$RHS))]>,
Jim Grosbach29402132010-05-05 23:44:43 +0000742 Requires<[HasT2ExtractPack]> {
Johnny Chend68e1192009-12-15 17:24:14 +0000743 let Inst{31-27} = 0b11111;
744 let Inst{26-23} = 0b0100;
745 let Inst{22-20} = opcod;
746 let Inst{15-12} = 0b1111;
747 let Inst{7} = 1;
748 let Inst{5-4} = 0b00; // rotate
749 }
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000750 def rr_rot : T2I<(outs rGPR:$dst), (ins rGPR:$LHS, rGPR:$RHS, i32imm:$rot),
Evan Cheng699beba2009-10-27 00:08:59 +0000751 IIC_iALUsr, opc, "\t$dst, $LHS, $RHS, ror $rot",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000752 [(set rGPR:$dst, (opnode rGPR:$LHS,
753 (rotr rGPR:$RHS, rot_imm:$rot)))]>,
Jim Grosbach29402132010-05-05 23:44:43 +0000754 Requires<[HasT2ExtractPack]> {
Johnny Chend68e1192009-12-15 17:24:14 +0000755 let Inst{31-27} = 0b11111;
756 let Inst{26-23} = 0b0100;
757 let Inst{22-20} = opcod;
758 let Inst{15-12} = 0b1111;
759 let Inst{7} = 1;
760 let Inst{5-4} = {?,?}; // rotate
761 }
Evan Chengd27c9fc2009-07-03 01:43:10 +0000762}
763
Johnny Chen93042d12010-03-02 18:14:57 +0000764// DO variant - disassembly only, no pattern
765
766multiclass T2I_bin_rrot_DO<bits<3> opcod, string opc> {
Evan Cheng7e1bf302010-09-29 00:27:46 +0000767 def rr : T2I<(outs rGPR:$dst), (ins rGPR:$LHS, rGPR:$RHS), IIC_iEXTAr,
Johnny Chen93042d12010-03-02 18:14:57 +0000768 opc, "\t$dst, $LHS, $RHS", []> {
769 let Inst{31-27} = 0b11111;
770 let Inst{26-23} = 0b0100;
771 let Inst{22-20} = opcod;
772 let Inst{15-12} = 0b1111;
773 let Inst{7} = 1;
774 let Inst{5-4} = 0b00; // rotate
775 }
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000776 def rr_rot : T2I<(outs rGPR:$dst), (ins rGPR:$LHS, rGPR:$RHS, i32imm:$rot),
Evan Cheng7e1bf302010-09-29 00:27:46 +0000777 IIC_iEXTAsr, opc, "\t$dst, $LHS, $RHS, ror $rot", []> {
Johnny Chen93042d12010-03-02 18:14:57 +0000778 let Inst{31-27} = 0b11111;
779 let Inst{26-23} = 0b0100;
780 let Inst{22-20} = opcod;
781 let Inst{15-12} = 0b1111;
782 let Inst{7} = 1;
783 let Inst{5-4} = {?,?}; // rotate
784 }
785}
786
Anton Korobeynikov52237112009-06-17 18:13:58 +0000787//===----------------------------------------------------------------------===//
Evan Cheng9cb9e672009-06-27 02:26:13 +0000788// Instructions
789//===----------------------------------------------------------------------===//
790
791//===----------------------------------------------------------------------===//
Evan Chenga09b9ca2009-06-24 23:47:58 +0000792// Miscellaneous Instructions.
793//
794
Evan Chenga09b9ca2009-06-24 23:47:58 +0000795// LEApcrel - Load a pc-relative address into a register without offending the
796// assembler.
Evan Chengea420b22010-05-19 01:52:25 +0000797let neverHasSideEffects = 1 in {
Evan Cheng9085f982010-05-19 07:28:01 +0000798let isReMaterializable = 1 in
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000799def t2LEApcrel : T2XI<(outs rGPR:$dst), (ins i32imm:$label, pred:$p), IIC_iALUi,
Daniel Dunbar9db683b2010-08-11 04:46:10 +0000800 "adr${p}.w\t$dst, #$label", []> {
Johnny Chend68e1192009-12-15 17:24:14 +0000801 let Inst{31-27} = 0b11110;
802 let Inst{25-24} = 0b10;
803 // Inst{23:21} = '11' (add = FALSE) or '00' (add = TRUE)
804 let Inst{22} = 0;
805 let Inst{20} = 0;
806 let Inst{19-16} = 0b1111; // Rn
807 let Inst{15} = 0;
808}
Jim Grosbacha967d112010-06-21 21:27:27 +0000809} // neverHasSideEffects
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000810def t2LEApcrelJT : T2XI<(outs rGPR:$dst),
Bob Wilson4f38b382009-08-21 21:58:55 +0000811 (ins i32imm:$label, nohash_imm:$id, pred:$p), IIC_iALUi,
Daniel Dunbar9db683b2010-08-11 04:46:10 +0000812 "adr${p}.w\t$dst, #${label}_${id}", []> {
Johnny Chend68e1192009-12-15 17:24:14 +0000813 let Inst{31-27} = 0b11110;
814 let Inst{25-24} = 0b10;
815 // Inst{23:21} = '11' (add = FALSE) or '00' (add = TRUE)
816 let Inst{22} = 0;
817 let Inst{20} = 0;
818 let Inst{19-16} = 0b1111; // Rn
819 let Inst{15} = 0;
820}
Evan Chenga09b9ca2009-06-24 23:47:58 +0000821
Evan Cheng86198642009-08-07 00:34:42 +0000822// ADD r, sp, {so_imm|i12}
David Goodwin5d598aa2009-08-19 18:00:44 +0000823def t2ADDrSPi : T2sI<(outs GPR:$dst), (ins GPR:$sp, t2_so_imm:$imm),
Johnny Chend68e1192009-12-15 17:24:14 +0000824 IIC_iALUi, "add", ".w\t$dst, $sp, $imm", []> {
825 let Inst{31-27} = 0b11110;
826 let Inst{25} = 0;
827 let Inst{24-21} = 0b1000;
828 let Inst{20} = ?; // The S bit.
829 let Inst{19-16} = 0b1101; // Rn = sp
830 let Inst{15} = 0;
831}
Jim Grosbach64171712010-02-16 21:07:46 +0000832def t2ADDrSPi12 : T2I<(outs GPR:$dst), (ins GPR:$sp, imm0_4095:$imm),
Johnny Chend68e1192009-12-15 17:24:14 +0000833 IIC_iALUi, "addw", "\t$dst, $sp, $imm", []> {
834 let Inst{31-27} = 0b11110;
835 let Inst{25} = 1;
836 let Inst{24-21} = 0b0000;
837 let Inst{20} = 0; // The S bit.
838 let Inst{19-16} = 0b1101; // Rn = sp
839 let Inst{15} = 0;
840}
Evan Cheng86198642009-08-07 00:34:42 +0000841
842// ADD r, sp, so_reg
David Goodwin5d598aa2009-08-19 18:00:44 +0000843def t2ADDrSPs : T2sI<(outs GPR:$dst), (ins GPR:$sp, t2_so_reg:$rhs),
Johnny Chend68e1192009-12-15 17:24:14 +0000844 IIC_iALUsi, "add", ".w\t$dst, $sp, $rhs", []> {
845 let Inst{31-27} = 0b11101;
846 let Inst{26-25} = 0b01;
847 let Inst{24-21} = 0b1000;
848 let Inst{20} = ?; // The S bit.
849 let Inst{19-16} = 0b1101; // Rn = sp
850 let Inst{15} = 0;
851}
Evan Cheng86198642009-08-07 00:34:42 +0000852
853// SUB r, sp, {so_imm|i12}
David Goodwin5d598aa2009-08-19 18:00:44 +0000854def t2SUBrSPi : T2sI<(outs GPR:$dst), (ins GPR:$sp, t2_so_imm:$imm),
Johnny Chend68e1192009-12-15 17:24:14 +0000855 IIC_iALUi, "sub", ".w\t$dst, $sp, $imm", []> {
856 let Inst{31-27} = 0b11110;
857 let Inst{25} = 0;
858 let Inst{24-21} = 0b1101;
859 let Inst{20} = ?; // The S bit.
860 let Inst{19-16} = 0b1101; // Rn = sp
861 let Inst{15} = 0;
862}
David Goodwin5d598aa2009-08-19 18:00:44 +0000863def t2SUBrSPi12 : T2I<(outs GPR:$dst), (ins GPR:$sp, imm0_4095:$imm),
Johnny Chend68e1192009-12-15 17:24:14 +0000864 IIC_iALUi, "subw", "\t$dst, $sp, $imm", []> {
865 let Inst{31-27} = 0b11110;
866 let Inst{25} = 1;
867 let Inst{24-21} = 0b0101;
868 let Inst{20} = 0; // The S bit.
869 let Inst{19-16} = 0b1101; // Rn = sp
870 let Inst{15} = 0;
871}
Evan Cheng86198642009-08-07 00:34:42 +0000872
873// SUB r, sp, so_reg
David Goodwin5d598aa2009-08-19 18:00:44 +0000874def t2SUBrSPs : T2sI<(outs GPR:$dst), (ins GPR:$sp, t2_so_reg:$rhs),
875 IIC_iALUsi,
Johnny Chend68e1192009-12-15 17:24:14 +0000876 "sub", "\t$dst, $sp, $rhs", []> {
877 let Inst{31-27} = 0b11101;
878 let Inst{26-25} = 0b01;
879 let Inst{24-21} = 0b1101;
880 let Inst{20} = ?; // The S bit.
881 let Inst{19-16} = 0b1101; // Rn = sp
882 let Inst{15} = 0;
883}
Evan Cheng86198642009-08-07 00:34:42 +0000884
Jim Grosbachb1dc3932010-05-05 20:44:35 +0000885// Signed and unsigned division on v7-M
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000886def t2SDIV : T2I<(outs rGPR:$dst), (ins rGPR:$a, rGPR:$b), IIC_iALUi,
Jim Grosbachb1dc3932010-05-05 20:44:35 +0000887 "sdiv", "\t$dst, $a, $b",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000888 [(set rGPR:$dst, (sdiv rGPR:$a, rGPR:$b))]>,
Jim Grosbach29402132010-05-05 23:44:43 +0000889 Requires<[HasDivide]> {
Johnny Chen93042d12010-03-02 18:14:57 +0000890 let Inst{31-27} = 0b11111;
891 let Inst{26-21} = 0b011100;
892 let Inst{20} = 0b1;
893 let Inst{15-12} = 0b1111;
894 let Inst{7-4} = 0b1111;
895}
896
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000897def t2UDIV : T2I<(outs rGPR:$dst), (ins rGPR:$a, rGPR:$b), IIC_iALUi,
Jim Grosbachb1dc3932010-05-05 20:44:35 +0000898 "udiv", "\t$dst, $a, $b",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000899 [(set rGPR:$dst, (udiv rGPR:$a, rGPR:$b))]>,
Jim Grosbach29402132010-05-05 23:44:43 +0000900 Requires<[HasDivide]> {
Johnny Chen93042d12010-03-02 18:14:57 +0000901 let Inst{31-27} = 0b11111;
902 let Inst{26-21} = 0b011101;
903 let Inst{20} = 0b1;
904 let Inst{15-12} = 0b1111;
905 let Inst{7-4} = 0b1111;
906}
907
Evan Chenga09b9ca2009-06-24 23:47:58 +0000908//===----------------------------------------------------------------------===//
Evan Cheng9cb9e672009-06-27 02:26:13 +0000909// Load / store Instructions.
910//
911
Evan Cheng055b0312009-06-29 07:51:04 +0000912// Load
Dan Gohmanbc9d98b2010-02-27 23:47:46 +0000913let canFoldAsLoad = 1, isReMaterializable = 1 in
Johnny Chend68e1192009-12-15 17:24:14 +0000914defm t2LDR : T2I_ld<0, 0b10, "ldr", UnOpFrag<(load node:$Src)>>;
Evan Cheng055b0312009-06-29 07:51:04 +0000915
Evan Chengf3c21b82009-06-30 02:15:48 +0000916// Loads with zero extension
Johnny Chend68e1192009-12-15 17:24:14 +0000917defm t2LDRH : T2I_ld<0, 0b01, "ldrh", UnOpFrag<(zextloadi16 node:$Src)>>;
918defm t2LDRB : T2I_ld<0, 0b00, "ldrb", UnOpFrag<(zextloadi8 node:$Src)>>;
Evan Cheng055b0312009-06-29 07:51:04 +0000919
Evan Chengf3c21b82009-06-30 02:15:48 +0000920// Loads with sign extension
Johnny Chend68e1192009-12-15 17:24:14 +0000921defm t2LDRSH : T2I_ld<1, 0b01, "ldrsh", UnOpFrag<(sextloadi16 node:$Src)>>;
922defm t2LDRSB : T2I_ld<1, 0b00, "ldrsb", UnOpFrag<(sextloadi8 node:$Src)>>;
Evan Cheng055b0312009-06-29 07:51:04 +0000923
Evan Cheng5fd1c9b2010-05-19 06:07:03 +0000924let mayLoad = 1, neverHasSideEffects = 1, hasExtraDefRegAllocReq = 1 in {
Evan Chengf3c21b82009-06-30 02:15:48 +0000925// Load doubleword
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000926def t2LDRDi8 : T2Ii8s4<1, 0, 1, (outs rGPR:$dst1, rGPR:$dst2),
Evan Chenge298ab22009-09-27 09:46:04 +0000927 (ins t2addrmode_imm8s4:$addr),
Johnny Chen83142992010-01-05 22:37:28 +0000928 IIC_iLoadi, "ldrd", "\t$dst1, $addr", []>;
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000929def t2LDRDpci : T2Ii8s4<1, 0, 1, (outs rGPR:$dst1, rGPR:$dst2),
Evan Chenge298ab22009-09-27 09:46:04 +0000930 (ins i32imm:$addr), IIC_iLoadi,
Johnny Chen83142992010-01-05 22:37:28 +0000931 "ldrd", "\t$dst1, $addr", []> {
Johnny Chend68e1192009-12-15 17:24:14 +0000932 let Inst{19-16} = 0b1111; // Rn
933}
Evan Cheng5fd1c9b2010-05-19 06:07:03 +0000934} // mayLoad = 1, neverHasSideEffects = 1, hasExtraDefRegAllocReq = 1
Evan Chengf3c21b82009-06-30 02:15:48 +0000935
936// zextload i1 -> zextload i8
937def : T2Pat<(zextloadi1 t2addrmode_imm12:$addr),
938 (t2LDRBi12 t2addrmode_imm12:$addr)>;
939def : T2Pat<(zextloadi1 t2addrmode_imm8:$addr),
940 (t2LDRBi8 t2addrmode_imm8:$addr)>;
941def : T2Pat<(zextloadi1 t2addrmode_so_reg:$addr),
942 (t2LDRBs t2addrmode_so_reg:$addr)>;
943def : T2Pat<(zextloadi1 (ARMWrapper tconstpool:$addr)),
944 (t2LDRBpci tconstpool:$addr)>;
945
946// extload -> zextload
947// FIXME: Reduce the number of patterns by legalizing extload to zextload
948// earlier?
949def : T2Pat<(extloadi1 t2addrmode_imm12:$addr),
950 (t2LDRBi12 t2addrmode_imm12:$addr)>;
951def : T2Pat<(extloadi1 t2addrmode_imm8:$addr),
952 (t2LDRBi8 t2addrmode_imm8:$addr)>;
953def : T2Pat<(extloadi1 t2addrmode_so_reg:$addr),
954 (t2LDRBs t2addrmode_so_reg:$addr)>;
955def : T2Pat<(extloadi1 (ARMWrapper tconstpool:$addr)),
956 (t2LDRBpci tconstpool:$addr)>;
957
958def : T2Pat<(extloadi8 t2addrmode_imm12:$addr),
959 (t2LDRBi12 t2addrmode_imm12:$addr)>;
960def : T2Pat<(extloadi8 t2addrmode_imm8:$addr),
961 (t2LDRBi8 t2addrmode_imm8:$addr)>;
962def : T2Pat<(extloadi8 t2addrmode_so_reg:$addr),
963 (t2LDRBs t2addrmode_so_reg:$addr)>;
964def : T2Pat<(extloadi8 (ARMWrapper tconstpool:$addr)),
965 (t2LDRBpci tconstpool:$addr)>;
966
967def : T2Pat<(extloadi16 t2addrmode_imm12:$addr),
968 (t2LDRHi12 t2addrmode_imm12:$addr)>;
969def : T2Pat<(extloadi16 t2addrmode_imm8:$addr),
970 (t2LDRHi8 t2addrmode_imm8:$addr)>;
971def : T2Pat<(extloadi16 t2addrmode_so_reg:$addr),
972 (t2LDRHs t2addrmode_so_reg:$addr)>;
973def : T2Pat<(extloadi16 (ARMWrapper tconstpool:$addr)),
974 (t2LDRHpci tconstpool:$addr)>;
Evan Cheng055b0312009-06-29 07:51:04 +0000975
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000976// FIXME: The destination register of the loads and stores can't be PC, but
977// can be SP. We need another regclass (similar to rGPR) to represent
978// that. Not a pressing issue since these are selected manually,
979// not via pattern.
980
Evan Chenge88d5ce2009-07-02 07:28:31 +0000981// Indexed loads
Evan Cheng5fd1c9b2010-05-19 06:07:03 +0000982let mayLoad = 1, neverHasSideEffects = 1 in {
Johnny Chend68e1192009-12-15 17:24:14 +0000983def t2LDR_PRE : T2Iidxldst<0, 0b10, 1, 1, (outs GPR:$dst, GPR:$base_wb),
Evan Chenge88d5ce2009-07-02 07:28:31 +0000984 (ins t2addrmode_imm8:$addr),
David Goodwin5d598aa2009-08-19 18:00:44 +0000985 AddrModeT2_i8, IndexModePre, IIC_iLoadiu,
Evan Cheng699beba2009-10-27 00:08:59 +0000986 "ldr", "\t$dst, $addr!", "$addr.base = $base_wb",
Evan Chenge88d5ce2009-07-02 07:28:31 +0000987 []>;
988
Johnny Chend68e1192009-12-15 17:24:14 +0000989def t2LDR_POST : T2Iidxldst<0, 0b10, 1, 0, (outs GPR:$dst, GPR:$base_wb),
Evan Chenge88d5ce2009-07-02 07:28:31 +0000990 (ins GPR:$base, t2am_imm8_offset:$offset),
David Goodwin5d598aa2009-08-19 18:00:44 +0000991 AddrModeT2_i8, IndexModePost, IIC_iLoadiu,
Evan Cheng699beba2009-10-27 00:08:59 +0000992 "ldr", "\t$dst, [$base], $offset", "$base = $base_wb",
Evan Chenge88d5ce2009-07-02 07:28:31 +0000993 []>;
994
Johnny Chend68e1192009-12-15 17:24:14 +0000995def t2LDRB_PRE : T2Iidxldst<0, 0b00, 1, 1, (outs GPR:$dst, GPR:$base_wb),
Evan Chenge88d5ce2009-07-02 07:28:31 +0000996 (ins t2addrmode_imm8:$addr),
David Goodwin5d598aa2009-08-19 18:00:44 +0000997 AddrModeT2_i8, IndexModePre, IIC_iLoadiu,
Evan Cheng699beba2009-10-27 00:08:59 +0000998 "ldrb", "\t$dst, $addr!", "$addr.base = $base_wb",
Evan Chenge88d5ce2009-07-02 07:28:31 +0000999 []>;
Johnny Chend68e1192009-12-15 17:24:14 +00001000def t2LDRB_POST : T2Iidxldst<0, 0b00, 1, 0, (outs GPR:$dst, GPR:$base_wb),
Evan Chenge88d5ce2009-07-02 07:28:31 +00001001 (ins GPR:$base, t2am_imm8_offset:$offset),
David Goodwin5d598aa2009-08-19 18:00:44 +00001002 AddrModeT2_i8, IndexModePost, IIC_iLoadiu,
Evan Cheng699beba2009-10-27 00:08:59 +00001003 "ldrb", "\t$dst, [$base], $offset", "$base = $base_wb",
Evan Chenge88d5ce2009-07-02 07:28:31 +00001004 []>;
1005
Johnny Chend68e1192009-12-15 17:24:14 +00001006def t2LDRH_PRE : T2Iidxldst<0, 0b01, 1, 1, (outs GPR:$dst, GPR:$base_wb),
Evan Chenge88d5ce2009-07-02 07:28:31 +00001007 (ins t2addrmode_imm8:$addr),
David Goodwin5d598aa2009-08-19 18:00:44 +00001008 AddrModeT2_i8, IndexModePre, IIC_iLoadiu,
Evan Cheng699beba2009-10-27 00:08:59 +00001009 "ldrh", "\t$dst, $addr!", "$addr.base = $base_wb",
Evan Chenge88d5ce2009-07-02 07:28:31 +00001010 []>;
Johnny Chend68e1192009-12-15 17:24:14 +00001011def t2LDRH_POST : T2Iidxldst<0, 0b01, 1, 0, (outs GPR:$dst, GPR:$base_wb),
Evan Chenge88d5ce2009-07-02 07:28:31 +00001012 (ins GPR:$base, t2am_imm8_offset:$offset),
David Goodwin5d598aa2009-08-19 18:00:44 +00001013 AddrModeT2_i8, IndexModePost, IIC_iLoadiu,
Evan Cheng699beba2009-10-27 00:08:59 +00001014 "ldrh", "\t$dst, [$base], $offset", "$base = $base_wb",
Evan Chenge88d5ce2009-07-02 07:28:31 +00001015 []>;
1016
Johnny Chend68e1192009-12-15 17:24:14 +00001017def t2LDRSB_PRE : T2Iidxldst<1, 0b00, 1, 1, (outs GPR:$dst, GPR:$base_wb),
Evan Cheng4fbb9962009-07-02 23:16:11 +00001018 (ins t2addrmode_imm8:$addr),
David Goodwin5d598aa2009-08-19 18:00:44 +00001019 AddrModeT2_i8, IndexModePre, IIC_iLoadiu,
Evan Cheng699beba2009-10-27 00:08:59 +00001020 "ldrsb", "\t$dst, $addr!", "$addr.base = $base_wb",
Evan Cheng4fbb9962009-07-02 23:16:11 +00001021 []>;
Johnny Chend68e1192009-12-15 17:24:14 +00001022def t2LDRSB_POST : T2Iidxldst<1, 0b00, 1, 0, (outs GPR:$dst, GPR:$base_wb),
Evan Cheng4fbb9962009-07-02 23:16:11 +00001023 (ins GPR:$base, t2am_imm8_offset:$offset),
David Goodwin5d598aa2009-08-19 18:00:44 +00001024 AddrModeT2_i8, IndexModePost, IIC_iLoadiu,
Evan Cheng699beba2009-10-27 00:08:59 +00001025 "ldrsb", "\t$dst, [$base], $offset", "$base = $base_wb",
Evan Cheng4fbb9962009-07-02 23:16:11 +00001026 []>;
1027
Johnny Chend68e1192009-12-15 17:24:14 +00001028def t2LDRSH_PRE : T2Iidxldst<1, 0b01, 1, 1, (outs GPR:$dst, GPR:$base_wb),
Evan Cheng4fbb9962009-07-02 23:16:11 +00001029 (ins t2addrmode_imm8:$addr),
David Goodwin5d598aa2009-08-19 18:00:44 +00001030 AddrModeT2_i8, IndexModePre, IIC_iLoadiu,
Evan Cheng699beba2009-10-27 00:08:59 +00001031 "ldrsh", "\t$dst, $addr!", "$addr.base = $base_wb",
Evan Cheng4fbb9962009-07-02 23:16:11 +00001032 []>;
Johnny Chend68e1192009-12-15 17:24:14 +00001033def t2LDRSH_POST : T2Iidxldst<1, 0b01, 1, 0, (outs GPR:$dst, GPR:$base_wb),
Evan Cheng4fbb9962009-07-02 23:16:11 +00001034 (ins GPR:$base, t2am_imm8_offset:$offset),
David Goodwin5d598aa2009-08-19 18:00:44 +00001035 AddrModeT2_i8, IndexModePost, IIC_iLoadiu,
Evan Cheng699beba2009-10-27 00:08:59 +00001036 "ldrsh", "\t$dst, [$base], $offset", "$base = $base_wb",
Evan Cheng4fbb9962009-07-02 23:16:11 +00001037 []>;
Evan Cheng5fd1c9b2010-05-19 06:07:03 +00001038} // mayLoad = 1, neverHasSideEffects = 1
Evan Cheng4fbb9962009-07-02 23:16:11 +00001039
Johnny Chene54a3ef2010-03-03 18:45:36 +00001040// LDRT, LDRBT, LDRHT, LDRSBT, LDRSHT all have offset mode (PUW=0b110) and are
1041// for disassembly only.
1042// Ref: A8.6.57 LDR (immediate, Thumb) Encoding T4
1043class T2IldT<bit signed, bits<2> type, string opc>
1044 : T2Ii8<(outs GPR:$dst), (ins t2addrmode_imm8:$addr), IIC_iLoadi, opc,
1045 "\t$dst, $addr", []> {
1046 let Inst{31-27} = 0b11111;
1047 let Inst{26-25} = 0b00;
1048 let Inst{24} = signed;
1049 let Inst{23} = 0;
1050 let Inst{22-21} = type;
1051 let Inst{20} = 1; // load
1052 let Inst{11} = 1;
1053 let Inst{10-8} = 0b110; // PUW.
1054}
1055
1056def t2LDRT : T2IldT<0, 0b10, "ldrt">;
1057def t2LDRBT : T2IldT<0, 0b00, "ldrbt">;
1058def t2LDRHT : T2IldT<0, 0b01, "ldrht">;
1059def t2LDRSBT : T2IldT<1, 0b00, "ldrsbt">;
1060def t2LDRSHT : T2IldT<1, 0b01, "ldrsht">;
1061
David Goodwin73b8f162009-06-30 22:11:34 +00001062// Store
Jim Grosbach80dc1162010-02-16 21:23:02 +00001063defm t2STR :T2I_st<0b10,"str", BinOpFrag<(store node:$LHS, node:$RHS)>>;
1064defm t2STRB:T2I_st<0b00,"strb",BinOpFrag<(truncstorei8 node:$LHS, node:$RHS)>>;
1065defm t2STRH:T2I_st<0b01,"strh",BinOpFrag<(truncstorei16 node:$LHS, node:$RHS)>>;
David Goodwin73b8f162009-06-30 22:11:34 +00001066
David Goodwin6647cea2009-06-30 22:50:01 +00001067// Store doubleword
Evan Cheng5fd1c9b2010-05-19 06:07:03 +00001068let mayLoad = 1, neverHasSideEffects = 1, hasExtraSrcRegAllocReq = 1 in
Johnny Chend68e1192009-12-15 17:24:14 +00001069def t2STRDi8 : T2Ii8s4<1, 0, 0, (outs),
Evan Chenge298ab22009-09-27 09:46:04 +00001070 (ins GPR:$src1, GPR:$src2, t2addrmode_imm8s4:$addr),
Johnny Chen83142992010-01-05 22:37:28 +00001071 IIC_iStorer, "strd", "\t$src1, $addr", []>;
David Goodwin6647cea2009-06-30 22:50:01 +00001072
Evan Cheng6d94f112009-07-03 00:06:39 +00001073// Indexed stores
Johnny Chend68e1192009-12-15 17:24:14 +00001074def t2STR_PRE : T2Iidxldst<0, 0b10, 0, 1, (outs GPR:$base_wb),
Evan Cheng6d94f112009-07-03 00:06:39 +00001075 (ins GPR:$src, GPR:$base, t2am_imm8_offset:$offset),
David Goodwin5d598aa2009-08-19 18:00:44 +00001076 AddrModeT2_i8, IndexModePre, IIC_iStoreiu,
Evan Cheng699beba2009-10-27 00:08:59 +00001077 "str", "\t$src, [$base, $offset]!", "$base = $base_wb",
Evan Cheng6d94f112009-07-03 00:06:39 +00001078 [(set GPR:$base_wb,
1079 (pre_store GPR:$src, GPR:$base, t2am_imm8_offset:$offset))]>;
1080
Johnny Chend68e1192009-12-15 17:24:14 +00001081def t2STR_POST : T2Iidxldst<0, 0b10, 0, 0, (outs GPR:$base_wb),
Evan Cheng6d94f112009-07-03 00:06:39 +00001082 (ins GPR:$src, GPR:$base, t2am_imm8_offset:$offset),
David Goodwin5d598aa2009-08-19 18:00:44 +00001083 AddrModeT2_i8, IndexModePost, IIC_iStoreiu,
Evan Cheng699beba2009-10-27 00:08:59 +00001084 "str", "\t$src, [$base], $offset", "$base = $base_wb",
Evan Cheng6d94f112009-07-03 00:06:39 +00001085 [(set GPR:$base_wb,
Jim Grosbach6935efc2009-11-24 00:20:27 +00001086 (post_store GPR:$src, GPR:$base, t2am_imm8_offset:$offset))]>;
Evan Cheng6d94f112009-07-03 00:06:39 +00001087
Johnny Chend68e1192009-12-15 17:24:14 +00001088def t2STRH_PRE : T2Iidxldst<0, 0b01, 0, 1, (outs GPR:$base_wb),
Evan Cheng6d94f112009-07-03 00:06:39 +00001089 (ins GPR:$src, GPR:$base, t2am_imm8_offset:$offset),
David Goodwin5d598aa2009-08-19 18:00:44 +00001090 AddrModeT2_i8, IndexModePre, IIC_iStoreiu,
Evan Cheng699beba2009-10-27 00:08:59 +00001091 "strh", "\t$src, [$base, $offset]!", "$base = $base_wb",
Evan Cheng6d94f112009-07-03 00:06:39 +00001092 [(set GPR:$base_wb,
1093 (pre_truncsti16 GPR:$src, GPR:$base, t2am_imm8_offset:$offset))]>;
1094
Johnny Chend68e1192009-12-15 17:24:14 +00001095def t2STRH_POST : T2Iidxldst<0, 0b01, 0, 0, (outs GPR:$base_wb),
Evan Cheng6d94f112009-07-03 00:06:39 +00001096 (ins GPR:$src, GPR:$base, t2am_imm8_offset:$offset),
David Goodwin5d598aa2009-08-19 18:00:44 +00001097 AddrModeT2_i8, IndexModePost, IIC_iStoreiu,
Evan Cheng699beba2009-10-27 00:08:59 +00001098 "strh", "\t$src, [$base], $offset", "$base = $base_wb",
Evan Cheng6d94f112009-07-03 00:06:39 +00001099 [(set GPR:$base_wb,
1100 (post_truncsti16 GPR:$src, GPR:$base, t2am_imm8_offset:$offset))]>;
1101
Johnny Chend68e1192009-12-15 17:24:14 +00001102def t2STRB_PRE : T2Iidxldst<0, 0b00, 0, 1, (outs GPR:$base_wb),
Evan Cheng6d94f112009-07-03 00:06:39 +00001103 (ins GPR:$src, GPR:$base, t2am_imm8_offset:$offset),
David Goodwin5d598aa2009-08-19 18:00:44 +00001104 AddrModeT2_i8, IndexModePre, IIC_iStoreiu,
Evan Cheng699beba2009-10-27 00:08:59 +00001105 "strb", "\t$src, [$base, $offset]!", "$base = $base_wb",
Evan Cheng6d94f112009-07-03 00:06:39 +00001106 [(set GPR:$base_wb,
1107 (pre_truncsti8 GPR:$src, GPR:$base, t2am_imm8_offset:$offset))]>;
1108
Johnny Chend68e1192009-12-15 17:24:14 +00001109def t2STRB_POST : T2Iidxldst<0, 0b00, 0, 0, (outs GPR:$base_wb),
Evan Cheng6d94f112009-07-03 00:06:39 +00001110 (ins GPR:$src, GPR:$base, t2am_imm8_offset:$offset),
David Goodwin5d598aa2009-08-19 18:00:44 +00001111 AddrModeT2_i8, IndexModePost, IIC_iStoreiu,
Evan Cheng699beba2009-10-27 00:08:59 +00001112 "strb", "\t$src, [$base], $offset", "$base = $base_wb",
Evan Cheng6d94f112009-07-03 00:06:39 +00001113 [(set GPR:$base_wb,
1114 (post_truncsti8 GPR:$src, GPR:$base, t2am_imm8_offset:$offset))]>;
1115
Johnny Chene54a3ef2010-03-03 18:45:36 +00001116// STRT, STRBT, STRHT all have offset mode (PUW=0b110) and are for disassembly
1117// only.
1118// Ref: A8.6.193 STR (immediate, Thumb) Encoding T4
1119class T2IstT<bits<2> type, string opc>
1120 : T2Ii8<(outs GPR:$src), (ins t2addrmode_imm8:$addr), IIC_iStorei, opc,
1121 "\t$src, $addr", []> {
1122 let Inst{31-27} = 0b11111;
1123 let Inst{26-25} = 0b00;
1124 let Inst{24} = 0; // not signed
1125 let Inst{23} = 0;
1126 let Inst{22-21} = type;
1127 let Inst{20} = 0; // store
1128 let Inst{11} = 1;
1129 let Inst{10-8} = 0b110; // PUW
1130}
1131
1132def t2STRT : T2IstT<0b10, "strt">;
1133def t2STRBT : T2IstT<0b00, "strbt">;
1134def t2STRHT : T2IstT<0b01, "strht">;
David Goodwind1fa1202009-07-01 00:01:13 +00001135
Johnny Chenae1757b2010-03-11 01:13:36 +00001136// ldrd / strd pre / post variants
1137// For disassembly only.
1138
1139def t2LDRD_PRE : T2Ii8s4<1, 1, 1, (outs GPR:$dst1, GPR:$dst2),
1140 (ins GPR:$base, t2am_imm8s4_offset:$imm), NoItinerary,
1141 "ldrd", "\t$dst1, $dst2, [$base, $imm]!", []>;
1142
1143def t2LDRD_POST : T2Ii8s4<0, 1, 1, (outs GPR:$dst1, GPR:$dst2),
1144 (ins GPR:$base, t2am_imm8s4_offset:$imm), NoItinerary,
1145 "ldrd", "\t$dst1, $dst2, [$base], $imm", []>;
1146
1147def t2STRD_PRE : T2Ii8s4<1, 1, 0, (outs),
1148 (ins GPR:$src1, GPR:$src2, GPR:$base, t2am_imm8s4_offset:$imm),
1149 NoItinerary, "strd", "\t$src1, $src2, [$base, $imm]!", []>;
1150
1151def t2STRD_POST : T2Ii8s4<0, 1, 0, (outs),
1152 (ins GPR:$src1, GPR:$src2, GPR:$base, t2am_imm8s4_offset:$imm),
1153 NoItinerary, "strd", "\t$src1, $src2, [$base], $imm", []>;
Evan Cheng2889cce2009-07-03 00:18:36 +00001154
Johnny Chen0635fc52010-03-04 17:40:44 +00001155// T2Ipl (Preload Data/Instruction) signals the memory system of possible future
1156// data/instruction access. These are for disassembly only.
Johnny Chendd0f3cf2010-03-10 18:59:38 +00001157//
1158// A8.6.117, A8.6.118. Different instructions are generated for #0 and #-0.
1159// The neg_zero operand translates -0 to -1, -1 to -2, ..., etc.
Johnny Chen0635fc52010-03-04 17:40:44 +00001160multiclass T2Ipl<bit instr, bit write, string opc> {
1161
Johnny Chendd0f3cf2010-03-10 18:59:38 +00001162 def i12 : T2I<(outs), (ins GPR:$base, i32imm:$imm), IIC_iLoadi, opc,
1163 "\t[$base, $imm]", []> {
Johnny Chen0635fc52010-03-04 17:40:44 +00001164 let Inst{31-25} = 0b1111100;
1165 let Inst{24} = instr;
1166 let Inst{23} = 1; // U = 1
1167 let Inst{22} = 0;
1168 let Inst{21} = write;
1169 let Inst{20} = 1;
1170 let Inst{15-12} = 0b1111;
1171 }
1172
Johnny Chendd0f3cf2010-03-10 18:59:38 +00001173 def i8 : T2I<(outs), (ins GPR:$base, neg_zero:$imm), IIC_iLoadi, opc,
1174 "\t[$base, $imm]", []> {
Johnny Chen0635fc52010-03-04 17:40:44 +00001175 let Inst{31-25} = 0b1111100;
1176 let Inst{24} = instr;
1177 let Inst{23} = 0; // U = 0
1178 let Inst{22} = 0;
1179 let Inst{21} = write;
1180 let Inst{20} = 1;
1181 let Inst{15-12} = 0b1111;
1182 let Inst{11-8} = 0b1100;
1183 }
1184
Johnny Chendd0f3cf2010-03-10 18:59:38 +00001185 def pci : T2I<(outs), (ins GPR:$base, neg_zero:$imm), IIC_iLoadi, opc,
1186 "\t[pc, $imm]", []> {
Johnny Chen0635fc52010-03-04 17:40:44 +00001187 let Inst{31-25} = 0b1111100;
1188 let Inst{24} = instr;
1189 let Inst{23} = ?; // add = (U == 1)
1190 let Inst{22} = 0;
1191 let Inst{21} = write;
1192 let Inst{20} = 1;
1193 let Inst{19-16} = 0b1111; // Rn = 0b1111
1194 let Inst{15-12} = 0b1111;
1195 }
1196
1197 def r : T2I<(outs), (ins GPR:$base, GPR:$a), IIC_iLoadi, opc,
1198 "\t[$base, $a]", []> {
1199 let Inst{31-25} = 0b1111100;
1200 let Inst{24} = instr;
1201 let Inst{23} = 0; // add = TRUE for T1
1202 let Inst{22} = 0;
1203 let Inst{21} = write;
1204 let Inst{20} = 1;
1205 let Inst{15-12} = 0b1111;
1206 let Inst{11-6} = 0000000;
1207 let Inst{5-4} = 0b00; // no shift is applied
1208 }
1209
1210 def s : T2I<(outs), (ins GPR:$base, GPR:$a, i32imm:$shamt), IIC_iLoadi, opc,
1211 "\t[$base, $a, lsl $shamt]", []> {
1212 let Inst{31-25} = 0b1111100;
1213 let Inst{24} = instr;
1214 let Inst{23} = 0; // add = TRUE for T1
1215 let Inst{22} = 0;
1216 let Inst{21} = write;
1217 let Inst{20} = 1;
1218 let Inst{15-12} = 0b1111;
1219 let Inst{11-6} = 0000000;
1220 }
1221}
1222
1223defm t2PLD : T2Ipl<0, 0, "pld">;
1224defm t2PLDW : T2Ipl<0, 1, "pldw">;
1225defm t2PLI : T2Ipl<1, 0, "pli">;
1226
Evan Cheng2889cce2009-07-03 00:18:36 +00001227//===----------------------------------------------------------------------===//
1228// Load / store multiple Instructions.
1229//
1230
Evan Cheng5fd1c9b2010-05-19 06:07:03 +00001231let mayLoad = 1, neverHasSideEffects = 1, hasExtraDefRegAllocReq = 1 in {
Bob Wilson815baeb2010-03-13 01:08:20 +00001232def t2LDM : T2XI<(outs), (ins addrmode4:$addr, pred:$p,
1233 reglist:$dsts, variable_ops), IIC_iLoadm,
1234 "ldm${addr:submode}${p}${addr:wide}\t$addr, $dsts", []> {
Johnny Chend68e1192009-12-15 17:24:14 +00001235 let Inst{31-27} = 0b11101;
1236 let Inst{26-25} = 0b00;
1237 let Inst{24-23} = {?, ?}; // IA: '01', DB: '10'
1238 let Inst{22} = 0;
Bob Wilson815baeb2010-03-13 01:08:20 +00001239 let Inst{21} = 0; // The W bit.
Johnny Chend68e1192009-12-15 17:24:14 +00001240 let Inst{20} = 1; // Load
1241}
Evan Cheng2889cce2009-07-03 00:18:36 +00001242
Bob Wilson815baeb2010-03-13 01:08:20 +00001243def t2LDM_UPD : T2XIt<(outs GPR:$wb), (ins addrmode4:$addr, pred:$p,
1244 reglist:$dsts, variable_ops), IIC_iLoadm,
Bob Wilsonab346052010-03-16 17:46:45 +00001245 "ldm${addr:submode}${p}${addr:wide}\t$addr!, $dsts",
Bob Wilson815baeb2010-03-13 01:08:20 +00001246 "$addr.addr = $wb", []> {
Johnny Chend68e1192009-12-15 17:24:14 +00001247 let Inst{31-27} = 0b11101;
1248 let Inst{26-25} = 0b00;
1249 let Inst{24-23} = {?, ?}; // IA: '01', DB: '10'
1250 let Inst{22} = 0;
Bob Wilson815baeb2010-03-13 01:08:20 +00001251 let Inst{21} = 1; // The W bit.
1252 let Inst{20} = 1; // Load
1253}
Evan Cheng5fd1c9b2010-05-19 06:07:03 +00001254} // mayLoad, neverHasSideEffects, hasExtraDefRegAllocReq
Bob Wilson815baeb2010-03-13 01:08:20 +00001255
Evan Cheng5fd1c9b2010-05-19 06:07:03 +00001256let mayStore = 1, neverHasSideEffects = 1, hasExtraSrcRegAllocReq = 1 in {
Bob Wilson815baeb2010-03-13 01:08:20 +00001257def t2STM : T2XI<(outs), (ins addrmode4:$addr, pred:$p,
1258 reglist:$srcs, variable_ops), IIC_iStorem,
1259 "stm${addr:submode}${p}${addr:wide}\t$addr, $srcs", []> {
1260 let Inst{31-27} = 0b11101;
1261 let Inst{26-25} = 0b00;
1262 let Inst{24-23} = {?, ?}; // IA: '01', DB: '10'
1263 let Inst{22} = 0;
1264 let Inst{21} = 0; // The W bit.
Johnny Chend68e1192009-12-15 17:24:14 +00001265 let Inst{20} = 0; // Store
1266}
Evan Cheng2889cce2009-07-03 00:18:36 +00001267
Bob Wilson815baeb2010-03-13 01:08:20 +00001268def t2STM_UPD : T2XIt<(outs GPR:$wb), (ins addrmode4:$addr, pred:$p,
1269 reglist:$srcs, variable_ops),
1270 IIC_iStorem,
Bob Wilsonab346052010-03-16 17:46:45 +00001271 "stm${addr:submode}${p}${addr:wide}\t$addr!, $srcs",
Bob Wilson815baeb2010-03-13 01:08:20 +00001272 "$addr.addr = $wb", []> {
1273 let Inst{31-27} = 0b11101;
1274 let Inst{26-25} = 0b00;
1275 let Inst{24-23} = {?, ?}; // IA: '01', DB: '10'
1276 let Inst{22} = 0;
1277 let Inst{21} = 1; // The W bit.
1278 let Inst{20} = 0; // Store
1279}
Evan Cheng5fd1c9b2010-05-19 06:07:03 +00001280} // mayStore, neverHasSideEffects, hasExtraSrcRegAllocReq
Bob Wilson815baeb2010-03-13 01:08:20 +00001281
Evan Cheng9cb9e672009-06-27 02:26:13 +00001282//===----------------------------------------------------------------------===//
Anton Korobeynikov52237112009-06-17 18:13:58 +00001283// Move Instructions.
1284//
Anton Korobeynikov52237112009-06-17 18:13:58 +00001285
Evan Chengf49810c2009-06-23 17:48:47 +00001286let neverHasSideEffects = 1 in
David Goodwin5d598aa2009-08-19 18:00:44 +00001287def t2MOVr : T2sI<(outs GPR:$dst), (ins GPR:$src), IIC_iMOVr,
Johnny Chend68e1192009-12-15 17:24:14 +00001288 "mov", ".w\t$dst, $src", []> {
1289 let Inst{31-27} = 0b11101;
1290 let Inst{26-25} = 0b01;
1291 let Inst{24-21} = 0b0010;
1292 let Inst{20} = ?; // The S bit.
1293 let Inst{19-16} = 0b1111; // Rn
1294 let Inst{14-12} = 0b000;
1295 let Inst{7-4} = 0b0000;
1296}
Evan Chengf49810c2009-06-23 17:48:47 +00001297
Evan Cheng5adb66a2009-09-28 09:14:39 +00001298// AddedComplexity to ensure isel tries t2MOVi before t2MOVi16.
1299let isReMaterializable = 1, isAsCheapAsAMove = 1, AddedComplexity = 1 in
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001300def t2MOVi : T2sI<(outs rGPR:$dst), (ins t2_so_imm:$src), IIC_iMOVi,
Evan Cheng699beba2009-10-27 00:08:59 +00001301 "mov", ".w\t$dst, $src",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001302 [(set rGPR:$dst, t2_so_imm:$src)]> {
Johnny Chend68e1192009-12-15 17:24:14 +00001303 let Inst{31-27} = 0b11110;
1304 let Inst{25} = 0;
1305 let Inst{24-21} = 0b0010;
1306 let Inst{20} = ?; // The S bit.
1307 let Inst{19-16} = 0b1111; // Rn
1308 let Inst{15} = 0;
1309}
David Goodwin83b35932009-06-26 16:10:07 +00001310
1311let isReMaterializable = 1, isAsCheapAsAMove = 1 in
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001312def t2MOVi16 : T2I<(outs rGPR:$dst), (ins i32imm:$src), IIC_iMOVi,
Evan Cheng699beba2009-10-27 00:08:59 +00001313 "movw", "\t$dst, $src",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001314 [(set rGPR:$dst, imm0_65535:$src)]> {
Johnny Chend68e1192009-12-15 17:24:14 +00001315 let Inst{31-27} = 0b11110;
1316 let Inst{25} = 1;
1317 let Inst{24-21} = 0b0010;
1318 let Inst{20} = 0; // The S bit.
1319 let Inst{15} = 0;
1320}
Evan Chengf49810c2009-06-23 17:48:47 +00001321
Evan Cheng3850a6a2009-06-23 05:23:49 +00001322let Constraints = "$src = $dst" in
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001323def t2MOVTi16 : T2I<(outs rGPR:$dst), (ins rGPR:$src, i32imm:$imm), IIC_iMOVi,
Evan Cheng699beba2009-10-27 00:08:59 +00001324 "movt", "\t$dst, $imm",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001325 [(set rGPR:$dst,
1326 (or (and rGPR:$src, 0xffff), lo16AllZero:$imm))]> {
Johnny Chend68e1192009-12-15 17:24:14 +00001327 let Inst{31-27} = 0b11110;
1328 let Inst{25} = 1;
1329 let Inst{24-21} = 0b0110;
1330 let Inst{20} = 0; // The S bit.
1331 let Inst{15} = 0;
1332}
Anton Korobeynikov52237112009-06-17 18:13:58 +00001333
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001334def : T2Pat<(or rGPR:$src, 0xffff0000), (t2MOVTi16 rGPR:$src, 0xffff)>;
Evan Cheng20956592009-10-21 08:15:52 +00001335
Anton Korobeynikov52237112009-06-17 18:13:58 +00001336//===----------------------------------------------------------------------===//
Evan Chengd27c9fc2009-07-03 01:43:10 +00001337// Extend Instructions.
1338//
1339
1340// Sign extenders
1341
Johnny Chend68e1192009-12-15 17:24:14 +00001342defm t2SXTB : T2I_unary_rrot<0b100, "sxtb",
1343 UnOpFrag<(sext_inreg node:$Src, i8)>>;
1344defm t2SXTH : T2I_unary_rrot<0b000, "sxth",
1345 UnOpFrag<(sext_inreg node:$Src, i16)>>;
Eli Friedman761fa7a2010-06-24 18:20:04 +00001346defm t2SXTB16 : T2I_unary_rrot_sxtb16<0b010, "sxtb16">;
Evan Chengd27c9fc2009-07-03 01:43:10 +00001347
Johnny Chend68e1192009-12-15 17:24:14 +00001348defm t2SXTAB : T2I_bin_rrot<0b100, "sxtab",
Evan Chengd27c9fc2009-07-03 01:43:10 +00001349 BinOpFrag<(add node:$LHS, (sext_inreg node:$RHS, i8))>>;
Johnny Chend68e1192009-12-15 17:24:14 +00001350defm t2SXTAH : T2I_bin_rrot<0b000, "sxtah",
Evan Chengd27c9fc2009-07-03 01:43:10 +00001351 BinOpFrag<(add node:$LHS, (sext_inreg node:$RHS,i16))>>;
Johnny Chen93042d12010-03-02 18:14:57 +00001352defm t2SXTAB16 : T2I_bin_rrot_DO<0b010, "sxtab16">;
Evan Chengd27c9fc2009-07-03 01:43:10 +00001353
Johnny Chen93042d12010-03-02 18:14:57 +00001354// TODO: SXT(A){B|H}16 - done for disassembly only
Evan Chengd27c9fc2009-07-03 01:43:10 +00001355
1356// Zero extenders
1357
1358let AddedComplexity = 16 in {
Johnny Chend68e1192009-12-15 17:24:14 +00001359defm t2UXTB : T2I_unary_rrot<0b101, "uxtb",
1360 UnOpFrag<(and node:$Src, 0x000000FF)>>;
1361defm t2UXTH : T2I_unary_rrot<0b001, "uxth",
1362 UnOpFrag<(and node:$Src, 0x0000FFFF)>>;
Eli Friedman761fa7a2010-06-24 18:20:04 +00001363defm t2UXTB16 : T2I_unary_rrot_uxtb16<0b011, "uxtb16",
Johnny Chend68e1192009-12-15 17:24:14 +00001364 UnOpFrag<(and node:$Src, 0x00FF00FF)>>;
Evan Chengd27c9fc2009-07-03 01:43:10 +00001365
Jim Grosbach79464942010-07-28 23:17:45 +00001366// FIXME: This pattern incorrectly assumes the shl operator is a rotate.
1367// The transformation should probably be done as a combiner action
1368// instead so we can include a check for masking back in the upper
1369// eight bits of the source into the lower eight bits of the result.
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001370//def : T2Pat<(and (shl rGPR:$Src, (i32 8)), 0xFF00FF),
1371// (t2UXTB16r_rot rGPR:$Src, 24)>, Requires<[HasT2ExtractPack]>;
1372def : T2Pat<(and (srl rGPR:$Src, (i32 8)), 0xFF00FF),
1373 (t2UXTB16r_rot rGPR:$Src, 8)>, Requires<[HasT2ExtractPack]>;
Evan Chengd27c9fc2009-07-03 01:43:10 +00001374
Johnny Chend68e1192009-12-15 17:24:14 +00001375defm t2UXTAB : T2I_bin_rrot<0b101, "uxtab",
Jim Grosbach6935efc2009-11-24 00:20:27 +00001376 BinOpFrag<(add node:$LHS, (and node:$RHS, 0x00FF))>>;
Johnny Chend68e1192009-12-15 17:24:14 +00001377defm t2UXTAH : T2I_bin_rrot<0b001, "uxtah",
Jim Grosbach6935efc2009-11-24 00:20:27 +00001378 BinOpFrag<(add node:$LHS, (and node:$RHS, 0xFFFF))>>;
Johnny Chen93042d12010-03-02 18:14:57 +00001379defm t2UXTAB16 : T2I_bin_rrot_DO<0b011, "uxtab16">;
Evan Chengd27c9fc2009-07-03 01:43:10 +00001380}
1381
1382//===----------------------------------------------------------------------===//
Anton Korobeynikov52237112009-06-17 18:13:58 +00001383// Arithmetic Instructions.
1384//
Anton Korobeynikov52237112009-06-17 18:13:58 +00001385
Johnny Chend68e1192009-12-15 17:24:14 +00001386defm t2ADD : T2I_bin_ii12rs<0b000, "add",
1387 BinOpFrag<(add node:$LHS, node:$RHS)>, 1>;
1388defm t2SUB : T2I_bin_ii12rs<0b101, "sub",
1389 BinOpFrag<(sub node:$LHS, node:$RHS)>>;
Anton Korobeynikov52237112009-06-17 18:13:58 +00001390
Evan Chengf49810c2009-06-23 17:48:47 +00001391// ADD and SUB with 's' bit set. No 12-bit immediate (T4) variants.
Johnny Chend68e1192009-12-15 17:24:14 +00001392defm t2ADDS : T2I_bin_s_irs <0b1000, "add",
Evan Cheng7e1bf302010-09-29 00:27:46 +00001393 IIC_iALUi, IIC_iALUr, IIC_iALUsi,
Johnny Chend68e1192009-12-15 17:24:14 +00001394 BinOpFrag<(addc node:$LHS, node:$RHS)>, 1>;
1395defm t2SUBS : T2I_bin_s_irs <0b1101, "sub",
Evan Cheng7e1bf302010-09-29 00:27:46 +00001396 IIC_iALUi, IIC_iALUr, IIC_iALUsi,
Johnny Chend68e1192009-12-15 17:24:14 +00001397 BinOpFrag<(subc node:$LHS, node:$RHS)>>;
Anton Korobeynikov52237112009-06-17 18:13:58 +00001398
Johnny Chend68e1192009-12-15 17:24:14 +00001399defm t2ADC : T2I_adde_sube_irs<0b1010, "adc",
Jim Grosbach39be8fc2010-02-16 20:42:29 +00001400 BinOpFrag<(adde_dead_carry node:$LHS, node:$RHS)>, 1>;
Johnny Chend68e1192009-12-15 17:24:14 +00001401defm t2SBC : T2I_adde_sube_irs<0b1011, "sbc",
Jim Grosbach39be8fc2010-02-16 20:42:29 +00001402 BinOpFrag<(sube_dead_carry node:$LHS, node:$RHS)>>;
Johnny Chenb5031ad2010-03-02 19:38:59 +00001403defm t2ADCS : T2I_adde_sube_s_irs<0b1010, "adc",
Jim Grosbach39be8fc2010-02-16 20:42:29 +00001404 BinOpFrag<(adde_live_carry node:$LHS, node:$RHS)>, 1>;
Johnny Chenb5031ad2010-03-02 19:38:59 +00001405defm t2SBCS : T2I_adde_sube_s_irs<0b1011, "sbc",
Jim Grosbach39be8fc2010-02-16 20:42:29 +00001406 BinOpFrag<(sube_live_carry node:$LHS, node:$RHS)>>;
Evan Chengf49810c2009-06-23 17:48:47 +00001407
David Goodwin752aa7d2009-07-27 16:39:05 +00001408// RSB
Bob Wilson20d8e4e2010-08-13 23:24:25 +00001409defm t2RSB : T2I_rbin_irs <0b1110, "rsb",
Johnny Chend68e1192009-12-15 17:24:14 +00001410 BinOpFrag<(sub node:$LHS, node:$RHS)>>;
1411defm t2RSBS : T2I_rbin_s_is <0b1110, "rsb",
1412 BinOpFrag<(subc node:$LHS, node:$RHS)>>;
Evan Chengf49810c2009-06-23 17:48:47 +00001413
1414// (sub X, imm) gets canonicalized to (add X, -imm). Match this form.
Jim Grosbach502e0aa2010-07-14 17:45:16 +00001415// The assume-no-carry-in form uses the negation of the input since add/sub
1416// assume opposite meanings of the carry flag (i.e., carry == !borrow).
1417// See the definition of AddWithCarry() in the ARM ARM A2.2.1 for the gory
1418// details.
1419// The AddedComplexity preferences the first variant over the others since
1420// it can be shrunk to a 16-bit wide encoding, while the others cannot.
Evan Chengfa2ea1a2009-08-04 01:41:15 +00001421let AddedComplexity = 1 in
Jim Grosbach502e0aa2010-07-14 17:45:16 +00001422def : T2Pat<(add GPR:$src, imm0_255_neg:$imm),
1423 (t2SUBri GPR:$src, imm0_255_neg:$imm)>;
1424def : T2Pat<(add GPR:$src, t2_so_imm_neg:$imm),
1425 (t2SUBri GPR:$src, t2_so_imm_neg:$imm)>;
1426def : T2Pat<(add GPR:$src, imm0_4095_neg:$imm),
1427 (t2SUBri12 GPR:$src, imm0_4095_neg:$imm)>;
1428let AddedComplexity = 1 in
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001429def : T2Pat<(addc rGPR:$src, imm0_255_neg:$imm),
1430 (t2SUBSri rGPR:$src, imm0_255_neg:$imm)>;
1431def : T2Pat<(addc rGPR:$src, t2_so_imm_neg:$imm),
1432 (t2SUBSri rGPR:$src, t2_so_imm_neg:$imm)>;
Jim Grosbach502e0aa2010-07-14 17:45:16 +00001433// The with-carry-in form matches bitwise not instead of the negation.
1434// Effectively, the inverse interpretation of the carry flag already accounts
1435// for part of the negation.
1436let AddedComplexity = 1 in
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001437def : T2Pat<(adde rGPR:$src, imm0_255_not:$imm),
1438 (t2SBCSri rGPR:$src, imm0_255_not:$imm)>;
1439def : T2Pat<(adde rGPR:$src, t2_so_imm_not:$imm),
1440 (t2SBCSri rGPR:$src, t2_so_imm_not:$imm)>;
Anton Korobeynikov52237112009-06-17 18:13:58 +00001441
Johnny Chen93042d12010-03-02 18:14:57 +00001442// Select Bytes -- for disassembly only
1443
1444def t2SEL : T2I<(outs GPR:$dst), (ins GPR:$a, GPR:$b), NoItinerary, "sel",
1445 "\t$dst, $a, $b", []> {
1446 let Inst{31-27} = 0b11111;
1447 let Inst{26-24} = 0b010;
1448 let Inst{23} = 0b1;
1449 let Inst{22-20} = 0b010;
1450 let Inst{15-12} = 0b1111;
1451 let Inst{7} = 0b1;
1452 let Inst{6-4} = 0b000;
1453}
1454
Johnny Chenadc77332010-02-26 22:04:29 +00001455// A6.3.13, A6.3.14, A6.3.15 Parallel addition and subtraction (signed/unsigned)
1456// And Miscellaneous operations -- for disassembly only
Nate Begeman692433b2010-07-29 17:56:55 +00001457class T2I_pam<bits<3> op22_20, bits<4> op7_4, string opc,
1458 list<dag> pat = [/* For disassembly only; pattern left blank */]>
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001459 : T2I<(outs rGPR:$dst), (ins rGPR:$a, rGPR:$b), NoItinerary, opc,
Nate Begeman692433b2010-07-29 17:56:55 +00001460 "\t$dst, $a, $b", pat> {
Johnny Chenadc77332010-02-26 22:04:29 +00001461 let Inst{31-27} = 0b11111;
1462 let Inst{26-23} = 0b0101;
1463 let Inst{22-20} = op22_20;
1464 let Inst{15-12} = 0b1111;
1465 let Inst{7-4} = op7_4;
1466}
1467
1468// Saturating add/subtract -- for disassembly only
1469
Nate Begeman692433b2010-07-29 17:56:55 +00001470def t2QADD : T2I_pam<0b000, 0b1000, "qadd",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001471 [(set rGPR:$dst, (int_arm_qadd rGPR:$a, rGPR:$b))]>;
Johnny Chenadc77332010-02-26 22:04:29 +00001472def t2QADD16 : T2I_pam<0b001, 0b0001, "qadd16">;
1473def t2QADD8 : T2I_pam<0b000, 0b0001, "qadd8">;
1474def t2QASX : T2I_pam<0b010, 0b0001, "qasx">;
1475def t2QDADD : T2I_pam<0b000, 0b1001, "qdadd">;
1476def t2QDSUB : T2I_pam<0b000, 0b1011, "qdsub">;
1477def t2QSAX : T2I_pam<0b110, 0b0001, "qsax">;
Nate Begeman692433b2010-07-29 17:56:55 +00001478def t2QSUB : T2I_pam<0b000, 0b1010, "qsub",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001479 [(set rGPR:$dst, (int_arm_qsub rGPR:$a, rGPR:$b))]>;
Johnny Chenadc77332010-02-26 22:04:29 +00001480def t2QSUB16 : T2I_pam<0b101, 0b0001, "qsub16">;
1481def t2QSUB8 : T2I_pam<0b100, 0b0001, "qsub8">;
1482def t2UQADD16 : T2I_pam<0b001, 0b0101, "uqadd16">;
1483def t2UQADD8 : T2I_pam<0b000, 0b0101, "uqadd8">;
1484def t2UQASX : T2I_pam<0b010, 0b0101, "uqasx">;
1485def t2UQSAX : T2I_pam<0b110, 0b0101, "uqsax">;
1486def t2UQSUB16 : T2I_pam<0b101, 0b0101, "uqsub16">;
1487def t2UQSUB8 : T2I_pam<0b100, 0b0101, "uqsub8">;
1488
1489// Signed/Unsigned add/subtract -- for disassembly only
1490
1491def t2SASX : T2I_pam<0b010, 0b0000, "sasx">;
1492def t2SADD16 : T2I_pam<0b001, 0b0000, "sadd16">;
1493def t2SADD8 : T2I_pam<0b000, 0b0000, "sadd8">;
1494def t2SSAX : T2I_pam<0b110, 0b0000, "ssax">;
1495def t2SSUB16 : T2I_pam<0b101, 0b0000, "ssub16">;
1496def t2SSUB8 : T2I_pam<0b100, 0b0000, "ssub8">;
1497def t2UASX : T2I_pam<0b010, 0b0100, "uasx">;
1498def t2UADD16 : T2I_pam<0b001, 0b0100, "uadd16">;
1499def t2UADD8 : T2I_pam<0b000, 0b0100, "uadd8">;
1500def t2USAX : T2I_pam<0b110, 0b0100, "usax">;
1501def t2USUB16 : T2I_pam<0b101, 0b0100, "usub16">;
1502def t2USUB8 : T2I_pam<0b100, 0b0100, "usub8">;
1503
1504// Signed/Unsigned halving add/subtract -- for disassembly only
1505
1506def t2SHASX : T2I_pam<0b010, 0b0010, "shasx">;
1507def t2SHADD16 : T2I_pam<0b001, 0b0010, "shadd16">;
1508def t2SHADD8 : T2I_pam<0b000, 0b0010, "shadd8">;
1509def t2SHSAX : T2I_pam<0b110, 0b0010, "shsax">;
1510def t2SHSUB16 : T2I_pam<0b101, 0b0010, "shsub16">;
1511def t2SHSUB8 : T2I_pam<0b100, 0b0010, "shsub8">;
1512def t2UHASX : T2I_pam<0b010, 0b0110, "uhasx">;
1513def t2UHADD16 : T2I_pam<0b001, 0b0110, "uhadd16">;
1514def t2UHADD8 : T2I_pam<0b000, 0b0110, "uhadd8">;
1515def t2UHSAX : T2I_pam<0b110, 0b0110, "uhsax">;
1516def t2UHSUB16 : T2I_pam<0b101, 0b0110, "uhsub16">;
1517def t2UHSUB8 : T2I_pam<0b100, 0b0110, "uhsub8">;
1518
1519// Unsigned Sum of Absolute Differences [and Accumulate] -- for disassembly only
1520
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001521def t2USAD8 : T2I_mac<0, 0b111, 0b0000, (outs rGPR:$dst),
1522 (ins rGPR:$a, rGPR:$b),
Johnny Chenadc77332010-02-26 22:04:29 +00001523 NoItinerary, "usad8", "\t$dst, $a, $b", []> {
1524 let Inst{15-12} = 0b1111;
1525}
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001526def t2USADA8 : T2I_mac<0, 0b111, 0b0000, (outs rGPR:$dst),
1527 (ins rGPR:$a, rGPR:$b, rGPR:$acc), NoItinerary, "usada8",
Johnny Chenadc77332010-02-26 22:04:29 +00001528 "\t$dst, $a, $b, $acc", []>;
1529
1530// Signed/Unsigned saturate -- for disassembly only
1531
Bob Wilson22f5dc72010-08-16 18:27:34 +00001532def t2SSAT: T2I<(outs rGPR:$dst), (ins i32imm:$bit_pos, rGPR:$a, shift_imm:$sh),
Bob Wilson38aa2872010-08-13 21:48:10 +00001533 NoItinerary, "ssat", "\t$dst, $bit_pos, $a$sh",
1534 [/* For disassembly only; pattern left blank */]> {
Johnny Chenadc77332010-02-26 22:04:29 +00001535 let Inst{31-27} = 0b11110;
1536 let Inst{25-22} = 0b1100;
1537 let Inst{20} = 0;
1538 let Inst{15} = 0;
Johnny Chenadc77332010-02-26 22:04:29 +00001539}
1540
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001541def t2SSAT16: T2I<(outs rGPR:$dst), (ins i32imm:$bit_pos, rGPR:$a), NoItinerary,
Johnny Chenadc77332010-02-26 22:04:29 +00001542 "ssat16", "\t$dst, $bit_pos, $a",
1543 [/* For disassembly only; pattern left blank */]> {
1544 let Inst{31-27} = 0b11110;
1545 let Inst{25-22} = 0b1100;
1546 let Inst{20} = 0;
1547 let Inst{15} = 0;
1548 let Inst{21} = 1; // sh = '1'
1549 let Inst{14-12} = 0b000; // imm3 = '000'
1550 let Inst{7-6} = 0b00; // imm2 = '00'
1551}
1552
Bob Wilson22f5dc72010-08-16 18:27:34 +00001553def t2USAT: T2I<(outs rGPR:$dst), (ins i32imm:$bit_pos, rGPR:$a, shift_imm:$sh),
Bob Wilson38aa2872010-08-13 21:48:10 +00001554 NoItinerary, "usat", "\t$dst, $bit_pos, $a$sh",
1555 [/* For disassembly only; pattern left blank */]> {
Johnny Chenadc77332010-02-26 22:04:29 +00001556 let Inst{31-27} = 0b11110;
1557 let Inst{25-22} = 0b1110;
1558 let Inst{20} = 0;
1559 let Inst{15} = 0;
Johnny Chenadc77332010-02-26 22:04:29 +00001560}
1561
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001562def t2USAT16: T2I<(outs rGPR:$dst), (ins i32imm:$bit_pos, rGPR:$a), NoItinerary,
Johnny Chenadc77332010-02-26 22:04:29 +00001563 "usat16", "\t$dst, $bit_pos, $a",
1564 [/* For disassembly only; pattern left blank */]> {
1565 let Inst{31-27} = 0b11110;
1566 let Inst{25-22} = 0b1110;
1567 let Inst{20} = 0;
1568 let Inst{15} = 0;
1569 let Inst{21} = 1; // sh = '1'
1570 let Inst{14-12} = 0b000; // imm3 = '000'
1571 let Inst{7-6} = 0b00; // imm2 = '00'
1572}
Anton Korobeynikov52237112009-06-17 18:13:58 +00001573
Bob Wilson38aa2872010-08-13 21:48:10 +00001574def : T2Pat<(int_arm_ssat GPR:$a, imm:$pos), (t2SSAT imm:$pos, GPR:$a, 0)>;
1575def : T2Pat<(int_arm_usat GPR:$a, imm:$pos), (t2USAT imm:$pos, GPR:$a, 0)>;
Nate Begeman0e0a20e2010-07-29 22:48:09 +00001576
Evan Chengf49810c2009-06-23 17:48:47 +00001577//===----------------------------------------------------------------------===//
Evan Chenga67efd12009-06-23 19:39:13 +00001578// Shift and rotate Instructions.
1579//
1580
Johnny Chend68e1192009-12-15 17:24:14 +00001581defm t2LSL : T2I_sh_ir<0b00, "lsl", BinOpFrag<(shl node:$LHS, node:$RHS)>>;
1582defm t2LSR : T2I_sh_ir<0b01, "lsr", BinOpFrag<(srl node:$LHS, node:$RHS)>>;
1583defm t2ASR : T2I_sh_ir<0b10, "asr", BinOpFrag<(sra node:$LHS, node:$RHS)>>;
1584defm t2ROR : T2I_sh_ir<0b11, "ror", BinOpFrag<(rotr node:$LHS, node:$RHS)>>;
Evan Chenga67efd12009-06-23 19:39:13 +00001585
David Goodwinca01a8d2009-09-01 18:32:09 +00001586let Uses = [CPSR] in {
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001587def t2MOVrx : T2sI<(outs rGPR:$dst), (ins rGPR:$src), IIC_iMOVsi,
Evan Cheng699beba2009-10-27 00:08:59 +00001588 "rrx", "\t$dst, $src",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001589 [(set rGPR:$dst, (ARMrrx rGPR:$src))]> {
Johnny Chend68e1192009-12-15 17:24:14 +00001590 let Inst{31-27} = 0b11101;
1591 let Inst{26-25} = 0b01;
1592 let Inst{24-21} = 0b0010;
1593 let Inst{20} = ?; // The S bit.
1594 let Inst{19-16} = 0b1111; // Rn
1595 let Inst{14-12} = 0b000;
1596 let Inst{7-4} = 0b0011;
1597}
David Goodwinca01a8d2009-09-01 18:32:09 +00001598}
Evan Chenga67efd12009-06-23 19:39:13 +00001599
David Goodwin3583df72009-07-28 17:06:49 +00001600let Defs = [CPSR] in {
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001601def t2MOVsrl_flag : T2I<(outs rGPR:$dst), (ins rGPR:$src), IIC_iMOVsi,
Bob Wilsona85df802010-05-25 04:51:47 +00001602 "lsrs", ".w\t$dst, $src, #1",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001603 [(set rGPR:$dst, (ARMsrl_flag rGPR:$src))]> {
Johnny Chend68e1192009-12-15 17:24:14 +00001604 let Inst{31-27} = 0b11101;
1605 let Inst{26-25} = 0b01;
1606 let Inst{24-21} = 0b0010;
1607 let Inst{20} = 1; // The S bit.
1608 let Inst{19-16} = 0b1111; // Rn
1609 let Inst{5-4} = 0b01; // Shift type.
1610 // Shift amount = Inst{14-12:7-6} = 1.
1611 let Inst{14-12} = 0b000;
1612 let Inst{7-6} = 0b01;
1613}
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001614def t2MOVsra_flag : T2I<(outs rGPR:$dst), (ins rGPR:$src), IIC_iMOVsi,
Bob Wilsona85df802010-05-25 04:51:47 +00001615 "asrs", ".w\t$dst, $src, #1",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001616 [(set rGPR:$dst, (ARMsra_flag rGPR:$src))]> {
Johnny Chend68e1192009-12-15 17:24:14 +00001617 let Inst{31-27} = 0b11101;
1618 let Inst{26-25} = 0b01;
1619 let Inst{24-21} = 0b0010;
1620 let Inst{20} = 1; // The S bit.
1621 let Inst{19-16} = 0b1111; // Rn
1622 let Inst{5-4} = 0b10; // Shift type.
1623 // Shift amount = Inst{14-12:7-6} = 1.
1624 let Inst{14-12} = 0b000;
1625 let Inst{7-6} = 0b01;
1626}
David Goodwin3583df72009-07-28 17:06:49 +00001627}
1628
Evan Chenga67efd12009-06-23 19:39:13 +00001629//===----------------------------------------------------------------------===//
Evan Chengf49810c2009-06-23 17:48:47 +00001630// Bitwise Instructions.
1631//
Anton Korobeynikov52237112009-06-17 18:13:58 +00001632
Johnny Chend68e1192009-12-15 17:24:14 +00001633defm t2AND : T2I_bin_w_irs<0b0000, "and",
Evan Cheng7e1bf302010-09-29 00:27:46 +00001634 IIC_iBITi, IIC_iBITr, IIC_iBITsi,
Johnny Chend68e1192009-12-15 17:24:14 +00001635 BinOpFrag<(and node:$LHS, node:$RHS)>, 1>;
1636defm t2ORR : T2I_bin_w_irs<0b0010, "orr",
Evan Cheng7e1bf302010-09-29 00:27:46 +00001637 IIC_iBITi, IIC_iBITr, IIC_iBITsi,
Johnny Chend68e1192009-12-15 17:24:14 +00001638 BinOpFrag<(or node:$LHS, node:$RHS)>, 1>;
1639defm t2EOR : T2I_bin_w_irs<0b0100, "eor",
Evan Cheng7e1bf302010-09-29 00:27:46 +00001640 IIC_iBITi, IIC_iBITr, IIC_iBITsi,
Johnny Chend68e1192009-12-15 17:24:14 +00001641 BinOpFrag<(xor node:$LHS, node:$RHS)>, 1>;
Evan Chengf49810c2009-06-23 17:48:47 +00001642
Johnny Chend68e1192009-12-15 17:24:14 +00001643defm t2BIC : T2I_bin_w_irs<0b0001, "bic",
Evan Cheng7e1bf302010-09-29 00:27:46 +00001644 IIC_iBITi, IIC_iBITr, IIC_iBITsi,
Johnny Chend68e1192009-12-15 17:24:14 +00001645 BinOpFrag<(and node:$LHS, (not node:$RHS))>>;
Evan Chengf49810c2009-06-23 17:48:47 +00001646
Bill Wendling55c134a2010-08-30 22:05:23 +00001647defm t2ANDS : T2I_bin_s_irs<0b0000, "and",
Evan Cheng7e1bf302010-09-29 00:27:46 +00001648 IIC_iBITi, IIC_iBITr, IIC_iBITsi,
Bill Wendling55c134a2010-08-30 22:05:23 +00001649 BinOpFrag<(ARMand node:$LHS, node:$RHS)>, 1>;
Bill Wendling0b4aa7d2010-08-29 03:02:11 +00001650
Evan Chengf49810c2009-06-23 17:48:47 +00001651let Constraints = "$src = $dst" in
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001652def t2BFC : T2I<(outs rGPR:$dst), (ins rGPR:$src, bf_inv_mask_imm:$imm),
David Goodwin2f54a2f2009-11-02 17:28:36 +00001653 IIC_iUNAsi, "bfc", "\t$dst, $imm",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001654 [(set rGPR:$dst, (and rGPR:$src, bf_inv_mask_imm:$imm))]> {
Johnny Chend68e1192009-12-15 17:24:14 +00001655 let Inst{31-27} = 0b11110;
1656 let Inst{25} = 1;
1657 let Inst{24-20} = 0b10110;
1658 let Inst{19-16} = 0b1111; // Rn
1659 let Inst{15} = 0;
1660}
Evan Chengf49810c2009-06-23 17:48:47 +00001661
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001662def t2SBFX: T2I<(outs rGPR:$dst), (ins rGPR:$src, imm0_31:$lsb, imm0_31:$width),
Evan Cheng7e1bf302010-09-29 00:27:46 +00001663 IIC_iBITi, "sbfx", "\t$dst, $src, $lsb, $width", []> {
Johnny Chend68e1192009-12-15 17:24:14 +00001664 let Inst{31-27} = 0b11110;
1665 let Inst{25} = 1;
1666 let Inst{24-20} = 0b10100;
1667 let Inst{15} = 0;
1668}
Sandeep Patel47eedaa2009-10-13 18:59:48 +00001669
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001670def t2UBFX: T2I<(outs rGPR:$dst), (ins rGPR:$src, imm0_31:$lsb, imm0_31:$width),
Evan Cheng7e1bf302010-09-29 00:27:46 +00001671 IIC_iBITi, "ubfx", "\t$dst, $src, $lsb, $width", []> {
Johnny Chend68e1192009-12-15 17:24:14 +00001672 let Inst{31-27} = 0b11110;
1673 let Inst{25} = 1;
1674 let Inst{24-20} = 0b11100;
1675 let Inst{15} = 0;
1676}
Sandeep Patel47eedaa2009-10-13 18:59:48 +00001677
Johnny Chen9474d552010-02-02 19:31:58 +00001678// A8.6.18 BFI - Bitfield insert (Encoding T1)
Jim Grosbach469bbdb2010-07-16 23:05:05 +00001679let Constraints = "$src = $dst" in
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001680def t2BFI : T2I<(outs rGPR:$dst),
1681 (ins rGPR:$src, rGPR:$val, bf_inv_mask_imm:$imm),
Evan Cheng7e1bf302010-09-29 00:27:46 +00001682 IIC_iBITi, "bfi", "\t$dst, $val, $imm",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001683 [(set rGPR:$dst, (ARMbfi rGPR:$src, rGPR:$val,
Jim Grosbach469bbdb2010-07-16 23:05:05 +00001684 bf_inv_mask_imm:$imm))]> {
Johnny Chen9474d552010-02-02 19:31:58 +00001685 let Inst{31-27} = 0b11110;
1686 let Inst{25} = 1;
1687 let Inst{24-20} = 0b10110;
1688 let Inst{15} = 0;
1689}
Evan Chengf49810c2009-06-23 17:48:47 +00001690
Evan Cheng7e1bf302010-09-29 00:27:46 +00001691defm t2ORN : T2I_bin_irs<0b0011, "orn",
1692 IIC_iBITi, IIC_iBITr, IIC_iBITsi,
1693 BinOpFrag<(or node:$LHS, (not node:$RHS))>, 0, "">;
Evan Cheng36a0aeb2009-07-06 22:23:46 +00001694
1695// Prefer over of t2EORri ra, rb, -1 because mvn has 16-bit version
1696let AddedComplexity = 1 in
Johnny Chend68e1192009-12-15 17:24:14 +00001697defm t2MVN : T2I_un_irs <0b0011, "mvn", UnOpFrag<(not node:$Src)>, 1, 1>;
Evan Cheng36a0aeb2009-07-06 22:23:46 +00001698
1699
Jim Grosbachf084a5e2010-07-20 16:07:04 +00001700let AddedComplexity = 1 in
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001701def : T2Pat<(and rGPR:$src, t2_so_imm_not:$imm),
1702 (t2BICri rGPR:$src, t2_so_imm_not:$imm)>;
Evan Cheng36a0aeb2009-07-06 22:23:46 +00001703
Evan Cheng25f7cfc2009-08-01 06:13:52 +00001704// FIXME: Disable this pattern on Darwin to workaround an assembler bug.
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001705def : T2Pat<(or rGPR:$src, t2_so_imm_not:$imm),
1706 (t2ORNri rGPR:$src, t2_so_imm_not:$imm)>,
Evan Chengea253b92009-08-12 01:56:42 +00001707 Requires<[IsThumb2]>;
Evan Cheng36a0aeb2009-07-06 22:23:46 +00001708
1709def : T2Pat<(t2_so_imm_not:$src),
1710 (t2MVNi t2_so_imm_not:$src)>;
1711
Evan Chengf49810c2009-06-23 17:48:47 +00001712//===----------------------------------------------------------------------===//
1713// Multiply Instructions.
1714//
Evan Cheng8de898a2009-06-26 00:19:44 +00001715let isCommutable = 1 in
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001716def t2MUL: T2I<(outs rGPR:$dst), (ins rGPR:$a, rGPR:$b), IIC_iMUL32,
Evan Cheng699beba2009-10-27 00:08:59 +00001717 "mul", "\t$dst, $a, $b",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001718 [(set rGPR:$dst, (mul rGPR:$a, rGPR:$b))]> {
Johnny Chend68e1192009-12-15 17:24:14 +00001719 let Inst{31-27} = 0b11111;
1720 let Inst{26-23} = 0b0110;
1721 let Inst{22-20} = 0b000;
1722 let Inst{15-12} = 0b1111; // Ra = 0b1111 (no accumulate)
1723 let Inst{7-4} = 0b0000; // Multiply
1724}
Evan Chengf49810c2009-06-23 17:48:47 +00001725
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001726def t2MLA: T2I<(outs rGPR:$dst), (ins rGPR:$a, rGPR:$b, rGPR:$c), IIC_iMAC32,
Evan Cheng699beba2009-10-27 00:08:59 +00001727 "mla", "\t$dst, $a, $b, $c",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001728 [(set rGPR:$dst, (add (mul rGPR:$a, rGPR:$b), rGPR:$c))]> {
Johnny Chend68e1192009-12-15 17:24:14 +00001729 let Inst{31-27} = 0b11111;
1730 let Inst{26-23} = 0b0110;
1731 let Inst{22-20} = 0b000;
1732 let Inst{15-12} = {?, ?, ?, ?}; // Ra
1733 let Inst{7-4} = 0b0000; // Multiply
1734}
Evan Chengf49810c2009-06-23 17:48:47 +00001735
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001736def t2MLS: T2I<(outs rGPR:$dst), (ins rGPR:$a, rGPR:$b, rGPR:$c), IIC_iMAC32,
Evan Cheng699beba2009-10-27 00:08:59 +00001737 "mls", "\t$dst, $a, $b, $c",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001738 [(set rGPR:$dst, (sub rGPR:$c, (mul rGPR:$a, rGPR:$b)))]> {
Johnny Chend68e1192009-12-15 17:24:14 +00001739 let Inst{31-27} = 0b11111;
1740 let Inst{26-23} = 0b0110;
1741 let Inst{22-20} = 0b000;
1742 let Inst{15-12} = {?, ?, ?, ?}; // Ra
1743 let Inst{7-4} = 0b0001; // Multiply and Subtract
1744}
Evan Chengf49810c2009-06-23 17:48:47 +00001745
Evan Cheng5b9fcd12009-07-07 01:17:28 +00001746// Extra precision multiplies with low / high results
1747let neverHasSideEffects = 1 in {
1748let isCommutable = 1 in {
Jim Grosbachc5ed0132010-08-17 18:39:16 +00001749def t2SMULL : T2I<(outs rGPR:$ldst, rGPR:$hdst),
1750 (ins rGPR:$a, rGPR:$b), IIC_iMUL64,
Johnny Chend68e1192009-12-15 17:24:14 +00001751 "smull", "\t$ldst, $hdst, $a, $b", []> {
1752 let Inst{31-27} = 0b11111;
1753 let Inst{26-23} = 0b0111;
1754 let Inst{22-20} = 0b000;
1755 let Inst{7-4} = 0b0000;
1756}
Evan Cheng5b9fcd12009-07-07 01:17:28 +00001757
Jim Grosbachc5ed0132010-08-17 18:39:16 +00001758def t2UMULL : T2I<(outs rGPR:$ldst, rGPR:$hdst),
1759 (ins rGPR:$a, rGPR:$b), IIC_iMUL64,
Johnny Chend68e1192009-12-15 17:24:14 +00001760 "umull", "\t$ldst, $hdst, $a, $b", []> {
1761 let Inst{31-27} = 0b11111;
1762 let Inst{26-23} = 0b0111;
1763 let Inst{22-20} = 0b010;
1764 let Inst{7-4} = 0b0000;
Evan Cheng5b9fcd12009-07-07 01:17:28 +00001765}
Johnny Chend68e1192009-12-15 17:24:14 +00001766} // isCommutable
Evan Cheng5b9fcd12009-07-07 01:17:28 +00001767
1768// Multiply + accumulate
Jim Grosbachc5ed0132010-08-17 18:39:16 +00001769def t2SMLAL : T2I<(outs rGPR:$ldst, rGPR:$hdst),
1770 (ins rGPR:$a, rGPR:$b), IIC_iMAC64,
Johnny Chend68e1192009-12-15 17:24:14 +00001771 "smlal", "\t$ldst, $hdst, $a, $b", []>{
1772 let Inst{31-27} = 0b11111;
1773 let Inst{26-23} = 0b0111;
1774 let Inst{22-20} = 0b100;
1775 let Inst{7-4} = 0b0000;
1776}
Evan Cheng5b9fcd12009-07-07 01:17:28 +00001777
Jim Grosbachc5ed0132010-08-17 18:39:16 +00001778def t2UMLAL : T2I<(outs rGPR:$ldst, rGPR:$hdst),
1779 (ins rGPR:$a, rGPR:$b), IIC_iMAC64,
Johnny Chend68e1192009-12-15 17:24:14 +00001780 "umlal", "\t$ldst, $hdst, $a, $b", []>{
1781 let Inst{31-27} = 0b11111;
1782 let Inst{26-23} = 0b0111;
1783 let Inst{22-20} = 0b110;
1784 let Inst{7-4} = 0b0000;
1785}
Evan Cheng5b9fcd12009-07-07 01:17:28 +00001786
Jim Grosbachc5ed0132010-08-17 18:39:16 +00001787def t2UMAAL : T2I<(outs rGPR:$ldst, rGPR:$hdst),
1788 (ins rGPR:$a, rGPR:$b), IIC_iMAC64,
Johnny Chend68e1192009-12-15 17:24:14 +00001789 "umaal", "\t$ldst, $hdst, $a, $b", []>{
1790 let Inst{31-27} = 0b11111;
1791 let Inst{26-23} = 0b0111;
1792 let Inst{22-20} = 0b110;
1793 let Inst{7-4} = 0b0110;
1794}
Evan Cheng5b9fcd12009-07-07 01:17:28 +00001795} // neverHasSideEffects
1796
Johnny Chen93042d12010-03-02 18:14:57 +00001797// Rounding variants of the below included for disassembly only
1798
Evan Cheng5b9fcd12009-07-07 01:17:28 +00001799// Most significant word multiply
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001800def t2SMMUL : T2I<(outs rGPR:$dst), (ins rGPR:$a, rGPR:$b), IIC_iMUL32,
Evan Cheng699beba2009-10-27 00:08:59 +00001801 "smmul", "\t$dst, $a, $b",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001802 [(set rGPR:$dst, (mulhs rGPR:$a, rGPR:$b))]> {
Johnny Chend68e1192009-12-15 17:24:14 +00001803 let Inst{31-27} = 0b11111;
1804 let Inst{26-23} = 0b0110;
1805 let Inst{22-20} = 0b101;
1806 let Inst{15-12} = 0b1111; // Ra = 0b1111 (no accumulate)
1807 let Inst{7-4} = 0b0000; // No Rounding (Inst{4} = 0)
1808}
Evan Cheng5b9fcd12009-07-07 01:17:28 +00001809
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001810def t2SMMULR : T2I<(outs rGPR:$dst), (ins rGPR:$a, rGPR:$b), IIC_iMUL32,
Johnny Chen93042d12010-03-02 18:14:57 +00001811 "smmulr", "\t$dst, $a, $b", []> {
1812 let Inst{31-27} = 0b11111;
1813 let Inst{26-23} = 0b0110;
1814 let Inst{22-20} = 0b101;
1815 let Inst{15-12} = 0b1111; // Ra = 0b1111 (no accumulate)
1816 let Inst{7-4} = 0b0001; // Rounding (Inst{4} = 1)
1817}
1818
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001819def t2SMMLA : T2I<(outs rGPR:$dst), (ins rGPR:$a, rGPR:$b, rGPR:$c), IIC_iMAC32,
Evan Cheng699beba2009-10-27 00:08:59 +00001820 "smmla", "\t$dst, $a, $b, $c",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001821 [(set rGPR:$dst, (add (mulhs rGPR:$a, rGPR:$b), rGPR:$c))]> {
Johnny Chend68e1192009-12-15 17:24:14 +00001822 let Inst{31-27} = 0b11111;
1823 let Inst{26-23} = 0b0110;
1824 let Inst{22-20} = 0b101;
1825 let Inst{15-12} = {?, ?, ?, ?}; // Ra
1826 let Inst{7-4} = 0b0000; // No Rounding (Inst{4} = 0)
1827}
Evan Cheng5b9fcd12009-07-07 01:17:28 +00001828
Jim Grosbachc5ed0132010-08-17 18:39:16 +00001829def t2SMMLAR: T2I<(outs rGPR:$dst), (ins rGPR:$a, rGPR:$b, rGPR:$c), IIC_iMAC32,
Johnny Chen93042d12010-03-02 18:14:57 +00001830 "smmlar", "\t$dst, $a, $b, $c", []> {
1831 let Inst{31-27} = 0b11111;
1832 let Inst{26-23} = 0b0110;
1833 let Inst{22-20} = 0b101;
1834 let Inst{15-12} = {?, ?, ?, ?}; // Ra
1835 let Inst{7-4} = 0b0001; // Rounding (Inst{4} = 1)
1836}
Evan Cheng5b9fcd12009-07-07 01:17:28 +00001837
Jim Grosbachc5ed0132010-08-17 18:39:16 +00001838def t2SMMLS: T2I <(outs rGPR:$dst), (ins rGPR:$a, rGPR:$b, rGPR:$c), IIC_iMAC32,
Evan Cheng699beba2009-10-27 00:08:59 +00001839 "smmls", "\t$dst, $a, $b, $c",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001840 [(set rGPR:$dst, (sub rGPR:$c, (mulhs rGPR:$a, rGPR:$b)))]> {
Johnny Chend68e1192009-12-15 17:24:14 +00001841 let Inst{31-27} = 0b11111;
1842 let Inst{26-23} = 0b0110;
1843 let Inst{22-20} = 0b110;
1844 let Inst{15-12} = {?, ?, ?, ?}; // Ra
1845 let Inst{7-4} = 0b0000; // No Rounding (Inst{4} = 0)
1846}
Evan Cheng5b9fcd12009-07-07 01:17:28 +00001847
Jim Grosbachc5ed0132010-08-17 18:39:16 +00001848def t2SMMLSR:T2I <(outs rGPR:$dst), (ins rGPR:$a, rGPR:$b, rGPR:$c), IIC_iMAC32,
Johnny Chen93042d12010-03-02 18:14:57 +00001849 "smmlsr", "\t$dst, $a, $b, $c", []> {
1850 let Inst{31-27} = 0b11111;
1851 let Inst{26-23} = 0b0110;
1852 let Inst{22-20} = 0b110;
1853 let Inst{15-12} = {?, ?, ?, ?}; // Ra
1854 let Inst{7-4} = 0b0001; // Rounding (Inst{4} = 1)
1855}
1856
Evan Cheng5b9fcd12009-07-07 01:17:28 +00001857multiclass T2I_smul<string opc, PatFrag opnode> {
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001858 def BB : T2I<(outs rGPR:$dst), (ins rGPR:$a, rGPR:$b), IIC_iMUL32,
Evan Cheng699beba2009-10-27 00:08:59 +00001859 !strconcat(opc, "bb"), "\t$dst, $a, $b",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001860 [(set rGPR:$dst, (opnode (sext_inreg rGPR:$a, i16),
1861 (sext_inreg rGPR:$b, i16)))]> {
Johnny Chend68e1192009-12-15 17:24:14 +00001862 let Inst{31-27} = 0b11111;
1863 let Inst{26-23} = 0b0110;
1864 let Inst{22-20} = 0b001;
1865 let Inst{15-12} = 0b1111; // Ra = 0b1111 (no accumulate)
1866 let Inst{7-6} = 0b00;
1867 let Inst{5-4} = 0b00;
1868 }
Evan Cheng5b9fcd12009-07-07 01:17:28 +00001869
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001870 def BT : T2I<(outs rGPR:$dst), (ins rGPR:$a, rGPR:$b), IIC_iMUL32,
Evan Cheng699beba2009-10-27 00:08:59 +00001871 !strconcat(opc, "bt"), "\t$dst, $a, $b",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001872 [(set rGPR:$dst, (opnode (sext_inreg rGPR:$a, i16),
1873 (sra rGPR:$b, (i32 16))))]> {
Johnny Chend68e1192009-12-15 17:24:14 +00001874 let Inst{31-27} = 0b11111;
1875 let Inst{26-23} = 0b0110;
1876 let Inst{22-20} = 0b001;
1877 let Inst{15-12} = 0b1111; // Ra = 0b1111 (no accumulate)
1878 let Inst{7-6} = 0b00;
1879 let Inst{5-4} = 0b01;
1880 }
Evan Cheng5b9fcd12009-07-07 01:17:28 +00001881
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001882 def TB : T2I<(outs rGPR:$dst), (ins rGPR:$a, rGPR:$b), IIC_iMUL32,
Evan Cheng699beba2009-10-27 00:08:59 +00001883 !strconcat(opc, "tb"), "\t$dst, $a, $b",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001884 [(set rGPR:$dst, (opnode (sra rGPR:$a, (i32 16)),
1885 (sext_inreg rGPR:$b, i16)))]> {
Johnny Chend68e1192009-12-15 17:24:14 +00001886 let Inst{31-27} = 0b11111;
1887 let Inst{26-23} = 0b0110;
1888 let Inst{22-20} = 0b001;
1889 let Inst{15-12} = 0b1111; // Ra = 0b1111 (no accumulate)
1890 let Inst{7-6} = 0b00;
1891 let Inst{5-4} = 0b10;
1892 }
Evan Cheng5b9fcd12009-07-07 01:17:28 +00001893
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001894 def TT : T2I<(outs rGPR:$dst), (ins rGPR:$a, rGPR:$b), IIC_iMUL32,
Evan Cheng699beba2009-10-27 00:08:59 +00001895 !strconcat(opc, "tt"), "\t$dst, $a, $b",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001896 [(set rGPR:$dst, (opnode (sra rGPR:$a, (i32 16)),
1897 (sra rGPR:$b, (i32 16))))]> {
Johnny Chend68e1192009-12-15 17:24:14 +00001898 let Inst{31-27} = 0b11111;
1899 let Inst{26-23} = 0b0110;
1900 let Inst{22-20} = 0b001;
1901 let Inst{15-12} = 0b1111; // Ra = 0b1111 (no accumulate)
1902 let Inst{7-6} = 0b00;
1903 let Inst{5-4} = 0b11;
1904 }
Evan Cheng5b9fcd12009-07-07 01:17:28 +00001905
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001906 def WB : T2I<(outs rGPR:$dst), (ins rGPR:$a, rGPR:$b), IIC_iMUL16,
Evan Cheng699beba2009-10-27 00:08:59 +00001907 !strconcat(opc, "wb"), "\t$dst, $a, $b",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001908 [(set rGPR:$dst, (sra (opnode rGPR:$a,
1909 (sext_inreg rGPR:$b, i16)), (i32 16)))]> {
Johnny Chend68e1192009-12-15 17:24:14 +00001910 let Inst{31-27} = 0b11111;
1911 let Inst{26-23} = 0b0110;
1912 let Inst{22-20} = 0b011;
1913 let Inst{15-12} = 0b1111; // Ra = 0b1111 (no accumulate)
1914 let Inst{7-6} = 0b00;
1915 let Inst{5-4} = 0b00;
1916 }
Evan Cheng5b9fcd12009-07-07 01:17:28 +00001917
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001918 def WT : T2I<(outs rGPR:$dst), (ins rGPR:$a, rGPR:$b), IIC_iMUL16,
Evan Cheng699beba2009-10-27 00:08:59 +00001919 !strconcat(opc, "wt"), "\t$dst, $a, $b",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001920 [(set rGPR:$dst, (sra (opnode rGPR:$a,
1921 (sra rGPR:$b, (i32 16))), (i32 16)))]> {
Johnny Chend68e1192009-12-15 17:24:14 +00001922 let Inst{31-27} = 0b11111;
1923 let Inst{26-23} = 0b0110;
1924 let Inst{22-20} = 0b011;
1925 let Inst{15-12} = 0b1111; // Ra = 0b1111 (no accumulate)
1926 let Inst{7-6} = 0b00;
1927 let Inst{5-4} = 0b01;
1928 }
Evan Cheng5b9fcd12009-07-07 01:17:28 +00001929}
1930
1931
1932multiclass T2I_smla<string opc, PatFrag opnode> {
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001933 def BB : T2I<(outs rGPR:$dst), (ins rGPR:$a, rGPR:$b, rGPR:$acc), IIC_iMAC16,
Evan Cheng699beba2009-10-27 00:08:59 +00001934 !strconcat(opc, "bb"), "\t$dst, $a, $b, $acc",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001935 [(set rGPR:$dst, (add rGPR:$acc,
1936 (opnode (sext_inreg rGPR:$a, i16),
1937 (sext_inreg rGPR:$b, i16))))]> {
Johnny Chend68e1192009-12-15 17:24:14 +00001938 let Inst{31-27} = 0b11111;
1939 let Inst{26-23} = 0b0110;
1940 let Inst{22-20} = 0b001;
1941 let Inst{15-12} = {?, ?, ?, ?}; // Ra
1942 let Inst{7-6} = 0b00;
1943 let Inst{5-4} = 0b00;
1944 }
Evan Cheng5b9fcd12009-07-07 01:17:28 +00001945
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001946 def BT : T2I<(outs rGPR:$dst), (ins rGPR:$a, rGPR:$b, rGPR:$acc), IIC_iMAC16,
Evan Cheng699beba2009-10-27 00:08:59 +00001947 !strconcat(opc, "bt"), "\t$dst, $a, $b, $acc",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001948 [(set rGPR:$dst, (add rGPR:$acc, (opnode (sext_inreg rGPR:$a, i16),
Jim Grosbachc5ed0132010-08-17 18:39:16 +00001949 (sra rGPR:$b, (i32 16)))))]> {
Johnny Chend68e1192009-12-15 17:24:14 +00001950 let Inst{31-27} = 0b11111;
1951 let Inst{26-23} = 0b0110;
1952 let Inst{22-20} = 0b001;
1953 let Inst{15-12} = {?, ?, ?, ?}; // Ra
1954 let Inst{7-6} = 0b00;
1955 let Inst{5-4} = 0b01;
1956 }
Evan Cheng5b9fcd12009-07-07 01:17:28 +00001957
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001958 def TB : T2I<(outs rGPR:$dst), (ins rGPR:$a, rGPR:$b, rGPR:$acc), IIC_iMAC16,
Evan Cheng699beba2009-10-27 00:08:59 +00001959 !strconcat(opc, "tb"), "\t$dst, $a, $b, $acc",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001960 [(set rGPR:$dst, (add rGPR:$acc, (opnode (sra rGPR:$a, (i32 16)),
Jim Grosbachc5ed0132010-08-17 18:39:16 +00001961 (sext_inreg rGPR:$b, i16))))]> {
Johnny Chend68e1192009-12-15 17:24:14 +00001962 let Inst{31-27} = 0b11111;
1963 let Inst{26-23} = 0b0110;
1964 let Inst{22-20} = 0b001;
1965 let Inst{15-12} = {?, ?, ?, ?}; // Ra
1966 let Inst{7-6} = 0b00;
1967 let Inst{5-4} = 0b10;
1968 }
Evan Cheng5b9fcd12009-07-07 01:17:28 +00001969
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001970 def TT : T2I<(outs rGPR:$dst), (ins rGPR:$a, rGPR:$b, rGPR:$acc), IIC_iMAC16,
Evan Cheng699beba2009-10-27 00:08:59 +00001971 !strconcat(opc, "tt"), "\t$dst, $a, $b, $acc",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001972 [(set rGPR:$dst, (add rGPR:$acc, (opnode (sra rGPR:$a, (i32 16)),
Jim Grosbachc5ed0132010-08-17 18:39:16 +00001973 (sra rGPR:$b, (i32 16)))))]> {
Johnny Chend68e1192009-12-15 17:24:14 +00001974 let Inst{31-27} = 0b11111;
1975 let Inst{26-23} = 0b0110;
1976 let Inst{22-20} = 0b001;
1977 let Inst{15-12} = {?, ?, ?, ?}; // Ra
1978 let Inst{7-6} = 0b00;
1979 let Inst{5-4} = 0b11;
1980 }
Evan Cheng5b9fcd12009-07-07 01:17:28 +00001981
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001982 def WB : T2I<(outs rGPR:$dst), (ins rGPR:$a, rGPR:$b, rGPR:$acc), IIC_iMAC16,
Evan Cheng699beba2009-10-27 00:08:59 +00001983 !strconcat(opc, "wb"), "\t$dst, $a, $b, $acc",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001984 [(set rGPR:$dst, (add rGPR:$acc, (sra (opnode rGPR:$a,
Jim Grosbachc5ed0132010-08-17 18:39:16 +00001985 (sext_inreg rGPR:$b, i16)), (i32 16))))]> {
Johnny Chend68e1192009-12-15 17:24:14 +00001986 let Inst{31-27} = 0b11111;
1987 let Inst{26-23} = 0b0110;
1988 let Inst{22-20} = 0b011;
1989 let Inst{15-12} = {?, ?, ?, ?}; // Ra
1990 let Inst{7-6} = 0b00;
1991 let Inst{5-4} = 0b00;
1992 }
Evan Cheng5b9fcd12009-07-07 01:17:28 +00001993
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001994 def WT : T2I<(outs rGPR:$dst), (ins rGPR:$a, rGPR:$b, rGPR:$acc), IIC_iMAC16,
Evan Cheng699beba2009-10-27 00:08:59 +00001995 !strconcat(opc, "wt"), "\t$dst, $a, $b, $acc",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001996 [(set rGPR:$dst, (add rGPR:$acc, (sra (opnode rGPR:$a,
Jim Grosbachc5ed0132010-08-17 18:39:16 +00001997 (sra rGPR:$b, (i32 16))), (i32 16))))]> {
Johnny Chend68e1192009-12-15 17:24:14 +00001998 let Inst{31-27} = 0b11111;
1999 let Inst{26-23} = 0b0110;
2000 let Inst{22-20} = 0b011;
2001 let Inst{15-12} = {?, ?, ?, ?}; // Ra
2002 let Inst{7-6} = 0b00;
2003 let Inst{5-4} = 0b01;
2004 }
Evan Cheng5b9fcd12009-07-07 01:17:28 +00002005}
2006
2007defm t2SMUL : T2I_smul<"smul", BinOpFrag<(mul node:$LHS, node:$RHS)>>;
2008defm t2SMLA : T2I_smla<"smla", BinOpFrag<(mul node:$LHS, node:$RHS)>>;
2009
Johnny Chenadc77332010-02-26 22:04:29 +00002010// Halfword multiple accumulate long: SMLAL<x><y> -- for disassembly only
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002011def t2SMLALBB : T2I_mac<1, 0b100, 0b1000, (outs rGPR:$ldst,rGPR:$hdst),
Jim Grosbachc5ed0132010-08-17 18:39:16 +00002012 (ins rGPR:$a,rGPR:$b), IIC_iMAC64, "smlalbb", "\t$ldst, $hdst, $a, $b",
Johnny Chenadc77332010-02-26 22:04:29 +00002013 [/* For disassembly only; pattern left blank */]>;
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002014def t2SMLALBT : T2I_mac<1, 0b100, 0b1001, (outs rGPR:$ldst,rGPR:$hdst),
Jim Grosbachc5ed0132010-08-17 18:39:16 +00002015 (ins rGPR:$a,rGPR:$b), IIC_iMAC64, "smlalbt", "\t$ldst, $hdst, $a, $b",
Johnny Chenadc77332010-02-26 22:04:29 +00002016 [/* For disassembly only; pattern left blank */]>;
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002017def t2SMLALTB : T2I_mac<1, 0b100, 0b1010, (outs rGPR:$ldst,rGPR:$hdst),
Jim Grosbachc5ed0132010-08-17 18:39:16 +00002018 (ins rGPR:$a,rGPR:$b), IIC_iMAC64, "smlaltb", "\t$ldst, $hdst, $a, $b",
Johnny Chenadc77332010-02-26 22:04:29 +00002019 [/* For disassembly only; pattern left blank */]>;
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002020def t2SMLALTT : T2I_mac<1, 0b100, 0b1011, (outs rGPR:$ldst,rGPR:$hdst),
Jim Grosbachc5ed0132010-08-17 18:39:16 +00002021 (ins rGPR:$a,rGPR:$b), IIC_iMAC64, "smlaltt", "\t$ldst, $hdst, $a, $b",
Johnny Chenadc77332010-02-26 22:04:29 +00002022 [/* For disassembly only; pattern left blank */]>;
Evan Cheng5b9fcd12009-07-07 01:17:28 +00002023
Johnny Chenadc77332010-02-26 22:04:29 +00002024// Dual halfword multiple: SMUAD, SMUSD, SMLAD, SMLSD, SMLALD, SMLSLD
2025// These are for disassembly only.
2026
Jim Grosbachc5ed0132010-08-17 18:39:16 +00002027def t2SMUAD: T2I_mac<0, 0b010, 0b0000, (outs rGPR:$dst), (ins rGPR:$a, rGPR:$b),
2028 IIC_iMAC32, "smuad", "\t$dst, $a, $b", []> {
Johnny Chenadc77332010-02-26 22:04:29 +00002029 let Inst{15-12} = 0b1111;
2030}
Jim Grosbachc5ed0132010-08-17 18:39:16 +00002031def t2SMUADX:T2I_mac<0, 0b010, 0b0001, (outs rGPR:$dst), (ins rGPR:$a, rGPR:$b),
2032 IIC_iMAC32, "smuadx", "\t$dst, $a, $b", []> {
Johnny Chenadc77332010-02-26 22:04:29 +00002033 let Inst{15-12} = 0b1111;
2034}
Jim Grosbachc5ed0132010-08-17 18:39:16 +00002035def t2SMUSD: T2I_mac<0, 0b100, 0b0000, (outs rGPR:$dst), (ins rGPR:$a, rGPR:$b),
2036 IIC_iMAC32, "smusd", "\t$dst, $a, $b", []> {
Johnny Chenadc77332010-02-26 22:04:29 +00002037 let Inst{15-12} = 0b1111;
2038}
Jim Grosbachc5ed0132010-08-17 18:39:16 +00002039def t2SMUSDX:T2I_mac<0, 0b100, 0b0001, (outs rGPR:$dst), (ins rGPR:$a, rGPR:$b),
2040 IIC_iMAC32, "smusdx", "\t$dst, $a, $b", []> {
Johnny Chenadc77332010-02-26 22:04:29 +00002041 let Inst{15-12} = 0b1111;
2042}
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002043def t2SMLAD : T2I_mac<0, 0b010, 0b0000, (outs rGPR:$dst),
2044 (ins rGPR:$a, rGPR:$b, rGPR:$acc), IIC_iMAC32, "smlad",
Johnny Chenadc77332010-02-26 22:04:29 +00002045 "\t$dst, $a, $b, $acc", []>;
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002046def t2SMLADX : T2I_mac<0, 0b010, 0b0001, (outs rGPR:$dst),
2047 (ins rGPR:$a, rGPR:$b, rGPR:$acc), IIC_iMAC32, "smladx",
Johnny Chenadc77332010-02-26 22:04:29 +00002048 "\t$dst, $a, $b, $acc", []>;
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002049def t2SMLSD : T2I_mac<0, 0b100, 0b0000, (outs rGPR:$dst),
2050 (ins rGPR:$a, rGPR:$b, rGPR:$acc), IIC_iMAC32, "smlsd",
Johnny Chenadc77332010-02-26 22:04:29 +00002051 "\t$dst, $a, $b, $acc", []>;
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002052def t2SMLSDX : T2I_mac<0, 0b100, 0b0001, (outs rGPR:$dst),
2053 (ins rGPR:$a, rGPR:$b, rGPR:$acc), IIC_iMAC32, "smlsdx",
Johnny Chenadc77332010-02-26 22:04:29 +00002054 "\t$dst, $a, $b, $acc", []>;
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002055def t2SMLALD : T2I_mac<1, 0b100, 0b1100, (outs rGPR:$ldst,rGPR:$hdst),
2056 (ins rGPR:$a,rGPR:$b), IIC_iMAC64, "smlald",
Johnny Chenadc77332010-02-26 22:04:29 +00002057 "\t$ldst, $hdst, $a, $b", []>;
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002058def t2SMLALDX : T2I_mac<1, 0b100, 0b1101, (outs rGPR:$ldst,rGPR:$hdst),
2059 (ins rGPR:$a,rGPR:$b), IIC_iMAC64, "smlaldx",
Johnny Chenadc77332010-02-26 22:04:29 +00002060 "\t$ldst, $hdst, $a, $b", []>;
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002061def t2SMLSLD : T2I_mac<1, 0b101, 0b1100, (outs rGPR:$ldst,rGPR:$hdst),
2062 (ins rGPR:$a,rGPR:$b), IIC_iMAC64, "smlsld",
Johnny Chenadc77332010-02-26 22:04:29 +00002063 "\t$ldst, $hdst, $a, $b", []>;
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002064def t2SMLSLDX : T2I_mac<1, 0b101, 0b1101, (outs rGPR:$ldst,rGPR:$hdst),
2065 (ins rGPR:$a,rGPR:$b), IIC_iMAC64, "smlsldx",
Johnny Chenadc77332010-02-26 22:04:29 +00002066 "\t$ldst, $hdst, $a, $b", []>;
Evan Chengf49810c2009-06-23 17:48:47 +00002067
2068//===----------------------------------------------------------------------===//
2069// Misc. Arithmetic Instructions.
2070//
2071
Jim Grosbach80dc1162010-02-16 21:23:02 +00002072class T2I_misc<bits<2> op1, bits<2> op2, dag oops, dag iops,
2073 InstrItinClass itin, string opc, string asm, list<dag> pattern>
Johnny Chend68e1192009-12-15 17:24:14 +00002074 : T2I<oops, iops, itin, opc, asm, pattern> {
2075 let Inst{31-27} = 0b11111;
2076 let Inst{26-22} = 0b01010;
2077 let Inst{21-20} = op1;
2078 let Inst{15-12} = 0b1111;
2079 let Inst{7-6} = 0b10;
2080 let Inst{5-4} = op2;
2081}
Evan Chengf49810c2009-06-23 17:48:47 +00002082
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002083def t2CLZ : T2I_misc<0b11, 0b00, (outs rGPR:$dst), (ins rGPR:$src), IIC_iUNAr,
2084 "clz", "\t$dst, $src", [(set rGPR:$dst, (ctlz rGPR:$src))]>;
Evan Chengf49810c2009-06-23 17:48:47 +00002085
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002086def t2RBIT : T2I_misc<0b01, 0b10, (outs rGPR:$dst), (ins rGPR:$src), IIC_iUNAr,
Evan Chengf609bb82010-01-19 00:44:15 +00002087 "rbit", "\t$dst, $src",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002088 [(set rGPR:$dst, (ARMrbit rGPR:$src))]>;
Jim Grosbach3482c802010-01-18 19:58:49 +00002089
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002090def t2REV : T2I_misc<0b01, 0b00, (outs rGPR:$dst), (ins rGPR:$src), IIC_iUNAr,
Jim Grosbachc5ed0132010-08-17 18:39:16 +00002091 "rev", ".w\t$dst, $src", [(set rGPR:$dst, (bswap rGPR:$src))]>;
Johnny Chend68e1192009-12-15 17:24:14 +00002092
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002093def t2REV16 : T2I_misc<0b01, 0b01, (outs rGPR:$dst), (ins rGPR:$src), IIC_iUNAr,
Johnny Chend68e1192009-12-15 17:24:14 +00002094 "rev16", ".w\t$dst, $src",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002095 [(set rGPR:$dst,
2096 (or (and (srl rGPR:$src, (i32 8)), 0xFF),
2097 (or (and (shl rGPR:$src, (i32 8)), 0xFF00),
2098 (or (and (srl rGPR:$src, (i32 8)), 0xFF0000),
Jim Grosbachc5ed0132010-08-17 18:39:16 +00002099 (and (shl rGPR:$src, (i32 8)), 0xFF000000)))))]>;
Evan Chengf49810c2009-06-23 17:48:47 +00002100
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002101def t2REVSH : T2I_misc<0b01, 0b11, (outs rGPR:$dst), (ins rGPR:$src), IIC_iUNAr,
Johnny Chend68e1192009-12-15 17:24:14 +00002102 "revsh", ".w\t$dst, $src",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002103 [(set rGPR:$dst,
Evan Chengf49810c2009-06-23 17:48:47 +00002104 (sext_inreg
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002105 (or (srl (and rGPR:$src, 0xFF00), (i32 8)),
2106 (shl rGPR:$src, (i32 8))), i16))]>;
Evan Chengf49810c2009-06-23 17:48:47 +00002107
Bob Wilsonf955f292010-08-17 17:23:19 +00002108def t2PKHBT : T2I<(outs rGPR:$dst), (ins rGPR:$src1, rGPR:$src2, shift_imm:$sh),
Evan Cheng7e1bf302010-09-29 00:27:46 +00002109 IIC_iBITsi, "pkhbt", "\t$dst, $src1, $src2$sh",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002110 [(set rGPR:$dst, (or (and rGPR:$src1, 0xFFFF),
Bob Wilsonf955f292010-08-17 17:23:19 +00002111 (and (shl rGPR:$src2, lsl_amt:$sh),
Jim Grosbachb1dc3932010-05-05 20:44:35 +00002112 0xFFFF0000)))]>,
Jim Grosbach29402132010-05-05 23:44:43 +00002113 Requires<[HasT2ExtractPack]> {
Johnny Chend68e1192009-12-15 17:24:14 +00002114 let Inst{31-27} = 0b11101;
2115 let Inst{26-25} = 0b01;
2116 let Inst{24-20} = 0b01100;
2117 let Inst{5} = 0; // BT form
2118 let Inst{4} = 0;
2119}
Evan Cheng40289b02009-07-07 05:35:52 +00002120
2121// Alternate cases for PKHBT where identities eliminate some nodes.
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002122def : T2Pat<(or (and rGPR:$src1, 0xFFFF), (and rGPR:$src2, 0xFFFF0000)),
2123 (t2PKHBT rGPR:$src1, rGPR:$src2, 0)>,
Jim Grosbach29402132010-05-05 23:44:43 +00002124 Requires<[HasT2ExtractPack]>;
Bob Wilsonf955f292010-08-17 17:23:19 +00002125def : T2Pat<(or (and rGPR:$src1, 0xFFFF), (shl rGPR:$src2, imm16_31:$sh)),
2126 (t2PKHBT rGPR:$src1, rGPR:$src2, (lsl_shift_imm imm16_31:$sh))>,
Jim Grosbach29402132010-05-05 23:44:43 +00002127 Requires<[HasT2ExtractPack]>;
Evan Cheng40289b02009-07-07 05:35:52 +00002128
Bob Wilsondc66eda2010-08-16 22:26:55 +00002129// Note: Shifts of 1-15 bits will be transformed to srl instead of sra and
2130// will match the pattern below.
Bob Wilsonf955f292010-08-17 17:23:19 +00002131def t2PKHTB : T2I<(outs rGPR:$dst), (ins rGPR:$src1, rGPR:$src2, shift_imm:$sh),
Evan Cheng7e1bf302010-09-29 00:27:46 +00002132 IIC_iBITsi, "pkhtb", "\t$dst, $src1, $src2$sh",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002133 [(set rGPR:$dst, (or (and rGPR:$src1, 0xFFFF0000),
Bob Wilsonf955f292010-08-17 17:23:19 +00002134 (and (sra rGPR:$src2, asr_amt:$sh),
2135 0xFFFF)))]>,
Jim Grosbach29402132010-05-05 23:44:43 +00002136 Requires<[HasT2ExtractPack]> {
Johnny Chend68e1192009-12-15 17:24:14 +00002137 let Inst{31-27} = 0b11101;
2138 let Inst{26-25} = 0b01;
2139 let Inst{24-20} = 0b01100;
2140 let Inst{5} = 1; // TB form
2141 let Inst{4} = 0;
2142}
Evan Cheng40289b02009-07-07 05:35:52 +00002143
2144// Alternate cases for PKHTB where identities eliminate some nodes. Note that
2145// a shift amount of 0 is *not legal* here, it is PKHBT instead.
Bob Wilsondc66eda2010-08-16 22:26:55 +00002146def : T2Pat<(or (and rGPR:$src1, 0xFFFF0000), (srl rGPR:$src2, imm16_31:$sh)),
Bob Wilsonf955f292010-08-17 17:23:19 +00002147 (t2PKHTB rGPR:$src1, rGPR:$src2, (asr_shift_imm imm16_31:$sh))>,
Jim Grosbach29402132010-05-05 23:44:43 +00002148 Requires<[HasT2ExtractPack]>;
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002149def : T2Pat<(or (and rGPR:$src1, 0xFFFF0000),
Bob Wilsonf955f292010-08-17 17:23:19 +00002150 (and (srl rGPR:$src2, imm1_15:$sh), 0xFFFF)),
2151 (t2PKHTB rGPR:$src1, rGPR:$src2, (asr_shift_imm imm1_15:$sh))>,
Jim Grosbach29402132010-05-05 23:44:43 +00002152 Requires<[HasT2ExtractPack]>;
Evan Chengf49810c2009-06-23 17:48:47 +00002153
2154//===----------------------------------------------------------------------===//
2155// Comparison Instructions...
2156//
Johnny Chend68e1192009-12-15 17:24:14 +00002157defm t2CMP : T2I_cmp_irs<0b1101, "cmp",
2158 BinOpFrag<(ARMcmp node:$LHS, node:$RHS)>>;
2159defm t2CMPz : T2I_cmp_irs<0b1101, "cmp",
2160 BinOpFrag<(ARMcmpZ node:$LHS, node:$RHS)>>;
Evan Chengf49810c2009-06-23 17:48:47 +00002161
Dan Gohman4b7dff92010-08-26 15:50:25 +00002162//FIXME: Disable CMN, as CCodes are backwards from compare expectations
2163// Compare-to-zero still works out, just not the relationals
Jim Grosbachd5d2bae2010-01-22 00:08:13 +00002164//defm t2CMN : T2I_cmp_irs<0b1000, "cmn",
2165// BinOpFrag<(ARMcmp node:$LHS,(ineg node:$RHS))>>;
Dan Gohman4b7dff92010-08-26 15:50:25 +00002166defm t2CMNz : T2I_cmp_irs<0b1000, "cmn",
2167 BinOpFrag<(ARMcmpZ node:$LHS,(ineg node:$RHS))>>;
2168
Jim Grosbachd5d2bae2010-01-22 00:08:13 +00002169//def : T2Pat<(ARMcmp GPR:$src, t2_so_imm_neg:$imm),
2170// (t2CMNri GPR:$src, t2_so_imm_neg:$imm)>;
Dan Gohman4b7dff92010-08-26 15:50:25 +00002171
2172def : T2Pat<(ARMcmpZ GPR:$src, t2_so_imm_neg:$imm),
2173 (t2CMNzri GPR:$src, t2_so_imm_neg:$imm)>;
Evan Chengf49810c2009-06-23 17:48:47 +00002174
Johnny Chend68e1192009-12-15 17:24:14 +00002175defm t2TST : T2I_cmp_irs<0b0000, "tst",
2176 BinOpFrag<(ARMcmpZ (and node:$LHS, node:$RHS), 0)>>;
2177defm t2TEQ : T2I_cmp_irs<0b0100, "teq",
2178 BinOpFrag<(ARMcmpZ (xor node:$LHS, node:$RHS), 0)>>;
Evan Chengf49810c2009-06-23 17:48:47 +00002179
Evan Chenge253c952009-07-07 20:39:03 +00002180// Conditional moves
2181// FIXME: should be able to write a pattern for ARMcmov, but can't use
Jim Grosbach64171712010-02-16 21:07:46 +00002182// a two-value operand where a dag node expects two operands. :(
Owen Andersonf523e472010-09-23 23:45:25 +00002183let neverHasSideEffects = 1 in {
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002184def t2MOVCCr : T2I<(outs rGPR:$dst), (ins rGPR:$false, rGPR:$true), IIC_iCMOVr,
Evan Cheng699beba2009-10-27 00:08:59 +00002185 "mov", ".w\t$dst, $true",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002186 [/*(set rGPR:$dst, (ARMcmov rGPR:$false, rGPR:$true, imm:$cc, CCR:$ccr))*/]>,
Johnny Chend68e1192009-12-15 17:24:14 +00002187 RegConstraint<"$false = $dst"> {
2188 let Inst{31-27} = 0b11101;
2189 let Inst{26-25} = 0b01;
2190 let Inst{24-21} = 0b0010;
2191 let Inst{20} = 0; // The S bit.
2192 let Inst{19-16} = 0b1111; // Rn
2193 let Inst{14-12} = 0b000;
2194 let Inst{7-4} = 0b0000;
2195}
Evan Chenge253c952009-07-07 20:39:03 +00002196
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002197def t2MOVCCi : T2I<(outs rGPR:$dst), (ins rGPR:$false, t2_so_imm:$true),
Evan Cheng699beba2009-10-27 00:08:59 +00002198 IIC_iCMOVi, "mov", ".w\t$dst, $true",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002199[/*(set rGPR:$dst,(ARMcmov rGPR:$false,t2_so_imm:$true, imm:$cc, CCR:$ccr))*/]>,
Johnny Chend68e1192009-12-15 17:24:14 +00002200 RegConstraint<"$false = $dst"> {
2201 let Inst{31-27} = 0b11110;
2202 let Inst{25} = 0;
2203 let Inst{24-21} = 0b0010;
2204 let Inst{20} = 0; // The S bit.
2205 let Inst{19-16} = 0b1111; // Rn
2206 let Inst{15} = 0;
2207}
Evan Chengf49810c2009-06-23 17:48:47 +00002208
Johnny Chend68e1192009-12-15 17:24:14 +00002209class T2I_movcc_sh<bits<2> opcod, dag oops, dag iops, InstrItinClass itin,
2210 string opc, string asm, list<dag> pattern>
2211 : T2I<oops, iops, itin, opc, asm, pattern> {
2212 let Inst{31-27} = 0b11101;
2213 let Inst{26-25} = 0b01;
2214 let Inst{24-21} = 0b0010;
2215 let Inst{20} = 0; // The S bit.
2216 let Inst{19-16} = 0b1111; // Rn
2217 let Inst{5-4} = opcod; // Shift type.
2218}
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002219def t2MOVCClsl : T2I_movcc_sh<0b00, (outs rGPR:$dst),
2220 (ins rGPR:$false, rGPR:$true, i32imm:$rhs),
Johnny Chend68e1192009-12-15 17:24:14 +00002221 IIC_iCMOVsi, "lsl", ".w\t$dst, $true, $rhs", []>,
2222 RegConstraint<"$false = $dst">;
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002223def t2MOVCClsr : T2I_movcc_sh<0b01, (outs rGPR:$dst),
2224 (ins rGPR:$false, rGPR:$true, i32imm:$rhs),
Johnny Chend68e1192009-12-15 17:24:14 +00002225 IIC_iCMOVsi, "lsr", ".w\t$dst, $true, $rhs", []>,
2226 RegConstraint<"$false = $dst">;
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002227def t2MOVCCasr : T2I_movcc_sh<0b10, (outs rGPR:$dst),
2228 (ins rGPR:$false, rGPR:$true, i32imm:$rhs),
Johnny Chend68e1192009-12-15 17:24:14 +00002229 IIC_iCMOVsi, "asr", ".w\t$dst, $true, $rhs", []>,
2230 RegConstraint<"$false = $dst">;
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002231def t2MOVCCror : T2I_movcc_sh<0b11, (outs rGPR:$dst),
2232 (ins rGPR:$false, rGPR:$true, i32imm:$rhs),
Johnny Chend68e1192009-12-15 17:24:14 +00002233 IIC_iCMOVsi, "ror", ".w\t$dst, $true, $rhs", []>,
2234 RegConstraint<"$false = $dst">;
Owen Andersonf523e472010-09-23 23:45:25 +00002235} // neverHasSideEffects
Evan Cheng13f8b362009-08-01 01:43:45 +00002236
David Goodwin5e47a9a2009-06-30 18:04:13 +00002237//===----------------------------------------------------------------------===//
Jim Grosbachc219e4d2009-12-14 18:56:47 +00002238// Atomic operations intrinsics
2239//
2240
2241// memory barriers protect the atomic sequences
2242let hasSideEffects = 1 in {
Evan Cheng11db0682010-08-11 06:22:01 +00002243def t2DMBsy : AInoP<(outs), (ins), ThumbFrm, NoItinerary, "dmb", "",
Evan Chengee349872010-08-11 06:36:31 +00002244 [(ARMMemBarrier)]>, Requires<[IsThumb, HasDB]> {
Johnny Chend68e1192009-12-15 17:24:14 +00002245 let Inst{31-4} = 0xF3BF8F5;
Jim Grosbachc219e4d2009-12-14 18:56:47 +00002246 // FIXME: add support for options other than a full system DMB
Johnny Chend68e1192009-12-15 17:24:14 +00002247 let Inst{3-0} = 0b1111;
Jim Grosbachc219e4d2009-12-14 18:56:47 +00002248}
2249
Evan Cheng11db0682010-08-11 06:22:01 +00002250def t2DSBsy : AInoP<(outs), (ins), ThumbFrm, NoItinerary, "dsb", "",
Evan Chengee349872010-08-11 06:36:31 +00002251 [(ARMSyncBarrier)]>, Requires<[IsThumb, HasDB]> {
Johnny Chend68e1192009-12-15 17:24:14 +00002252 let Inst{31-4} = 0xF3BF8F4;
Jim Grosbachc219e4d2009-12-14 18:56:47 +00002253 // FIXME: add support for options other than a full system DSB
Johnny Chend68e1192009-12-15 17:24:14 +00002254 let Inst{3-0} = 0b1111;
Jim Grosbachc219e4d2009-12-14 18:56:47 +00002255}
2256}
2257
Johnny Chena4339822010-03-03 00:16:28 +00002258// Helper class for multiclass T2MemB -- for disassembly only
2259class T2I_memb<string opc, string asm>
2260 : T2I<(outs), (ins), NoItinerary, opc, asm,
2261 [/* For disassembly only; pattern left blank */]>,
2262 Requires<[IsThumb2, HasV7]> {
2263 let Inst{31-20} = 0xf3b;
2264 let Inst{15-14} = 0b10;
2265 let Inst{12} = 0;
2266}
2267
2268multiclass T2MemB<bits<4> op7_4, string opc> {
2269
2270 def st : T2I_memb<opc, "\tst"> {
2271 let Inst{7-4} = op7_4;
2272 let Inst{3-0} = 0b1110;
2273 }
2274
2275 def ish : T2I_memb<opc, "\tish"> {
2276 let Inst{7-4} = op7_4;
2277 let Inst{3-0} = 0b1011;
2278 }
2279
2280 def ishst : T2I_memb<opc, "\tishst"> {
2281 let Inst{7-4} = op7_4;
2282 let Inst{3-0} = 0b1010;
2283 }
2284
2285 def nsh : T2I_memb<opc, "\tnsh"> {
2286 let Inst{7-4} = op7_4;
2287 let Inst{3-0} = 0b0111;
2288 }
2289
2290 def nshst : T2I_memb<opc, "\tnshst"> {
2291 let Inst{7-4} = op7_4;
2292 let Inst{3-0} = 0b0110;
2293 }
2294
2295 def osh : T2I_memb<opc, "\tosh"> {
2296 let Inst{7-4} = op7_4;
2297 let Inst{3-0} = 0b0011;
2298 }
2299
2300 def oshst : T2I_memb<opc, "\toshst"> {
2301 let Inst{7-4} = op7_4;
2302 let Inst{3-0} = 0b0010;
2303 }
2304}
2305
2306// These DMB variants are for disassembly only.
2307defm t2DMB : T2MemB<0b0101, "dmb">;
2308
2309// These DSB variants are for disassembly only.
2310defm t2DSB : T2MemB<0b0100, "dsb">;
2311
2312// ISB has only full system option -- for disassembly only
2313def t2ISBsy : T2I_memb<"isb", ""> {
2314 let Inst{7-4} = 0b0110;
2315 let Inst{3-0} = 0b1111;
2316}
2317
Johnny Chend68e1192009-12-15 17:24:14 +00002318class T2I_ldrex<bits<2> opcod, dag oops, dag iops, AddrMode am, SizeFlagVal sz,
2319 InstrItinClass itin, string opc, string asm, string cstr,
2320 list<dag> pattern, bits<4> rt2 = 0b1111>
2321 : Thumb2I<oops, iops, am, sz, itin, opc, asm, cstr, pattern> {
2322 let Inst{31-27} = 0b11101;
2323 let Inst{26-20} = 0b0001101;
2324 let Inst{11-8} = rt2;
2325 let Inst{7-6} = 0b01;
2326 let Inst{5-4} = opcod;
2327 let Inst{3-0} = 0b1111;
2328}
2329class T2I_strex<bits<2> opcod, dag oops, dag iops, AddrMode am, SizeFlagVal sz,
2330 InstrItinClass itin, string opc, string asm, string cstr,
2331 list<dag> pattern, bits<4> rt2 = 0b1111>
2332 : Thumb2I<oops, iops, am, sz, itin, opc, asm, cstr, pattern> {
2333 let Inst{31-27} = 0b11101;
2334 let Inst{26-20} = 0b0001100;
2335 let Inst{11-8} = rt2;
2336 let Inst{7-6} = 0b01;
2337 let Inst{5-4} = opcod;
2338}
2339
Jim Grosbachc219e4d2009-12-14 18:56:47 +00002340let mayLoad = 1 in {
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002341def t2LDREXB : T2I_ldrex<0b00, (outs rGPR:$dest), (ins rGPR:$ptr), AddrModeNone,
Johnny Chend68e1192009-12-15 17:24:14 +00002342 Size4Bytes, NoItinerary, "ldrexb", "\t$dest, [$ptr]",
2343 "", []>;
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002344def t2LDREXH : T2I_ldrex<0b01, (outs rGPR:$dest), (ins rGPR:$ptr), AddrModeNone,
Johnny Chend68e1192009-12-15 17:24:14 +00002345 Size4Bytes, NoItinerary, "ldrexh", "\t$dest, [$ptr]",
2346 "", []>;
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002347def t2LDREX : Thumb2I<(outs rGPR:$dest), (ins rGPR:$ptr), AddrModeNone,
Johnny Chend68e1192009-12-15 17:24:14 +00002348 Size4Bytes, NoItinerary,
2349 "ldrex", "\t$dest, [$ptr]", "",
2350 []> {
2351 let Inst{31-27} = 0b11101;
2352 let Inst{26-20} = 0b0000101;
2353 let Inst{11-8} = 0b1111;
2354 let Inst{7-0} = 0b00000000; // imm8 = 0
2355}
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002356def t2LDREXD : T2I_ldrex<0b11, (outs rGPR:$dest, rGPR:$dest2), (ins rGPR:$ptr),
Johnny Chend68e1192009-12-15 17:24:14 +00002357 AddrModeNone, Size4Bytes, NoItinerary,
2358 "ldrexd", "\t$dest, $dest2, [$ptr]", "",
2359 [], {?, ?, ?, ?}>;
Jim Grosbachc219e4d2009-12-14 18:56:47 +00002360}
2361
Jim Grosbach587b0722009-12-16 19:44:06 +00002362let mayStore = 1, Constraints = "@earlyclobber $success" in {
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002363def t2STREXB : T2I_strex<0b00, (outs rGPR:$success), (ins rGPR:$src, rGPR:$ptr),
Johnny Chend68e1192009-12-15 17:24:14 +00002364 AddrModeNone, Size4Bytes, NoItinerary,
2365 "strexb", "\t$success, $src, [$ptr]", "", []>;
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002366def t2STREXH : T2I_strex<0b01, (outs rGPR:$success), (ins rGPR:$src, rGPR:$ptr),
Johnny Chend68e1192009-12-15 17:24:14 +00002367 AddrModeNone, Size4Bytes, NoItinerary,
2368 "strexh", "\t$success, $src, [$ptr]", "", []>;
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002369def t2STREX : Thumb2I<(outs rGPR:$success), (ins rGPR:$src, rGPR:$ptr),
Johnny Chend68e1192009-12-15 17:24:14 +00002370 AddrModeNone, Size4Bytes, NoItinerary,
2371 "strex", "\t$success, $src, [$ptr]", "",
2372 []> {
2373 let Inst{31-27} = 0b11101;
2374 let Inst{26-20} = 0b0000100;
2375 let Inst{7-0} = 0b00000000; // imm8 = 0
2376}
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002377def t2STREXD : T2I_strex<0b11, (outs rGPR:$success),
2378 (ins rGPR:$src, rGPR:$src2, rGPR:$ptr),
Johnny Chend68e1192009-12-15 17:24:14 +00002379 AddrModeNone, Size4Bytes, NoItinerary,
2380 "strexd", "\t$success, $src, $src2, [$ptr]", "", [],
2381 {?, ?, ?, ?}>;
Jim Grosbachc219e4d2009-12-14 18:56:47 +00002382}
2383
Johnny Chen10a77e12010-03-02 22:11:06 +00002384// Clear-Exclusive is for disassembly only.
2385def t2CLREX : T2I<(outs), (ins), NoItinerary, "clrex", "",
2386 [/* For disassembly only; pattern left blank */]>,
2387 Requires<[IsARM, HasV7]> {
2388 let Inst{31-20} = 0xf3b;
2389 let Inst{15-14} = 0b10;
2390 let Inst{12} = 0;
2391 let Inst{7-4} = 0b0010;
2392}
2393
Jim Grosbachc219e4d2009-12-14 18:56:47 +00002394//===----------------------------------------------------------------------===//
David Goodwin334c2642009-07-08 16:09:28 +00002395// TLS Instructions
2396//
2397
2398// __aeabi_read_tp preserves the registers r1-r3.
2399let isCall = 1,
2400 Defs = [R0, R12, LR, CPSR] in {
David Goodwin8b7d7ad2009-08-06 16:52:47 +00002401 def t2TPsoft : T2XI<(outs), (ins), IIC_Br,
Evan Cheng699beba2009-10-27 00:08:59 +00002402 "bl\t__aeabi_read_tp",
Johnny Chend68e1192009-12-15 17:24:14 +00002403 [(set R0, ARMthread_pointer)]> {
2404 let Inst{31-27} = 0b11110;
2405 let Inst{15-14} = 0b11;
2406 let Inst{12} = 1;
2407 }
David Goodwin334c2642009-07-08 16:09:28 +00002408}
2409
2410//===----------------------------------------------------------------------===//
Jim Grosbach5aa16842009-08-11 19:42:21 +00002411// SJLJ Exception handling intrinsics
Jim Grosbach1add6592009-08-13 15:11:43 +00002412// eh_sjlj_setjmp() is an instruction sequence to store the return
Jim Grosbach5aa16842009-08-11 19:42:21 +00002413// address and save #0 in R0 for the non-longjmp case.
2414// Since by its nature we may be coming from some other function to get
2415// here, and we're using the stack frame for the containing function to
2416// save/restore registers, we can't keep anything live in regs across
2417// the eh_sjlj_setjmp(), else it will almost certainly have been tromped upon
2418// when we get here from a longjmp(). We force everthing out of registers
2419// except for our own input by listing the relevant registers in Defs. By
2420// doing so, we also cause the prologue/epilogue code to actively preserve
2421// all of the callee-saved resgisters, which is exactly what we want.
Jim Grosbach0798edd2010-05-27 23:49:24 +00002422// $val is a scratch register for our use.
Jim Grosbacha87ded22010-02-08 23:22:00 +00002423let Defs =
Jim Grosbachf35d2162009-08-13 16:59:44 +00002424 [ R0, R1, R2, R3, R4, R5, R6, R7, R8, R9, R10, R11, R12, LR, D0,
2425 D1, D2, D3, D4, D5, D6, D7, D8, D9, D10, D11, D12, D13, D14, D15,
Jim Grosbach5aa16842009-08-11 19:42:21 +00002426 D16, D17, D18, D19, D20, D21, D22, D23, D24, D25, D26, D27, D28, D29, D30,
Jim Grosbach5caeff52010-05-28 17:37:40 +00002427 D31 ], hasSideEffects = 1, isBarrier = 1 in {
Jim Grosbach9f134b52010-08-26 17:02:47 +00002428 def t2Int_eh_sjlj_setjmp : Thumb2XI<(outs), (ins tGPR:$src, tGPR:$val),
Jim Grosbach5aa16842009-08-11 19:42:21 +00002429 AddrModeNone, SizeSpecial, NoItinerary,
Jim Grosbachc9792a32010-05-28 17:51:20 +00002430 "mov\t$val, pc\t${:comment} begin eh.setjmp\n\t"
2431 "adds\t$val, #7\n\t"
2432 "str\t$val, [$src, #4]\n\t"
2433 "movs\tr0, #0\n\t"
2434 "b\t1f\n\t"
2435 "movs\tr0, #1\t${:comment} end eh.setjmp\n\t"
Jim Grosbach8db5cce2009-08-13 15:12:16 +00002436 "1:", "",
Jim Grosbach9f134b52010-08-26 17:02:47 +00002437 [(set R0, (ARMeh_sjlj_setjmp tGPR:$src, tGPR:$val))]>,
Bob Wilsonec80e262010-04-09 20:41:18 +00002438 Requires<[IsThumb2, HasVFP2]>;
Jim Grosbach5aa16842009-08-11 19:42:21 +00002439}
2440
Bob Wilsonec80e262010-04-09 20:41:18 +00002441let Defs =
Jim Grosbach5caeff52010-05-28 17:37:40 +00002442 [ R0, R1, R2, R3, R4, R5, R6, R7, R8, R9, R10, R11, R12, LR ],
2443 hasSideEffects = 1, isBarrier = 1 in {
Jim Grosbach9f134b52010-08-26 17:02:47 +00002444 def t2Int_eh_sjlj_setjmp_nofp : Thumb2XI<(outs), (ins tGPR:$src, tGPR:$val),
Bob Wilsonec80e262010-04-09 20:41:18 +00002445 AddrModeNone, SizeSpecial, NoItinerary,
Jim Grosbachc9792a32010-05-28 17:51:20 +00002446 "mov\t$val, pc\t${:comment} begin eh.setjmp\n\t"
2447 "adds\t$val, #7\n\t"
2448 "str\t$val, [$src, #4]\n\t"
2449 "movs\tr0, #0\n\t"
2450 "b\t1f\n\t"
2451 "movs\tr0, #1\t${:comment} end eh.setjmp\n\t"
Bob Wilsonec80e262010-04-09 20:41:18 +00002452 "1:", "",
Jim Grosbach9f134b52010-08-26 17:02:47 +00002453 [(set R0, (ARMeh_sjlj_setjmp tGPR:$src, tGPR:$val))]>,
Bob Wilsonec80e262010-04-09 20:41:18 +00002454 Requires<[IsThumb2, NoVFP]>;
2455}
Jim Grosbach5aa16842009-08-11 19:42:21 +00002456
2457
2458//===----------------------------------------------------------------------===//
David Goodwin5e47a9a2009-06-30 18:04:13 +00002459// Control-Flow Instructions
2460//
2461
Evan Chengc50a1cb2009-07-09 22:58:39 +00002462// FIXME: remove when we have a way to marking a MI with these properties.
2463// FIXME: $dst1 should be a def. But the extra ops must be in the end of the
2464// operand list.
2465// FIXME: Should pc be an implicit operand like PICADD, etc?
Evan Cheng0d92f5f2009-10-01 08:22:27 +00002466let isReturn = 1, isTerminator = 1, isBarrier = 1, mayLoad = 1,
2467 hasExtraDefRegAllocReq = 1 in
Bob Wilson815baeb2010-03-13 01:08:20 +00002468 def t2LDM_RET : T2XIt<(outs GPR:$wb), (ins addrmode4:$addr, pred:$p,
Evan Cheng7602acb2010-09-08 22:57:08 +00002469 reglist:$dsts, variable_ops),
2470 IIC_iLoadmBr,
Bob Wilsonfed76ff2010-07-14 16:02:13 +00002471 "ldm${addr:submode}${p}${addr:wide}\t$addr!, $dsts",
Bob Wilson815baeb2010-03-13 01:08:20 +00002472 "$addr.addr = $wb", []> {
Johnny Chend68e1192009-12-15 17:24:14 +00002473 let Inst{31-27} = 0b11101;
2474 let Inst{26-25} = 0b00;
2475 let Inst{24-23} = {?, ?}; // IA: '01', DB: '10'
2476 let Inst{22} = 0;
Bob Wilson815baeb2010-03-13 01:08:20 +00002477 let Inst{21} = 1; // The W bit.
Johnny Chend68e1192009-12-15 17:24:14 +00002478 let Inst{20} = 1; // Load
2479}
Evan Chengc50a1cb2009-07-09 22:58:39 +00002480
David Goodwin5e47a9a2009-06-30 18:04:13 +00002481let isBranch = 1, isTerminator = 1, isBarrier = 1 in {
2482let isPredicable = 1 in
David Goodwin8b7d7ad2009-08-06 16:52:47 +00002483def t2B : T2XI<(outs), (ins brtarget:$target), IIC_Br,
Evan Cheng699beba2009-10-27 00:08:59 +00002484 "b.w\t$target",
Johnny Chend68e1192009-12-15 17:24:14 +00002485 [(br bb:$target)]> {
2486 let Inst{31-27} = 0b11110;
2487 let Inst{15-14} = 0b10;
2488 let Inst{12} = 1;
2489}
David Goodwin5e47a9a2009-06-30 18:04:13 +00002490
Evan Cheng5657c012009-07-29 02:18:14 +00002491let isNotDuplicable = 1, isIndirectBranch = 1 in {
Evan Cheng66ac5312009-07-25 00:33:29 +00002492def t2BR_JT :
Evan Cheng5657c012009-07-29 02:18:14 +00002493 T2JTI<(outs),
2494 (ins GPR:$target, GPR:$index, jt2block_operand:$jt, i32imm:$id),
Bob Wilsond4d188e2010-07-31 06:28:10 +00002495 IIC_Br, "mov\tpc, $target$jt",
Johnny Chend68e1192009-12-15 17:24:14 +00002496 [(ARMbr2jt GPR:$target, GPR:$index, tjumptable:$jt, imm:$id)]> {
2497 let Inst{31-27} = 0b11101;
2498 let Inst{26-20} = 0b0100100;
2499 let Inst{19-16} = 0b1111;
2500 let Inst{14-12} = 0b000;
2501 let Inst{11-8} = 0b1111; // Rd = pc
2502 let Inst{7-4} = 0b0000;
2503}
Evan Cheng5657c012009-07-29 02:18:14 +00002504
Evan Cheng25f7cfc2009-08-01 06:13:52 +00002505// FIXME: Add a non-pc based case that can be predicated.
Evan Cheng5657c012009-07-29 02:18:14 +00002506def t2TBB :
Evan Cheng25f7cfc2009-08-01 06:13:52 +00002507 T2JTI<(outs),
Evan Cheng5657c012009-07-29 02:18:14 +00002508 (ins tb_addrmode:$index, jt2block_operand:$jt, i32imm:$id),
Bob Wilsond4d188e2010-07-31 06:28:10 +00002509 IIC_Br, "tbb\t$index$jt", []> {
Johnny Chend68e1192009-12-15 17:24:14 +00002510 let Inst{31-27} = 0b11101;
2511 let Inst{26-20} = 0b0001101;
2512 let Inst{19-16} = 0b1111; // Rn = pc (table follows this instruction)
2513 let Inst{15-8} = 0b11110000;
2514 let Inst{7-4} = 0b0000; // B form
2515}
Evan Cheng5657c012009-07-29 02:18:14 +00002516
2517def t2TBH :
Evan Cheng25f7cfc2009-08-01 06:13:52 +00002518 T2JTI<(outs),
Evan Cheng5657c012009-07-29 02:18:14 +00002519 (ins tb_addrmode:$index, jt2block_operand:$jt, i32imm:$id),
Bob Wilsond4d188e2010-07-31 06:28:10 +00002520 IIC_Br, "tbh\t$index$jt", []> {
Johnny Chend68e1192009-12-15 17:24:14 +00002521 let Inst{31-27} = 0b11101;
2522 let Inst{26-20} = 0b0001101;
2523 let Inst{19-16} = 0b1111; // Rn = pc (table follows this instruction)
2524 let Inst{15-8} = 0b11110000;
2525 let Inst{7-4} = 0b0001; // H form
2526}
Johnny Chen93042d12010-03-02 18:14:57 +00002527
2528// Generic versions of the above two instructions, for disassembly only
2529
2530def t2TBBgen : T2I<(outs), (ins GPR:$a, GPR:$b), IIC_Br,
2531 "tbb", "\t[$a, $b]", []>{
2532 let Inst{31-27} = 0b11101;
2533 let Inst{26-20} = 0b0001101;
2534 let Inst{15-8} = 0b11110000;
2535 let Inst{7-4} = 0b0000; // B form
2536}
2537
2538def t2TBHgen : T2I<(outs), (ins GPR:$a, GPR:$b), IIC_Br,
2539 "tbh", "\t[$a, $b, lsl #1]", []> {
2540 let Inst{31-27} = 0b11101;
2541 let Inst{26-20} = 0b0001101;
2542 let Inst{15-8} = 0b11110000;
2543 let Inst{7-4} = 0b0001; // H form
2544}
Evan Cheng5657c012009-07-29 02:18:14 +00002545} // isNotDuplicable, isIndirectBranch
2546
David Goodwinc9a59b52009-06-30 19:50:22 +00002547} // isBranch, isTerminator, isBarrier
David Goodwin5e47a9a2009-06-30 18:04:13 +00002548
2549// FIXME: should be able to write a pattern for ARMBrcond, but can't use
2550// a two-value operand where a dag node expects two operands. :(
2551let isBranch = 1, isTerminator = 1 in
David Goodwin8b7d7ad2009-08-06 16:52:47 +00002552def t2Bcc : T2I<(outs), (ins brtarget:$target), IIC_Br,
Evan Cheng699beba2009-10-27 00:08:59 +00002553 "b", ".w\t$target",
Johnny Chend68e1192009-12-15 17:24:14 +00002554 [/*(ARMbrcond bb:$target, imm:$cc)*/]> {
2555 let Inst{31-27} = 0b11110;
2556 let Inst{15-14} = 0b10;
2557 let Inst{12} = 0;
2558}
Evan Chengf49810c2009-06-23 17:48:47 +00002559
Evan Cheng06e16582009-07-10 01:54:42 +00002560
2561// IT block
Evan Cheng86050dc2010-06-18 23:09:54 +00002562let Defs = [ITSTATE] in
Evan Cheng06e16582009-07-10 01:54:42 +00002563def t2IT : Thumb2XI<(outs), (ins it_pred:$cc, it_mask:$mask),
David Goodwin5d598aa2009-08-19 18:00:44 +00002564 AddrModeNone, Size2Bytes, IIC_iALUx,
Johnny Chend68e1192009-12-15 17:24:14 +00002565 "it$mask\t$cc", "", []> {
2566 // 16-bit instruction.
Johnny Chenbbc71b22009-12-16 02:32:54 +00002567 let Inst{31-16} = 0x0000;
Johnny Chend68e1192009-12-15 17:24:14 +00002568 let Inst{15-8} = 0b10111111;
2569}
Evan Cheng06e16582009-07-10 01:54:42 +00002570
Johnny Chence6275f2010-02-25 19:05:29 +00002571// Branch and Exchange Jazelle -- for disassembly only
2572// Rm = Inst{19-16}
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002573def t2BXJ : T2I<(outs), (ins rGPR:$func), NoItinerary, "bxj", "\t$func",
Johnny Chence6275f2010-02-25 19:05:29 +00002574 [/* For disassembly only; pattern left blank */]> {
2575 let Inst{31-27} = 0b11110;
2576 let Inst{26} = 0;
2577 let Inst{25-20} = 0b111100;
2578 let Inst{15-14} = 0b10;
2579 let Inst{12} = 0;
2580}
2581
Johnny Chen93042d12010-03-02 18:14:57 +00002582// Change Processor State is a system instruction -- for disassembly only.
2583// The singleton $opt operand contains the following information:
2584// opt{4-0} = mode from Inst{4-0}
2585// opt{5} = changemode from Inst{17}
2586// opt{8-6} = AIF from Inst{8-6}
2587// opt{10-9} = imod from Inst{19-18} with 0b10 as enable and 0b11 as disable
Johnny Chendd0f3cf2010-03-10 18:59:38 +00002588def t2CPS : T2XI<(outs),(ins cps_opt:$opt), NoItinerary, "cps$opt",
Johnny Chen93042d12010-03-02 18:14:57 +00002589 [/* For disassembly only; pattern left blank */]> {
2590 let Inst{31-27} = 0b11110;
2591 let Inst{26} = 0;
2592 let Inst{25-20} = 0b111010;
2593 let Inst{15-14} = 0b10;
2594 let Inst{12} = 0;
2595}
2596
Johnny Chen0f7866e2010-03-03 02:09:43 +00002597// A6.3.4 Branches and miscellaneous control
2598// Table A6-14 Change Processor State, and hint instructions
2599// Helper class for disassembly only.
2600class T2I_hint<bits<8> op7_0, string opc, string asm>
2601 : T2I<(outs), (ins), NoItinerary, opc, asm,
2602 [/* For disassembly only; pattern left blank */]> {
2603 let Inst{31-20} = 0xf3a;
2604 let Inst{15-14} = 0b10;
2605 let Inst{12} = 0;
2606 let Inst{10-8} = 0b000;
2607 let Inst{7-0} = op7_0;
2608}
2609
2610def t2NOP : T2I_hint<0b00000000, "nop", ".w">;
2611def t2YIELD : T2I_hint<0b00000001, "yield", ".w">;
2612def t2WFE : T2I_hint<0b00000010, "wfe", ".w">;
2613def t2WFI : T2I_hint<0b00000011, "wfi", ".w">;
2614def t2SEV : T2I_hint<0b00000100, "sev", ".w">;
2615
2616def t2DBG : T2I<(outs),(ins i32imm:$opt), NoItinerary, "dbg", "\t$opt",
2617 [/* For disassembly only; pattern left blank */]> {
2618 let Inst{31-20} = 0xf3a;
2619 let Inst{15-14} = 0b10;
2620 let Inst{12} = 0;
2621 let Inst{10-8} = 0b000;
2622 let Inst{7-4} = 0b1111;
2623}
2624
Johnny Chen6341c5a2010-02-25 20:25:24 +00002625// Secure Monitor Call is a system instruction -- for disassembly only
2626// Option = Inst{19-16}
2627def t2SMC : T2I<(outs), (ins i32imm:$opt), NoItinerary, "smc", "\t$opt",
2628 [/* For disassembly only; pattern left blank */]> {
2629 let Inst{31-27} = 0b11110;
2630 let Inst{26-20} = 0b1111111;
2631 let Inst{15-12} = 0b1000;
2632}
2633
2634// Store Return State is a system instruction -- for disassembly only
2635def t2SRSDBW : T2I<(outs),(ins i32imm:$mode),NoItinerary,"srsdb","\tsp!, $mode",
2636 [/* For disassembly only; pattern left blank */]> {
2637 let Inst{31-27} = 0b11101;
2638 let Inst{26-20} = 0b0000010; // W = 1
2639}
2640
2641def t2SRSDB : T2I<(outs),(ins i32imm:$mode),NoItinerary,"srsdb","\tsp, $mode",
2642 [/* For disassembly only; pattern left blank */]> {
2643 let Inst{31-27} = 0b11101;
2644 let Inst{26-20} = 0b0000000; // W = 0
2645}
2646
2647def t2SRSIAW : T2I<(outs),(ins i32imm:$mode),NoItinerary,"srsia","\tsp!, $mode",
2648 [/* For disassembly only; pattern left blank */]> {
2649 let Inst{31-27} = 0b11101;
2650 let Inst{26-20} = 0b0011010; // W = 1
2651}
2652
2653def t2SRSIA : T2I<(outs), (ins i32imm:$mode),NoItinerary,"srsia","\tsp, $mode",
2654 [/* For disassembly only; pattern left blank */]> {
2655 let Inst{31-27} = 0b11101;
2656 let Inst{26-20} = 0b0011000; // W = 0
2657}
2658
2659// Return From Exception is a system instruction -- for disassembly only
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002660def t2RFEDBW : T2I<(outs), (ins rGPR:$base), NoItinerary, "rfedb", "\t$base!",
Johnny Chen6341c5a2010-02-25 20:25:24 +00002661 [/* For disassembly only; pattern left blank */]> {
2662 let Inst{31-27} = 0b11101;
2663 let Inst{26-20} = 0b0000011; // W = 1
2664}
2665
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002666def t2RFEDB : T2I<(outs), (ins rGPR:$base), NoItinerary, "rfeab", "\t$base",
Johnny Chen6341c5a2010-02-25 20:25:24 +00002667 [/* For disassembly only; pattern left blank */]> {
2668 let Inst{31-27} = 0b11101;
2669 let Inst{26-20} = 0b0000001; // W = 0
2670}
2671
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002672def t2RFEIAW : T2I<(outs), (ins rGPR:$base), NoItinerary, "rfeia", "\t$base!",
Johnny Chen6341c5a2010-02-25 20:25:24 +00002673 [/* For disassembly only; pattern left blank */]> {
2674 let Inst{31-27} = 0b11101;
2675 let Inst{26-20} = 0b0011011; // W = 1
2676}
2677
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002678def t2RFEIA : T2I<(outs), (ins rGPR:$base), NoItinerary, "rfeia", "\t$base",
Johnny Chen6341c5a2010-02-25 20:25:24 +00002679 [/* For disassembly only; pattern left blank */]> {
2680 let Inst{31-27} = 0b11101;
2681 let Inst{26-20} = 0b0011001; // W = 0
2682}
2683
Evan Chengf49810c2009-06-23 17:48:47 +00002684//===----------------------------------------------------------------------===//
2685// Non-Instruction Patterns
2686//
2687
Jim Grosbach65b7f3a2009-10-21 20:44:34 +00002688// Two piece so_imms.
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002689def : T2Pat<(or rGPR:$LHS, t2_so_imm2part:$RHS),
2690 (t2ORRri (t2ORRri rGPR:$LHS, (t2_so_imm2part_1 imm:$RHS)),
Jim Grosbach65b7f3a2009-10-21 20:44:34 +00002691 (t2_so_imm2part_2 imm:$RHS))>;
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002692def : T2Pat<(xor rGPR:$LHS, t2_so_imm2part:$RHS),
2693 (t2EORri (t2EORri rGPR:$LHS, (t2_so_imm2part_1 imm:$RHS)),
Jim Grosbach65b7f3a2009-10-21 20:44:34 +00002694 (t2_so_imm2part_2 imm:$RHS))>;
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002695def : T2Pat<(add rGPR:$LHS, t2_so_imm2part:$RHS),
2696 (t2ADDri (t2ADDri rGPR:$LHS, (t2_so_imm2part_1 imm:$RHS)),
Jim Grosbach65b7f3a2009-10-21 20:44:34 +00002697 (t2_so_imm2part_2 imm:$RHS))>;
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002698def : T2Pat<(add rGPR:$LHS, t2_so_neg_imm2part:$RHS),
2699 (t2SUBri (t2SUBri rGPR:$LHS, (t2_so_neg_imm2part_1 imm:$RHS)),
Jim Grosbach15e6ef82009-11-23 20:35:53 +00002700 (t2_so_neg_imm2part_2 imm:$RHS))>;
Jim Grosbach65b7f3a2009-10-21 20:44:34 +00002701
Evan Cheng5adb66a2009-09-28 09:14:39 +00002702// 32-bit immediate using movw + movt.
Evan Cheng5be39222010-09-24 22:03:46 +00002703// This is a single pseudo instruction to make it re-materializable.
2704// FIXME: Remove this when we can do generalized remat.
Evan Cheng5adb66a2009-09-28 09:14:39 +00002705let isReMaterializable = 1 in
Evan Cheng5be39222010-09-24 22:03:46 +00002706def t2MOVi32imm : T2Ix2<(outs rGPR:$dst), (ins i32imm:$src), IIC_iMOVix2,
Evan Cheng699beba2009-10-27 00:08:59 +00002707 "movw", "\t$dst, ${src:lo16}\n\tmovt${p}\t$dst, ${src:hi16}",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002708 [(set rGPR:$dst, (i32 imm:$src))]>;
Evan Chengb9803a82009-11-06 23:52:48 +00002709
Anton Korobeynikov5cdc3a92009-11-24 00:44:37 +00002710// ConstantPool, GlobalAddress, and JumpTable
2711def : T2Pat<(ARMWrapper tglobaladdr :$dst), (t2LEApcrel tglobaladdr :$dst)>,
2712 Requires<[IsThumb2, DontUseMovt]>;
2713def : T2Pat<(ARMWrapper tconstpool :$dst), (t2LEApcrel tconstpool :$dst)>;
2714def : T2Pat<(ARMWrapper tglobaladdr :$dst), (t2MOVi32imm tglobaladdr :$dst)>,
2715 Requires<[IsThumb2, UseMovt]>;
2716
2717def : T2Pat<(ARMWrapperJT tjumptable:$dst, imm:$id),
2718 (t2LEApcrelJT tjumptable:$dst, imm:$id)>;
2719
Evan Chengb9803a82009-11-06 23:52:48 +00002720// Pseudo instruction that combines ldr from constpool and add pc. This should
2721// be expanded into two instructions late to allow if-conversion and
2722// scheduling.
Dan Gohmanbc9d98b2010-02-27 23:47:46 +00002723let canFoldAsLoad = 1, isReMaterializable = 1 in
Evan Chengb9803a82009-11-06 23:52:48 +00002724def t2LDRpci_pic : PseudoInst<(outs GPR:$dst), (ins i32imm:$addr, pclabel:$cp),
Evan Chengbd30ce42010-09-24 22:41:41 +00002725 IIC_iLoadiALU,
Jim Grosbach18f30e62010-06-02 21:53:11 +00002726 "${:comment} ldr.w\t$dst, $addr\n$cp:\n\tadd\t$dst, pc",
Evan Chengb9803a82009-11-06 23:52:48 +00002727 [(set GPR:$dst, (ARMpic_add (load (ARMWrapper tconstpool:$addr)),
2728 imm:$cp))]>,
2729 Requires<[IsThumb2]>;
Johnny Chen23336552010-02-25 18:46:43 +00002730
2731//===----------------------------------------------------------------------===//
2732// Move between special register and ARM core register -- for disassembly only
2733//
2734
2735// Rd = Instr{11-8}
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002736def t2MRS : T2I<(outs rGPR:$dst), (ins), NoItinerary, "mrs", "\t$dst, cpsr",
Johnny Chen23336552010-02-25 18:46:43 +00002737 [/* For disassembly only; pattern left blank */]> {
2738 let Inst{31-27} = 0b11110;
2739 let Inst{26} = 0;
2740 let Inst{25-21} = 0b11111;
2741 let Inst{20} = 0; // The R bit.
2742 let Inst{15-14} = 0b10;
2743 let Inst{12} = 0;
2744}
2745
2746// Rd = Instr{11-8}
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002747def t2MRSsys : T2I<(outs rGPR:$dst), (ins), NoItinerary, "mrs", "\t$dst, spsr",
Johnny Chen23336552010-02-25 18:46:43 +00002748 [/* For disassembly only; pattern left blank */]> {
2749 let Inst{31-27} = 0b11110;
2750 let Inst{26} = 0;
2751 let Inst{25-21} = 0b11111;
2752 let Inst{20} = 1; // The R bit.
2753 let Inst{15-14} = 0b10;
2754 let Inst{12} = 0;
2755}
2756
Johnny Chen23336552010-02-25 18:46:43 +00002757// Rn = Inst{19-16}
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002758def t2MSR : T2I<(outs), (ins rGPR:$src, msr_mask:$mask), NoItinerary, "msr",
Johnny Chendd0f3cf2010-03-10 18:59:38 +00002759 "\tcpsr$mask, $src",
Johnny Chen23336552010-02-25 18:46:43 +00002760 [/* For disassembly only; pattern left blank */]> {
2761 let Inst{31-27} = 0b11110;
2762 let Inst{26} = 0;
2763 let Inst{25-21} = 0b11100;
2764 let Inst{20} = 0; // The R bit.
2765 let Inst{15-14} = 0b10;
2766 let Inst{12} = 0;
2767}
2768
Johnny Chen23336552010-02-25 18:46:43 +00002769// Rn = Inst{19-16}
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002770def t2MSRsys : T2I<(outs), (ins rGPR:$src, msr_mask:$mask), NoItinerary, "msr",
Johnny Chendd0f3cf2010-03-10 18:59:38 +00002771 "\tspsr$mask, $src",
Johnny Chen23336552010-02-25 18:46:43 +00002772 [/* For disassembly only; pattern left blank */]> {
2773 let Inst{31-27} = 0b11110;
2774 let Inst{26} = 0;
2775 let Inst{25-21} = 0b11100;
2776 let Inst{20} = 1; // The R bit.
2777 let Inst{15-14} = 0b10;
2778 let Inst{12} = 0;
2779}