blob: b3a7b6bb9fa672b4e53e5a5cab9d68c3540ea39c [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>,
143 ComplexPattern<i32, 1, "SelectT2AddrModeImm8Offset", []>{
Evan Chenge88d5ce2009-07-02 07:28:31 +0000144 let PrintMethod = "printT2AddrModeImm8OffsetOperand";
145}
146
Evan Cheng5c874172009-07-09 22:21:59 +0000147// t2addrmode_imm8s4 := reg +/- (imm8 << 2)
David Goodwin6647cea2009-06-30 22:50:01 +0000148def t2addrmode_imm8s4 : Operand<i32>,
149 ComplexPattern<i32, 2, "SelectT2AddrModeImm8s4", []> {
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.
Jim Grosbach64171712010-02-16 21:07:46 +0000216multiclass T2I_bin_irs<bits<4> opcod, string opc, PatFrag opnode,
Bill Wendling4822bce2010-08-30 01:47:35 +0000217 bit Commutable = 0, string wide = ""> {
Anton Korobeynikov52237112009-06-17 18:13:58 +0000218 // shifted imm
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000219 def ri : T2sI<(outs rGPR:$dst), (ins rGPR:$lhs, t2_so_imm:$rhs), IIC_iALUi,
Evan Cheng699beba2009-10-27 00:08:59 +0000220 opc, "\t$dst, $lhs, $rhs",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000221 [(set rGPR:$dst, (opnode rGPR:$lhs, t2_so_imm:$rhs))]> {
Johnny Chend68e1192009-12-15 17:24:14 +0000222 let Inst{31-27} = 0b11110;
223 let Inst{25} = 0;
224 let Inst{24-21} = opcod;
Bill Wendling4822bce2010-08-30 01:47:35 +0000225 let Inst{20} = ?; // The S bit.
Johnny Chend68e1192009-12-15 17:24:14 +0000226 let Inst{15} = 0;
227 }
Evan Chenga67efd12009-06-23 19:39:13 +0000228 // register
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000229 def rr : T2sI<(outs rGPR:$dst), (ins rGPR:$lhs, rGPR:$rhs), IIC_iALUr,
Evan Cheng699beba2009-10-27 00:08:59 +0000230 opc, !strconcat(wide, "\t$dst, $lhs, $rhs"),
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000231 [(set rGPR:$dst, (opnode rGPR:$lhs, rGPR:$rhs))]> {
Evan Cheng8de898a2009-06-26 00:19:44 +0000232 let isCommutable = Commutable;
Johnny Chend68e1192009-12-15 17:24:14 +0000233 let Inst{31-27} = 0b11101;
234 let Inst{26-25} = 0b01;
235 let Inst{24-21} = opcod;
Bill Wendling4822bce2010-08-30 01:47:35 +0000236 let Inst{20} = ?; // The S bit.
Johnny Chend68e1192009-12-15 17:24:14 +0000237 let Inst{14-12} = 0b000; // imm3
238 let Inst{7-6} = 0b00; // imm2
239 let Inst{5-4} = 0b00; // type
Evan Cheng8de898a2009-06-26 00:19:44 +0000240 }
Anton Korobeynikov52237112009-06-17 18:13:58 +0000241 // shifted register
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000242 def rs : T2sI<(outs rGPR:$dst), (ins rGPR:$lhs, t2_so_reg:$rhs), IIC_iALUsi,
Evan Cheng699beba2009-10-27 00:08:59 +0000243 opc, !strconcat(wide, "\t$dst, $lhs, $rhs"),
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000244 [(set rGPR:$dst, (opnode rGPR:$lhs, t2_so_reg:$rhs))]> {
Johnny Chend68e1192009-12-15 17:24:14 +0000245 let Inst{31-27} = 0b11101;
246 let Inst{26-25} = 0b01;
247 let Inst{24-21} = opcod;
Bill Wendling4822bce2010-08-30 01:47:35 +0000248 let Inst{20} = ?; // The S bit.
249 }
250}
251
252/// T2I_bin_cpsr_irs - Defines a set of (op reg, {so_imm|r|so_reg}) patterns for
253/// a binary operation that produces a value. These are predicable and modify
254/// CPSR.
255multiclass T2I_bin_cpsr_irs<bits<4> opcod, string opc, PatFrag opnode,
256 bit Commutable = 0, string wide = ""> {
257 // shifted imm
258 def ri : T2sI_cpsr<(outs rGPR:$dst), (ins rGPR:$lhs, t2_so_imm:$rhs),
259 IIC_iALUi, opc, "\t$dst, $lhs, $rhs",
260 [(set rGPR:$dst, (opnode rGPR:$lhs, t2_so_imm:$rhs))]> {
261 let Inst{31-27} = 0b11110;
262 let Inst{25} = 0;
263 let Inst{24-21} = opcod;
264 let Inst{20} = 1; // The S bit.
265 let Inst{15} = 0;
266 }
267 // register
268 def rr : T2sI_cpsr<(outs rGPR:$dst), (ins rGPR:$lhs, rGPR:$rhs),
269 IIC_iALUr, opc, !strconcat(wide, "\t$dst, $lhs, $rhs"),
270 [(set rGPR:$dst, (opnode rGPR:$lhs, rGPR:$rhs))]> {
271 let isCommutable = Commutable;
272 let Inst{31-27} = 0b11101;
273 let Inst{26-25} = 0b01;
274 let Inst{24-21} = opcod;
275 let Inst{20} = 1; // The S bit.
276 let Inst{14-12} = 0b000; // imm3
277 let Inst{7-6} = 0b00; // imm2
278 let Inst{5-4} = 0b00; // type
279 }
280 // shifted register
281 def rs : T2sI_cpsr<(outs rGPR:$dst), (ins rGPR:$lhs, t2_so_reg:$rhs),
282 IIC_iALUsi, opc, !strconcat(wide, "\t$dst, $lhs, $rhs"),
283 [(set rGPR:$dst, (opnode rGPR:$lhs, t2_so_reg:$rhs))]> {
284 let Inst{31-27} = 0b11101;
285 let Inst{26-25} = 0b01;
286 let Inst{24-21} = opcod;
287 let Inst{20} = 1; // The S bit.
Johnny Chend68e1192009-12-15 17:24:14 +0000288 }
Anton Korobeynikov52237112009-06-17 18:13:58 +0000289}
290
David Goodwin1f096272009-07-27 23:34:12 +0000291/// T2I_bin_w_irs - Same as T2I_bin_irs except these operations need
292// the ".w" prefix to indicate that they are wide.
Johnny Chend68e1192009-12-15 17:24:14 +0000293multiclass T2I_bin_w_irs<bits<4> opcod, string opc, PatFrag opnode,
294 bit Commutable = 0> :
Bill Wendling4822bce2010-08-30 01:47:35 +0000295 T2I_bin_irs<opcod, opc, opnode, Commutable, ".w">;
Bill Wendling1f7bf0e2010-08-29 03:55:31 +0000296
297/// T2I_bin_sw_irs - Same as T2I_bin_w_irs except these operations set
298// the 'S' bit.
299multiclass T2I_bin_sw_irs<bits<4> opcod, string opc, PatFrag opnode,
300 bit Commutable = 0> :
Bill Wendling4822bce2010-08-30 01:47:35 +0000301 T2I_bin_cpsr_irs<opcod, opc, opnode, Commutable, ".w">;
David Goodwin1f096272009-07-27 23:34:12 +0000302
Evan Cheng1e249e32009-06-25 20:59:23 +0000303/// T2I_rbin_is - Same as T2I_bin_irs except the order of operands are
Bob Wilson20d8e4e2010-08-13 23:24:25 +0000304/// reversed. The 'rr' form is only defined for the disassembler; for codegen
305/// it is equivalent to the T2I_bin_irs counterpart.
306multiclass T2I_rbin_irs<bits<4> opcod, string opc, PatFrag opnode> {
Evan Chengf49810c2009-06-23 17:48:47 +0000307 // shifted imm
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000308 def ri : T2sI<(outs rGPR:$dst), (ins rGPR:$rhs, t2_so_imm:$lhs), IIC_iALUi,
Bob Wilson4876bdb2010-05-25 04:43:08 +0000309 opc, ".w\t$dst, $rhs, $lhs",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000310 [(set rGPR:$dst, (opnode t2_so_imm:$lhs, rGPR:$rhs))]> {
Johnny Chend68e1192009-12-15 17:24:14 +0000311 let Inst{31-27} = 0b11110;
312 let Inst{25} = 0;
313 let Inst{24-21} = opcod;
Bob Wilson4876bdb2010-05-25 04:43:08 +0000314 let Inst{20} = ?; // The S bit.
Johnny Chend68e1192009-12-15 17:24:14 +0000315 let Inst{15} = 0;
316 }
Bob Wilson20d8e4e2010-08-13 23:24:25 +0000317 // register
318 def rr : T2sI<(outs rGPR:$dst), (ins rGPR:$rhs, rGPR:$lhs), IIC_iALUr,
319 opc, "\t$dst, $rhs, $lhs",
Bob Wilson136e4912010-08-14 03:18:29 +0000320 [/* For disassembly only; pattern left blank */]> {
Bob Wilson20d8e4e2010-08-13 23:24:25 +0000321 let Inst{31-27} = 0b11101;
322 let Inst{26-25} = 0b01;
323 let Inst{24-21} = opcod;
324 let Inst{20} = ?; // The S bit.
325 let Inst{14-12} = 0b000; // imm3
326 let Inst{7-6} = 0b00; // imm2
327 let Inst{5-4} = 0b00; // type
328 }
Evan Chengf49810c2009-06-23 17:48:47 +0000329 // shifted register
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000330 def rs : T2sI<(outs rGPR:$dst), (ins rGPR:$rhs, t2_so_reg:$lhs), IIC_iALUsi,
Bob Wilson4876bdb2010-05-25 04:43:08 +0000331 opc, "\t$dst, $rhs, $lhs",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000332 [(set rGPR:$dst, (opnode t2_so_reg:$lhs, rGPR:$rhs))]> {
Johnny Chend68e1192009-12-15 17:24:14 +0000333 let Inst{31-27} = 0b11101;
334 let Inst{26-25} = 0b01;
335 let Inst{24-21} = opcod;
Bob Wilson4876bdb2010-05-25 04:43:08 +0000336 let Inst{20} = ?; // The S bit.
Johnny Chend68e1192009-12-15 17:24:14 +0000337 }
Evan Chengf49810c2009-06-23 17:48:47 +0000338}
339
Evan Chenga67efd12009-06-23 19:39:13 +0000340/// T2I_bin_s_irs - Similar to T2I_bin_irs except it sets the 's' bit so the
Anton Korobeynikov52237112009-06-17 18:13:58 +0000341/// instruction modifies the CPSR register.
342let Defs = [CPSR] in {
Johnny Chend68e1192009-12-15 17:24:14 +0000343multiclass T2I_bin_s_irs<bits<4> opcod, string opc, PatFrag opnode,
344 bit Commutable = 0> {
Anton Korobeynikov52237112009-06-17 18:13:58 +0000345 // shifted imm
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000346 def ri : T2I<(outs rGPR:$dst), (ins GPR:$lhs, t2_so_imm:$rhs), IIC_iALUi,
Evan Cheng699beba2009-10-27 00:08:59 +0000347 !strconcat(opc, "s"), ".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-21} = opcod;
352 let Inst{20} = 1; // The S bit.
353 let Inst{15} = 0;
354 }
Evan Chenga67efd12009-06-23 19:39:13 +0000355 // register
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000356 def rr : T2I<(outs rGPR:$dst), (ins GPR:$lhs, rGPR:$rhs), IIC_iALUr,
Evan Cheng699beba2009-10-27 00:08:59 +0000357 !strconcat(opc, "s"), ".w\t$dst, $lhs, $rhs",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000358 [(set rGPR:$dst, (opnode GPR:$lhs, rGPR:$rhs))]> {
Evan Cheng8de898a2009-06-26 00:19:44 +0000359 let isCommutable = Commutable;
Johnny Chend68e1192009-12-15 17:24:14 +0000360 let Inst{31-27} = 0b11101;
361 let Inst{26-25} = 0b01;
362 let Inst{24-21} = opcod;
363 let Inst{20} = 1; // The S bit.
364 let Inst{14-12} = 0b000; // imm3
365 let Inst{7-6} = 0b00; // imm2
366 let Inst{5-4} = 0b00; // type
Evan Cheng8de898a2009-06-26 00:19:44 +0000367 }
Anton Korobeynikov52237112009-06-17 18:13:58 +0000368 // shifted register
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000369 def rs : T2I<(outs rGPR:$dst), (ins GPR:$lhs, t2_so_reg:$rhs), IIC_iALUsi,
Evan Cheng699beba2009-10-27 00:08:59 +0000370 !strconcat(opc, "s"), ".w\t$dst, $lhs, $rhs",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000371 [(set rGPR:$dst, (opnode GPR:$lhs, t2_so_reg:$rhs))]> {
Johnny Chend68e1192009-12-15 17:24:14 +0000372 let Inst{31-27} = 0b11101;
373 let Inst{26-25} = 0b01;
374 let Inst{24-21} = opcod;
375 let Inst{20} = 1; // The S bit.
376 }
Anton Korobeynikov52237112009-06-17 18:13:58 +0000377}
378}
379
Evan Chenga67efd12009-06-23 19:39:13 +0000380/// T2I_bin_ii12rs - Defines a set of (op reg, {so_imm|imm0_4095|r|so_reg})
381/// patterns for a binary operation that produces a value.
Johnny Chend68e1192009-12-15 17:24:14 +0000382multiclass T2I_bin_ii12rs<bits<3> op23_21, string opc, PatFrag opnode,
383 bit Commutable = 0> {
Evan Chengf49810c2009-06-23 17:48:47 +0000384 // shifted imm
Jim Grosbach663e3392010-08-30 19:49:58 +0000385 // The register-immediate version is re-materializable. This is useful
386 // in particular for taking the address of a local.
387 let isReMaterializable = 1 in {
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000388 def ri : T2sI<(outs rGPR:$dst), (ins GPR:$lhs, t2_so_imm:$rhs), IIC_iALUi,
Evan Cheng699beba2009-10-27 00:08:59 +0000389 opc, ".w\t$dst, $lhs, $rhs",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000390 [(set rGPR:$dst, (opnode GPR:$lhs, t2_so_imm:$rhs))]> {
Johnny Chend68e1192009-12-15 17:24:14 +0000391 let Inst{31-27} = 0b11110;
392 let Inst{25} = 0;
393 let Inst{24} = 1;
394 let Inst{23-21} = op23_21;
395 let Inst{20} = 0; // The S bit.
396 let Inst{15} = 0;
397 }
Jim Grosbach663e3392010-08-30 19:49:58 +0000398 }
Evan Chengf49810c2009-06-23 17:48:47 +0000399 // 12-bit imm
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000400 def ri12 : T2I<(outs rGPR:$dst), (ins GPR:$lhs, imm0_4095:$rhs), IIC_iALUi,
Bob Wilsonf5fd4992010-03-08 22:56:15 +0000401 !strconcat(opc, "w"), "\t$dst, $lhs, $rhs",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000402 [(set rGPR:$dst, (opnode GPR:$lhs, imm0_4095:$rhs))]> {
Johnny Chend68e1192009-12-15 17:24:14 +0000403 let Inst{31-27} = 0b11110;
404 let Inst{25} = 1;
405 let Inst{24} = 0;
406 let Inst{23-21} = op23_21;
407 let Inst{20} = 0; // The S bit.
408 let Inst{15} = 0;
409 }
Evan Chenga67efd12009-06-23 19:39:13 +0000410 // register
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000411 def rr : T2sI<(outs rGPR:$dst), (ins GPR:$lhs, rGPR:$rhs), IIC_iALUr,
Evan Cheng699beba2009-10-27 00:08:59 +0000412 opc, ".w\t$dst, $lhs, $rhs",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000413 [(set rGPR:$dst, (opnode GPR:$lhs, rGPR:$rhs))]> {
Evan Cheng8de898a2009-06-26 00:19:44 +0000414 let isCommutable = Commutable;
Johnny Chend68e1192009-12-15 17:24:14 +0000415 let Inst{31-27} = 0b11101;
416 let Inst{26-25} = 0b01;
417 let Inst{24} = 1;
418 let Inst{23-21} = op23_21;
419 let Inst{20} = 0; // The S bit.
420 let Inst{14-12} = 0b000; // imm3
421 let Inst{7-6} = 0b00; // imm2
422 let Inst{5-4} = 0b00; // type
Evan Cheng8de898a2009-06-26 00:19:44 +0000423 }
Evan Chengf49810c2009-06-23 17:48:47 +0000424 // shifted register
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000425 def rs : T2sI<(outs rGPR:$dst), (ins GPR:$lhs, t2_so_reg:$rhs), IIC_iALUsi,
Evan Cheng699beba2009-10-27 00:08:59 +0000426 opc, ".w\t$dst, $lhs, $rhs",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000427 [(set rGPR:$dst, (opnode GPR:$lhs, t2_so_reg:$rhs))]> {
Johnny Chend68e1192009-12-15 17:24:14 +0000428 let Inst{31-27} = 0b11101;
Johnny Chend68e1192009-12-15 17:24:14 +0000429 let Inst{26-25} = 0b01;
Johnny Chend248ffb2010-01-08 17:41:33 +0000430 let Inst{24} = 1;
Johnny Chend68e1192009-12-15 17:24:14 +0000431 let Inst{23-21} = op23_21;
432 let Inst{20} = 0; // The S bit.
433 }
Evan Chengf49810c2009-06-23 17:48:47 +0000434}
435
Jim Grosbach6935efc2009-11-24 00:20:27 +0000436/// T2I_adde_sube_irs - Defines a set of (op reg, {so_imm|r|so_reg}) patterns
Jim Grosbach39be8fc2010-02-16 20:42:29 +0000437/// for a binary operation that produces a value and use the carry
Jim Grosbach6935efc2009-11-24 00:20:27 +0000438/// bit. It's not predicable.
Evan Cheng62674222009-06-25 23:34:10 +0000439let Uses = [CPSR] in {
Jim Grosbach80dc1162010-02-16 21:23:02 +0000440multiclass T2I_adde_sube_irs<bits<4> opcod, string opc, PatFrag opnode,
441 bit Commutable = 0> {
Anton Korobeynikov52237112009-06-17 18:13:58 +0000442 // shifted imm
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000443 def ri : T2sI<(outs rGPR:$dst), (ins rGPR:$lhs, t2_so_imm:$rhs), IIC_iALUi,
Evan Cheng699beba2009-10-27 00:08:59 +0000444 opc, "\t$dst, $lhs, $rhs",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000445 [(set rGPR:$dst, (opnode rGPR:$lhs, t2_so_imm:$rhs))]>,
Jim Grosbach39be8fc2010-02-16 20:42:29 +0000446 Requires<[IsThumb2]> {
Johnny Chend68e1192009-12-15 17:24:14 +0000447 let Inst{31-27} = 0b11110;
448 let Inst{25} = 0;
449 let Inst{24-21} = opcod;
450 let Inst{20} = 0; // The S bit.
451 let Inst{15} = 0;
452 }
Evan Chenga67efd12009-06-23 19:39:13 +0000453 // register
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000454 def rr : T2sI<(outs rGPR:$dst), (ins rGPR:$lhs, rGPR:$rhs), IIC_iALUr,
Evan Cheng699beba2009-10-27 00:08:59 +0000455 opc, ".w\t$dst, $lhs, $rhs",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000456 [(set rGPR:$dst, (opnode rGPR:$lhs, rGPR:$rhs))]>,
Jim Grosbach39be8fc2010-02-16 20:42:29 +0000457 Requires<[IsThumb2]> {
Evan Cheng8de898a2009-06-26 00:19:44 +0000458 let isCommutable = Commutable;
Johnny Chend68e1192009-12-15 17:24:14 +0000459 let Inst{31-27} = 0b11101;
460 let Inst{26-25} = 0b01;
461 let Inst{24-21} = opcod;
462 let Inst{20} = 0; // The S bit.
463 let Inst{14-12} = 0b000; // imm3
464 let Inst{7-6} = 0b00; // imm2
465 let Inst{5-4} = 0b00; // type
Evan Cheng8de898a2009-06-26 00:19:44 +0000466 }
Anton Korobeynikov52237112009-06-17 18:13:58 +0000467 // shifted register
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000468 def rs : T2sI<(outs rGPR:$dst), (ins rGPR:$lhs, t2_so_reg:$rhs), IIC_iALUsi,
Evan Cheng699beba2009-10-27 00:08:59 +0000469 opc, ".w\t$dst, $lhs, $rhs",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000470 [(set rGPR:$dst, (opnode rGPR:$lhs, t2_so_reg:$rhs))]>,
Jim Grosbach39be8fc2010-02-16 20:42:29 +0000471 Requires<[IsThumb2]> {
Johnny Chend68e1192009-12-15 17:24:14 +0000472 let Inst{31-27} = 0b11101;
473 let Inst{26-25} = 0b01;
474 let Inst{24-21} = opcod;
475 let Inst{20} = 0; // The S bit.
476 }
Jim Grosbach39be8fc2010-02-16 20:42:29 +0000477}
478
479// Carry setting variants
480let Defs = [CPSR] in {
Jim Grosbach80dc1162010-02-16 21:23:02 +0000481multiclass T2I_adde_sube_s_irs<bits<4> opcod, string opc, PatFrag opnode,
482 bit Commutable = 0> {
Evan Cheng62674222009-06-25 23:34:10 +0000483 // shifted imm
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000484 def ri : T2sI<(outs rGPR:$dst), (ins rGPR:$lhs, t2_so_imm:$rhs), IIC_iALUi,
Johnny Chenb5031ad2010-03-02 19:38:59 +0000485 opc, "\t$dst, $lhs, $rhs",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000486 [(set rGPR:$dst, (opnode rGPR:$lhs, t2_so_imm:$rhs))]>,
Johnny Chenb5031ad2010-03-02 19:38:59 +0000487 Requires<[IsThumb2]> {
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 Cheng62674222009-06-25 23:34:10 +0000494 // register
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000495 def rr : T2sI<(outs rGPR:$dst), (ins rGPR:$lhs, rGPR:$rhs), IIC_iALUr,
Johnny Chenb5031ad2010-03-02 19:38:59 +0000496 opc, ".w\t$dst, $lhs, $rhs",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000497 [(set rGPR:$dst, (opnode rGPR:$lhs, rGPR:$rhs))]>,
Johnny Chenb5031ad2010-03-02 19:38:59 +0000498 Requires<[IsThumb2]> {
Johnny Chend68e1192009-12-15 17:24:14 +0000499 let isCommutable = Commutable;
500 let Inst{31-27} = 0b11101;
501 let Inst{26-25} = 0b01;
502 let Inst{24-21} = opcod;
503 let Inst{20} = 1; // The S bit.
504 let Inst{14-12} = 0b000; // imm3
505 let Inst{7-6} = 0b00; // imm2
506 let Inst{5-4} = 0b00; // type
Evan Cheng8de898a2009-06-26 00:19:44 +0000507 }
Evan Cheng62674222009-06-25 23:34:10 +0000508 // shifted register
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000509 def rs : T2sI<(outs rGPR:$dst), (ins rGPR:$lhs, t2_so_reg:$rhs), IIC_iALUsi,
Johnny Chenb5031ad2010-03-02 19:38:59 +0000510 opc, ".w\t$dst, $lhs, $rhs",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000511 [(set rGPR:$dst, (opnode rGPR:$lhs, t2_so_reg:$rhs))]>,
Johnny Chenb5031ad2010-03-02 19:38:59 +0000512 Requires<[IsThumb2]> {
Johnny Chend68e1192009-12-15 17:24:14 +0000513 let Inst{31-27} = 0b11101;
514 let Inst{26-25} = 0b01;
515 let Inst{24-21} = opcod;
516 let Inst{20} = 1; // The S bit.
Evan Cheng8de898a2009-06-26 00:19:44 +0000517 }
Evan Chengf49810c2009-06-23 17:48:47 +0000518}
519}
Jim Grosbach39be8fc2010-02-16 20:42:29 +0000520}
Evan Chengf49810c2009-06-23 17:48:47 +0000521
Bob Wilson20d8e4e2010-08-13 23:24:25 +0000522/// T2I_rbin_s_is - Same as T2I_rbin_irs except sets 's' bit and the register
523/// version is not needed since this is only for codegen.
Evan Cheng1e249e32009-06-25 20:59:23 +0000524let Defs = [CPSR] in {
Johnny Chend68e1192009-12-15 17:24:14 +0000525multiclass T2I_rbin_s_is<bits<4> opcod, string opc, PatFrag opnode> {
Evan Chengf49810c2009-06-23 17:48:47 +0000526 // shifted imm
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000527 def ri : T2I<(outs rGPR:$dst), (ins rGPR:$rhs, t2_so_imm:$lhs), IIC_iALUi,
Bob Wilson4876bdb2010-05-25 04:43:08 +0000528 !strconcat(opc, "s"), ".w\t$dst, $rhs, $lhs",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000529 [(set rGPR:$dst, (opnode t2_so_imm:$lhs, rGPR:$rhs))]> {
Johnny Chend68e1192009-12-15 17:24:14 +0000530 let Inst{31-27} = 0b11110;
531 let Inst{25} = 0;
532 let Inst{24-21} = opcod;
533 let Inst{20} = 1; // The S bit.
534 let Inst{15} = 0;
535 }
Evan Chengf49810c2009-06-23 17:48:47 +0000536 // shifted register
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000537 def rs : T2I<(outs rGPR:$dst), (ins rGPR:$rhs, t2_so_reg:$lhs), IIC_iALUsi,
Bob Wilson4876bdb2010-05-25 04:43:08 +0000538 !strconcat(opc, "s"), "\t$dst, $rhs, $lhs",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000539 [(set rGPR:$dst, (opnode t2_so_reg:$lhs, rGPR:$rhs))]> {
Johnny Chend68e1192009-12-15 17:24:14 +0000540 let Inst{31-27} = 0b11101;
541 let Inst{26-25} = 0b01;
542 let Inst{24-21} = opcod;
543 let Inst{20} = 1; // The S bit.
544 }
Evan Chengf49810c2009-06-23 17:48:47 +0000545}
546}
547
Evan Chenga67efd12009-06-23 19:39:13 +0000548/// T2I_sh_ir - Defines a set of (op reg, {so_imm|r}) patterns for a shift /
549// rotate operation that produces a value.
Johnny Chend68e1192009-12-15 17:24:14 +0000550multiclass T2I_sh_ir<bits<2> opcod, string opc, PatFrag opnode> {
Evan Chenga67efd12009-06-23 19:39:13 +0000551 // 5-bit imm
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000552 def ri : T2sI<(outs rGPR:$dst), (ins rGPR:$lhs, i32imm:$rhs), IIC_iMOVsi,
Evan Cheng699beba2009-10-27 00:08:59 +0000553 opc, ".w\t$dst, $lhs, $rhs",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000554 [(set rGPR:$dst, (opnode rGPR:$lhs, imm1_31:$rhs))]> {
Johnny Chend68e1192009-12-15 17:24:14 +0000555 let Inst{31-27} = 0b11101;
556 let Inst{26-21} = 0b010010;
557 let Inst{19-16} = 0b1111; // Rn
558 let Inst{5-4} = opcod;
559 }
Evan Chenga67efd12009-06-23 19:39:13 +0000560 // register
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000561 def rr : T2sI<(outs rGPR:$dst), (ins rGPR:$lhs, rGPR:$rhs), IIC_iMOVsr,
Evan Cheng699beba2009-10-27 00:08:59 +0000562 opc, ".w\t$dst, $lhs, $rhs",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000563 [(set rGPR:$dst, (opnode rGPR:$lhs, rGPR:$rhs))]> {
Johnny Chend68e1192009-12-15 17:24:14 +0000564 let Inst{31-27} = 0b11111;
565 let Inst{26-23} = 0b0100;
566 let Inst{22-21} = opcod;
567 let Inst{15-12} = 0b1111;
568 let Inst{7-4} = 0b0000;
569 }
Evan Chenga67efd12009-06-23 19:39:13 +0000570}
Evan Chengf49810c2009-06-23 17:48:47 +0000571
Johnny Chend68e1192009-12-15 17:24:14 +0000572/// T2I_cmp_irs - Defines a set of (op r, {so_imm|r|so_reg}) cmp / test
Evan Chenga67efd12009-06-23 19:39:13 +0000573/// patterns. Similar to T2I_bin_irs except the instruction does not produce
Evan Chengf49810c2009-06-23 17:48:47 +0000574/// a explicit result, only implicitly set CPSR.
Bill Wendlingf0e132c2010-08-19 00:05:48 +0000575let isCompare = 1, Defs = [CPSR] in {
Johnny Chend68e1192009-12-15 17:24:14 +0000576multiclass T2I_cmp_irs<bits<4> opcod, string opc, PatFrag opnode> {
Evan Chengf49810c2009-06-23 17:48:47 +0000577 // shifted imm
David Goodwin5d598aa2009-08-19 18:00:44 +0000578 def ri : T2I<(outs), (ins GPR:$lhs, t2_so_imm:$rhs), IIC_iCMPi,
Evan Cheng699beba2009-10-27 00:08:59 +0000579 opc, ".w\t$lhs, $rhs",
Johnny Chend68e1192009-12-15 17:24:14 +0000580 [(opnode GPR:$lhs, t2_so_imm:$rhs)]> {
581 let Inst{31-27} = 0b11110;
582 let Inst{25} = 0;
583 let Inst{24-21} = opcod;
584 let Inst{20} = 1; // The S bit.
585 let Inst{15} = 0;
586 let Inst{11-8} = 0b1111; // Rd
587 }
Evan Chenga67efd12009-06-23 19:39:13 +0000588 // register
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000589 def rr : T2I<(outs), (ins GPR:$lhs, rGPR:$rhs), IIC_iCMPr,
Evan Cheng699beba2009-10-27 00:08:59 +0000590 opc, ".w\t$lhs, $rhs",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000591 [(opnode GPR:$lhs, rGPR:$rhs)]> {
Johnny Chend68e1192009-12-15 17:24:14 +0000592 let Inst{31-27} = 0b11101;
593 let Inst{26-25} = 0b01;
594 let Inst{24-21} = opcod;
595 let Inst{20} = 1; // The S bit.
596 let Inst{14-12} = 0b000; // imm3
597 let Inst{11-8} = 0b1111; // Rd
598 let Inst{7-6} = 0b00; // imm2
599 let Inst{5-4} = 0b00; // type
600 }
Evan Chengf49810c2009-06-23 17:48:47 +0000601 // shifted register
David Goodwin5d598aa2009-08-19 18:00:44 +0000602 def rs : T2I<(outs), (ins GPR:$lhs, t2_so_reg:$rhs), IIC_iCMPsi,
Evan Cheng699beba2009-10-27 00:08:59 +0000603 opc, ".w\t$lhs, $rhs",
Johnny Chend68e1192009-12-15 17:24:14 +0000604 [(opnode GPR:$lhs, t2_so_reg:$rhs)]> {
605 let Inst{31-27} = 0b11101;
606 let Inst{26-25} = 0b01;
607 let Inst{24-21} = opcod;
608 let Inst{20} = 1; // The S bit.
609 let Inst{11-8} = 0b1111; // Rd
610 }
Anton Korobeynikov52237112009-06-17 18:13:58 +0000611}
612}
613
Evan Chengf3c21b82009-06-30 02:15:48 +0000614/// T2I_ld - Defines a set of (op r, {imm12|imm8|so_reg}) load patterns.
Johnny Chend68e1192009-12-15 17:24:14 +0000615multiclass T2I_ld<bit signed, bits<2> opcod, string opc, PatFrag opnode> {
David Goodwin5d598aa2009-08-19 18:00:44 +0000616 def i12 : T2Ii12<(outs GPR:$dst), (ins t2addrmode_imm12:$addr), IIC_iLoadi,
Evan Cheng699beba2009-10-27 00:08:59 +0000617 opc, ".w\t$dst, $addr",
Johnny Chend68e1192009-12-15 17:24:14 +0000618 [(set GPR:$dst, (opnode t2addrmode_imm12:$addr))]> {
619 let Inst{31-27} = 0b11111;
620 let Inst{26-25} = 0b00;
621 let Inst{24} = signed;
622 let Inst{23} = 1;
623 let Inst{22-21} = opcod;
624 let Inst{20} = 1; // load
625 }
David Goodwin5d598aa2009-08-19 18:00:44 +0000626 def i8 : T2Ii8 <(outs GPR:$dst), (ins t2addrmode_imm8:$addr), IIC_iLoadi,
Evan Cheng699beba2009-10-27 00:08:59 +0000627 opc, "\t$dst, $addr",
Johnny Chend68e1192009-12-15 17:24:14 +0000628 [(set GPR:$dst, (opnode t2addrmode_imm8:$addr))]> {
629 let Inst{31-27} = 0b11111;
630 let Inst{26-25} = 0b00;
631 let Inst{24} = signed;
632 let Inst{23} = 0;
633 let Inst{22-21} = opcod;
634 let Inst{20} = 1; // load
635 let Inst{11} = 1;
636 // Offset: index==TRUE, wback==FALSE
637 let Inst{10} = 1; // The P bit.
638 let Inst{8} = 0; // The W bit.
639 }
David Goodwin5d598aa2009-08-19 18:00:44 +0000640 def s : T2Iso <(outs GPR:$dst), (ins t2addrmode_so_reg:$addr), IIC_iLoadr,
Evan Cheng699beba2009-10-27 00:08:59 +0000641 opc, ".w\t$dst, $addr",
Johnny Chend68e1192009-12-15 17:24:14 +0000642 [(set GPR:$dst, (opnode t2addrmode_so_reg:$addr))]> {
643 let Inst{31-27} = 0b11111;
644 let Inst{26-25} = 0b00;
645 let Inst{24} = signed;
646 let Inst{23} = 0;
647 let Inst{22-21} = opcod;
648 let Inst{20} = 1; // load
649 let Inst{11-6} = 0b000000;
650 }
David Goodwin5d598aa2009-08-19 18:00:44 +0000651 def pci : T2Ipc <(outs GPR:$dst), (ins i32imm:$addr), IIC_iLoadi,
Evan Cheng699beba2009-10-27 00:08:59 +0000652 opc, ".w\t$dst, $addr",
Evan Cheng9eda6892009-10-31 03:39:36 +0000653 [(set GPR:$dst, (opnode (ARMWrapper tconstpool:$addr)))]> {
654 let isReMaterializable = 1;
Johnny Chend68e1192009-12-15 17:24:14 +0000655 let Inst{31-27} = 0b11111;
656 let Inst{26-25} = 0b00;
657 let Inst{24} = signed;
658 let Inst{23} = ?; // add = (U == '1')
659 let Inst{22-21} = opcod;
660 let Inst{20} = 1; // load
661 let Inst{19-16} = 0b1111; // Rn
Evan Cheng9eda6892009-10-31 03:39:36 +0000662 }
Evan Chengf3c21b82009-06-30 02:15:48 +0000663}
664
David Goodwin73b8f162009-06-30 22:11:34 +0000665/// T2I_st - Defines a set of (op r, {imm12|imm8|so_reg}) store patterns.
Johnny Chend68e1192009-12-15 17:24:14 +0000666multiclass T2I_st<bits<2> opcod, string opc, PatFrag opnode> {
David Goodwin5d598aa2009-08-19 18:00:44 +0000667 def i12 : T2Ii12<(outs), (ins GPR:$src, t2addrmode_imm12:$addr), IIC_iStorei,
Evan Cheng699beba2009-10-27 00:08:59 +0000668 opc, ".w\t$src, $addr",
Johnny Chend68e1192009-12-15 17:24:14 +0000669 [(opnode GPR:$src, t2addrmode_imm12:$addr)]> {
670 let Inst{31-27} = 0b11111;
671 let Inst{26-23} = 0b0001;
672 let Inst{22-21} = opcod;
673 let Inst{20} = 0; // !load
674 }
David Goodwin5d598aa2009-08-19 18:00:44 +0000675 def i8 : T2Ii8 <(outs), (ins GPR:$src, t2addrmode_imm8:$addr), IIC_iStorei,
Evan Cheng699beba2009-10-27 00:08:59 +0000676 opc, "\t$src, $addr",
Johnny Chend68e1192009-12-15 17:24:14 +0000677 [(opnode GPR:$src, t2addrmode_imm8:$addr)]> {
678 let Inst{31-27} = 0b11111;
679 let Inst{26-23} = 0b0000;
680 let Inst{22-21} = opcod;
681 let Inst{20} = 0; // !load
682 let Inst{11} = 1;
683 // Offset: index==TRUE, wback==FALSE
684 let Inst{10} = 1; // The P bit.
685 let Inst{8} = 0; // The W bit.
686 }
David Goodwin5d598aa2009-08-19 18:00:44 +0000687 def s : T2Iso <(outs), (ins GPR:$src, t2addrmode_so_reg:$addr), IIC_iStorer,
Evan Cheng699beba2009-10-27 00:08:59 +0000688 opc, ".w\t$src, $addr",
Johnny Chend68e1192009-12-15 17:24:14 +0000689 [(opnode GPR:$src, t2addrmode_so_reg:$addr)]> {
690 let Inst{31-27} = 0b11111;
691 let Inst{26-23} = 0b0000;
692 let Inst{22-21} = opcod;
693 let Inst{20} = 0; // !load
694 let Inst{11-6} = 0b000000;
695 }
David Goodwin73b8f162009-06-30 22:11:34 +0000696}
697
Evan Chengd27c9fc2009-07-03 01:43:10 +0000698/// T2I_unary_rrot - A unary operation with two forms: one whose operand is a
699/// register and one whose operand is a register rotated by 8/16/24.
Johnny Chend68e1192009-12-15 17:24:14 +0000700multiclass T2I_unary_rrot<bits<3> opcod, string opc, PatFrag opnode> {
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000701 def r : T2I<(outs rGPR:$dst), (ins rGPR:$src), IIC_iUNAr,
Evan Cheng699beba2009-10-27 00:08:59 +0000702 opc, ".w\t$dst, $src",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000703 [(set rGPR:$dst, (opnode rGPR:$src))]> {
Johnny Chend68e1192009-12-15 17:24:14 +0000704 let Inst{31-27} = 0b11111;
705 let Inst{26-23} = 0b0100;
706 let Inst{22-20} = opcod;
707 let Inst{19-16} = 0b1111; // Rn
708 let Inst{15-12} = 0b1111;
709 let Inst{7} = 1;
710 let Inst{5-4} = 0b00; // rotate
711 }
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000712 def r_rot : T2I<(outs rGPR:$dst), (ins rGPR:$src, i32imm:$rot), IIC_iUNAsi,
Evan Cheng699beba2009-10-27 00:08:59 +0000713 opc, ".w\t$dst, $src, ror $rot",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000714 [(set rGPR:$dst, (opnode (rotr rGPR:$src, rot_imm:$rot)))]> {
Johnny Chend68e1192009-12-15 17:24:14 +0000715 let Inst{31-27} = 0b11111;
716 let Inst{26-23} = 0b0100;
717 let Inst{22-20} = opcod;
718 let Inst{19-16} = 0b1111; // Rn
719 let Inst{15-12} = 0b1111;
720 let Inst{7} = 1;
721 let Inst{5-4} = {?,?}; // rotate
722 }
Evan Chengd27c9fc2009-07-03 01:43:10 +0000723}
724
Eli Friedman761fa7a2010-06-24 18:20:04 +0000725// UXTB16 - Requres T2ExtractPack, does not need the .w qualifier.
726multiclass T2I_unary_rrot_uxtb16<bits<3> opcod, string opc, PatFrag opnode> {
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000727 def r : T2I<(outs rGPR:$dst), (ins rGPR:$src), IIC_iUNAr,
Johnny Chen267124c2010-03-04 22:24:41 +0000728 opc, "\t$dst, $src",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000729 [(set rGPR:$dst, (opnode rGPR:$src))]>,
Jim Grosbach29402132010-05-05 23:44:43 +0000730 Requires<[HasT2ExtractPack]> {
Johnny Chen267124c2010-03-04 22:24:41 +0000731 let Inst{31-27} = 0b11111;
732 let Inst{26-23} = 0b0100;
733 let Inst{22-20} = opcod;
734 let Inst{19-16} = 0b1111; // Rn
735 let Inst{15-12} = 0b1111;
736 let Inst{7} = 1;
737 let Inst{5-4} = 0b00; // rotate
738 }
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000739 def r_rot : T2I<(outs rGPR:$dst), (ins rGPR:$src, i32imm:$rot), IIC_iUNAsi,
Johnny Chen267124c2010-03-04 22:24:41 +0000740 opc, "\t$dst, $src, ror $rot",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000741 [(set rGPR:$dst, (opnode (rotr rGPR:$src, rot_imm:$rot)))]>,
Jim Grosbach29402132010-05-05 23:44:43 +0000742 Requires<[HasT2ExtractPack]> {
Johnny Chen267124c2010-03-04 22:24:41 +0000743 let Inst{31-27} = 0b11111;
744 let Inst{26-23} = 0b0100;
745 let Inst{22-20} = opcod;
746 let Inst{19-16} = 0b1111; // Rn
747 let Inst{15-12} = 0b1111;
748 let Inst{7} = 1;
749 let Inst{5-4} = {?,?}; // rotate
750 }
751}
752
Eli Friedman761fa7a2010-06-24 18:20:04 +0000753// SXTB16 - Requres T2ExtractPack, does not need the .w qualifier, no pattern
754// supported yet.
755multiclass T2I_unary_rrot_sxtb16<bits<3> opcod, string opc> {
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000756 def r : T2I<(outs rGPR:$dst), (ins rGPR:$src), IIC_iUNAr,
Johnny Chen93042d12010-03-02 18:14:57 +0000757 opc, "\t$dst, $src", []> {
758 let Inst{31-27} = 0b11111;
759 let Inst{26-23} = 0b0100;
760 let Inst{22-20} = opcod;
761 let Inst{19-16} = 0b1111; // Rn
762 let Inst{15-12} = 0b1111;
763 let Inst{7} = 1;
764 let Inst{5-4} = 0b00; // rotate
765 }
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000766 def r_rot : T2I<(outs rGPR:$dst), (ins rGPR:$src, i32imm:$rot), IIC_iUNAsi,
Johnny Chen93042d12010-03-02 18:14:57 +0000767 opc, "\t$dst, $src, ror $rot", []> {
768 let Inst{31-27} = 0b11111;
769 let Inst{26-23} = 0b0100;
770 let Inst{22-20} = opcod;
771 let Inst{19-16} = 0b1111; // Rn
772 let Inst{15-12} = 0b1111;
773 let Inst{7} = 1;
774 let Inst{5-4} = {?,?}; // rotate
775 }
776}
777
Evan Chengd27c9fc2009-07-03 01:43:10 +0000778/// T2I_bin_rrot - A binary operation with two forms: one whose operand is a
779/// register and one whose operand is a register rotated by 8/16/24.
Johnny Chend68e1192009-12-15 17:24:14 +0000780multiclass T2I_bin_rrot<bits<3> opcod, string opc, PatFrag opnode> {
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000781 def rr : T2I<(outs rGPR:$dst), (ins rGPR:$LHS, rGPR:$RHS), IIC_iALUr,
Evan Cheng699beba2009-10-27 00:08:59 +0000782 opc, "\t$dst, $LHS, $RHS",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000783 [(set rGPR:$dst, (opnode rGPR:$LHS, rGPR:$RHS))]>,
Jim Grosbach29402132010-05-05 23:44:43 +0000784 Requires<[HasT2ExtractPack]> {
Johnny Chend68e1192009-12-15 17:24:14 +0000785 let Inst{31-27} = 0b11111;
786 let Inst{26-23} = 0b0100;
787 let Inst{22-20} = opcod;
788 let Inst{15-12} = 0b1111;
789 let Inst{7} = 1;
790 let Inst{5-4} = 0b00; // rotate
791 }
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000792 def rr_rot : T2I<(outs rGPR:$dst), (ins rGPR:$LHS, rGPR:$RHS, i32imm:$rot),
Evan Cheng699beba2009-10-27 00:08:59 +0000793 IIC_iALUsr, opc, "\t$dst, $LHS, $RHS, ror $rot",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000794 [(set rGPR:$dst, (opnode rGPR:$LHS,
795 (rotr rGPR:$RHS, rot_imm:$rot)))]>,
Jim Grosbach29402132010-05-05 23:44:43 +0000796 Requires<[HasT2ExtractPack]> {
Johnny Chend68e1192009-12-15 17:24:14 +0000797 let Inst{31-27} = 0b11111;
798 let Inst{26-23} = 0b0100;
799 let Inst{22-20} = opcod;
800 let Inst{15-12} = 0b1111;
801 let Inst{7} = 1;
802 let Inst{5-4} = {?,?}; // rotate
803 }
Evan Chengd27c9fc2009-07-03 01:43:10 +0000804}
805
Johnny Chen93042d12010-03-02 18:14:57 +0000806// DO variant - disassembly only, no pattern
807
808multiclass T2I_bin_rrot_DO<bits<3> opcod, string opc> {
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000809 def rr : T2I<(outs rGPR:$dst), (ins rGPR:$LHS, rGPR:$RHS), IIC_iALUr,
Johnny Chen93042d12010-03-02 18:14:57 +0000810 opc, "\t$dst, $LHS, $RHS", []> {
811 let Inst{31-27} = 0b11111;
812 let Inst{26-23} = 0b0100;
813 let Inst{22-20} = opcod;
814 let Inst{15-12} = 0b1111;
815 let Inst{7} = 1;
816 let Inst{5-4} = 0b00; // rotate
817 }
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000818 def rr_rot : T2I<(outs rGPR:$dst), (ins rGPR:$LHS, rGPR:$RHS, i32imm:$rot),
Johnny Chen93042d12010-03-02 18:14:57 +0000819 IIC_iALUsr, opc, "\t$dst, $LHS, $RHS, ror $rot", []> {
820 let Inst{31-27} = 0b11111;
821 let Inst{26-23} = 0b0100;
822 let Inst{22-20} = opcod;
823 let Inst{15-12} = 0b1111;
824 let Inst{7} = 1;
825 let Inst{5-4} = {?,?}; // rotate
826 }
827}
828
Anton Korobeynikov52237112009-06-17 18:13:58 +0000829//===----------------------------------------------------------------------===//
Evan Cheng9cb9e672009-06-27 02:26:13 +0000830// Instructions
831//===----------------------------------------------------------------------===//
832
833//===----------------------------------------------------------------------===//
Evan Chenga09b9ca2009-06-24 23:47:58 +0000834// Miscellaneous Instructions.
835//
836
Evan Chenga09b9ca2009-06-24 23:47:58 +0000837// LEApcrel - Load a pc-relative address into a register without offending the
838// assembler.
Evan Chengea420b22010-05-19 01:52:25 +0000839let neverHasSideEffects = 1 in {
Evan Cheng9085f982010-05-19 07:28:01 +0000840let isReMaterializable = 1 in
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000841def t2LEApcrel : T2XI<(outs rGPR:$dst), (ins i32imm:$label, pred:$p), IIC_iALUi,
Daniel Dunbar9db683b2010-08-11 04:46:10 +0000842 "adr${p}.w\t$dst, #$label", []> {
Johnny Chend68e1192009-12-15 17:24:14 +0000843 let Inst{31-27} = 0b11110;
844 let Inst{25-24} = 0b10;
845 // Inst{23:21} = '11' (add = FALSE) or '00' (add = TRUE)
846 let Inst{22} = 0;
847 let Inst{20} = 0;
848 let Inst{19-16} = 0b1111; // Rn
849 let Inst{15} = 0;
850}
Jim Grosbacha967d112010-06-21 21:27:27 +0000851} // neverHasSideEffects
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000852def t2LEApcrelJT : T2XI<(outs rGPR:$dst),
Bob Wilson4f38b382009-08-21 21:58:55 +0000853 (ins i32imm:$label, nohash_imm:$id, pred:$p), IIC_iALUi,
Daniel Dunbar9db683b2010-08-11 04:46:10 +0000854 "adr${p}.w\t$dst, #${label}_${id}", []> {
Johnny Chend68e1192009-12-15 17:24:14 +0000855 let Inst{31-27} = 0b11110;
856 let Inst{25-24} = 0b10;
857 // Inst{23:21} = '11' (add = FALSE) or '00' (add = TRUE)
858 let Inst{22} = 0;
859 let Inst{20} = 0;
860 let Inst{19-16} = 0b1111; // Rn
861 let Inst{15} = 0;
862}
Evan Chenga09b9ca2009-06-24 23:47:58 +0000863
Evan Cheng86198642009-08-07 00:34:42 +0000864// ADD r, sp, {so_imm|i12}
David Goodwin5d598aa2009-08-19 18:00:44 +0000865def t2ADDrSPi : T2sI<(outs GPR:$dst), (ins GPR:$sp, t2_so_imm:$imm),
Johnny Chend68e1192009-12-15 17:24:14 +0000866 IIC_iALUi, "add", ".w\t$dst, $sp, $imm", []> {
867 let Inst{31-27} = 0b11110;
868 let Inst{25} = 0;
869 let Inst{24-21} = 0b1000;
870 let Inst{20} = ?; // The S bit.
871 let Inst{19-16} = 0b1101; // Rn = sp
872 let Inst{15} = 0;
873}
Jim Grosbach64171712010-02-16 21:07:46 +0000874def t2ADDrSPi12 : T2I<(outs GPR:$dst), (ins GPR:$sp, imm0_4095:$imm),
Johnny Chend68e1192009-12-15 17:24:14 +0000875 IIC_iALUi, "addw", "\t$dst, $sp, $imm", []> {
876 let Inst{31-27} = 0b11110;
877 let Inst{25} = 1;
878 let Inst{24-21} = 0b0000;
879 let Inst{20} = 0; // The S bit.
880 let Inst{19-16} = 0b1101; // Rn = sp
881 let Inst{15} = 0;
882}
Evan Cheng86198642009-08-07 00:34:42 +0000883
884// ADD r, sp, so_reg
David Goodwin5d598aa2009-08-19 18:00:44 +0000885def t2ADDrSPs : T2sI<(outs GPR:$dst), (ins GPR:$sp, t2_so_reg:$rhs),
Johnny Chend68e1192009-12-15 17:24:14 +0000886 IIC_iALUsi, "add", ".w\t$dst, $sp, $rhs", []> {
887 let Inst{31-27} = 0b11101;
888 let Inst{26-25} = 0b01;
889 let Inst{24-21} = 0b1000;
890 let Inst{20} = ?; // The S bit.
891 let Inst{19-16} = 0b1101; // Rn = sp
892 let Inst{15} = 0;
893}
Evan Cheng86198642009-08-07 00:34:42 +0000894
895// SUB r, sp, {so_imm|i12}
David Goodwin5d598aa2009-08-19 18:00:44 +0000896def t2SUBrSPi : T2sI<(outs GPR:$dst), (ins GPR:$sp, t2_so_imm:$imm),
Johnny Chend68e1192009-12-15 17:24:14 +0000897 IIC_iALUi, "sub", ".w\t$dst, $sp, $imm", []> {
898 let Inst{31-27} = 0b11110;
899 let Inst{25} = 0;
900 let Inst{24-21} = 0b1101;
901 let Inst{20} = ?; // The S bit.
902 let Inst{19-16} = 0b1101; // Rn = sp
903 let Inst{15} = 0;
904}
David Goodwin5d598aa2009-08-19 18:00:44 +0000905def t2SUBrSPi12 : T2I<(outs GPR:$dst), (ins GPR:$sp, imm0_4095:$imm),
Johnny Chend68e1192009-12-15 17:24:14 +0000906 IIC_iALUi, "subw", "\t$dst, $sp, $imm", []> {
907 let Inst{31-27} = 0b11110;
908 let Inst{25} = 1;
909 let Inst{24-21} = 0b0101;
910 let Inst{20} = 0; // The S bit.
911 let Inst{19-16} = 0b1101; // Rn = sp
912 let Inst{15} = 0;
913}
Evan Cheng86198642009-08-07 00:34:42 +0000914
915// SUB r, sp, so_reg
David Goodwin5d598aa2009-08-19 18:00:44 +0000916def t2SUBrSPs : T2sI<(outs GPR:$dst), (ins GPR:$sp, t2_so_reg:$rhs),
917 IIC_iALUsi,
Johnny Chend68e1192009-12-15 17:24:14 +0000918 "sub", "\t$dst, $sp, $rhs", []> {
919 let Inst{31-27} = 0b11101;
920 let Inst{26-25} = 0b01;
921 let Inst{24-21} = 0b1101;
922 let Inst{20} = ?; // The S bit.
923 let Inst{19-16} = 0b1101; // Rn = sp
924 let Inst{15} = 0;
925}
Evan Cheng86198642009-08-07 00:34:42 +0000926
Jim Grosbachb1dc3932010-05-05 20:44:35 +0000927// Signed and unsigned division on v7-M
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000928def t2SDIV : T2I<(outs rGPR:$dst), (ins rGPR:$a, rGPR:$b), IIC_iALUi,
Jim Grosbachb1dc3932010-05-05 20:44:35 +0000929 "sdiv", "\t$dst, $a, $b",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000930 [(set rGPR:$dst, (sdiv rGPR:$a, rGPR:$b))]>,
Jim Grosbach29402132010-05-05 23:44:43 +0000931 Requires<[HasDivide]> {
Johnny Chen93042d12010-03-02 18:14:57 +0000932 let Inst{31-27} = 0b11111;
933 let Inst{26-21} = 0b011100;
934 let Inst{20} = 0b1;
935 let Inst{15-12} = 0b1111;
936 let Inst{7-4} = 0b1111;
937}
938
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000939def t2UDIV : T2I<(outs rGPR:$dst), (ins rGPR:$a, rGPR:$b), IIC_iALUi,
Jim Grosbachb1dc3932010-05-05 20:44:35 +0000940 "udiv", "\t$dst, $a, $b",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000941 [(set rGPR:$dst, (udiv rGPR:$a, rGPR:$b))]>,
Jim Grosbach29402132010-05-05 23:44:43 +0000942 Requires<[HasDivide]> {
Johnny Chen93042d12010-03-02 18:14:57 +0000943 let Inst{31-27} = 0b11111;
944 let Inst{26-21} = 0b011101;
945 let Inst{20} = 0b1;
946 let Inst{15-12} = 0b1111;
947 let Inst{7-4} = 0b1111;
948}
949
Evan Chenga09b9ca2009-06-24 23:47:58 +0000950//===----------------------------------------------------------------------===//
Evan Cheng9cb9e672009-06-27 02:26:13 +0000951// Load / store Instructions.
952//
953
Evan Cheng055b0312009-06-29 07:51:04 +0000954// Load
Dan Gohmanbc9d98b2010-02-27 23:47:46 +0000955let canFoldAsLoad = 1, isReMaterializable = 1 in
Johnny Chend68e1192009-12-15 17:24:14 +0000956defm t2LDR : T2I_ld<0, 0b10, "ldr", UnOpFrag<(load node:$Src)>>;
Evan Cheng055b0312009-06-29 07:51:04 +0000957
Evan Chengf3c21b82009-06-30 02:15:48 +0000958// Loads with zero extension
Johnny Chend68e1192009-12-15 17:24:14 +0000959defm t2LDRH : T2I_ld<0, 0b01, "ldrh", UnOpFrag<(zextloadi16 node:$Src)>>;
960defm t2LDRB : T2I_ld<0, 0b00, "ldrb", UnOpFrag<(zextloadi8 node:$Src)>>;
Evan Cheng055b0312009-06-29 07:51:04 +0000961
Evan Chengf3c21b82009-06-30 02:15:48 +0000962// Loads with sign extension
Johnny Chend68e1192009-12-15 17:24:14 +0000963defm t2LDRSH : T2I_ld<1, 0b01, "ldrsh", UnOpFrag<(sextloadi16 node:$Src)>>;
964defm t2LDRSB : T2I_ld<1, 0b00, "ldrsb", UnOpFrag<(sextloadi8 node:$Src)>>;
Evan Cheng055b0312009-06-29 07:51:04 +0000965
Evan Cheng5fd1c9b2010-05-19 06:07:03 +0000966let mayLoad = 1, neverHasSideEffects = 1, hasExtraDefRegAllocReq = 1 in {
Evan Chengf3c21b82009-06-30 02:15:48 +0000967// Load doubleword
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000968def t2LDRDi8 : T2Ii8s4<1, 0, 1, (outs rGPR:$dst1, rGPR:$dst2),
Evan Chenge298ab22009-09-27 09:46:04 +0000969 (ins t2addrmode_imm8s4:$addr),
Johnny Chen83142992010-01-05 22:37:28 +0000970 IIC_iLoadi, "ldrd", "\t$dst1, $addr", []>;
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000971def t2LDRDpci : T2Ii8s4<1, 0, 1, (outs rGPR:$dst1, rGPR:$dst2),
Evan Chenge298ab22009-09-27 09:46:04 +0000972 (ins i32imm:$addr), IIC_iLoadi,
Johnny Chen83142992010-01-05 22:37:28 +0000973 "ldrd", "\t$dst1, $addr", []> {
Johnny Chend68e1192009-12-15 17:24:14 +0000974 let Inst{19-16} = 0b1111; // Rn
975}
Evan Cheng5fd1c9b2010-05-19 06:07:03 +0000976} // mayLoad = 1, neverHasSideEffects = 1, hasExtraDefRegAllocReq = 1
Evan Chengf3c21b82009-06-30 02:15:48 +0000977
978// zextload i1 -> zextload i8
979def : T2Pat<(zextloadi1 t2addrmode_imm12:$addr),
980 (t2LDRBi12 t2addrmode_imm12:$addr)>;
981def : T2Pat<(zextloadi1 t2addrmode_imm8:$addr),
982 (t2LDRBi8 t2addrmode_imm8:$addr)>;
983def : T2Pat<(zextloadi1 t2addrmode_so_reg:$addr),
984 (t2LDRBs t2addrmode_so_reg:$addr)>;
985def : T2Pat<(zextloadi1 (ARMWrapper tconstpool:$addr)),
986 (t2LDRBpci tconstpool:$addr)>;
987
988// extload -> zextload
989// FIXME: Reduce the number of patterns by legalizing extload to zextload
990// earlier?
991def : T2Pat<(extloadi1 t2addrmode_imm12:$addr),
992 (t2LDRBi12 t2addrmode_imm12:$addr)>;
993def : T2Pat<(extloadi1 t2addrmode_imm8:$addr),
994 (t2LDRBi8 t2addrmode_imm8:$addr)>;
995def : T2Pat<(extloadi1 t2addrmode_so_reg:$addr),
996 (t2LDRBs t2addrmode_so_reg:$addr)>;
997def : T2Pat<(extloadi1 (ARMWrapper tconstpool:$addr)),
998 (t2LDRBpci tconstpool:$addr)>;
999
1000def : T2Pat<(extloadi8 t2addrmode_imm12:$addr),
1001 (t2LDRBi12 t2addrmode_imm12:$addr)>;
1002def : T2Pat<(extloadi8 t2addrmode_imm8:$addr),
1003 (t2LDRBi8 t2addrmode_imm8:$addr)>;
1004def : T2Pat<(extloadi8 t2addrmode_so_reg:$addr),
1005 (t2LDRBs t2addrmode_so_reg:$addr)>;
1006def : T2Pat<(extloadi8 (ARMWrapper tconstpool:$addr)),
1007 (t2LDRBpci tconstpool:$addr)>;
1008
1009def : T2Pat<(extloadi16 t2addrmode_imm12:$addr),
1010 (t2LDRHi12 t2addrmode_imm12:$addr)>;
1011def : T2Pat<(extloadi16 t2addrmode_imm8:$addr),
1012 (t2LDRHi8 t2addrmode_imm8:$addr)>;
1013def : T2Pat<(extloadi16 t2addrmode_so_reg:$addr),
1014 (t2LDRHs t2addrmode_so_reg:$addr)>;
1015def : T2Pat<(extloadi16 (ARMWrapper tconstpool:$addr)),
1016 (t2LDRHpci tconstpool:$addr)>;
Evan Cheng055b0312009-06-29 07:51:04 +00001017
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001018// FIXME: The destination register of the loads and stores can't be PC, but
1019// can be SP. We need another regclass (similar to rGPR) to represent
1020// that. Not a pressing issue since these are selected manually,
1021// not via pattern.
1022
Evan Chenge88d5ce2009-07-02 07:28:31 +00001023// Indexed loads
Evan Cheng5fd1c9b2010-05-19 06:07:03 +00001024let mayLoad = 1, neverHasSideEffects = 1 in {
Johnny Chend68e1192009-12-15 17:24:14 +00001025def t2LDR_PRE : T2Iidxldst<0, 0b10, 1, 1, (outs GPR:$dst, GPR:$base_wb),
Evan Chenge88d5ce2009-07-02 07:28:31 +00001026 (ins t2addrmode_imm8:$addr),
David Goodwin5d598aa2009-08-19 18:00:44 +00001027 AddrModeT2_i8, IndexModePre, IIC_iLoadiu,
Evan Cheng699beba2009-10-27 00:08:59 +00001028 "ldr", "\t$dst, $addr!", "$addr.base = $base_wb",
Evan Chenge88d5ce2009-07-02 07:28:31 +00001029 []>;
1030
Johnny Chend68e1192009-12-15 17:24:14 +00001031def t2LDR_POST : T2Iidxldst<0, 0b10, 1, 0, (outs GPR:$dst, GPR:$base_wb),
Evan Chenge88d5ce2009-07-02 07:28:31 +00001032 (ins GPR:$base, t2am_imm8_offset:$offset),
David Goodwin5d598aa2009-08-19 18:00:44 +00001033 AddrModeT2_i8, IndexModePost, IIC_iLoadiu,
Evan Cheng699beba2009-10-27 00:08:59 +00001034 "ldr", "\t$dst, [$base], $offset", "$base = $base_wb",
Evan Chenge88d5ce2009-07-02 07:28:31 +00001035 []>;
1036
Johnny Chend68e1192009-12-15 17:24:14 +00001037def t2LDRB_PRE : T2Iidxldst<0, 0b00, 1, 1, (outs GPR:$dst, GPR:$base_wb),
Evan Chenge88d5ce2009-07-02 07:28:31 +00001038 (ins t2addrmode_imm8:$addr),
David Goodwin5d598aa2009-08-19 18:00:44 +00001039 AddrModeT2_i8, IndexModePre, IIC_iLoadiu,
Evan Cheng699beba2009-10-27 00:08:59 +00001040 "ldrb", "\t$dst, $addr!", "$addr.base = $base_wb",
Evan Chenge88d5ce2009-07-02 07:28:31 +00001041 []>;
Johnny Chend68e1192009-12-15 17:24:14 +00001042def t2LDRB_POST : T2Iidxldst<0, 0b00, 1, 0, (outs GPR:$dst, GPR:$base_wb),
Evan Chenge88d5ce2009-07-02 07:28:31 +00001043 (ins GPR:$base, t2am_imm8_offset:$offset),
David Goodwin5d598aa2009-08-19 18:00:44 +00001044 AddrModeT2_i8, IndexModePost, IIC_iLoadiu,
Evan Cheng699beba2009-10-27 00:08:59 +00001045 "ldrb", "\t$dst, [$base], $offset", "$base = $base_wb",
Evan Chenge88d5ce2009-07-02 07:28:31 +00001046 []>;
1047
Johnny Chend68e1192009-12-15 17:24:14 +00001048def t2LDRH_PRE : T2Iidxldst<0, 0b01, 1, 1, (outs GPR:$dst, GPR:$base_wb),
Evan Chenge88d5ce2009-07-02 07:28:31 +00001049 (ins t2addrmode_imm8:$addr),
David Goodwin5d598aa2009-08-19 18:00:44 +00001050 AddrModeT2_i8, IndexModePre, IIC_iLoadiu,
Evan Cheng699beba2009-10-27 00:08:59 +00001051 "ldrh", "\t$dst, $addr!", "$addr.base = $base_wb",
Evan Chenge88d5ce2009-07-02 07:28:31 +00001052 []>;
Johnny Chend68e1192009-12-15 17:24:14 +00001053def t2LDRH_POST : T2Iidxldst<0, 0b01, 1, 0, (outs GPR:$dst, GPR:$base_wb),
Evan Chenge88d5ce2009-07-02 07:28:31 +00001054 (ins GPR:$base, t2am_imm8_offset:$offset),
David Goodwin5d598aa2009-08-19 18:00:44 +00001055 AddrModeT2_i8, IndexModePost, IIC_iLoadiu,
Evan Cheng699beba2009-10-27 00:08:59 +00001056 "ldrh", "\t$dst, [$base], $offset", "$base = $base_wb",
Evan Chenge88d5ce2009-07-02 07:28:31 +00001057 []>;
1058
Johnny Chend68e1192009-12-15 17:24:14 +00001059def t2LDRSB_PRE : T2Iidxldst<1, 0b00, 1, 1, (outs GPR:$dst, GPR:$base_wb),
Evan Cheng4fbb9962009-07-02 23:16:11 +00001060 (ins t2addrmode_imm8:$addr),
David Goodwin5d598aa2009-08-19 18:00:44 +00001061 AddrModeT2_i8, IndexModePre, IIC_iLoadiu,
Evan Cheng699beba2009-10-27 00:08:59 +00001062 "ldrsb", "\t$dst, $addr!", "$addr.base = $base_wb",
Evan Cheng4fbb9962009-07-02 23:16:11 +00001063 []>;
Johnny Chend68e1192009-12-15 17:24:14 +00001064def t2LDRSB_POST : T2Iidxldst<1, 0b00, 1, 0, (outs GPR:$dst, GPR:$base_wb),
Evan Cheng4fbb9962009-07-02 23:16:11 +00001065 (ins GPR:$base, t2am_imm8_offset:$offset),
David Goodwin5d598aa2009-08-19 18:00:44 +00001066 AddrModeT2_i8, IndexModePost, IIC_iLoadiu,
Evan Cheng699beba2009-10-27 00:08:59 +00001067 "ldrsb", "\t$dst, [$base], $offset", "$base = $base_wb",
Evan Cheng4fbb9962009-07-02 23:16:11 +00001068 []>;
1069
Johnny Chend68e1192009-12-15 17:24:14 +00001070def t2LDRSH_PRE : T2Iidxldst<1, 0b01, 1, 1, (outs GPR:$dst, GPR:$base_wb),
Evan Cheng4fbb9962009-07-02 23:16:11 +00001071 (ins t2addrmode_imm8:$addr),
David Goodwin5d598aa2009-08-19 18:00:44 +00001072 AddrModeT2_i8, IndexModePre, IIC_iLoadiu,
Evan Cheng699beba2009-10-27 00:08:59 +00001073 "ldrsh", "\t$dst, $addr!", "$addr.base = $base_wb",
Evan Cheng4fbb9962009-07-02 23:16:11 +00001074 []>;
Johnny Chend68e1192009-12-15 17:24:14 +00001075def t2LDRSH_POST : T2Iidxldst<1, 0b01, 1, 0, (outs GPR:$dst, GPR:$base_wb),
Evan Cheng4fbb9962009-07-02 23:16:11 +00001076 (ins GPR:$base, t2am_imm8_offset:$offset),
David Goodwin5d598aa2009-08-19 18:00:44 +00001077 AddrModeT2_i8, IndexModePost, IIC_iLoadiu,
Evan Cheng699beba2009-10-27 00:08:59 +00001078 "ldrsh", "\t$dst, [$base], $offset", "$base = $base_wb",
Evan Cheng4fbb9962009-07-02 23:16:11 +00001079 []>;
Evan Cheng5fd1c9b2010-05-19 06:07:03 +00001080} // mayLoad = 1, neverHasSideEffects = 1
Evan Cheng4fbb9962009-07-02 23:16:11 +00001081
Johnny Chene54a3ef2010-03-03 18:45:36 +00001082// LDRT, LDRBT, LDRHT, LDRSBT, LDRSHT all have offset mode (PUW=0b110) and are
1083// for disassembly only.
1084// Ref: A8.6.57 LDR (immediate, Thumb) Encoding T4
1085class T2IldT<bit signed, bits<2> type, string opc>
1086 : T2Ii8<(outs GPR:$dst), (ins t2addrmode_imm8:$addr), IIC_iLoadi, opc,
1087 "\t$dst, $addr", []> {
1088 let Inst{31-27} = 0b11111;
1089 let Inst{26-25} = 0b00;
1090 let Inst{24} = signed;
1091 let Inst{23} = 0;
1092 let Inst{22-21} = type;
1093 let Inst{20} = 1; // load
1094 let Inst{11} = 1;
1095 let Inst{10-8} = 0b110; // PUW.
1096}
1097
1098def t2LDRT : T2IldT<0, 0b10, "ldrt">;
1099def t2LDRBT : T2IldT<0, 0b00, "ldrbt">;
1100def t2LDRHT : T2IldT<0, 0b01, "ldrht">;
1101def t2LDRSBT : T2IldT<1, 0b00, "ldrsbt">;
1102def t2LDRSHT : T2IldT<1, 0b01, "ldrsht">;
1103
David Goodwin73b8f162009-06-30 22:11:34 +00001104// Store
Jim Grosbach80dc1162010-02-16 21:23:02 +00001105defm t2STR :T2I_st<0b10,"str", BinOpFrag<(store node:$LHS, node:$RHS)>>;
1106defm t2STRB:T2I_st<0b00,"strb",BinOpFrag<(truncstorei8 node:$LHS, node:$RHS)>>;
1107defm t2STRH:T2I_st<0b01,"strh",BinOpFrag<(truncstorei16 node:$LHS, node:$RHS)>>;
David Goodwin73b8f162009-06-30 22:11:34 +00001108
David Goodwin6647cea2009-06-30 22:50:01 +00001109// Store doubleword
Evan Cheng5fd1c9b2010-05-19 06:07:03 +00001110let mayLoad = 1, neverHasSideEffects = 1, hasExtraSrcRegAllocReq = 1 in
Johnny Chend68e1192009-12-15 17:24:14 +00001111def t2STRDi8 : T2Ii8s4<1, 0, 0, (outs),
Evan Chenge298ab22009-09-27 09:46:04 +00001112 (ins GPR:$src1, GPR:$src2, t2addrmode_imm8s4:$addr),
Johnny Chen83142992010-01-05 22:37:28 +00001113 IIC_iStorer, "strd", "\t$src1, $addr", []>;
David Goodwin6647cea2009-06-30 22:50:01 +00001114
Evan Cheng6d94f112009-07-03 00:06:39 +00001115// Indexed stores
Johnny Chend68e1192009-12-15 17:24:14 +00001116def t2STR_PRE : T2Iidxldst<0, 0b10, 0, 1, (outs GPR:$base_wb),
Evan Cheng6d94f112009-07-03 00:06:39 +00001117 (ins GPR:$src, GPR:$base, t2am_imm8_offset:$offset),
David Goodwin5d598aa2009-08-19 18:00:44 +00001118 AddrModeT2_i8, IndexModePre, IIC_iStoreiu,
Evan Cheng699beba2009-10-27 00:08:59 +00001119 "str", "\t$src, [$base, $offset]!", "$base = $base_wb",
Evan Cheng6d94f112009-07-03 00:06:39 +00001120 [(set GPR:$base_wb,
1121 (pre_store GPR:$src, GPR:$base, t2am_imm8_offset:$offset))]>;
1122
Johnny Chend68e1192009-12-15 17:24:14 +00001123def t2STR_POST : T2Iidxldst<0, 0b10, 0, 0, (outs GPR:$base_wb),
Evan Cheng6d94f112009-07-03 00:06:39 +00001124 (ins GPR:$src, GPR:$base, t2am_imm8_offset:$offset),
David Goodwin5d598aa2009-08-19 18:00:44 +00001125 AddrModeT2_i8, IndexModePost, IIC_iStoreiu,
Evan Cheng699beba2009-10-27 00:08:59 +00001126 "str", "\t$src, [$base], $offset", "$base = $base_wb",
Evan Cheng6d94f112009-07-03 00:06:39 +00001127 [(set GPR:$base_wb,
Jim Grosbach6935efc2009-11-24 00:20:27 +00001128 (post_store GPR:$src, GPR:$base, t2am_imm8_offset:$offset))]>;
Evan Cheng6d94f112009-07-03 00:06:39 +00001129
Johnny Chend68e1192009-12-15 17:24:14 +00001130def t2STRH_PRE : T2Iidxldst<0, 0b01, 0, 1, (outs GPR:$base_wb),
Evan Cheng6d94f112009-07-03 00:06:39 +00001131 (ins GPR:$src, GPR:$base, t2am_imm8_offset:$offset),
David Goodwin5d598aa2009-08-19 18:00:44 +00001132 AddrModeT2_i8, IndexModePre, IIC_iStoreiu,
Evan Cheng699beba2009-10-27 00:08:59 +00001133 "strh", "\t$src, [$base, $offset]!", "$base = $base_wb",
Evan Cheng6d94f112009-07-03 00:06:39 +00001134 [(set GPR:$base_wb,
1135 (pre_truncsti16 GPR:$src, GPR:$base, t2am_imm8_offset:$offset))]>;
1136
Johnny Chend68e1192009-12-15 17:24:14 +00001137def t2STRH_POST : T2Iidxldst<0, 0b01, 0, 0, (outs GPR:$base_wb),
Evan Cheng6d94f112009-07-03 00:06:39 +00001138 (ins GPR:$src, GPR:$base, t2am_imm8_offset:$offset),
David Goodwin5d598aa2009-08-19 18:00:44 +00001139 AddrModeT2_i8, IndexModePost, IIC_iStoreiu,
Evan Cheng699beba2009-10-27 00:08:59 +00001140 "strh", "\t$src, [$base], $offset", "$base = $base_wb",
Evan Cheng6d94f112009-07-03 00:06:39 +00001141 [(set GPR:$base_wb,
1142 (post_truncsti16 GPR:$src, GPR:$base, t2am_imm8_offset:$offset))]>;
1143
Johnny Chend68e1192009-12-15 17:24:14 +00001144def t2STRB_PRE : T2Iidxldst<0, 0b00, 0, 1, (outs GPR:$base_wb),
Evan Cheng6d94f112009-07-03 00:06:39 +00001145 (ins GPR:$src, GPR:$base, t2am_imm8_offset:$offset),
David Goodwin5d598aa2009-08-19 18:00:44 +00001146 AddrModeT2_i8, IndexModePre, IIC_iStoreiu,
Evan Cheng699beba2009-10-27 00:08:59 +00001147 "strb", "\t$src, [$base, $offset]!", "$base = $base_wb",
Evan Cheng6d94f112009-07-03 00:06:39 +00001148 [(set GPR:$base_wb,
1149 (pre_truncsti8 GPR:$src, GPR:$base, t2am_imm8_offset:$offset))]>;
1150
Johnny Chend68e1192009-12-15 17:24:14 +00001151def t2STRB_POST : T2Iidxldst<0, 0b00, 0, 0, (outs GPR:$base_wb),
Evan Cheng6d94f112009-07-03 00:06:39 +00001152 (ins GPR:$src, GPR:$base, t2am_imm8_offset:$offset),
David Goodwin5d598aa2009-08-19 18:00:44 +00001153 AddrModeT2_i8, IndexModePost, IIC_iStoreiu,
Evan Cheng699beba2009-10-27 00:08:59 +00001154 "strb", "\t$src, [$base], $offset", "$base = $base_wb",
Evan Cheng6d94f112009-07-03 00:06:39 +00001155 [(set GPR:$base_wb,
1156 (post_truncsti8 GPR:$src, GPR:$base, t2am_imm8_offset:$offset))]>;
1157
Johnny Chene54a3ef2010-03-03 18:45:36 +00001158// STRT, STRBT, STRHT all have offset mode (PUW=0b110) and are for disassembly
1159// only.
1160// Ref: A8.6.193 STR (immediate, Thumb) Encoding T4
1161class T2IstT<bits<2> type, string opc>
1162 : T2Ii8<(outs GPR:$src), (ins t2addrmode_imm8:$addr), IIC_iStorei, opc,
1163 "\t$src, $addr", []> {
1164 let Inst{31-27} = 0b11111;
1165 let Inst{26-25} = 0b00;
1166 let Inst{24} = 0; // not signed
1167 let Inst{23} = 0;
1168 let Inst{22-21} = type;
1169 let Inst{20} = 0; // store
1170 let Inst{11} = 1;
1171 let Inst{10-8} = 0b110; // PUW
1172}
1173
1174def t2STRT : T2IstT<0b10, "strt">;
1175def t2STRBT : T2IstT<0b00, "strbt">;
1176def t2STRHT : T2IstT<0b01, "strht">;
David Goodwind1fa1202009-07-01 00:01:13 +00001177
Johnny Chenae1757b2010-03-11 01:13:36 +00001178// ldrd / strd pre / post variants
1179// For disassembly only.
1180
1181def t2LDRD_PRE : T2Ii8s4<1, 1, 1, (outs GPR:$dst1, GPR:$dst2),
1182 (ins GPR:$base, t2am_imm8s4_offset:$imm), NoItinerary,
1183 "ldrd", "\t$dst1, $dst2, [$base, $imm]!", []>;
1184
1185def t2LDRD_POST : T2Ii8s4<0, 1, 1, (outs GPR:$dst1, GPR:$dst2),
1186 (ins GPR:$base, t2am_imm8s4_offset:$imm), NoItinerary,
1187 "ldrd", "\t$dst1, $dst2, [$base], $imm", []>;
1188
1189def t2STRD_PRE : T2Ii8s4<1, 1, 0, (outs),
1190 (ins GPR:$src1, GPR:$src2, GPR:$base, t2am_imm8s4_offset:$imm),
1191 NoItinerary, "strd", "\t$src1, $src2, [$base, $imm]!", []>;
1192
1193def t2STRD_POST : T2Ii8s4<0, 1, 0, (outs),
1194 (ins GPR:$src1, GPR:$src2, GPR:$base, t2am_imm8s4_offset:$imm),
1195 NoItinerary, "strd", "\t$src1, $src2, [$base], $imm", []>;
Evan Cheng2889cce2009-07-03 00:18:36 +00001196
Johnny Chen0635fc52010-03-04 17:40:44 +00001197// T2Ipl (Preload Data/Instruction) signals the memory system of possible future
1198// data/instruction access. These are for disassembly only.
Johnny Chendd0f3cf2010-03-10 18:59:38 +00001199//
1200// A8.6.117, A8.6.118. Different instructions are generated for #0 and #-0.
1201// The neg_zero operand translates -0 to -1, -1 to -2, ..., etc.
Johnny Chen0635fc52010-03-04 17:40:44 +00001202multiclass T2Ipl<bit instr, bit write, string opc> {
1203
Johnny Chendd0f3cf2010-03-10 18:59:38 +00001204 def i12 : T2I<(outs), (ins GPR:$base, i32imm:$imm), IIC_iLoadi, opc,
1205 "\t[$base, $imm]", []> {
Johnny Chen0635fc52010-03-04 17:40:44 +00001206 let Inst{31-25} = 0b1111100;
1207 let Inst{24} = instr;
1208 let Inst{23} = 1; // U = 1
1209 let Inst{22} = 0;
1210 let Inst{21} = write;
1211 let Inst{20} = 1;
1212 let Inst{15-12} = 0b1111;
1213 }
1214
Johnny Chendd0f3cf2010-03-10 18:59:38 +00001215 def i8 : T2I<(outs), (ins GPR:$base, neg_zero:$imm), IIC_iLoadi, opc,
1216 "\t[$base, $imm]", []> {
Johnny Chen0635fc52010-03-04 17:40:44 +00001217 let Inst{31-25} = 0b1111100;
1218 let Inst{24} = instr;
1219 let Inst{23} = 0; // U = 0
1220 let Inst{22} = 0;
1221 let Inst{21} = write;
1222 let Inst{20} = 1;
1223 let Inst{15-12} = 0b1111;
1224 let Inst{11-8} = 0b1100;
1225 }
1226
Johnny Chendd0f3cf2010-03-10 18:59:38 +00001227 def pci : T2I<(outs), (ins GPR:$base, neg_zero:$imm), IIC_iLoadi, opc,
1228 "\t[pc, $imm]", []> {
Johnny Chen0635fc52010-03-04 17:40:44 +00001229 let Inst{31-25} = 0b1111100;
1230 let Inst{24} = instr;
1231 let Inst{23} = ?; // add = (U == 1)
1232 let Inst{22} = 0;
1233 let Inst{21} = write;
1234 let Inst{20} = 1;
1235 let Inst{19-16} = 0b1111; // Rn = 0b1111
1236 let Inst{15-12} = 0b1111;
1237 }
1238
1239 def r : T2I<(outs), (ins GPR:$base, GPR:$a), IIC_iLoadi, opc,
1240 "\t[$base, $a]", []> {
1241 let Inst{31-25} = 0b1111100;
1242 let Inst{24} = instr;
1243 let Inst{23} = 0; // add = TRUE for T1
1244 let Inst{22} = 0;
1245 let Inst{21} = write;
1246 let Inst{20} = 1;
1247 let Inst{15-12} = 0b1111;
1248 let Inst{11-6} = 0000000;
1249 let Inst{5-4} = 0b00; // no shift is applied
1250 }
1251
1252 def s : T2I<(outs), (ins GPR:$base, GPR:$a, i32imm:$shamt), IIC_iLoadi, opc,
1253 "\t[$base, $a, lsl $shamt]", []> {
1254 let Inst{31-25} = 0b1111100;
1255 let Inst{24} = instr;
1256 let Inst{23} = 0; // add = TRUE for T1
1257 let Inst{22} = 0;
1258 let Inst{21} = write;
1259 let Inst{20} = 1;
1260 let Inst{15-12} = 0b1111;
1261 let Inst{11-6} = 0000000;
1262 }
1263}
1264
1265defm t2PLD : T2Ipl<0, 0, "pld">;
1266defm t2PLDW : T2Ipl<0, 1, "pldw">;
1267defm t2PLI : T2Ipl<1, 0, "pli">;
1268
Evan Cheng2889cce2009-07-03 00:18:36 +00001269//===----------------------------------------------------------------------===//
1270// Load / store multiple Instructions.
1271//
1272
Evan Cheng5fd1c9b2010-05-19 06:07:03 +00001273let mayLoad = 1, neverHasSideEffects = 1, hasExtraDefRegAllocReq = 1 in {
Bob Wilson815baeb2010-03-13 01:08:20 +00001274def t2LDM : T2XI<(outs), (ins addrmode4:$addr, pred:$p,
1275 reglist:$dsts, variable_ops), IIC_iLoadm,
1276 "ldm${addr:submode}${p}${addr:wide}\t$addr, $dsts", []> {
Johnny Chend68e1192009-12-15 17:24:14 +00001277 let Inst{31-27} = 0b11101;
1278 let Inst{26-25} = 0b00;
1279 let Inst{24-23} = {?, ?}; // IA: '01', DB: '10'
1280 let Inst{22} = 0;
Bob Wilson815baeb2010-03-13 01:08:20 +00001281 let Inst{21} = 0; // The W bit.
Johnny Chend68e1192009-12-15 17:24:14 +00001282 let Inst{20} = 1; // Load
1283}
Evan Cheng2889cce2009-07-03 00:18:36 +00001284
Bob Wilson815baeb2010-03-13 01:08:20 +00001285def t2LDM_UPD : T2XIt<(outs GPR:$wb), (ins addrmode4:$addr, pred:$p,
1286 reglist:$dsts, variable_ops), IIC_iLoadm,
Bob Wilsonab346052010-03-16 17:46:45 +00001287 "ldm${addr:submode}${p}${addr:wide}\t$addr!, $dsts",
Bob Wilson815baeb2010-03-13 01:08:20 +00001288 "$addr.addr = $wb", []> {
Johnny Chend68e1192009-12-15 17:24:14 +00001289 let Inst{31-27} = 0b11101;
1290 let Inst{26-25} = 0b00;
1291 let Inst{24-23} = {?, ?}; // IA: '01', DB: '10'
1292 let Inst{22} = 0;
Bob Wilson815baeb2010-03-13 01:08:20 +00001293 let Inst{21} = 1; // The W bit.
1294 let Inst{20} = 1; // Load
1295}
Evan Cheng5fd1c9b2010-05-19 06:07:03 +00001296} // mayLoad, neverHasSideEffects, hasExtraDefRegAllocReq
Bob Wilson815baeb2010-03-13 01:08:20 +00001297
Evan Cheng5fd1c9b2010-05-19 06:07:03 +00001298let mayStore = 1, neverHasSideEffects = 1, hasExtraSrcRegAllocReq = 1 in {
Bob Wilson815baeb2010-03-13 01:08:20 +00001299def t2STM : T2XI<(outs), (ins addrmode4:$addr, pred:$p,
1300 reglist:$srcs, variable_ops), IIC_iStorem,
1301 "stm${addr:submode}${p}${addr:wide}\t$addr, $srcs", []> {
1302 let Inst{31-27} = 0b11101;
1303 let Inst{26-25} = 0b00;
1304 let Inst{24-23} = {?, ?}; // IA: '01', DB: '10'
1305 let Inst{22} = 0;
1306 let Inst{21} = 0; // The W bit.
Johnny Chend68e1192009-12-15 17:24:14 +00001307 let Inst{20} = 0; // Store
1308}
Evan Cheng2889cce2009-07-03 00:18:36 +00001309
Bob Wilson815baeb2010-03-13 01:08:20 +00001310def t2STM_UPD : T2XIt<(outs GPR:$wb), (ins addrmode4:$addr, pred:$p,
1311 reglist:$srcs, variable_ops),
1312 IIC_iStorem,
Bob Wilsonab346052010-03-16 17:46:45 +00001313 "stm${addr:submode}${p}${addr:wide}\t$addr!, $srcs",
Bob Wilson815baeb2010-03-13 01:08:20 +00001314 "$addr.addr = $wb", []> {
1315 let Inst{31-27} = 0b11101;
1316 let Inst{26-25} = 0b00;
1317 let Inst{24-23} = {?, ?}; // IA: '01', DB: '10'
1318 let Inst{22} = 0;
1319 let Inst{21} = 1; // The W bit.
1320 let Inst{20} = 0; // Store
1321}
Evan Cheng5fd1c9b2010-05-19 06:07:03 +00001322} // mayStore, neverHasSideEffects, hasExtraSrcRegAllocReq
Bob Wilson815baeb2010-03-13 01:08:20 +00001323
Evan Cheng9cb9e672009-06-27 02:26:13 +00001324//===----------------------------------------------------------------------===//
Anton Korobeynikov52237112009-06-17 18:13:58 +00001325// Move Instructions.
1326//
Anton Korobeynikov52237112009-06-17 18:13:58 +00001327
Evan Chengf49810c2009-06-23 17:48:47 +00001328let neverHasSideEffects = 1 in
David Goodwin5d598aa2009-08-19 18:00:44 +00001329def t2MOVr : T2sI<(outs GPR:$dst), (ins GPR:$src), IIC_iMOVr,
Johnny Chend68e1192009-12-15 17:24:14 +00001330 "mov", ".w\t$dst, $src", []> {
1331 let Inst{31-27} = 0b11101;
1332 let Inst{26-25} = 0b01;
1333 let Inst{24-21} = 0b0010;
1334 let Inst{20} = ?; // The S bit.
1335 let Inst{19-16} = 0b1111; // Rn
1336 let Inst{14-12} = 0b000;
1337 let Inst{7-4} = 0b0000;
1338}
Evan Chengf49810c2009-06-23 17:48:47 +00001339
Evan Cheng5adb66a2009-09-28 09:14:39 +00001340// AddedComplexity to ensure isel tries t2MOVi before t2MOVi16.
1341let isReMaterializable = 1, isAsCheapAsAMove = 1, AddedComplexity = 1 in
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001342def t2MOVi : T2sI<(outs rGPR:$dst), (ins t2_so_imm:$src), IIC_iMOVi,
Evan Cheng699beba2009-10-27 00:08:59 +00001343 "mov", ".w\t$dst, $src",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001344 [(set rGPR:$dst, t2_so_imm:$src)]> {
Johnny Chend68e1192009-12-15 17:24:14 +00001345 let Inst{31-27} = 0b11110;
1346 let Inst{25} = 0;
1347 let Inst{24-21} = 0b0010;
1348 let Inst{20} = ?; // The S bit.
1349 let Inst{19-16} = 0b1111; // Rn
1350 let Inst{15} = 0;
1351}
David Goodwin83b35932009-06-26 16:10:07 +00001352
1353let isReMaterializable = 1, isAsCheapAsAMove = 1 in
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001354def t2MOVi16 : T2I<(outs rGPR:$dst), (ins i32imm:$src), IIC_iMOVi,
Evan Cheng699beba2009-10-27 00:08:59 +00001355 "movw", "\t$dst, $src",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001356 [(set rGPR:$dst, imm0_65535:$src)]> {
Johnny Chend68e1192009-12-15 17:24:14 +00001357 let Inst{31-27} = 0b11110;
1358 let Inst{25} = 1;
1359 let Inst{24-21} = 0b0010;
1360 let Inst{20} = 0; // The S bit.
1361 let Inst{15} = 0;
1362}
Evan Chengf49810c2009-06-23 17:48:47 +00001363
Evan Cheng3850a6a2009-06-23 05:23:49 +00001364let Constraints = "$src = $dst" in
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001365def t2MOVTi16 : T2I<(outs rGPR:$dst), (ins rGPR:$src, i32imm:$imm), IIC_iMOVi,
Evan Cheng699beba2009-10-27 00:08:59 +00001366 "movt", "\t$dst, $imm",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001367 [(set rGPR:$dst,
1368 (or (and rGPR:$src, 0xffff), lo16AllZero:$imm))]> {
Johnny Chend68e1192009-12-15 17:24:14 +00001369 let Inst{31-27} = 0b11110;
1370 let Inst{25} = 1;
1371 let Inst{24-21} = 0b0110;
1372 let Inst{20} = 0; // The S bit.
1373 let Inst{15} = 0;
1374}
Anton Korobeynikov52237112009-06-17 18:13:58 +00001375
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001376def : T2Pat<(or rGPR:$src, 0xffff0000), (t2MOVTi16 rGPR:$src, 0xffff)>;
Evan Cheng20956592009-10-21 08:15:52 +00001377
Anton Korobeynikov52237112009-06-17 18:13:58 +00001378//===----------------------------------------------------------------------===//
Evan Chengd27c9fc2009-07-03 01:43:10 +00001379// Extend Instructions.
1380//
1381
1382// Sign extenders
1383
Johnny Chend68e1192009-12-15 17:24:14 +00001384defm t2SXTB : T2I_unary_rrot<0b100, "sxtb",
1385 UnOpFrag<(sext_inreg node:$Src, i8)>>;
1386defm t2SXTH : T2I_unary_rrot<0b000, "sxth",
1387 UnOpFrag<(sext_inreg node:$Src, i16)>>;
Eli Friedman761fa7a2010-06-24 18:20:04 +00001388defm t2SXTB16 : T2I_unary_rrot_sxtb16<0b010, "sxtb16">;
Evan Chengd27c9fc2009-07-03 01:43:10 +00001389
Johnny Chend68e1192009-12-15 17:24:14 +00001390defm t2SXTAB : T2I_bin_rrot<0b100, "sxtab",
Evan Chengd27c9fc2009-07-03 01:43:10 +00001391 BinOpFrag<(add node:$LHS, (sext_inreg node:$RHS, i8))>>;
Johnny Chend68e1192009-12-15 17:24:14 +00001392defm t2SXTAH : T2I_bin_rrot<0b000, "sxtah",
Evan Chengd27c9fc2009-07-03 01:43:10 +00001393 BinOpFrag<(add node:$LHS, (sext_inreg node:$RHS,i16))>>;
Johnny Chen93042d12010-03-02 18:14:57 +00001394defm t2SXTAB16 : T2I_bin_rrot_DO<0b010, "sxtab16">;
Evan Chengd27c9fc2009-07-03 01:43:10 +00001395
Johnny Chen93042d12010-03-02 18:14:57 +00001396// TODO: SXT(A){B|H}16 - done for disassembly only
Evan Chengd27c9fc2009-07-03 01:43:10 +00001397
1398// Zero extenders
1399
1400let AddedComplexity = 16 in {
Johnny Chend68e1192009-12-15 17:24:14 +00001401defm t2UXTB : T2I_unary_rrot<0b101, "uxtb",
1402 UnOpFrag<(and node:$Src, 0x000000FF)>>;
1403defm t2UXTH : T2I_unary_rrot<0b001, "uxth",
1404 UnOpFrag<(and node:$Src, 0x0000FFFF)>>;
Eli Friedman761fa7a2010-06-24 18:20:04 +00001405defm t2UXTB16 : T2I_unary_rrot_uxtb16<0b011, "uxtb16",
Johnny Chend68e1192009-12-15 17:24:14 +00001406 UnOpFrag<(and node:$Src, 0x00FF00FF)>>;
Evan Chengd27c9fc2009-07-03 01:43:10 +00001407
Jim Grosbach79464942010-07-28 23:17:45 +00001408// FIXME: This pattern incorrectly assumes the shl operator is a rotate.
1409// The transformation should probably be done as a combiner action
1410// instead so we can include a check for masking back in the upper
1411// eight bits of the source into the lower eight bits of the result.
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001412//def : T2Pat<(and (shl rGPR:$Src, (i32 8)), 0xFF00FF),
1413// (t2UXTB16r_rot rGPR:$Src, 24)>, Requires<[HasT2ExtractPack]>;
1414def : T2Pat<(and (srl rGPR:$Src, (i32 8)), 0xFF00FF),
1415 (t2UXTB16r_rot rGPR:$Src, 8)>, Requires<[HasT2ExtractPack]>;
Evan Chengd27c9fc2009-07-03 01:43:10 +00001416
Johnny Chend68e1192009-12-15 17:24:14 +00001417defm t2UXTAB : T2I_bin_rrot<0b101, "uxtab",
Jim Grosbach6935efc2009-11-24 00:20:27 +00001418 BinOpFrag<(add node:$LHS, (and node:$RHS, 0x00FF))>>;
Johnny Chend68e1192009-12-15 17:24:14 +00001419defm t2UXTAH : T2I_bin_rrot<0b001, "uxtah",
Jim Grosbach6935efc2009-11-24 00:20:27 +00001420 BinOpFrag<(add node:$LHS, (and node:$RHS, 0xFFFF))>>;
Johnny Chen93042d12010-03-02 18:14:57 +00001421defm t2UXTAB16 : T2I_bin_rrot_DO<0b011, "uxtab16">;
Evan Chengd27c9fc2009-07-03 01:43:10 +00001422}
1423
1424//===----------------------------------------------------------------------===//
Anton Korobeynikov52237112009-06-17 18:13:58 +00001425// Arithmetic Instructions.
1426//
Anton Korobeynikov52237112009-06-17 18:13:58 +00001427
Johnny Chend68e1192009-12-15 17:24:14 +00001428defm t2ADD : T2I_bin_ii12rs<0b000, "add",
1429 BinOpFrag<(add node:$LHS, node:$RHS)>, 1>;
1430defm t2SUB : T2I_bin_ii12rs<0b101, "sub",
1431 BinOpFrag<(sub node:$LHS, node:$RHS)>>;
Anton Korobeynikov52237112009-06-17 18:13:58 +00001432
Evan Chengf49810c2009-06-23 17:48:47 +00001433// ADD and SUB with 's' bit set. No 12-bit immediate (T4) variants.
Johnny Chend68e1192009-12-15 17:24:14 +00001434defm t2ADDS : T2I_bin_s_irs <0b1000, "add",
1435 BinOpFrag<(addc node:$LHS, node:$RHS)>, 1>;
1436defm t2SUBS : T2I_bin_s_irs <0b1101, "sub",
1437 BinOpFrag<(subc node:$LHS, node:$RHS)>>;
Anton Korobeynikov52237112009-06-17 18:13:58 +00001438
Johnny Chend68e1192009-12-15 17:24:14 +00001439defm t2ADC : T2I_adde_sube_irs<0b1010, "adc",
Jim Grosbach39be8fc2010-02-16 20:42:29 +00001440 BinOpFrag<(adde_dead_carry node:$LHS, node:$RHS)>, 1>;
Johnny Chend68e1192009-12-15 17:24:14 +00001441defm t2SBC : T2I_adde_sube_irs<0b1011, "sbc",
Jim Grosbach39be8fc2010-02-16 20:42:29 +00001442 BinOpFrag<(sube_dead_carry node:$LHS, node:$RHS)>>;
Johnny Chenb5031ad2010-03-02 19:38:59 +00001443defm t2ADCS : T2I_adde_sube_s_irs<0b1010, "adc",
Jim Grosbach39be8fc2010-02-16 20:42:29 +00001444 BinOpFrag<(adde_live_carry node:$LHS, node:$RHS)>, 1>;
Johnny Chenb5031ad2010-03-02 19:38:59 +00001445defm t2SBCS : T2I_adde_sube_s_irs<0b1011, "sbc",
Jim Grosbach39be8fc2010-02-16 20:42:29 +00001446 BinOpFrag<(sube_live_carry node:$LHS, node:$RHS)>>;
Evan Chengf49810c2009-06-23 17:48:47 +00001447
David Goodwin752aa7d2009-07-27 16:39:05 +00001448// RSB
Bob Wilson20d8e4e2010-08-13 23:24:25 +00001449defm t2RSB : T2I_rbin_irs <0b1110, "rsb",
Johnny Chend68e1192009-12-15 17:24:14 +00001450 BinOpFrag<(sub node:$LHS, node:$RHS)>>;
1451defm t2RSBS : T2I_rbin_s_is <0b1110, "rsb",
1452 BinOpFrag<(subc node:$LHS, node:$RHS)>>;
Evan Chengf49810c2009-06-23 17:48:47 +00001453
1454// (sub X, imm) gets canonicalized to (add X, -imm). Match this form.
Jim Grosbach502e0aa2010-07-14 17:45:16 +00001455// The assume-no-carry-in form uses the negation of the input since add/sub
1456// assume opposite meanings of the carry flag (i.e., carry == !borrow).
1457// See the definition of AddWithCarry() in the ARM ARM A2.2.1 for the gory
1458// details.
1459// The AddedComplexity preferences the first variant over the others since
1460// it can be shrunk to a 16-bit wide encoding, while the others cannot.
Evan Chengfa2ea1a2009-08-04 01:41:15 +00001461let AddedComplexity = 1 in
Jim Grosbach502e0aa2010-07-14 17:45:16 +00001462def : T2Pat<(add GPR:$src, imm0_255_neg:$imm),
1463 (t2SUBri GPR:$src, imm0_255_neg:$imm)>;
1464def : T2Pat<(add GPR:$src, t2_so_imm_neg:$imm),
1465 (t2SUBri GPR:$src, t2_so_imm_neg:$imm)>;
1466def : T2Pat<(add GPR:$src, imm0_4095_neg:$imm),
1467 (t2SUBri12 GPR:$src, imm0_4095_neg:$imm)>;
1468let AddedComplexity = 1 in
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001469def : T2Pat<(addc rGPR:$src, imm0_255_neg:$imm),
1470 (t2SUBSri rGPR:$src, imm0_255_neg:$imm)>;
1471def : T2Pat<(addc rGPR:$src, t2_so_imm_neg:$imm),
1472 (t2SUBSri rGPR:$src, t2_so_imm_neg:$imm)>;
Jim Grosbach502e0aa2010-07-14 17:45:16 +00001473// The with-carry-in form matches bitwise not instead of the negation.
1474// Effectively, the inverse interpretation of the carry flag already accounts
1475// for part of the negation.
1476let AddedComplexity = 1 in
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001477def : T2Pat<(adde rGPR:$src, imm0_255_not:$imm),
1478 (t2SBCSri rGPR:$src, imm0_255_not:$imm)>;
1479def : T2Pat<(adde rGPR:$src, t2_so_imm_not:$imm),
1480 (t2SBCSri rGPR:$src, t2_so_imm_not:$imm)>;
Anton Korobeynikov52237112009-06-17 18:13:58 +00001481
Johnny Chen93042d12010-03-02 18:14:57 +00001482// Select Bytes -- for disassembly only
1483
1484def t2SEL : T2I<(outs GPR:$dst), (ins GPR:$a, GPR:$b), NoItinerary, "sel",
1485 "\t$dst, $a, $b", []> {
1486 let Inst{31-27} = 0b11111;
1487 let Inst{26-24} = 0b010;
1488 let Inst{23} = 0b1;
1489 let Inst{22-20} = 0b010;
1490 let Inst{15-12} = 0b1111;
1491 let Inst{7} = 0b1;
1492 let Inst{6-4} = 0b000;
1493}
1494
Johnny Chenadc77332010-02-26 22:04:29 +00001495// A6.3.13, A6.3.14, A6.3.15 Parallel addition and subtraction (signed/unsigned)
1496// And Miscellaneous operations -- for disassembly only
Nate Begeman692433b2010-07-29 17:56:55 +00001497class T2I_pam<bits<3> op22_20, bits<4> op7_4, string opc,
1498 list<dag> pat = [/* For disassembly only; pattern left blank */]>
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001499 : T2I<(outs rGPR:$dst), (ins rGPR:$a, rGPR:$b), NoItinerary, opc,
Nate Begeman692433b2010-07-29 17:56:55 +00001500 "\t$dst, $a, $b", pat> {
Johnny Chenadc77332010-02-26 22:04:29 +00001501 let Inst{31-27} = 0b11111;
1502 let Inst{26-23} = 0b0101;
1503 let Inst{22-20} = op22_20;
1504 let Inst{15-12} = 0b1111;
1505 let Inst{7-4} = op7_4;
1506}
1507
1508// Saturating add/subtract -- for disassembly only
1509
Nate Begeman692433b2010-07-29 17:56:55 +00001510def t2QADD : T2I_pam<0b000, 0b1000, "qadd",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001511 [(set rGPR:$dst, (int_arm_qadd rGPR:$a, rGPR:$b))]>;
Johnny Chenadc77332010-02-26 22:04:29 +00001512def t2QADD16 : T2I_pam<0b001, 0b0001, "qadd16">;
1513def t2QADD8 : T2I_pam<0b000, 0b0001, "qadd8">;
1514def t2QASX : T2I_pam<0b010, 0b0001, "qasx">;
1515def t2QDADD : T2I_pam<0b000, 0b1001, "qdadd">;
1516def t2QDSUB : T2I_pam<0b000, 0b1011, "qdsub">;
1517def t2QSAX : T2I_pam<0b110, 0b0001, "qsax">;
Nate Begeman692433b2010-07-29 17:56:55 +00001518def t2QSUB : T2I_pam<0b000, 0b1010, "qsub",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001519 [(set rGPR:$dst, (int_arm_qsub rGPR:$a, rGPR:$b))]>;
Johnny Chenadc77332010-02-26 22:04:29 +00001520def t2QSUB16 : T2I_pam<0b101, 0b0001, "qsub16">;
1521def t2QSUB8 : T2I_pam<0b100, 0b0001, "qsub8">;
1522def t2UQADD16 : T2I_pam<0b001, 0b0101, "uqadd16">;
1523def t2UQADD8 : T2I_pam<0b000, 0b0101, "uqadd8">;
1524def t2UQASX : T2I_pam<0b010, 0b0101, "uqasx">;
1525def t2UQSAX : T2I_pam<0b110, 0b0101, "uqsax">;
1526def t2UQSUB16 : T2I_pam<0b101, 0b0101, "uqsub16">;
1527def t2UQSUB8 : T2I_pam<0b100, 0b0101, "uqsub8">;
1528
1529// Signed/Unsigned add/subtract -- for disassembly only
1530
1531def t2SASX : T2I_pam<0b010, 0b0000, "sasx">;
1532def t2SADD16 : T2I_pam<0b001, 0b0000, "sadd16">;
1533def t2SADD8 : T2I_pam<0b000, 0b0000, "sadd8">;
1534def t2SSAX : T2I_pam<0b110, 0b0000, "ssax">;
1535def t2SSUB16 : T2I_pam<0b101, 0b0000, "ssub16">;
1536def t2SSUB8 : T2I_pam<0b100, 0b0000, "ssub8">;
1537def t2UASX : T2I_pam<0b010, 0b0100, "uasx">;
1538def t2UADD16 : T2I_pam<0b001, 0b0100, "uadd16">;
1539def t2UADD8 : T2I_pam<0b000, 0b0100, "uadd8">;
1540def t2USAX : T2I_pam<0b110, 0b0100, "usax">;
1541def t2USUB16 : T2I_pam<0b101, 0b0100, "usub16">;
1542def t2USUB8 : T2I_pam<0b100, 0b0100, "usub8">;
1543
1544// Signed/Unsigned halving add/subtract -- for disassembly only
1545
1546def t2SHASX : T2I_pam<0b010, 0b0010, "shasx">;
1547def t2SHADD16 : T2I_pam<0b001, 0b0010, "shadd16">;
1548def t2SHADD8 : T2I_pam<0b000, 0b0010, "shadd8">;
1549def t2SHSAX : T2I_pam<0b110, 0b0010, "shsax">;
1550def t2SHSUB16 : T2I_pam<0b101, 0b0010, "shsub16">;
1551def t2SHSUB8 : T2I_pam<0b100, 0b0010, "shsub8">;
1552def t2UHASX : T2I_pam<0b010, 0b0110, "uhasx">;
1553def t2UHADD16 : T2I_pam<0b001, 0b0110, "uhadd16">;
1554def t2UHADD8 : T2I_pam<0b000, 0b0110, "uhadd8">;
1555def t2UHSAX : T2I_pam<0b110, 0b0110, "uhsax">;
1556def t2UHSUB16 : T2I_pam<0b101, 0b0110, "uhsub16">;
1557def t2UHSUB8 : T2I_pam<0b100, 0b0110, "uhsub8">;
1558
1559// Unsigned Sum of Absolute Differences [and Accumulate] -- for disassembly only
1560
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001561def t2USAD8 : T2I_mac<0, 0b111, 0b0000, (outs rGPR:$dst),
1562 (ins rGPR:$a, rGPR:$b),
Johnny Chenadc77332010-02-26 22:04:29 +00001563 NoItinerary, "usad8", "\t$dst, $a, $b", []> {
1564 let Inst{15-12} = 0b1111;
1565}
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001566def t2USADA8 : T2I_mac<0, 0b111, 0b0000, (outs rGPR:$dst),
1567 (ins rGPR:$a, rGPR:$b, rGPR:$acc), NoItinerary, "usada8",
Johnny Chenadc77332010-02-26 22:04:29 +00001568 "\t$dst, $a, $b, $acc", []>;
1569
1570// Signed/Unsigned saturate -- for disassembly only
1571
Bob Wilson22f5dc72010-08-16 18:27:34 +00001572def t2SSAT: T2I<(outs rGPR:$dst), (ins i32imm:$bit_pos, rGPR:$a, shift_imm:$sh),
Bob Wilson38aa2872010-08-13 21:48:10 +00001573 NoItinerary, "ssat", "\t$dst, $bit_pos, $a$sh",
1574 [/* For disassembly only; pattern left blank */]> {
Johnny Chenadc77332010-02-26 22:04:29 +00001575 let Inst{31-27} = 0b11110;
1576 let Inst{25-22} = 0b1100;
1577 let Inst{20} = 0;
1578 let Inst{15} = 0;
Johnny Chenadc77332010-02-26 22:04:29 +00001579}
1580
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001581def t2SSAT16: T2I<(outs rGPR:$dst), (ins i32imm:$bit_pos, rGPR:$a), NoItinerary,
Johnny Chenadc77332010-02-26 22:04:29 +00001582 "ssat16", "\t$dst, $bit_pos, $a",
1583 [/* For disassembly only; pattern left blank */]> {
1584 let Inst{31-27} = 0b11110;
1585 let Inst{25-22} = 0b1100;
1586 let Inst{20} = 0;
1587 let Inst{15} = 0;
1588 let Inst{21} = 1; // sh = '1'
1589 let Inst{14-12} = 0b000; // imm3 = '000'
1590 let Inst{7-6} = 0b00; // imm2 = '00'
1591}
1592
Bob Wilson22f5dc72010-08-16 18:27:34 +00001593def t2USAT: T2I<(outs rGPR:$dst), (ins i32imm:$bit_pos, rGPR:$a, shift_imm:$sh),
Bob Wilson38aa2872010-08-13 21:48:10 +00001594 NoItinerary, "usat", "\t$dst, $bit_pos, $a$sh",
1595 [/* For disassembly only; pattern left blank */]> {
Johnny Chenadc77332010-02-26 22:04:29 +00001596 let Inst{31-27} = 0b11110;
1597 let Inst{25-22} = 0b1110;
1598 let Inst{20} = 0;
1599 let Inst{15} = 0;
Johnny Chenadc77332010-02-26 22:04:29 +00001600}
1601
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001602def t2USAT16: T2I<(outs rGPR:$dst), (ins i32imm:$bit_pos, rGPR:$a), NoItinerary,
Johnny Chenadc77332010-02-26 22:04:29 +00001603 "usat16", "\t$dst, $bit_pos, $a",
1604 [/* For disassembly only; pattern left blank */]> {
1605 let Inst{31-27} = 0b11110;
1606 let Inst{25-22} = 0b1110;
1607 let Inst{20} = 0;
1608 let Inst{15} = 0;
1609 let Inst{21} = 1; // sh = '1'
1610 let Inst{14-12} = 0b000; // imm3 = '000'
1611 let Inst{7-6} = 0b00; // imm2 = '00'
1612}
Anton Korobeynikov52237112009-06-17 18:13:58 +00001613
Bob Wilson38aa2872010-08-13 21:48:10 +00001614def : T2Pat<(int_arm_ssat GPR:$a, imm:$pos), (t2SSAT imm:$pos, GPR:$a, 0)>;
1615def : T2Pat<(int_arm_usat GPR:$a, imm:$pos), (t2USAT imm:$pos, GPR:$a, 0)>;
Nate Begeman0e0a20e2010-07-29 22:48:09 +00001616
Evan Chengf49810c2009-06-23 17:48:47 +00001617//===----------------------------------------------------------------------===//
Evan Chenga67efd12009-06-23 19:39:13 +00001618// Shift and rotate Instructions.
1619//
1620
Johnny Chend68e1192009-12-15 17:24:14 +00001621defm t2LSL : T2I_sh_ir<0b00, "lsl", BinOpFrag<(shl node:$LHS, node:$RHS)>>;
1622defm t2LSR : T2I_sh_ir<0b01, "lsr", BinOpFrag<(srl node:$LHS, node:$RHS)>>;
1623defm t2ASR : T2I_sh_ir<0b10, "asr", BinOpFrag<(sra node:$LHS, node:$RHS)>>;
1624defm t2ROR : T2I_sh_ir<0b11, "ror", BinOpFrag<(rotr node:$LHS, node:$RHS)>>;
Evan Chenga67efd12009-06-23 19:39:13 +00001625
David Goodwinca01a8d2009-09-01 18:32:09 +00001626let Uses = [CPSR] in {
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001627def t2MOVrx : T2sI<(outs rGPR:$dst), (ins rGPR:$src), IIC_iMOVsi,
Evan Cheng699beba2009-10-27 00:08:59 +00001628 "rrx", "\t$dst, $src",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001629 [(set rGPR:$dst, (ARMrrx rGPR:$src))]> {
Johnny Chend68e1192009-12-15 17:24:14 +00001630 let Inst{31-27} = 0b11101;
1631 let Inst{26-25} = 0b01;
1632 let Inst{24-21} = 0b0010;
1633 let Inst{20} = ?; // The S bit.
1634 let Inst{19-16} = 0b1111; // Rn
1635 let Inst{14-12} = 0b000;
1636 let Inst{7-4} = 0b0011;
1637}
David Goodwinca01a8d2009-09-01 18:32:09 +00001638}
Evan Chenga67efd12009-06-23 19:39:13 +00001639
David Goodwin3583df72009-07-28 17:06:49 +00001640let Defs = [CPSR] in {
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001641def t2MOVsrl_flag : T2I<(outs rGPR:$dst), (ins rGPR:$src), IIC_iMOVsi,
Bob Wilsona85df802010-05-25 04:51:47 +00001642 "lsrs", ".w\t$dst, $src, #1",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001643 [(set rGPR:$dst, (ARMsrl_flag rGPR:$src))]> {
Johnny Chend68e1192009-12-15 17:24:14 +00001644 let Inst{31-27} = 0b11101;
1645 let Inst{26-25} = 0b01;
1646 let Inst{24-21} = 0b0010;
1647 let Inst{20} = 1; // The S bit.
1648 let Inst{19-16} = 0b1111; // Rn
1649 let Inst{5-4} = 0b01; // Shift type.
1650 // Shift amount = Inst{14-12:7-6} = 1.
1651 let Inst{14-12} = 0b000;
1652 let Inst{7-6} = 0b01;
1653}
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001654def t2MOVsra_flag : T2I<(outs rGPR:$dst), (ins rGPR:$src), IIC_iMOVsi,
Bob Wilsona85df802010-05-25 04:51:47 +00001655 "asrs", ".w\t$dst, $src, #1",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001656 [(set rGPR:$dst, (ARMsra_flag rGPR:$src))]> {
Johnny Chend68e1192009-12-15 17:24:14 +00001657 let Inst{31-27} = 0b11101;
1658 let Inst{26-25} = 0b01;
1659 let Inst{24-21} = 0b0010;
1660 let Inst{20} = 1; // The S bit.
1661 let Inst{19-16} = 0b1111; // Rn
1662 let Inst{5-4} = 0b10; // Shift type.
1663 // Shift amount = Inst{14-12:7-6} = 1.
1664 let Inst{14-12} = 0b000;
1665 let Inst{7-6} = 0b01;
1666}
David Goodwin3583df72009-07-28 17:06:49 +00001667}
1668
Evan Chenga67efd12009-06-23 19:39:13 +00001669//===----------------------------------------------------------------------===//
Evan Chengf49810c2009-06-23 17:48:47 +00001670// Bitwise Instructions.
1671//
Anton Korobeynikov52237112009-06-17 18:13:58 +00001672
Johnny Chend68e1192009-12-15 17:24:14 +00001673defm t2AND : T2I_bin_w_irs<0b0000, "and",
1674 BinOpFrag<(and node:$LHS, node:$RHS)>, 1>;
1675defm t2ORR : T2I_bin_w_irs<0b0010, "orr",
1676 BinOpFrag<(or node:$LHS, node:$RHS)>, 1>;
1677defm t2EOR : T2I_bin_w_irs<0b0100, "eor",
1678 BinOpFrag<(xor node:$LHS, node:$RHS)>, 1>;
Evan Chengf49810c2009-06-23 17:48:47 +00001679
Johnny Chend68e1192009-12-15 17:24:14 +00001680defm t2BIC : T2I_bin_w_irs<0b0001, "bic",
1681 BinOpFrag<(and node:$LHS, (not node:$RHS))>>;
Evan Chengf49810c2009-06-23 17:48:47 +00001682
Bill Wendling4822bce2010-08-30 01:47:35 +00001683//let Defs = [CPSR] in
Bill Wendling1f7bf0e2010-08-29 03:55:31 +00001684defm t2ANDS : T2I_bin_sw_irs<0b0000, "and",
1685 BinOpFrag<(ARMand node:$LHS, node:$RHS)>, 1>;
Bill Wendling0b4aa7d2010-08-29 03:02:11 +00001686
Evan Chengf49810c2009-06-23 17:48:47 +00001687let Constraints = "$src = $dst" in
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001688def t2BFC : T2I<(outs rGPR:$dst), (ins rGPR:$src, bf_inv_mask_imm:$imm),
David Goodwin2f54a2f2009-11-02 17:28:36 +00001689 IIC_iUNAsi, "bfc", "\t$dst, $imm",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001690 [(set rGPR:$dst, (and rGPR:$src, bf_inv_mask_imm:$imm))]> {
Johnny Chend68e1192009-12-15 17:24:14 +00001691 let Inst{31-27} = 0b11110;
1692 let Inst{25} = 1;
1693 let Inst{24-20} = 0b10110;
1694 let Inst{19-16} = 0b1111; // Rn
1695 let Inst{15} = 0;
1696}
Evan Chengf49810c2009-06-23 17:48:47 +00001697
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001698def t2SBFX: T2I<(outs rGPR:$dst), (ins rGPR:$src, imm0_31:$lsb, imm0_31:$width),
Johnny Chend68e1192009-12-15 17:24:14 +00001699 IIC_iALUi, "sbfx", "\t$dst, $src, $lsb, $width", []> {
1700 let Inst{31-27} = 0b11110;
1701 let Inst{25} = 1;
1702 let Inst{24-20} = 0b10100;
1703 let Inst{15} = 0;
1704}
Sandeep Patel47eedaa2009-10-13 18:59:48 +00001705
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001706def t2UBFX: T2I<(outs rGPR:$dst), (ins rGPR:$src, imm0_31:$lsb, imm0_31:$width),
Johnny Chend68e1192009-12-15 17:24:14 +00001707 IIC_iALUi, "ubfx", "\t$dst, $src, $lsb, $width", []> {
1708 let Inst{31-27} = 0b11110;
1709 let Inst{25} = 1;
1710 let Inst{24-20} = 0b11100;
1711 let Inst{15} = 0;
1712}
Sandeep Patel47eedaa2009-10-13 18:59:48 +00001713
Johnny Chen9474d552010-02-02 19:31:58 +00001714// A8.6.18 BFI - Bitfield insert (Encoding T1)
Jim Grosbach469bbdb2010-07-16 23:05:05 +00001715let Constraints = "$src = $dst" in
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001716def t2BFI : T2I<(outs rGPR:$dst),
1717 (ins rGPR:$src, rGPR:$val, bf_inv_mask_imm:$imm),
Jim Grosbach469bbdb2010-07-16 23:05:05 +00001718 IIC_iALUi, "bfi", "\t$dst, $val, $imm",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001719 [(set rGPR:$dst, (ARMbfi rGPR:$src, rGPR:$val,
Jim Grosbach469bbdb2010-07-16 23:05:05 +00001720 bf_inv_mask_imm:$imm))]> {
Johnny Chen9474d552010-02-02 19:31:58 +00001721 let Inst{31-27} = 0b11110;
1722 let Inst{25} = 1;
1723 let Inst{24-20} = 0b10110;
1724 let Inst{15} = 0;
1725}
Evan Chengf49810c2009-06-23 17:48:47 +00001726
Johnny Chend68e1192009-12-15 17:24:14 +00001727defm t2ORN : T2I_bin_irs<0b0011, "orn", BinOpFrag<(or node:$LHS,
Bill Wendling4822bce2010-08-30 01:47:35 +00001728 (not node:$RHS))>, 0, "">;
Evan Cheng36a0aeb2009-07-06 22:23:46 +00001729
1730// Prefer over of t2EORri ra, rb, -1 because mvn has 16-bit version
1731let AddedComplexity = 1 in
Johnny Chend68e1192009-12-15 17:24:14 +00001732defm t2MVN : T2I_un_irs <0b0011, "mvn", UnOpFrag<(not node:$Src)>, 1, 1>;
Evan Cheng36a0aeb2009-07-06 22:23:46 +00001733
1734
Jim Grosbachf084a5e2010-07-20 16:07:04 +00001735let AddedComplexity = 1 in
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001736def : T2Pat<(and rGPR:$src, t2_so_imm_not:$imm),
1737 (t2BICri rGPR:$src, t2_so_imm_not:$imm)>;
Evan Cheng36a0aeb2009-07-06 22:23:46 +00001738
Evan Cheng25f7cfc2009-08-01 06:13:52 +00001739// FIXME: Disable this pattern on Darwin to workaround an assembler bug.
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001740def : T2Pat<(or rGPR:$src, t2_so_imm_not:$imm),
1741 (t2ORNri rGPR:$src, t2_so_imm_not:$imm)>,
Evan Chengea253b92009-08-12 01:56:42 +00001742 Requires<[IsThumb2]>;
Evan Cheng36a0aeb2009-07-06 22:23:46 +00001743
1744def : T2Pat<(t2_so_imm_not:$src),
1745 (t2MVNi t2_so_imm_not:$src)>;
1746
Evan Chengf49810c2009-06-23 17:48:47 +00001747//===----------------------------------------------------------------------===//
1748// Multiply Instructions.
1749//
Evan Cheng8de898a2009-06-26 00:19:44 +00001750let isCommutable = 1 in
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001751def t2MUL: T2I<(outs rGPR:$dst), (ins rGPR:$a, rGPR:$b), IIC_iMUL32,
Evan Cheng699beba2009-10-27 00:08:59 +00001752 "mul", "\t$dst, $a, $b",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001753 [(set rGPR:$dst, (mul rGPR:$a, rGPR:$b))]> {
Johnny Chend68e1192009-12-15 17:24:14 +00001754 let Inst{31-27} = 0b11111;
1755 let Inst{26-23} = 0b0110;
1756 let Inst{22-20} = 0b000;
1757 let Inst{15-12} = 0b1111; // Ra = 0b1111 (no accumulate)
1758 let Inst{7-4} = 0b0000; // Multiply
1759}
Evan Chengf49810c2009-06-23 17:48:47 +00001760
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001761def t2MLA: T2I<(outs rGPR:$dst), (ins rGPR:$a, rGPR:$b, rGPR:$c), IIC_iMAC32,
Evan Cheng699beba2009-10-27 00:08:59 +00001762 "mla", "\t$dst, $a, $b, $c",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001763 [(set rGPR:$dst, (add (mul rGPR:$a, rGPR:$b), rGPR:$c))]> {
Johnny Chend68e1192009-12-15 17:24:14 +00001764 let Inst{31-27} = 0b11111;
1765 let Inst{26-23} = 0b0110;
1766 let Inst{22-20} = 0b000;
1767 let Inst{15-12} = {?, ?, ?, ?}; // Ra
1768 let Inst{7-4} = 0b0000; // Multiply
1769}
Evan Chengf49810c2009-06-23 17:48:47 +00001770
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001771def t2MLS: T2I<(outs rGPR:$dst), (ins rGPR:$a, rGPR:$b, rGPR:$c), IIC_iMAC32,
Evan Cheng699beba2009-10-27 00:08:59 +00001772 "mls", "\t$dst, $a, $b, $c",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001773 [(set rGPR:$dst, (sub rGPR:$c, (mul rGPR:$a, rGPR:$b)))]> {
Johnny Chend68e1192009-12-15 17:24:14 +00001774 let Inst{31-27} = 0b11111;
1775 let Inst{26-23} = 0b0110;
1776 let Inst{22-20} = 0b000;
1777 let Inst{15-12} = {?, ?, ?, ?}; // Ra
1778 let Inst{7-4} = 0b0001; // Multiply and Subtract
1779}
Evan Chengf49810c2009-06-23 17:48:47 +00001780
Evan Cheng5b9fcd12009-07-07 01:17:28 +00001781// Extra precision multiplies with low / high results
1782let neverHasSideEffects = 1 in {
1783let isCommutable = 1 in {
Jim Grosbachc5ed0132010-08-17 18:39:16 +00001784def t2SMULL : T2I<(outs rGPR:$ldst, rGPR:$hdst),
1785 (ins rGPR:$a, rGPR:$b), IIC_iMUL64,
Johnny Chend68e1192009-12-15 17:24:14 +00001786 "smull", "\t$ldst, $hdst, $a, $b", []> {
1787 let Inst{31-27} = 0b11111;
1788 let Inst{26-23} = 0b0111;
1789 let Inst{22-20} = 0b000;
1790 let Inst{7-4} = 0b0000;
1791}
Evan Cheng5b9fcd12009-07-07 01:17:28 +00001792
Jim Grosbachc5ed0132010-08-17 18:39:16 +00001793def t2UMULL : T2I<(outs rGPR:$ldst, rGPR:$hdst),
1794 (ins rGPR:$a, rGPR:$b), IIC_iMUL64,
Johnny Chend68e1192009-12-15 17:24:14 +00001795 "umull", "\t$ldst, $hdst, $a, $b", []> {
1796 let Inst{31-27} = 0b11111;
1797 let Inst{26-23} = 0b0111;
1798 let Inst{22-20} = 0b010;
1799 let Inst{7-4} = 0b0000;
Evan Cheng5b9fcd12009-07-07 01:17:28 +00001800}
Johnny Chend68e1192009-12-15 17:24:14 +00001801} // isCommutable
Evan Cheng5b9fcd12009-07-07 01:17:28 +00001802
1803// Multiply + accumulate
Jim Grosbachc5ed0132010-08-17 18:39:16 +00001804def t2SMLAL : T2I<(outs rGPR:$ldst, rGPR:$hdst),
1805 (ins rGPR:$a, rGPR:$b), IIC_iMAC64,
Johnny Chend68e1192009-12-15 17:24:14 +00001806 "smlal", "\t$ldst, $hdst, $a, $b", []>{
1807 let Inst{31-27} = 0b11111;
1808 let Inst{26-23} = 0b0111;
1809 let Inst{22-20} = 0b100;
1810 let Inst{7-4} = 0b0000;
1811}
Evan Cheng5b9fcd12009-07-07 01:17:28 +00001812
Jim Grosbachc5ed0132010-08-17 18:39:16 +00001813def t2UMLAL : T2I<(outs rGPR:$ldst, rGPR:$hdst),
1814 (ins rGPR:$a, rGPR:$b), IIC_iMAC64,
Johnny Chend68e1192009-12-15 17:24:14 +00001815 "umlal", "\t$ldst, $hdst, $a, $b", []>{
1816 let Inst{31-27} = 0b11111;
1817 let Inst{26-23} = 0b0111;
1818 let Inst{22-20} = 0b110;
1819 let Inst{7-4} = 0b0000;
1820}
Evan Cheng5b9fcd12009-07-07 01:17:28 +00001821
Jim Grosbachc5ed0132010-08-17 18:39:16 +00001822def t2UMAAL : T2I<(outs rGPR:$ldst, rGPR:$hdst),
1823 (ins rGPR:$a, rGPR:$b), IIC_iMAC64,
Johnny Chend68e1192009-12-15 17:24:14 +00001824 "umaal", "\t$ldst, $hdst, $a, $b", []>{
1825 let Inst{31-27} = 0b11111;
1826 let Inst{26-23} = 0b0111;
1827 let Inst{22-20} = 0b110;
1828 let Inst{7-4} = 0b0110;
1829}
Evan Cheng5b9fcd12009-07-07 01:17:28 +00001830} // neverHasSideEffects
1831
Johnny Chen93042d12010-03-02 18:14:57 +00001832// Rounding variants of the below included for disassembly only
1833
Evan Cheng5b9fcd12009-07-07 01:17:28 +00001834// Most significant word multiply
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001835def t2SMMUL : T2I<(outs rGPR:$dst), (ins rGPR:$a, rGPR:$b), IIC_iMUL32,
Evan Cheng699beba2009-10-27 00:08:59 +00001836 "smmul", "\t$dst, $a, $b",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001837 [(set rGPR:$dst, (mulhs rGPR:$a, rGPR:$b))]> {
Johnny Chend68e1192009-12-15 17:24:14 +00001838 let Inst{31-27} = 0b11111;
1839 let Inst{26-23} = 0b0110;
1840 let Inst{22-20} = 0b101;
1841 let Inst{15-12} = 0b1111; // Ra = 0b1111 (no accumulate)
1842 let Inst{7-4} = 0b0000; // No Rounding (Inst{4} = 0)
1843}
Evan Cheng5b9fcd12009-07-07 01:17:28 +00001844
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001845def t2SMMULR : T2I<(outs rGPR:$dst), (ins rGPR:$a, rGPR:$b), IIC_iMUL32,
Johnny Chen93042d12010-03-02 18:14:57 +00001846 "smmulr", "\t$dst, $a, $b", []> {
1847 let Inst{31-27} = 0b11111;
1848 let Inst{26-23} = 0b0110;
1849 let Inst{22-20} = 0b101;
1850 let Inst{15-12} = 0b1111; // Ra = 0b1111 (no accumulate)
1851 let Inst{7-4} = 0b0001; // Rounding (Inst{4} = 1)
1852}
1853
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001854def t2SMMLA : T2I<(outs rGPR:$dst), (ins rGPR:$a, rGPR:$b, rGPR:$c), IIC_iMAC32,
Evan Cheng699beba2009-10-27 00:08:59 +00001855 "smmla", "\t$dst, $a, $b, $c",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001856 [(set rGPR:$dst, (add (mulhs rGPR:$a, rGPR:$b), rGPR:$c))]> {
Johnny Chend68e1192009-12-15 17:24:14 +00001857 let Inst{31-27} = 0b11111;
1858 let Inst{26-23} = 0b0110;
1859 let Inst{22-20} = 0b101;
1860 let Inst{15-12} = {?, ?, ?, ?}; // Ra
1861 let Inst{7-4} = 0b0000; // No Rounding (Inst{4} = 0)
1862}
Evan Cheng5b9fcd12009-07-07 01:17:28 +00001863
Jim Grosbachc5ed0132010-08-17 18:39:16 +00001864def t2SMMLAR: T2I<(outs rGPR:$dst), (ins rGPR:$a, rGPR:$b, rGPR:$c), IIC_iMAC32,
Johnny Chen93042d12010-03-02 18:14:57 +00001865 "smmlar", "\t$dst, $a, $b, $c", []> {
1866 let Inst{31-27} = 0b11111;
1867 let Inst{26-23} = 0b0110;
1868 let Inst{22-20} = 0b101;
1869 let Inst{15-12} = {?, ?, ?, ?}; // Ra
1870 let Inst{7-4} = 0b0001; // Rounding (Inst{4} = 1)
1871}
Evan Cheng5b9fcd12009-07-07 01:17:28 +00001872
Jim Grosbachc5ed0132010-08-17 18:39:16 +00001873def t2SMMLS: T2I <(outs rGPR:$dst), (ins rGPR:$a, rGPR:$b, rGPR:$c), IIC_iMAC32,
Evan Cheng699beba2009-10-27 00:08:59 +00001874 "smmls", "\t$dst, $a, $b, $c",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001875 [(set rGPR:$dst, (sub rGPR:$c, (mulhs rGPR:$a, rGPR:$b)))]> {
Johnny Chend68e1192009-12-15 17:24:14 +00001876 let Inst{31-27} = 0b11111;
1877 let Inst{26-23} = 0b0110;
1878 let Inst{22-20} = 0b110;
1879 let Inst{15-12} = {?, ?, ?, ?}; // Ra
1880 let Inst{7-4} = 0b0000; // No Rounding (Inst{4} = 0)
1881}
Evan Cheng5b9fcd12009-07-07 01:17:28 +00001882
Jim Grosbachc5ed0132010-08-17 18:39:16 +00001883def t2SMMLSR:T2I <(outs rGPR:$dst), (ins rGPR:$a, rGPR:$b, rGPR:$c), IIC_iMAC32,
Johnny Chen93042d12010-03-02 18:14:57 +00001884 "smmlsr", "\t$dst, $a, $b, $c", []> {
1885 let Inst{31-27} = 0b11111;
1886 let Inst{26-23} = 0b0110;
1887 let Inst{22-20} = 0b110;
1888 let Inst{15-12} = {?, ?, ?, ?}; // Ra
1889 let Inst{7-4} = 0b0001; // Rounding (Inst{4} = 1)
1890}
1891
Evan Cheng5b9fcd12009-07-07 01:17:28 +00001892multiclass T2I_smul<string opc, PatFrag opnode> {
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001893 def BB : T2I<(outs rGPR:$dst), (ins rGPR:$a, rGPR:$b), IIC_iMUL32,
Evan Cheng699beba2009-10-27 00:08:59 +00001894 !strconcat(opc, "bb"), "\t$dst, $a, $b",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001895 [(set rGPR:$dst, (opnode (sext_inreg rGPR:$a, i16),
1896 (sext_inreg rGPR:$b, i16)))]> {
Johnny Chend68e1192009-12-15 17:24:14 +00001897 let Inst{31-27} = 0b11111;
1898 let Inst{26-23} = 0b0110;
1899 let Inst{22-20} = 0b001;
1900 let Inst{15-12} = 0b1111; // Ra = 0b1111 (no accumulate)
1901 let Inst{7-6} = 0b00;
1902 let Inst{5-4} = 0b00;
1903 }
Evan Cheng5b9fcd12009-07-07 01:17:28 +00001904
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001905 def BT : T2I<(outs rGPR:$dst), (ins rGPR:$a, rGPR:$b), IIC_iMUL32,
Evan Cheng699beba2009-10-27 00:08:59 +00001906 !strconcat(opc, "bt"), "\t$dst, $a, $b",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001907 [(set rGPR:$dst, (opnode (sext_inreg rGPR:$a, i16),
1908 (sra rGPR:$b, (i32 16))))]> {
Johnny Chend68e1192009-12-15 17:24:14 +00001909 let Inst{31-27} = 0b11111;
1910 let Inst{26-23} = 0b0110;
1911 let Inst{22-20} = 0b001;
1912 let Inst{15-12} = 0b1111; // Ra = 0b1111 (no accumulate)
1913 let Inst{7-6} = 0b00;
1914 let Inst{5-4} = 0b01;
1915 }
Evan Cheng5b9fcd12009-07-07 01:17:28 +00001916
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001917 def TB : T2I<(outs rGPR:$dst), (ins rGPR:$a, rGPR:$b), IIC_iMUL32,
Evan Cheng699beba2009-10-27 00:08:59 +00001918 !strconcat(opc, "tb"), "\t$dst, $a, $b",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001919 [(set rGPR:$dst, (opnode (sra rGPR:$a, (i32 16)),
1920 (sext_inreg rGPR:$b, i16)))]> {
Johnny Chend68e1192009-12-15 17:24:14 +00001921 let Inst{31-27} = 0b11111;
1922 let Inst{26-23} = 0b0110;
1923 let Inst{22-20} = 0b001;
1924 let Inst{15-12} = 0b1111; // Ra = 0b1111 (no accumulate)
1925 let Inst{7-6} = 0b00;
1926 let Inst{5-4} = 0b10;
1927 }
Evan Cheng5b9fcd12009-07-07 01:17:28 +00001928
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001929 def TT : T2I<(outs rGPR:$dst), (ins rGPR:$a, rGPR:$b), IIC_iMUL32,
Evan Cheng699beba2009-10-27 00:08:59 +00001930 !strconcat(opc, "tt"), "\t$dst, $a, $b",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001931 [(set rGPR:$dst, (opnode (sra rGPR:$a, (i32 16)),
1932 (sra rGPR:$b, (i32 16))))]> {
Johnny Chend68e1192009-12-15 17:24:14 +00001933 let Inst{31-27} = 0b11111;
1934 let Inst{26-23} = 0b0110;
1935 let Inst{22-20} = 0b001;
1936 let Inst{15-12} = 0b1111; // Ra = 0b1111 (no accumulate)
1937 let Inst{7-6} = 0b00;
1938 let Inst{5-4} = 0b11;
1939 }
Evan Cheng5b9fcd12009-07-07 01:17:28 +00001940
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001941 def WB : T2I<(outs rGPR:$dst), (ins rGPR:$a, rGPR:$b), IIC_iMUL16,
Evan Cheng699beba2009-10-27 00:08:59 +00001942 !strconcat(opc, "wb"), "\t$dst, $a, $b",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001943 [(set rGPR:$dst, (sra (opnode rGPR:$a,
1944 (sext_inreg rGPR:$b, i16)), (i32 16)))]> {
Johnny Chend68e1192009-12-15 17:24:14 +00001945 let Inst{31-27} = 0b11111;
1946 let Inst{26-23} = 0b0110;
1947 let Inst{22-20} = 0b011;
1948 let Inst{15-12} = 0b1111; // Ra = 0b1111 (no accumulate)
1949 let Inst{7-6} = 0b00;
1950 let Inst{5-4} = 0b00;
1951 }
Evan Cheng5b9fcd12009-07-07 01:17:28 +00001952
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001953 def WT : T2I<(outs rGPR:$dst), (ins rGPR:$a, rGPR:$b), IIC_iMUL16,
Evan Cheng699beba2009-10-27 00:08:59 +00001954 !strconcat(opc, "wt"), "\t$dst, $a, $b",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001955 [(set rGPR:$dst, (sra (opnode rGPR:$a,
1956 (sra rGPR:$b, (i32 16))), (i32 16)))]> {
Johnny Chend68e1192009-12-15 17:24:14 +00001957 let Inst{31-27} = 0b11111;
1958 let Inst{26-23} = 0b0110;
1959 let Inst{22-20} = 0b011;
1960 let Inst{15-12} = 0b1111; // Ra = 0b1111 (no accumulate)
1961 let Inst{7-6} = 0b00;
1962 let Inst{5-4} = 0b01;
1963 }
Evan Cheng5b9fcd12009-07-07 01:17:28 +00001964}
1965
1966
1967multiclass T2I_smla<string opc, PatFrag opnode> {
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001968 def BB : T2I<(outs rGPR:$dst), (ins rGPR:$a, rGPR:$b, rGPR:$acc), IIC_iMAC16,
Evan Cheng699beba2009-10-27 00:08:59 +00001969 !strconcat(opc, "bb"), "\t$dst, $a, $b, $acc",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001970 [(set rGPR:$dst, (add rGPR:$acc,
1971 (opnode (sext_inreg rGPR:$a, i16),
1972 (sext_inreg rGPR:$b, i16))))]> {
Johnny Chend68e1192009-12-15 17:24:14 +00001973 let Inst{31-27} = 0b11111;
1974 let Inst{26-23} = 0b0110;
1975 let Inst{22-20} = 0b001;
1976 let Inst{15-12} = {?, ?, ?, ?}; // Ra
1977 let Inst{7-6} = 0b00;
1978 let Inst{5-4} = 0b00;
1979 }
Evan Cheng5b9fcd12009-07-07 01:17:28 +00001980
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001981 def BT : T2I<(outs rGPR:$dst), (ins rGPR:$a, rGPR:$b, rGPR:$acc), IIC_iMAC16,
Evan Cheng699beba2009-10-27 00:08:59 +00001982 !strconcat(opc, "bt"), "\t$dst, $a, $b, $acc",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001983 [(set rGPR:$dst, (add rGPR:$acc, (opnode (sext_inreg rGPR:$a, i16),
Jim Grosbachc5ed0132010-08-17 18:39:16 +00001984 (sra rGPR:$b, (i32 16)))))]> {
Johnny Chend68e1192009-12-15 17:24:14 +00001985 let Inst{31-27} = 0b11111;
1986 let Inst{26-23} = 0b0110;
1987 let Inst{22-20} = 0b001;
1988 let Inst{15-12} = {?, ?, ?, ?}; // Ra
1989 let Inst{7-6} = 0b00;
1990 let Inst{5-4} = 0b01;
1991 }
Evan Cheng5b9fcd12009-07-07 01:17:28 +00001992
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001993 def TB : T2I<(outs rGPR:$dst), (ins rGPR:$a, rGPR:$b, rGPR:$acc), IIC_iMAC16,
Evan Cheng699beba2009-10-27 00:08:59 +00001994 !strconcat(opc, "tb"), "\t$dst, $a, $b, $acc",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001995 [(set rGPR:$dst, (add rGPR:$acc, (opnode (sra rGPR:$a, (i32 16)),
Jim Grosbachc5ed0132010-08-17 18:39:16 +00001996 (sext_inreg rGPR:$b, i16))))]> {
Johnny Chend68e1192009-12-15 17:24:14 +00001997 let Inst{31-27} = 0b11111;
1998 let Inst{26-23} = 0b0110;
1999 let Inst{22-20} = 0b001;
2000 let Inst{15-12} = {?, ?, ?, ?}; // Ra
2001 let Inst{7-6} = 0b00;
2002 let Inst{5-4} = 0b10;
2003 }
Evan Cheng5b9fcd12009-07-07 01:17:28 +00002004
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002005 def TT : T2I<(outs rGPR:$dst), (ins rGPR:$a, rGPR:$b, rGPR:$acc), IIC_iMAC16,
Evan Cheng699beba2009-10-27 00:08:59 +00002006 !strconcat(opc, "tt"), "\t$dst, $a, $b, $acc",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002007 [(set rGPR:$dst, (add rGPR:$acc, (opnode (sra rGPR:$a, (i32 16)),
Jim Grosbachc5ed0132010-08-17 18:39:16 +00002008 (sra rGPR:$b, (i32 16)))))]> {
Johnny Chend68e1192009-12-15 17:24:14 +00002009 let Inst{31-27} = 0b11111;
2010 let Inst{26-23} = 0b0110;
2011 let Inst{22-20} = 0b001;
2012 let Inst{15-12} = {?, ?, ?, ?}; // Ra
2013 let Inst{7-6} = 0b00;
2014 let Inst{5-4} = 0b11;
2015 }
Evan Cheng5b9fcd12009-07-07 01:17:28 +00002016
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002017 def WB : T2I<(outs rGPR:$dst), (ins rGPR:$a, rGPR:$b, rGPR:$acc), IIC_iMAC16,
Evan Cheng699beba2009-10-27 00:08:59 +00002018 !strconcat(opc, "wb"), "\t$dst, $a, $b, $acc",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002019 [(set rGPR:$dst, (add rGPR:$acc, (sra (opnode rGPR:$a,
Jim Grosbachc5ed0132010-08-17 18:39:16 +00002020 (sext_inreg rGPR:$b, i16)), (i32 16))))]> {
Johnny Chend68e1192009-12-15 17:24:14 +00002021 let Inst{31-27} = 0b11111;
2022 let Inst{26-23} = 0b0110;
2023 let Inst{22-20} = 0b011;
2024 let Inst{15-12} = {?, ?, ?, ?}; // Ra
2025 let Inst{7-6} = 0b00;
2026 let Inst{5-4} = 0b00;
2027 }
Evan Cheng5b9fcd12009-07-07 01:17:28 +00002028
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002029 def WT : T2I<(outs rGPR:$dst), (ins rGPR:$a, rGPR:$b, rGPR:$acc), IIC_iMAC16,
Evan Cheng699beba2009-10-27 00:08:59 +00002030 !strconcat(opc, "wt"), "\t$dst, $a, $b, $acc",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002031 [(set rGPR:$dst, (add rGPR:$acc, (sra (opnode rGPR:$a,
Jim Grosbachc5ed0132010-08-17 18:39:16 +00002032 (sra rGPR:$b, (i32 16))), (i32 16))))]> {
Johnny Chend68e1192009-12-15 17:24:14 +00002033 let Inst{31-27} = 0b11111;
2034 let Inst{26-23} = 0b0110;
2035 let Inst{22-20} = 0b011;
2036 let Inst{15-12} = {?, ?, ?, ?}; // Ra
2037 let Inst{7-6} = 0b00;
2038 let Inst{5-4} = 0b01;
2039 }
Evan Cheng5b9fcd12009-07-07 01:17:28 +00002040}
2041
2042defm t2SMUL : T2I_smul<"smul", BinOpFrag<(mul node:$LHS, node:$RHS)>>;
2043defm t2SMLA : T2I_smla<"smla", BinOpFrag<(mul node:$LHS, node:$RHS)>>;
2044
Johnny Chenadc77332010-02-26 22:04:29 +00002045// Halfword multiple accumulate long: SMLAL<x><y> -- for disassembly only
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002046def t2SMLALBB : T2I_mac<1, 0b100, 0b1000, (outs rGPR:$ldst,rGPR:$hdst),
Jim Grosbachc5ed0132010-08-17 18:39:16 +00002047 (ins rGPR:$a,rGPR:$b), IIC_iMAC64, "smlalbb", "\t$ldst, $hdst, $a, $b",
Johnny Chenadc77332010-02-26 22:04:29 +00002048 [/* For disassembly only; pattern left blank */]>;
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002049def t2SMLALBT : T2I_mac<1, 0b100, 0b1001, (outs rGPR:$ldst,rGPR:$hdst),
Jim Grosbachc5ed0132010-08-17 18:39:16 +00002050 (ins rGPR:$a,rGPR:$b), IIC_iMAC64, "smlalbt", "\t$ldst, $hdst, $a, $b",
Johnny Chenadc77332010-02-26 22:04:29 +00002051 [/* For disassembly only; pattern left blank */]>;
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002052def t2SMLALTB : T2I_mac<1, 0b100, 0b1010, (outs rGPR:$ldst,rGPR:$hdst),
Jim Grosbachc5ed0132010-08-17 18:39:16 +00002053 (ins rGPR:$a,rGPR:$b), IIC_iMAC64, "smlaltb", "\t$ldst, $hdst, $a, $b",
Johnny Chenadc77332010-02-26 22:04:29 +00002054 [/* For disassembly only; pattern left blank */]>;
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002055def t2SMLALTT : T2I_mac<1, 0b100, 0b1011, (outs rGPR:$ldst,rGPR:$hdst),
Jim Grosbachc5ed0132010-08-17 18:39:16 +00002056 (ins rGPR:$a,rGPR:$b), IIC_iMAC64, "smlaltt", "\t$ldst, $hdst, $a, $b",
Johnny Chenadc77332010-02-26 22:04:29 +00002057 [/* For disassembly only; pattern left blank */]>;
Evan Cheng5b9fcd12009-07-07 01:17:28 +00002058
Johnny Chenadc77332010-02-26 22:04:29 +00002059// Dual halfword multiple: SMUAD, SMUSD, SMLAD, SMLSD, SMLALD, SMLSLD
2060// These are for disassembly only.
2061
Jim Grosbachc5ed0132010-08-17 18:39:16 +00002062def t2SMUAD: T2I_mac<0, 0b010, 0b0000, (outs rGPR:$dst), (ins rGPR:$a, rGPR:$b),
2063 IIC_iMAC32, "smuad", "\t$dst, $a, $b", []> {
Johnny Chenadc77332010-02-26 22:04:29 +00002064 let Inst{15-12} = 0b1111;
2065}
Jim Grosbachc5ed0132010-08-17 18:39:16 +00002066def t2SMUADX:T2I_mac<0, 0b010, 0b0001, (outs rGPR:$dst), (ins rGPR:$a, rGPR:$b),
2067 IIC_iMAC32, "smuadx", "\t$dst, $a, $b", []> {
Johnny Chenadc77332010-02-26 22:04:29 +00002068 let Inst{15-12} = 0b1111;
2069}
Jim Grosbachc5ed0132010-08-17 18:39:16 +00002070def t2SMUSD: T2I_mac<0, 0b100, 0b0000, (outs rGPR:$dst), (ins rGPR:$a, rGPR:$b),
2071 IIC_iMAC32, "smusd", "\t$dst, $a, $b", []> {
Johnny Chenadc77332010-02-26 22:04:29 +00002072 let Inst{15-12} = 0b1111;
2073}
Jim Grosbachc5ed0132010-08-17 18:39:16 +00002074def t2SMUSDX:T2I_mac<0, 0b100, 0b0001, (outs rGPR:$dst), (ins rGPR:$a, rGPR:$b),
2075 IIC_iMAC32, "smusdx", "\t$dst, $a, $b", []> {
Johnny Chenadc77332010-02-26 22:04:29 +00002076 let Inst{15-12} = 0b1111;
2077}
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002078def t2SMLAD : T2I_mac<0, 0b010, 0b0000, (outs rGPR:$dst),
2079 (ins rGPR:$a, rGPR:$b, rGPR:$acc), IIC_iMAC32, "smlad",
Johnny Chenadc77332010-02-26 22:04:29 +00002080 "\t$dst, $a, $b, $acc", []>;
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002081def t2SMLADX : T2I_mac<0, 0b010, 0b0001, (outs rGPR:$dst),
2082 (ins rGPR:$a, rGPR:$b, rGPR:$acc), IIC_iMAC32, "smladx",
Johnny Chenadc77332010-02-26 22:04:29 +00002083 "\t$dst, $a, $b, $acc", []>;
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002084def t2SMLSD : T2I_mac<0, 0b100, 0b0000, (outs rGPR:$dst),
2085 (ins rGPR:$a, rGPR:$b, rGPR:$acc), IIC_iMAC32, "smlsd",
Johnny Chenadc77332010-02-26 22:04:29 +00002086 "\t$dst, $a, $b, $acc", []>;
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002087def t2SMLSDX : T2I_mac<0, 0b100, 0b0001, (outs rGPR:$dst),
2088 (ins rGPR:$a, rGPR:$b, rGPR:$acc), IIC_iMAC32, "smlsdx",
Johnny Chenadc77332010-02-26 22:04:29 +00002089 "\t$dst, $a, $b, $acc", []>;
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002090def t2SMLALD : T2I_mac<1, 0b100, 0b1100, (outs rGPR:$ldst,rGPR:$hdst),
2091 (ins rGPR:$a,rGPR:$b), IIC_iMAC64, "smlald",
Johnny Chenadc77332010-02-26 22:04:29 +00002092 "\t$ldst, $hdst, $a, $b", []>;
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002093def t2SMLALDX : T2I_mac<1, 0b100, 0b1101, (outs rGPR:$ldst,rGPR:$hdst),
2094 (ins rGPR:$a,rGPR:$b), IIC_iMAC64, "smlaldx",
Johnny Chenadc77332010-02-26 22:04:29 +00002095 "\t$ldst, $hdst, $a, $b", []>;
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002096def t2SMLSLD : T2I_mac<1, 0b101, 0b1100, (outs rGPR:$ldst,rGPR:$hdst),
2097 (ins rGPR:$a,rGPR:$b), IIC_iMAC64, "smlsld",
Johnny Chenadc77332010-02-26 22:04:29 +00002098 "\t$ldst, $hdst, $a, $b", []>;
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002099def t2SMLSLDX : T2I_mac<1, 0b101, 0b1101, (outs rGPR:$ldst,rGPR:$hdst),
2100 (ins rGPR:$a,rGPR:$b), IIC_iMAC64, "smlsldx",
Johnny Chenadc77332010-02-26 22:04:29 +00002101 "\t$ldst, $hdst, $a, $b", []>;
Evan Chengf49810c2009-06-23 17:48:47 +00002102
2103//===----------------------------------------------------------------------===//
2104// Misc. Arithmetic Instructions.
2105//
2106
Jim Grosbach80dc1162010-02-16 21:23:02 +00002107class T2I_misc<bits<2> op1, bits<2> op2, dag oops, dag iops,
2108 InstrItinClass itin, string opc, string asm, list<dag> pattern>
Johnny Chend68e1192009-12-15 17:24:14 +00002109 : T2I<oops, iops, itin, opc, asm, pattern> {
2110 let Inst{31-27} = 0b11111;
2111 let Inst{26-22} = 0b01010;
2112 let Inst{21-20} = op1;
2113 let Inst{15-12} = 0b1111;
2114 let Inst{7-6} = 0b10;
2115 let Inst{5-4} = op2;
2116}
Evan Chengf49810c2009-06-23 17:48:47 +00002117
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002118def t2CLZ : T2I_misc<0b11, 0b00, (outs rGPR:$dst), (ins rGPR:$src), IIC_iUNAr,
2119 "clz", "\t$dst, $src", [(set rGPR:$dst, (ctlz rGPR:$src))]>;
Evan Chengf49810c2009-06-23 17:48:47 +00002120
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002121def t2RBIT : T2I_misc<0b01, 0b10, (outs rGPR:$dst), (ins rGPR:$src), IIC_iUNAr,
Evan Chengf609bb82010-01-19 00:44:15 +00002122 "rbit", "\t$dst, $src",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002123 [(set rGPR:$dst, (ARMrbit rGPR:$src))]>;
Jim Grosbach3482c802010-01-18 19:58:49 +00002124
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002125def t2REV : T2I_misc<0b01, 0b00, (outs rGPR:$dst), (ins rGPR:$src), IIC_iUNAr,
Jim Grosbachc5ed0132010-08-17 18:39:16 +00002126 "rev", ".w\t$dst, $src", [(set rGPR:$dst, (bswap rGPR:$src))]>;
Johnny Chend68e1192009-12-15 17:24:14 +00002127
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002128def t2REV16 : T2I_misc<0b01, 0b01, (outs rGPR:$dst), (ins rGPR:$src), IIC_iUNAr,
Johnny Chend68e1192009-12-15 17:24:14 +00002129 "rev16", ".w\t$dst, $src",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002130 [(set rGPR:$dst,
2131 (or (and (srl rGPR:$src, (i32 8)), 0xFF),
2132 (or (and (shl rGPR:$src, (i32 8)), 0xFF00),
2133 (or (and (srl rGPR:$src, (i32 8)), 0xFF0000),
Jim Grosbachc5ed0132010-08-17 18:39:16 +00002134 (and (shl rGPR:$src, (i32 8)), 0xFF000000)))))]>;
Evan Chengf49810c2009-06-23 17:48:47 +00002135
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002136def t2REVSH : T2I_misc<0b01, 0b11, (outs rGPR:$dst), (ins rGPR:$src), IIC_iUNAr,
Johnny Chend68e1192009-12-15 17:24:14 +00002137 "revsh", ".w\t$dst, $src",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002138 [(set rGPR:$dst,
Evan Chengf49810c2009-06-23 17:48:47 +00002139 (sext_inreg
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002140 (or (srl (and rGPR:$src, 0xFF00), (i32 8)),
2141 (shl rGPR:$src, (i32 8))), i16))]>;
Evan Chengf49810c2009-06-23 17:48:47 +00002142
Bob Wilsonf955f292010-08-17 17:23:19 +00002143def t2PKHBT : T2I<(outs rGPR:$dst), (ins rGPR:$src1, rGPR:$src2, shift_imm:$sh),
2144 IIC_iALUsi, "pkhbt", "\t$dst, $src1, $src2$sh",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002145 [(set rGPR:$dst, (or (and rGPR:$src1, 0xFFFF),
Bob Wilsonf955f292010-08-17 17:23:19 +00002146 (and (shl rGPR:$src2, lsl_amt:$sh),
Jim Grosbachb1dc3932010-05-05 20:44:35 +00002147 0xFFFF0000)))]>,
Jim Grosbach29402132010-05-05 23:44:43 +00002148 Requires<[HasT2ExtractPack]> {
Johnny Chend68e1192009-12-15 17:24:14 +00002149 let Inst{31-27} = 0b11101;
2150 let Inst{26-25} = 0b01;
2151 let Inst{24-20} = 0b01100;
2152 let Inst{5} = 0; // BT form
2153 let Inst{4} = 0;
2154}
Evan Cheng40289b02009-07-07 05:35:52 +00002155
2156// Alternate cases for PKHBT where identities eliminate some nodes.
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002157def : T2Pat<(or (and rGPR:$src1, 0xFFFF), (and rGPR:$src2, 0xFFFF0000)),
2158 (t2PKHBT rGPR:$src1, rGPR:$src2, 0)>,
Jim Grosbach29402132010-05-05 23:44:43 +00002159 Requires<[HasT2ExtractPack]>;
Bob Wilsonf955f292010-08-17 17:23:19 +00002160def : T2Pat<(or (and rGPR:$src1, 0xFFFF), (shl rGPR:$src2, imm16_31:$sh)),
2161 (t2PKHBT rGPR:$src1, rGPR:$src2, (lsl_shift_imm imm16_31:$sh))>,
Jim Grosbach29402132010-05-05 23:44:43 +00002162 Requires<[HasT2ExtractPack]>;
Evan Cheng40289b02009-07-07 05:35:52 +00002163
Bob Wilsondc66eda2010-08-16 22:26:55 +00002164// Note: Shifts of 1-15 bits will be transformed to srl instead of sra and
2165// will match the pattern below.
Bob Wilsonf955f292010-08-17 17:23:19 +00002166def t2PKHTB : T2I<(outs rGPR:$dst), (ins rGPR:$src1, rGPR:$src2, shift_imm:$sh),
2167 IIC_iALUsi, "pkhtb", "\t$dst, $src1, $src2$sh",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002168 [(set rGPR:$dst, (or (and rGPR:$src1, 0xFFFF0000),
Bob Wilsonf955f292010-08-17 17:23:19 +00002169 (and (sra rGPR:$src2, asr_amt:$sh),
2170 0xFFFF)))]>,
Jim Grosbach29402132010-05-05 23:44:43 +00002171 Requires<[HasT2ExtractPack]> {
Johnny Chend68e1192009-12-15 17:24:14 +00002172 let Inst{31-27} = 0b11101;
2173 let Inst{26-25} = 0b01;
2174 let Inst{24-20} = 0b01100;
2175 let Inst{5} = 1; // TB form
2176 let Inst{4} = 0;
2177}
Evan Cheng40289b02009-07-07 05:35:52 +00002178
2179// Alternate cases for PKHTB where identities eliminate some nodes. Note that
2180// a shift amount of 0 is *not legal* here, it is PKHBT instead.
Bob Wilsondc66eda2010-08-16 22:26:55 +00002181def : T2Pat<(or (and rGPR:$src1, 0xFFFF0000), (srl rGPR:$src2, imm16_31:$sh)),
Bob Wilsonf955f292010-08-17 17:23:19 +00002182 (t2PKHTB rGPR:$src1, rGPR:$src2, (asr_shift_imm imm16_31:$sh))>,
Jim Grosbach29402132010-05-05 23:44:43 +00002183 Requires<[HasT2ExtractPack]>;
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002184def : T2Pat<(or (and rGPR:$src1, 0xFFFF0000),
Bob Wilsonf955f292010-08-17 17:23:19 +00002185 (and (srl rGPR:$src2, imm1_15:$sh), 0xFFFF)),
2186 (t2PKHTB rGPR:$src1, rGPR:$src2, (asr_shift_imm imm1_15:$sh))>,
Jim Grosbach29402132010-05-05 23:44:43 +00002187 Requires<[HasT2ExtractPack]>;
Evan Chengf49810c2009-06-23 17:48:47 +00002188
2189//===----------------------------------------------------------------------===//
2190// Comparison Instructions...
2191//
Johnny Chend68e1192009-12-15 17:24:14 +00002192defm t2CMP : T2I_cmp_irs<0b1101, "cmp",
2193 BinOpFrag<(ARMcmp node:$LHS, node:$RHS)>>;
2194defm t2CMPz : T2I_cmp_irs<0b1101, "cmp",
2195 BinOpFrag<(ARMcmpZ node:$LHS, node:$RHS)>>;
Evan Chengf49810c2009-06-23 17:48:47 +00002196
Dan Gohman4b7dff92010-08-26 15:50:25 +00002197//FIXME: Disable CMN, as CCodes are backwards from compare expectations
2198// Compare-to-zero still works out, just not the relationals
Jim Grosbachd5d2bae2010-01-22 00:08:13 +00002199//defm t2CMN : T2I_cmp_irs<0b1000, "cmn",
2200// BinOpFrag<(ARMcmp node:$LHS,(ineg node:$RHS))>>;
Dan Gohman4b7dff92010-08-26 15:50:25 +00002201defm t2CMNz : T2I_cmp_irs<0b1000, "cmn",
2202 BinOpFrag<(ARMcmpZ node:$LHS,(ineg node:$RHS))>>;
2203
Jim Grosbachd5d2bae2010-01-22 00:08:13 +00002204//def : T2Pat<(ARMcmp GPR:$src, t2_so_imm_neg:$imm),
2205// (t2CMNri GPR:$src, t2_so_imm_neg:$imm)>;
Dan Gohman4b7dff92010-08-26 15:50:25 +00002206
2207def : T2Pat<(ARMcmpZ GPR:$src, t2_so_imm_neg:$imm),
2208 (t2CMNzri GPR:$src, t2_so_imm_neg:$imm)>;
Evan Chengf49810c2009-06-23 17:48:47 +00002209
Johnny Chend68e1192009-12-15 17:24:14 +00002210defm t2TST : T2I_cmp_irs<0b0000, "tst",
2211 BinOpFrag<(ARMcmpZ (and node:$LHS, node:$RHS), 0)>>;
2212defm t2TEQ : T2I_cmp_irs<0b0100, "teq",
2213 BinOpFrag<(ARMcmpZ (xor node:$LHS, node:$RHS), 0)>>;
Evan Chengf49810c2009-06-23 17:48:47 +00002214
Evan Chenge253c952009-07-07 20:39:03 +00002215// Conditional moves
2216// FIXME: should be able to write a pattern for ARMcmov, but can't use
Jim Grosbach64171712010-02-16 21:07:46 +00002217// a two-value operand where a dag node expects two operands. :(
Evan Chengea420b22010-05-19 01:52:25 +00002218let neverHasSideEffects = 1 in {
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002219def t2MOVCCr : T2I<(outs rGPR:$dst), (ins rGPR:$false, rGPR:$true), IIC_iCMOVr,
Evan Cheng699beba2009-10-27 00:08:59 +00002220 "mov", ".w\t$dst, $true",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002221 [/*(set rGPR:$dst, (ARMcmov rGPR:$false, rGPR:$true, imm:$cc, CCR:$ccr))*/]>,
Johnny Chend68e1192009-12-15 17:24:14 +00002222 RegConstraint<"$false = $dst"> {
2223 let Inst{31-27} = 0b11101;
2224 let Inst{26-25} = 0b01;
2225 let Inst{24-21} = 0b0010;
2226 let Inst{20} = 0; // The S bit.
2227 let Inst{19-16} = 0b1111; // Rn
2228 let Inst{14-12} = 0b000;
2229 let Inst{7-4} = 0b0000;
2230}
Evan Chenge253c952009-07-07 20:39:03 +00002231
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002232def t2MOVCCi : T2I<(outs rGPR:$dst), (ins rGPR:$false, t2_so_imm:$true),
Evan Cheng699beba2009-10-27 00:08:59 +00002233 IIC_iCMOVi, "mov", ".w\t$dst, $true",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002234[/*(set rGPR:$dst,(ARMcmov rGPR:$false,t2_so_imm:$true, imm:$cc, CCR:$ccr))*/]>,
Johnny Chend68e1192009-12-15 17:24:14 +00002235 RegConstraint<"$false = $dst"> {
2236 let Inst{31-27} = 0b11110;
2237 let Inst{25} = 0;
2238 let Inst{24-21} = 0b0010;
2239 let Inst{20} = 0; // The S bit.
2240 let Inst{19-16} = 0b1111; // Rn
2241 let Inst{15} = 0;
2242}
Evan Chengf49810c2009-06-23 17:48:47 +00002243
Johnny Chend68e1192009-12-15 17:24:14 +00002244class T2I_movcc_sh<bits<2> opcod, dag oops, dag iops, InstrItinClass itin,
2245 string opc, string asm, list<dag> pattern>
2246 : T2I<oops, iops, itin, opc, asm, pattern> {
2247 let Inst{31-27} = 0b11101;
2248 let Inst{26-25} = 0b01;
2249 let Inst{24-21} = 0b0010;
2250 let Inst{20} = 0; // The S bit.
2251 let Inst{19-16} = 0b1111; // Rn
2252 let Inst{5-4} = opcod; // Shift type.
2253}
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002254def t2MOVCClsl : T2I_movcc_sh<0b00, (outs rGPR:$dst),
2255 (ins rGPR:$false, rGPR:$true, i32imm:$rhs),
Johnny Chend68e1192009-12-15 17:24:14 +00002256 IIC_iCMOVsi, "lsl", ".w\t$dst, $true, $rhs", []>,
2257 RegConstraint<"$false = $dst">;
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002258def t2MOVCClsr : T2I_movcc_sh<0b01, (outs rGPR:$dst),
2259 (ins rGPR:$false, rGPR:$true, i32imm:$rhs),
Johnny Chend68e1192009-12-15 17:24:14 +00002260 IIC_iCMOVsi, "lsr", ".w\t$dst, $true, $rhs", []>,
2261 RegConstraint<"$false = $dst">;
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002262def t2MOVCCasr : T2I_movcc_sh<0b10, (outs rGPR:$dst),
2263 (ins rGPR:$false, rGPR:$true, i32imm:$rhs),
Johnny Chend68e1192009-12-15 17:24:14 +00002264 IIC_iCMOVsi, "asr", ".w\t$dst, $true, $rhs", []>,
2265 RegConstraint<"$false = $dst">;
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002266def t2MOVCCror : T2I_movcc_sh<0b11, (outs rGPR:$dst),
2267 (ins rGPR:$false, rGPR:$true, i32imm:$rhs),
Johnny Chend68e1192009-12-15 17:24:14 +00002268 IIC_iCMOVsi, "ror", ".w\t$dst, $true, $rhs", []>,
2269 RegConstraint<"$false = $dst">;
Evan Chengea420b22010-05-19 01:52:25 +00002270} // neverHasSideEffects
Evan Cheng13f8b362009-08-01 01:43:45 +00002271
David Goodwin5e47a9a2009-06-30 18:04:13 +00002272//===----------------------------------------------------------------------===//
Jim Grosbachc219e4d2009-12-14 18:56:47 +00002273// Atomic operations intrinsics
2274//
2275
2276// memory barriers protect the atomic sequences
2277let hasSideEffects = 1 in {
Evan Cheng11db0682010-08-11 06:22:01 +00002278def t2DMBsy : AInoP<(outs), (ins), ThumbFrm, NoItinerary, "dmb", "",
Evan Chengee349872010-08-11 06:36:31 +00002279 [(ARMMemBarrier)]>, Requires<[IsThumb, HasDB]> {
Johnny Chend68e1192009-12-15 17:24:14 +00002280 let Inst{31-4} = 0xF3BF8F5;
Jim Grosbachc219e4d2009-12-14 18:56:47 +00002281 // FIXME: add support for options other than a full system DMB
Johnny Chend68e1192009-12-15 17:24:14 +00002282 let Inst{3-0} = 0b1111;
Jim Grosbachc219e4d2009-12-14 18:56:47 +00002283}
2284
Evan Cheng11db0682010-08-11 06:22:01 +00002285def t2DSBsy : AInoP<(outs), (ins), ThumbFrm, NoItinerary, "dsb", "",
Evan Chengee349872010-08-11 06:36:31 +00002286 [(ARMSyncBarrier)]>, Requires<[IsThumb, HasDB]> {
Johnny Chend68e1192009-12-15 17:24:14 +00002287 let Inst{31-4} = 0xF3BF8F4;
Jim Grosbachc219e4d2009-12-14 18:56:47 +00002288 // FIXME: add support for options other than a full system DSB
Johnny Chend68e1192009-12-15 17:24:14 +00002289 let Inst{3-0} = 0b1111;
Jim Grosbachc219e4d2009-12-14 18:56:47 +00002290}
2291}
2292
Johnny Chena4339822010-03-03 00:16:28 +00002293// Helper class for multiclass T2MemB -- for disassembly only
2294class T2I_memb<string opc, string asm>
2295 : T2I<(outs), (ins), NoItinerary, opc, asm,
2296 [/* For disassembly only; pattern left blank */]>,
2297 Requires<[IsThumb2, HasV7]> {
2298 let Inst{31-20} = 0xf3b;
2299 let Inst{15-14} = 0b10;
2300 let Inst{12} = 0;
2301}
2302
2303multiclass T2MemB<bits<4> op7_4, string opc> {
2304
2305 def st : T2I_memb<opc, "\tst"> {
2306 let Inst{7-4} = op7_4;
2307 let Inst{3-0} = 0b1110;
2308 }
2309
2310 def ish : T2I_memb<opc, "\tish"> {
2311 let Inst{7-4} = op7_4;
2312 let Inst{3-0} = 0b1011;
2313 }
2314
2315 def ishst : T2I_memb<opc, "\tishst"> {
2316 let Inst{7-4} = op7_4;
2317 let Inst{3-0} = 0b1010;
2318 }
2319
2320 def nsh : T2I_memb<opc, "\tnsh"> {
2321 let Inst{7-4} = op7_4;
2322 let Inst{3-0} = 0b0111;
2323 }
2324
2325 def nshst : T2I_memb<opc, "\tnshst"> {
2326 let Inst{7-4} = op7_4;
2327 let Inst{3-0} = 0b0110;
2328 }
2329
2330 def osh : T2I_memb<opc, "\tosh"> {
2331 let Inst{7-4} = op7_4;
2332 let Inst{3-0} = 0b0011;
2333 }
2334
2335 def oshst : T2I_memb<opc, "\toshst"> {
2336 let Inst{7-4} = op7_4;
2337 let Inst{3-0} = 0b0010;
2338 }
2339}
2340
2341// These DMB variants are for disassembly only.
2342defm t2DMB : T2MemB<0b0101, "dmb">;
2343
2344// These DSB variants are for disassembly only.
2345defm t2DSB : T2MemB<0b0100, "dsb">;
2346
2347// ISB has only full system option -- for disassembly only
2348def t2ISBsy : T2I_memb<"isb", ""> {
2349 let Inst{7-4} = 0b0110;
2350 let Inst{3-0} = 0b1111;
2351}
2352
Johnny Chend68e1192009-12-15 17:24:14 +00002353class T2I_ldrex<bits<2> opcod, dag oops, dag iops, AddrMode am, SizeFlagVal sz,
2354 InstrItinClass itin, string opc, string asm, string cstr,
2355 list<dag> pattern, bits<4> rt2 = 0b1111>
2356 : Thumb2I<oops, iops, am, sz, itin, opc, asm, cstr, pattern> {
2357 let Inst{31-27} = 0b11101;
2358 let Inst{26-20} = 0b0001101;
2359 let Inst{11-8} = rt2;
2360 let Inst{7-6} = 0b01;
2361 let Inst{5-4} = opcod;
2362 let Inst{3-0} = 0b1111;
2363}
2364class T2I_strex<bits<2> opcod, dag oops, dag iops, AddrMode am, SizeFlagVal sz,
2365 InstrItinClass itin, string opc, string asm, string cstr,
2366 list<dag> pattern, bits<4> rt2 = 0b1111>
2367 : Thumb2I<oops, iops, am, sz, itin, opc, asm, cstr, pattern> {
2368 let Inst{31-27} = 0b11101;
2369 let Inst{26-20} = 0b0001100;
2370 let Inst{11-8} = rt2;
2371 let Inst{7-6} = 0b01;
2372 let Inst{5-4} = opcod;
2373}
2374
Jim Grosbachc219e4d2009-12-14 18:56:47 +00002375let mayLoad = 1 in {
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002376def t2LDREXB : T2I_ldrex<0b00, (outs rGPR:$dest), (ins rGPR:$ptr), AddrModeNone,
Johnny Chend68e1192009-12-15 17:24:14 +00002377 Size4Bytes, NoItinerary, "ldrexb", "\t$dest, [$ptr]",
2378 "", []>;
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002379def t2LDREXH : T2I_ldrex<0b01, (outs rGPR:$dest), (ins rGPR:$ptr), AddrModeNone,
Johnny Chend68e1192009-12-15 17:24:14 +00002380 Size4Bytes, NoItinerary, "ldrexh", "\t$dest, [$ptr]",
2381 "", []>;
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002382def t2LDREX : Thumb2I<(outs rGPR:$dest), (ins rGPR:$ptr), AddrModeNone,
Johnny Chend68e1192009-12-15 17:24:14 +00002383 Size4Bytes, NoItinerary,
2384 "ldrex", "\t$dest, [$ptr]", "",
2385 []> {
2386 let Inst{31-27} = 0b11101;
2387 let Inst{26-20} = 0b0000101;
2388 let Inst{11-8} = 0b1111;
2389 let Inst{7-0} = 0b00000000; // imm8 = 0
2390}
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002391def t2LDREXD : T2I_ldrex<0b11, (outs rGPR:$dest, rGPR:$dest2), (ins rGPR:$ptr),
Johnny Chend68e1192009-12-15 17:24:14 +00002392 AddrModeNone, Size4Bytes, NoItinerary,
2393 "ldrexd", "\t$dest, $dest2, [$ptr]", "",
2394 [], {?, ?, ?, ?}>;
Jim Grosbachc219e4d2009-12-14 18:56:47 +00002395}
2396
Jim Grosbach587b0722009-12-16 19:44:06 +00002397let mayStore = 1, Constraints = "@earlyclobber $success" in {
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002398def t2STREXB : T2I_strex<0b00, (outs rGPR:$success), (ins rGPR:$src, rGPR:$ptr),
Johnny Chend68e1192009-12-15 17:24:14 +00002399 AddrModeNone, Size4Bytes, NoItinerary,
2400 "strexb", "\t$success, $src, [$ptr]", "", []>;
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002401def t2STREXH : T2I_strex<0b01, (outs rGPR:$success), (ins rGPR:$src, rGPR:$ptr),
Johnny Chend68e1192009-12-15 17:24:14 +00002402 AddrModeNone, Size4Bytes, NoItinerary,
2403 "strexh", "\t$success, $src, [$ptr]", "", []>;
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002404def t2STREX : Thumb2I<(outs rGPR:$success), (ins rGPR:$src, rGPR:$ptr),
Johnny Chend68e1192009-12-15 17:24:14 +00002405 AddrModeNone, Size4Bytes, NoItinerary,
2406 "strex", "\t$success, $src, [$ptr]", "",
2407 []> {
2408 let Inst{31-27} = 0b11101;
2409 let Inst{26-20} = 0b0000100;
2410 let Inst{7-0} = 0b00000000; // imm8 = 0
2411}
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002412def t2STREXD : T2I_strex<0b11, (outs rGPR:$success),
2413 (ins rGPR:$src, rGPR:$src2, rGPR:$ptr),
Johnny Chend68e1192009-12-15 17:24:14 +00002414 AddrModeNone, Size4Bytes, NoItinerary,
2415 "strexd", "\t$success, $src, $src2, [$ptr]", "", [],
2416 {?, ?, ?, ?}>;
Jim Grosbachc219e4d2009-12-14 18:56:47 +00002417}
2418
Johnny Chen10a77e12010-03-02 22:11:06 +00002419// Clear-Exclusive is for disassembly only.
2420def t2CLREX : T2I<(outs), (ins), NoItinerary, "clrex", "",
2421 [/* For disassembly only; pattern left blank */]>,
2422 Requires<[IsARM, HasV7]> {
2423 let Inst{31-20} = 0xf3b;
2424 let Inst{15-14} = 0b10;
2425 let Inst{12} = 0;
2426 let Inst{7-4} = 0b0010;
2427}
2428
Jim Grosbachc219e4d2009-12-14 18:56:47 +00002429//===----------------------------------------------------------------------===//
David Goodwin334c2642009-07-08 16:09:28 +00002430// TLS Instructions
2431//
2432
2433// __aeabi_read_tp preserves the registers r1-r3.
2434let isCall = 1,
2435 Defs = [R0, R12, LR, CPSR] in {
David Goodwin8b7d7ad2009-08-06 16:52:47 +00002436 def t2TPsoft : T2XI<(outs), (ins), IIC_Br,
Evan Cheng699beba2009-10-27 00:08:59 +00002437 "bl\t__aeabi_read_tp",
Johnny Chend68e1192009-12-15 17:24:14 +00002438 [(set R0, ARMthread_pointer)]> {
2439 let Inst{31-27} = 0b11110;
2440 let Inst{15-14} = 0b11;
2441 let Inst{12} = 1;
2442 }
David Goodwin334c2642009-07-08 16:09:28 +00002443}
2444
2445//===----------------------------------------------------------------------===//
Jim Grosbach5aa16842009-08-11 19:42:21 +00002446// SJLJ Exception handling intrinsics
Jim Grosbach1add6592009-08-13 15:11:43 +00002447// eh_sjlj_setjmp() is an instruction sequence to store the return
Jim Grosbach5aa16842009-08-11 19:42:21 +00002448// address and save #0 in R0 for the non-longjmp case.
2449// Since by its nature we may be coming from some other function to get
2450// here, and we're using the stack frame for the containing function to
2451// save/restore registers, we can't keep anything live in regs across
2452// the eh_sjlj_setjmp(), else it will almost certainly have been tromped upon
2453// when we get here from a longjmp(). We force everthing out of registers
2454// except for our own input by listing the relevant registers in Defs. By
2455// doing so, we also cause the prologue/epilogue code to actively preserve
2456// all of the callee-saved resgisters, which is exactly what we want.
Jim Grosbach0798edd2010-05-27 23:49:24 +00002457// $val is a scratch register for our use.
Jim Grosbacha87ded22010-02-08 23:22:00 +00002458let Defs =
Jim Grosbachf35d2162009-08-13 16:59:44 +00002459 [ R0, R1, R2, R3, R4, R5, R6, R7, R8, R9, R10, R11, R12, LR, D0,
2460 D1, D2, D3, D4, D5, D6, D7, D8, D9, D10, D11, D12, D13, D14, D15,
Jim Grosbach5aa16842009-08-11 19:42:21 +00002461 D16, D17, D18, D19, D20, D21, D22, D23, D24, D25, D26, D27, D28, D29, D30,
Jim Grosbach5caeff52010-05-28 17:37:40 +00002462 D31 ], hasSideEffects = 1, isBarrier = 1 in {
Jim Grosbach9f134b52010-08-26 17:02:47 +00002463 def t2Int_eh_sjlj_setjmp : Thumb2XI<(outs), (ins tGPR:$src, tGPR:$val),
Jim Grosbach5aa16842009-08-11 19:42:21 +00002464 AddrModeNone, SizeSpecial, NoItinerary,
Jim Grosbachc9792a32010-05-28 17:51:20 +00002465 "mov\t$val, pc\t${:comment} begin eh.setjmp\n\t"
2466 "adds\t$val, #7\n\t"
2467 "str\t$val, [$src, #4]\n\t"
2468 "movs\tr0, #0\n\t"
2469 "b\t1f\n\t"
2470 "movs\tr0, #1\t${:comment} end eh.setjmp\n\t"
Jim Grosbach8db5cce2009-08-13 15:12:16 +00002471 "1:", "",
Jim Grosbach9f134b52010-08-26 17:02:47 +00002472 [(set R0, (ARMeh_sjlj_setjmp tGPR:$src, tGPR:$val))]>,
Bob Wilsonec80e262010-04-09 20:41:18 +00002473 Requires<[IsThumb2, HasVFP2]>;
Jim Grosbach5aa16842009-08-11 19:42:21 +00002474}
2475
Bob Wilsonec80e262010-04-09 20:41:18 +00002476let Defs =
Jim Grosbach5caeff52010-05-28 17:37:40 +00002477 [ R0, R1, R2, R3, R4, R5, R6, R7, R8, R9, R10, R11, R12, LR ],
2478 hasSideEffects = 1, isBarrier = 1 in {
Jim Grosbach9f134b52010-08-26 17:02:47 +00002479 def t2Int_eh_sjlj_setjmp_nofp : Thumb2XI<(outs), (ins tGPR:$src, tGPR:$val),
Bob Wilsonec80e262010-04-09 20:41:18 +00002480 AddrModeNone, SizeSpecial, NoItinerary,
Jim Grosbachc9792a32010-05-28 17:51:20 +00002481 "mov\t$val, pc\t${:comment} begin eh.setjmp\n\t"
2482 "adds\t$val, #7\n\t"
2483 "str\t$val, [$src, #4]\n\t"
2484 "movs\tr0, #0\n\t"
2485 "b\t1f\n\t"
2486 "movs\tr0, #1\t${:comment} end eh.setjmp\n\t"
Bob Wilsonec80e262010-04-09 20:41:18 +00002487 "1:", "",
Jim Grosbach9f134b52010-08-26 17:02:47 +00002488 [(set R0, (ARMeh_sjlj_setjmp tGPR:$src, tGPR:$val))]>,
Bob Wilsonec80e262010-04-09 20:41:18 +00002489 Requires<[IsThumb2, NoVFP]>;
2490}
Jim Grosbach5aa16842009-08-11 19:42:21 +00002491
2492
2493//===----------------------------------------------------------------------===//
David Goodwin5e47a9a2009-06-30 18:04:13 +00002494// Control-Flow Instructions
2495//
2496
Evan Chengc50a1cb2009-07-09 22:58:39 +00002497// FIXME: remove when we have a way to marking a MI with these properties.
2498// FIXME: $dst1 should be a def. But the extra ops must be in the end of the
2499// operand list.
2500// FIXME: Should pc be an implicit operand like PICADD, etc?
Evan Cheng0d92f5f2009-10-01 08:22:27 +00002501let isReturn = 1, isTerminator = 1, isBarrier = 1, mayLoad = 1,
2502 hasExtraDefRegAllocReq = 1 in
Bob Wilson815baeb2010-03-13 01:08:20 +00002503 def t2LDM_RET : T2XIt<(outs GPR:$wb), (ins addrmode4:$addr, pred:$p,
2504 reglist:$dsts, variable_ops), IIC_Br,
Bob Wilsonfed76ff2010-07-14 16:02:13 +00002505 "ldm${addr:submode}${p}${addr:wide}\t$addr!, $dsts",
Bob Wilson815baeb2010-03-13 01:08:20 +00002506 "$addr.addr = $wb", []> {
Johnny Chend68e1192009-12-15 17:24:14 +00002507 let Inst{31-27} = 0b11101;
2508 let Inst{26-25} = 0b00;
2509 let Inst{24-23} = {?, ?}; // IA: '01', DB: '10'
2510 let Inst{22} = 0;
Bob Wilson815baeb2010-03-13 01:08:20 +00002511 let Inst{21} = 1; // The W bit.
Johnny Chend68e1192009-12-15 17:24:14 +00002512 let Inst{20} = 1; // Load
2513}
Evan Chengc50a1cb2009-07-09 22:58:39 +00002514
David Goodwin5e47a9a2009-06-30 18:04:13 +00002515let isBranch = 1, isTerminator = 1, isBarrier = 1 in {
2516let isPredicable = 1 in
David Goodwin8b7d7ad2009-08-06 16:52:47 +00002517def t2B : T2XI<(outs), (ins brtarget:$target), IIC_Br,
Evan Cheng699beba2009-10-27 00:08:59 +00002518 "b.w\t$target",
Johnny Chend68e1192009-12-15 17:24:14 +00002519 [(br bb:$target)]> {
2520 let Inst{31-27} = 0b11110;
2521 let Inst{15-14} = 0b10;
2522 let Inst{12} = 1;
2523}
David Goodwin5e47a9a2009-06-30 18:04:13 +00002524
Evan Cheng5657c012009-07-29 02:18:14 +00002525let isNotDuplicable = 1, isIndirectBranch = 1 in {
Evan Cheng66ac5312009-07-25 00:33:29 +00002526def t2BR_JT :
Evan Cheng5657c012009-07-29 02:18:14 +00002527 T2JTI<(outs),
2528 (ins GPR:$target, GPR:$index, jt2block_operand:$jt, i32imm:$id),
Bob Wilsond4d188e2010-07-31 06:28:10 +00002529 IIC_Br, "mov\tpc, $target$jt",
Johnny Chend68e1192009-12-15 17:24:14 +00002530 [(ARMbr2jt GPR:$target, GPR:$index, tjumptable:$jt, imm:$id)]> {
2531 let Inst{31-27} = 0b11101;
2532 let Inst{26-20} = 0b0100100;
2533 let Inst{19-16} = 0b1111;
2534 let Inst{14-12} = 0b000;
2535 let Inst{11-8} = 0b1111; // Rd = pc
2536 let Inst{7-4} = 0b0000;
2537}
Evan Cheng5657c012009-07-29 02:18:14 +00002538
Evan Cheng25f7cfc2009-08-01 06:13:52 +00002539// FIXME: Add a non-pc based case that can be predicated.
Evan Cheng5657c012009-07-29 02:18:14 +00002540def t2TBB :
Evan Cheng25f7cfc2009-08-01 06:13:52 +00002541 T2JTI<(outs),
Evan Cheng5657c012009-07-29 02:18:14 +00002542 (ins tb_addrmode:$index, jt2block_operand:$jt, i32imm:$id),
Bob Wilsond4d188e2010-07-31 06:28:10 +00002543 IIC_Br, "tbb\t$index$jt", []> {
Johnny Chend68e1192009-12-15 17:24:14 +00002544 let Inst{31-27} = 0b11101;
2545 let Inst{26-20} = 0b0001101;
2546 let Inst{19-16} = 0b1111; // Rn = pc (table follows this instruction)
2547 let Inst{15-8} = 0b11110000;
2548 let Inst{7-4} = 0b0000; // B form
2549}
Evan Cheng5657c012009-07-29 02:18:14 +00002550
2551def t2TBH :
Evan Cheng25f7cfc2009-08-01 06:13:52 +00002552 T2JTI<(outs),
Evan Cheng5657c012009-07-29 02:18:14 +00002553 (ins tb_addrmode:$index, jt2block_operand:$jt, i32imm:$id),
Bob Wilsond4d188e2010-07-31 06:28:10 +00002554 IIC_Br, "tbh\t$index$jt", []> {
Johnny Chend68e1192009-12-15 17:24:14 +00002555 let Inst{31-27} = 0b11101;
2556 let Inst{26-20} = 0b0001101;
2557 let Inst{19-16} = 0b1111; // Rn = pc (table follows this instruction)
2558 let Inst{15-8} = 0b11110000;
2559 let Inst{7-4} = 0b0001; // H form
2560}
Johnny Chen93042d12010-03-02 18:14:57 +00002561
2562// Generic versions of the above two instructions, for disassembly only
2563
2564def t2TBBgen : T2I<(outs), (ins GPR:$a, GPR:$b), IIC_Br,
2565 "tbb", "\t[$a, $b]", []>{
2566 let Inst{31-27} = 0b11101;
2567 let Inst{26-20} = 0b0001101;
2568 let Inst{15-8} = 0b11110000;
2569 let Inst{7-4} = 0b0000; // B form
2570}
2571
2572def t2TBHgen : T2I<(outs), (ins GPR:$a, GPR:$b), IIC_Br,
2573 "tbh", "\t[$a, $b, lsl #1]", []> {
2574 let Inst{31-27} = 0b11101;
2575 let Inst{26-20} = 0b0001101;
2576 let Inst{15-8} = 0b11110000;
2577 let Inst{7-4} = 0b0001; // H form
2578}
Evan Cheng5657c012009-07-29 02:18:14 +00002579} // isNotDuplicable, isIndirectBranch
2580
David Goodwinc9a59b52009-06-30 19:50:22 +00002581} // isBranch, isTerminator, isBarrier
David Goodwin5e47a9a2009-06-30 18:04:13 +00002582
2583// FIXME: should be able to write a pattern for ARMBrcond, but can't use
2584// a two-value operand where a dag node expects two operands. :(
2585let isBranch = 1, isTerminator = 1 in
David Goodwin8b7d7ad2009-08-06 16:52:47 +00002586def t2Bcc : T2I<(outs), (ins brtarget:$target), IIC_Br,
Evan Cheng699beba2009-10-27 00:08:59 +00002587 "b", ".w\t$target",
Johnny Chend68e1192009-12-15 17:24:14 +00002588 [/*(ARMbrcond bb:$target, imm:$cc)*/]> {
2589 let Inst{31-27} = 0b11110;
2590 let Inst{15-14} = 0b10;
2591 let Inst{12} = 0;
2592}
Evan Chengf49810c2009-06-23 17:48:47 +00002593
Evan Cheng06e16582009-07-10 01:54:42 +00002594
2595// IT block
Evan Cheng86050dc2010-06-18 23:09:54 +00002596let Defs = [ITSTATE] in
Evan Cheng06e16582009-07-10 01:54:42 +00002597def t2IT : Thumb2XI<(outs), (ins it_pred:$cc, it_mask:$mask),
David Goodwin5d598aa2009-08-19 18:00:44 +00002598 AddrModeNone, Size2Bytes, IIC_iALUx,
Johnny Chend68e1192009-12-15 17:24:14 +00002599 "it$mask\t$cc", "", []> {
2600 // 16-bit instruction.
Johnny Chenbbc71b22009-12-16 02:32:54 +00002601 let Inst{31-16} = 0x0000;
Johnny Chend68e1192009-12-15 17:24:14 +00002602 let Inst{15-8} = 0b10111111;
2603}
Evan Cheng06e16582009-07-10 01:54:42 +00002604
Johnny Chence6275f2010-02-25 19:05:29 +00002605// Branch and Exchange Jazelle -- for disassembly only
2606// Rm = Inst{19-16}
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002607def t2BXJ : T2I<(outs), (ins rGPR:$func), NoItinerary, "bxj", "\t$func",
Johnny Chence6275f2010-02-25 19:05:29 +00002608 [/* For disassembly only; pattern left blank */]> {
2609 let Inst{31-27} = 0b11110;
2610 let Inst{26} = 0;
2611 let Inst{25-20} = 0b111100;
2612 let Inst{15-14} = 0b10;
2613 let Inst{12} = 0;
2614}
2615
Johnny Chen93042d12010-03-02 18:14:57 +00002616// Change Processor State is a system instruction -- for disassembly only.
2617// The singleton $opt operand contains the following information:
2618// opt{4-0} = mode from Inst{4-0}
2619// opt{5} = changemode from Inst{17}
2620// opt{8-6} = AIF from Inst{8-6}
2621// opt{10-9} = imod from Inst{19-18} with 0b10 as enable and 0b11 as disable
Johnny Chendd0f3cf2010-03-10 18:59:38 +00002622def t2CPS : T2XI<(outs),(ins cps_opt:$opt), NoItinerary, "cps$opt",
Johnny Chen93042d12010-03-02 18:14:57 +00002623 [/* For disassembly only; pattern left blank */]> {
2624 let Inst{31-27} = 0b11110;
2625 let Inst{26} = 0;
2626 let Inst{25-20} = 0b111010;
2627 let Inst{15-14} = 0b10;
2628 let Inst{12} = 0;
2629}
2630
Johnny Chen0f7866e2010-03-03 02:09:43 +00002631// A6.3.4 Branches and miscellaneous control
2632// Table A6-14 Change Processor State, and hint instructions
2633// Helper class for disassembly only.
2634class T2I_hint<bits<8> op7_0, string opc, string asm>
2635 : T2I<(outs), (ins), NoItinerary, opc, asm,
2636 [/* For disassembly only; pattern left blank */]> {
2637 let Inst{31-20} = 0xf3a;
2638 let Inst{15-14} = 0b10;
2639 let Inst{12} = 0;
2640 let Inst{10-8} = 0b000;
2641 let Inst{7-0} = op7_0;
2642}
2643
2644def t2NOP : T2I_hint<0b00000000, "nop", ".w">;
2645def t2YIELD : T2I_hint<0b00000001, "yield", ".w">;
2646def t2WFE : T2I_hint<0b00000010, "wfe", ".w">;
2647def t2WFI : T2I_hint<0b00000011, "wfi", ".w">;
2648def t2SEV : T2I_hint<0b00000100, "sev", ".w">;
2649
2650def t2DBG : T2I<(outs),(ins i32imm:$opt), NoItinerary, "dbg", "\t$opt",
2651 [/* For disassembly only; pattern left blank */]> {
2652 let Inst{31-20} = 0xf3a;
2653 let Inst{15-14} = 0b10;
2654 let Inst{12} = 0;
2655 let Inst{10-8} = 0b000;
2656 let Inst{7-4} = 0b1111;
2657}
2658
Johnny Chen6341c5a2010-02-25 20:25:24 +00002659// Secure Monitor Call is a system instruction -- for disassembly only
2660// Option = Inst{19-16}
2661def t2SMC : T2I<(outs), (ins i32imm:$opt), NoItinerary, "smc", "\t$opt",
2662 [/* For disassembly only; pattern left blank */]> {
2663 let Inst{31-27} = 0b11110;
2664 let Inst{26-20} = 0b1111111;
2665 let Inst{15-12} = 0b1000;
2666}
2667
2668// Store Return State is a system instruction -- for disassembly only
2669def t2SRSDBW : T2I<(outs),(ins i32imm:$mode),NoItinerary,"srsdb","\tsp!, $mode",
2670 [/* For disassembly only; pattern left blank */]> {
2671 let Inst{31-27} = 0b11101;
2672 let Inst{26-20} = 0b0000010; // W = 1
2673}
2674
2675def t2SRSDB : T2I<(outs),(ins i32imm:$mode),NoItinerary,"srsdb","\tsp, $mode",
2676 [/* For disassembly only; pattern left blank */]> {
2677 let Inst{31-27} = 0b11101;
2678 let Inst{26-20} = 0b0000000; // W = 0
2679}
2680
2681def t2SRSIAW : T2I<(outs),(ins i32imm:$mode),NoItinerary,"srsia","\tsp!, $mode",
2682 [/* For disassembly only; pattern left blank */]> {
2683 let Inst{31-27} = 0b11101;
2684 let Inst{26-20} = 0b0011010; // W = 1
2685}
2686
2687def t2SRSIA : T2I<(outs), (ins i32imm:$mode),NoItinerary,"srsia","\tsp, $mode",
2688 [/* For disassembly only; pattern left blank */]> {
2689 let Inst{31-27} = 0b11101;
2690 let Inst{26-20} = 0b0011000; // W = 0
2691}
2692
2693// Return From Exception is a system instruction -- for disassembly only
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002694def t2RFEDBW : T2I<(outs), (ins rGPR:$base), NoItinerary, "rfedb", "\t$base!",
Johnny Chen6341c5a2010-02-25 20:25:24 +00002695 [/* For disassembly only; pattern left blank */]> {
2696 let Inst{31-27} = 0b11101;
2697 let Inst{26-20} = 0b0000011; // W = 1
2698}
2699
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002700def t2RFEDB : T2I<(outs), (ins rGPR:$base), NoItinerary, "rfeab", "\t$base",
Johnny Chen6341c5a2010-02-25 20:25:24 +00002701 [/* For disassembly only; pattern left blank */]> {
2702 let Inst{31-27} = 0b11101;
2703 let Inst{26-20} = 0b0000001; // W = 0
2704}
2705
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002706def t2RFEIAW : T2I<(outs), (ins rGPR:$base), NoItinerary, "rfeia", "\t$base!",
Johnny Chen6341c5a2010-02-25 20:25:24 +00002707 [/* For disassembly only; pattern left blank */]> {
2708 let Inst{31-27} = 0b11101;
2709 let Inst{26-20} = 0b0011011; // W = 1
2710}
2711
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002712def t2RFEIA : T2I<(outs), (ins rGPR:$base), NoItinerary, "rfeia", "\t$base",
Johnny Chen6341c5a2010-02-25 20:25:24 +00002713 [/* For disassembly only; pattern left blank */]> {
2714 let Inst{31-27} = 0b11101;
2715 let Inst{26-20} = 0b0011001; // W = 0
2716}
2717
Evan Chengf49810c2009-06-23 17:48:47 +00002718//===----------------------------------------------------------------------===//
2719// Non-Instruction Patterns
2720//
2721
Jim Grosbach65b7f3a2009-10-21 20:44:34 +00002722// Two piece so_imms.
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002723def : T2Pat<(or rGPR:$LHS, t2_so_imm2part:$RHS),
2724 (t2ORRri (t2ORRri rGPR:$LHS, (t2_so_imm2part_1 imm:$RHS)),
Jim Grosbach65b7f3a2009-10-21 20:44:34 +00002725 (t2_so_imm2part_2 imm:$RHS))>;
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002726def : T2Pat<(xor rGPR:$LHS, t2_so_imm2part:$RHS),
2727 (t2EORri (t2EORri rGPR:$LHS, (t2_so_imm2part_1 imm:$RHS)),
Jim Grosbach65b7f3a2009-10-21 20:44:34 +00002728 (t2_so_imm2part_2 imm:$RHS))>;
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002729def : T2Pat<(add rGPR:$LHS, t2_so_imm2part:$RHS),
2730 (t2ADDri (t2ADDri rGPR:$LHS, (t2_so_imm2part_1 imm:$RHS)),
Jim Grosbach65b7f3a2009-10-21 20:44:34 +00002731 (t2_so_imm2part_2 imm:$RHS))>;
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002732def : T2Pat<(add rGPR:$LHS, t2_so_neg_imm2part:$RHS),
2733 (t2SUBri (t2SUBri rGPR:$LHS, (t2_so_neg_imm2part_1 imm:$RHS)),
Jim Grosbach15e6ef82009-11-23 20:35:53 +00002734 (t2_so_neg_imm2part_2 imm:$RHS))>;
Jim Grosbach65b7f3a2009-10-21 20:44:34 +00002735
Evan Cheng5adb66a2009-09-28 09:14:39 +00002736// 32-bit immediate using movw + movt.
2737// This is a single pseudo instruction to make it re-materializable. Remove
2738// when we can do generalized remat.
2739let isReMaterializable = 1 in
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002740def t2MOVi32imm : T2Ix2<(outs rGPR:$dst), (ins i32imm:$src), IIC_iMOVi,
Evan Cheng699beba2009-10-27 00:08:59 +00002741 "movw", "\t$dst, ${src:lo16}\n\tmovt${p}\t$dst, ${src:hi16}",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002742 [(set rGPR:$dst, (i32 imm:$src))]>;
Evan Chengb9803a82009-11-06 23:52:48 +00002743
Anton Korobeynikov5cdc3a92009-11-24 00:44:37 +00002744// ConstantPool, GlobalAddress, and JumpTable
2745def : T2Pat<(ARMWrapper tglobaladdr :$dst), (t2LEApcrel tglobaladdr :$dst)>,
2746 Requires<[IsThumb2, DontUseMovt]>;
2747def : T2Pat<(ARMWrapper tconstpool :$dst), (t2LEApcrel tconstpool :$dst)>;
2748def : T2Pat<(ARMWrapper tglobaladdr :$dst), (t2MOVi32imm tglobaladdr :$dst)>,
2749 Requires<[IsThumb2, UseMovt]>;
2750
2751def : T2Pat<(ARMWrapperJT tjumptable:$dst, imm:$id),
2752 (t2LEApcrelJT tjumptable:$dst, imm:$id)>;
2753
Evan Chengb9803a82009-11-06 23:52:48 +00002754// Pseudo instruction that combines ldr from constpool and add pc. This should
2755// be expanded into two instructions late to allow if-conversion and
2756// scheduling.
Dan Gohmanbc9d98b2010-02-27 23:47:46 +00002757let canFoldAsLoad = 1, isReMaterializable = 1 in
Evan Chengb9803a82009-11-06 23:52:48 +00002758def t2LDRpci_pic : PseudoInst<(outs GPR:$dst), (ins i32imm:$addr, pclabel:$cp),
Jim Grosbach18f30e62010-06-02 21:53:11 +00002759 NoItinerary,
2760 "${:comment} ldr.w\t$dst, $addr\n$cp:\n\tadd\t$dst, pc",
Evan Chengb9803a82009-11-06 23:52:48 +00002761 [(set GPR:$dst, (ARMpic_add (load (ARMWrapper tconstpool:$addr)),
2762 imm:$cp))]>,
2763 Requires<[IsThumb2]>;
Johnny Chen23336552010-02-25 18:46:43 +00002764
2765//===----------------------------------------------------------------------===//
2766// Move between special register and ARM core register -- for disassembly only
2767//
2768
2769// Rd = Instr{11-8}
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002770def t2MRS : T2I<(outs rGPR:$dst), (ins), NoItinerary, "mrs", "\t$dst, cpsr",
Johnny Chen23336552010-02-25 18:46:43 +00002771 [/* For disassembly only; pattern left blank */]> {
2772 let Inst{31-27} = 0b11110;
2773 let Inst{26} = 0;
2774 let Inst{25-21} = 0b11111;
2775 let Inst{20} = 0; // The R bit.
2776 let Inst{15-14} = 0b10;
2777 let Inst{12} = 0;
2778}
2779
2780// Rd = Instr{11-8}
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002781def t2MRSsys : T2I<(outs rGPR:$dst), (ins), NoItinerary, "mrs", "\t$dst, spsr",
Johnny Chen23336552010-02-25 18:46:43 +00002782 [/* For disassembly only; pattern left blank */]> {
2783 let Inst{31-27} = 0b11110;
2784 let Inst{26} = 0;
2785 let Inst{25-21} = 0b11111;
2786 let Inst{20} = 1; // The R bit.
2787 let Inst{15-14} = 0b10;
2788 let Inst{12} = 0;
2789}
2790
Johnny Chen23336552010-02-25 18:46:43 +00002791// Rn = Inst{19-16}
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002792def t2MSR : T2I<(outs), (ins rGPR:$src, msr_mask:$mask), NoItinerary, "msr",
Johnny Chendd0f3cf2010-03-10 18:59:38 +00002793 "\tcpsr$mask, $src",
Johnny Chen23336552010-02-25 18:46:43 +00002794 [/* For disassembly only; pattern left blank */]> {
2795 let Inst{31-27} = 0b11110;
2796 let Inst{26} = 0;
2797 let Inst{25-21} = 0b11100;
2798 let Inst{20} = 0; // The R bit.
2799 let Inst{15-14} = 0b10;
2800 let Inst{12} = 0;
2801}
2802
Johnny Chen23336552010-02-25 18:46:43 +00002803// Rn = Inst{19-16}
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002804def t2MSRsys : T2I<(outs), (ins rGPR:$src, msr_mask:$mask), NoItinerary, "msr",
Johnny Chendd0f3cf2010-03-10 18:59:38 +00002805 "\tspsr$mask, $src",
Johnny Chen23336552010-02-25 18:46:43 +00002806 [/* For disassembly only; pattern left blank */]> {
2807 let Inst{31-27} = 0b11110;
2808 let Inst{26} = 0;
2809 let Inst{25-21} = 0b11100;
2810 let Inst{20} = 1; // The R bit.
2811 let Inst{15-14} = 0b10;
2812 let Inst{12} = 0;
2813}