blob: 6569664414f2de6843a36687069a1e09fd18609b [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", []> {
Jim Grosbach458f2dc2010-10-25 20:00:01 +0000131 let PrintMethod = "printAddrModeImm12Operand";
Evan Cheng055b0312009-06-29 07:51:04 +0000132 let MIOperandInfo = (ops GPR:$base, i32imm:$offsimm);
133}
134
Johnny Chen0635fc52010-03-04 17:40:44 +0000135// t2addrmode_imm8 := reg +/- imm8
Evan Cheng055b0312009-06-29 07:51:04 +0000136def t2addrmode_imm8 : Operand<i32>,
137 ComplexPattern<i32, 2, "SelectT2AddrModeImm8", []> {
138 let PrintMethod = "printT2AddrModeImm8Operand";
139 let MIOperandInfo = (ops GPR:$base, i32imm:$offsimm);
140}
141
Evan Cheng6d94f112009-07-03 00:06:39 +0000142def t2am_imm8_offset : Operand<i32>,
Chris Lattner52a261b2010-09-21 20:31:19 +0000143 ComplexPattern<i32, 1, "SelectT2AddrModeImm8Offset",
144 [], [SDNPWantRoot]> {
Evan Chenge88d5ce2009-07-02 07:28:31 +0000145 let PrintMethod = "printT2AddrModeImm8OffsetOperand";
146}
147
Evan Cheng5c874172009-07-09 22:21:59 +0000148// t2addrmode_imm8s4 := reg +/- (imm8 << 2)
Chris Lattner979b0612010-09-05 22:51:11 +0000149def t2addrmode_imm8s4 : Operand<i32> {
Evan Cheng5c874172009-07-09 22:21:59 +0000150 let PrintMethod = "printT2AddrModeImm8s4Operand";
David Goodwin6647cea2009-06-30 22:50:01 +0000151 let MIOperandInfo = (ops GPR:$base, i32imm:$offsimm);
152}
153
Johnny Chenae1757b2010-03-11 01:13:36 +0000154def t2am_imm8s4_offset : Operand<i32> {
155 let PrintMethod = "printT2AddrModeImm8s4OffsetOperand";
156}
157
Evan Chengcba962d2009-07-09 20:40:44 +0000158// t2addrmode_so_reg := reg + (reg << imm2)
Evan Cheng055b0312009-06-29 07:51:04 +0000159def t2addrmode_so_reg : Operand<i32>,
160 ComplexPattern<i32, 3, "SelectT2AddrModeSoReg", []> {
161 let PrintMethod = "printT2AddrModeSoRegOperand";
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000162 let MIOperandInfo = (ops GPR:$base, rGPR:$offsreg, i32imm:$offsimm);
Evan Cheng055b0312009-06-29 07:51:04 +0000163}
164
165
Anton Korobeynikov52237112009-06-17 18:13:58 +0000166//===----------------------------------------------------------------------===//
Evan Cheng9cb9e672009-06-27 02:26:13 +0000167// Multiclass helpers...
Anton Korobeynikov52237112009-06-17 18:13:58 +0000168//
169
Evan Chenga67efd12009-06-23 19:39:13 +0000170/// T2I_un_irs - Defines a set of (op reg, {so_imm|r|so_reg}) patterns for a
Evan Cheng0aa1d8c2009-06-25 02:08:06 +0000171/// unary operation that produces a value. These are predicable and can be
172/// changed to modify CPSR.
Evan Cheng5d42c562010-09-29 00:49:25 +0000173multiclass T2I_un_irs<bits<4> opcod, string opc,
174 InstrItinClass iii, InstrItinClass iir, InstrItinClass iis,
175 PatFrag opnode, bit Cheap = 0, bit ReMat = 0> {
Evan Chenga67efd12009-06-23 19:39:13 +0000176 // shifted imm
Evan Cheng5d42c562010-09-29 00:49:25 +0000177 def i : T2sI<(outs rGPR:$dst), (ins t2_so_imm:$src), iii,
Evan Cheng699beba2009-10-27 00:08:59 +0000178 opc, "\t$dst, $src",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000179 [(set rGPR:$dst, (opnode t2_so_imm:$src))]> {
Evan Chenga67efd12009-06-23 19:39:13 +0000180 let isAsCheapAsAMove = Cheap;
181 let isReMaterializable = ReMat;
Johnny Chend68e1192009-12-15 17:24:14 +0000182 let Inst{31-27} = 0b11110;
183 let Inst{25} = 0;
184 let Inst{24-21} = opcod;
185 let Inst{20} = ?; // The S bit.
186 let Inst{19-16} = 0b1111; // Rn
187 let Inst{15} = 0;
Evan Chenga67efd12009-06-23 19:39:13 +0000188 }
189 // register
Evan Cheng5d42c562010-09-29 00:49:25 +0000190 def r : T2sI<(outs rGPR:$dst), (ins rGPR:$src), iir,
Bob Wilsonc21763f2010-05-24 22:41:19 +0000191 opc, ".w\t$dst, $src",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000192 [(set rGPR:$dst, (opnode rGPR:$src))]> {
Johnny Chend68e1192009-12-15 17:24:14 +0000193 let Inst{31-27} = 0b11101;
194 let Inst{26-25} = 0b01;
195 let Inst{24-21} = opcod;
196 let Inst{20} = ?; // The S bit.
197 let Inst{19-16} = 0b1111; // Rn
198 let Inst{14-12} = 0b000; // imm3
199 let Inst{7-6} = 0b00; // imm2
200 let Inst{5-4} = 0b00; // type
201 }
Evan Chenga67efd12009-06-23 19:39:13 +0000202 // shifted register
Evan Cheng5d42c562010-09-29 00:49:25 +0000203 def s : T2sI<(outs rGPR:$dst), (ins t2_so_reg:$src), iis,
Bob Wilsonc21763f2010-05-24 22:41:19 +0000204 opc, ".w\t$dst, $src",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000205 [(set rGPR:$dst, (opnode t2_so_reg:$src))]> {
Johnny Chend68e1192009-12-15 17:24:14 +0000206 let Inst{31-27} = 0b11101;
207 let Inst{26-25} = 0b01;
208 let Inst{24-21} = opcod;
209 let Inst{20} = ?; // The S bit.
210 let Inst{19-16} = 0b1111; // Rn
211 }
Evan Chenga67efd12009-06-23 19:39:13 +0000212}
213
214/// T2I_bin_irs - Defines a set of (op reg, {so_imm|r|so_reg}) patterns for a
Bob Wilson4876bdb2010-05-25 04:43:08 +0000215/// binary operation that produces a value. These are predicable and can be
Evan Cheng0aa1d8c2009-06-25 02:08:06 +0000216/// changed to modify CPSR.
Evan Cheng7e1bf302010-09-29 00:27:46 +0000217multiclass T2I_bin_irs<bits<4> opcod, string opc,
218 InstrItinClass iii, InstrItinClass iir, InstrItinClass iis,
219 PatFrag opnode, bit Commutable = 0, string wide = ""> {
Anton Korobeynikov52237112009-06-17 18:13:58 +0000220 // shifted imm
Evan Cheng7e1bf302010-09-29 00:27:46 +0000221 def ri : T2sI<(outs rGPR:$dst), (ins rGPR:$lhs, t2_so_imm:$rhs), iii,
Evan Cheng699beba2009-10-27 00:08:59 +0000222 opc, "\t$dst, $lhs, $rhs",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000223 [(set rGPR:$dst, (opnode rGPR:$lhs, t2_so_imm:$rhs))]> {
Johnny Chend68e1192009-12-15 17:24:14 +0000224 let Inst{31-27} = 0b11110;
225 let Inst{25} = 0;
226 let Inst{24-21} = opcod;
Bill Wendling4822bce2010-08-30 01:47:35 +0000227 let Inst{20} = ?; // The S bit.
Johnny Chend68e1192009-12-15 17:24:14 +0000228 let Inst{15} = 0;
229 }
Evan Chenga67efd12009-06-23 19:39:13 +0000230 // register
Evan Cheng7e1bf302010-09-29 00:27:46 +0000231 def rr : T2sI<(outs rGPR:$dst), (ins rGPR:$lhs, rGPR:$rhs), iir,
Evan Cheng699beba2009-10-27 00:08:59 +0000232 opc, !strconcat(wide, "\t$dst, $lhs, $rhs"),
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000233 [(set rGPR:$dst, (opnode rGPR:$lhs, rGPR:$rhs))]> {
Evan Cheng8de898a2009-06-26 00:19:44 +0000234 let isCommutable = Commutable;
Johnny Chend68e1192009-12-15 17:24:14 +0000235 let Inst{31-27} = 0b11101;
236 let Inst{26-25} = 0b01;
237 let Inst{24-21} = opcod;
Bill Wendling4822bce2010-08-30 01:47:35 +0000238 let Inst{20} = ?; // The S bit.
Johnny Chend68e1192009-12-15 17:24:14 +0000239 let Inst{14-12} = 0b000; // imm3
240 let Inst{7-6} = 0b00; // imm2
241 let Inst{5-4} = 0b00; // type
Evan Cheng8de898a2009-06-26 00:19:44 +0000242 }
Anton Korobeynikov52237112009-06-17 18:13:58 +0000243 // shifted register
Evan Cheng7e1bf302010-09-29 00:27:46 +0000244 def rs : T2sI<(outs rGPR:$dst), (ins rGPR:$lhs, t2_so_reg:$rhs), iis,
Evan Cheng699beba2009-10-27 00:08:59 +0000245 opc, !strconcat(wide, "\t$dst, $lhs, $rhs"),
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000246 [(set rGPR:$dst, (opnode rGPR:$lhs, t2_so_reg:$rhs))]> {
Johnny Chend68e1192009-12-15 17:24:14 +0000247 let Inst{31-27} = 0b11101;
248 let Inst{26-25} = 0b01;
249 let Inst{24-21} = opcod;
Bill Wendling4822bce2010-08-30 01:47:35 +0000250 let Inst{20} = ?; // The S bit.
251 }
252}
253
David Goodwin1f096272009-07-27 23:34:12 +0000254/// T2I_bin_w_irs - Same as T2I_bin_irs except these operations need
255// the ".w" prefix to indicate that they are wide.
Evan Cheng7e1bf302010-09-29 00:27:46 +0000256multiclass T2I_bin_w_irs<bits<4> opcod, string opc,
257 InstrItinClass iii, InstrItinClass iir, InstrItinClass iis,
258 PatFrag opnode, bit Commutable = 0> :
259 T2I_bin_irs<opcod, opc, iii, iir, iis, opnode, Commutable, ".w">;
Bill Wendling1f7bf0e2010-08-29 03:55:31 +0000260
Evan Cheng1e249e32009-06-25 20:59:23 +0000261/// T2I_rbin_is - Same as T2I_bin_irs except the order of operands are
Bob Wilson20d8e4e2010-08-13 23:24:25 +0000262/// reversed. The 'rr' form is only defined for the disassembler; for codegen
263/// it is equivalent to the T2I_bin_irs counterpart.
264multiclass T2I_rbin_irs<bits<4> opcod, string opc, PatFrag opnode> {
Evan Chengf49810c2009-06-23 17:48:47 +0000265 // shifted imm
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000266 def ri : T2sI<(outs rGPR:$dst), (ins rGPR:$rhs, t2_so_imm:$lhs), IIC_iALUi,
Bob Wilson4876bdb2010-05-25 04:43:08 +0000267 opc, ".w\t$dst, $rhs, $lhs",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000268 [(set rGPR:$dst, (opnode t2_so_imm:$lhs, rGPR:$rhs))]> {
Johnny Chend68e1192009-12-15 17:24:14 +0000269 let Inst{31-27} = 0b11110;
270 let Inst{25} = 0;
271 let Inst{24-21} = opcod;
Bob Wilson4876bdb2010-05-25 04:43:08 +0000272 let Inst{20} = ?; // The S bit.
Johnny Chend68e1192009-12-15 17:24:14 +0000273 let Inst{15} = 0;
274 }
Bob Wilson20d8e4e2010-08-13 23:24:25 +0000275 // register
276 def rr : T2sI<(outs rGPR:$dst), (ins rGPR:$rhs, rGPR:$lhs), IIC_iALUr,
277 opc, "\t$dst, $rhs, $lhs",
Bob Wilson136e4912010-08-14 03:18:29 +0000278 [/* For disassembly only; pattern left blank */]> {
Bob Wilson20d8e4e2010-08-13 23:24:25 +0000279 let Inst{31-27} = 0b11101;
280 let Inst{26-25} = 0b01;
281 let Inst{24-21} = opcod;
282 let Inst{20} = ?; // The S bit.
283 let Inst{14-12} = 0b000; // imm3
284 let Inst{7-6} = 0b00; // imm2
285 let Inst{5-4} = 0b00; // type
286 }
Evan Chengf49810c2009-06-23 17:48:47 +0000287 // shifted register
Evan Cheng3881cb72010-09-29 22:42:35 +0000288 def rs : T2sI<(outs rGPR:$dst), (ins rGPR:$rhs, t2_so_reg:$lhs), IIC_iALUsir,
Bob Wilson4876bdb2010-05-25 04:43:08 +0000289 opc, "\t$dst, $rhs, $lhs",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000290 [(set rGPR:$dst, (opnode t2_so_reg:$lhs, rGPR:$rhs))]> {
Johnny Chend68e1192009-12-15 17:24:14 +0000291 let Inst{31-27} = 0b11101;
292 let Inst{26-25} = 0b01;
293 let Inst{24-21} = opcod;
Bob Wilson4876bdb2010-05-25 04:43:08 +0000294 let Inst{20} = ?; // The S bit.
Johnny Chend68e1192009-12-15 17:24:14 +0000295 }
Evan Chengf49810c2009-06-23 17:48:47 +0000296}
297
Evan Chenga67efd12009-06-23 19:39:13 +0000298/// T2I_bin_s_irs - Similar to T2I_bin_irs except it sets the 's' bit so the
Anton Korobeynikov52237112009-06-17 18:13:58 +0000299/// instruction modifies the CPSR register.
300let Defs = [CPSR] in {
Evan Cheng7e1bf302010-09-29 00:27:46 +0000301multiclass T2I_bin_s_irs<bits<4> opcod, string opc,
302 InstrItinClass iii, InstrItinClass iir, InstrItinClass iis,
303 PatFrag opnode, bit Commutable = 0> {
Anton Korobeynikov52237112009-06-17 18:13:58 +0000304 // shifted imm
Evan Cheng7e1bf302010-09-29 00:27:46 +0000305 def ri : T2I<(outs rGPR:$dst), (ins GPR:$lhs, t2_so_imm:$rhs), iii,
Evan Cheng699beba2009-10-27 00:08:59 +0000306 !strconcat(opc, "s"), ".w\t$dst, $lhs, $rhs",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000307 [(set rGPR:$dst, (opnode GPR:$lhs, t2_so_imm:$rhs))]> {
Johnny Chend68e1192009-12-15 17:24:14 +0000308 let Inst{31-27} = 0b11110;
309 let Inst{25} = 0;
310 let Inst{24-21} = opcod;
311 let Inst{20} = 1; // The S bit.
312 let Inst{15} = 0;
313 }
Evan Chenga67efd12009-06-23 19:39:13 +0000314 // register
Evan Cheng7e1bf302010-09-29 00:27:46 +0000315 def rr : T2I<(outs rGPR:$dst), (ins GPR:$lhs, rGPR:$rhs), iir,
Evan Cheng699beba2009-10-27 00:08:59 +0000316 !strconcat(opc, "s"), ".w\t$dst, $lhs, $rhs",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000317 [(set rGPR:$dst, (opnode GPR:$lhs, rGPR:$rhs))]> {
Evan Cheng8de898a2009-06-26 00:19:44 +0000318 let isCommutable = Commutable;
Johnny Chend68e1192009-12-15 17:24:14 +0000319 let Inst{31-27} = 0b11101;
320 let Inst{26-25} = 0b01;
321 let Inst{24-21} = opcod;
322 let Inst{20} = 1; // The S bit.
323 let Inst{14-12} = 0b000; // imm3
324 let Inst{7-6} = 0b00; // imm2
325 let Inst{5-4} = 0b00; // type
Evan Cheng8de898a2009-06-26 00:19:44 +0000326 }
Anton Korobeynikov52237112009-06-17 18:13:58 +0000327 // shifted register
Evan Cheng7e1bf302010-09-29 00:27:46 +0000328 def rs : T2I<(outs rGPR:$dst), (ins GPR:$lhs, t2_so_reg:$rhs), iis,
Evan Cheng699beba2009-10-27 00:08:59 +0000329 !strconcat(opc, "s"), ".w\t$dst, $lhs, $rhs",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000330 [(set rGPR:$dst, (opnode GPR:$lhs, t2_so_reg:$rhs))]> {
Johnny Chend68e1192009-12-15 17:24:14 +0000331 let Inst{31-27} = 0b11101;
332 let Inst{26-25} = 0b01;
333 let Inst{24-21} = opcod;
334 let Inst{20} = 1; // The S bit.
335 }
Anton Korobeynikov52237112009-06-17 18:13:58 +0000336}
337}
338
Evan Chenga67efd12009-06-23 19:39:13 +0000339/// T2I_bin_ii12rs - Defines a set of (op reg, {so_imm|imm0_4095|r|so_reg})
340/// patterns for a binary operation that produces a value.
Johnny Chend68e1192009-12-15 17:24:14 +0000341multiclass T2I_bin_ii12rs<bits<3> op23_21, string opc, PatFrag opnode,
342 bit Commutable = 0> {
Evan Chengf49810c2009-06-23 17:48:47 +0000343 // shifted imm
Jim Grosbach663e3392010-08-30 19:49:58 +0000344 // The register-immediate version is re-materializable. This is useful
345 // in particular for taking the address of a local.
346 let isReMaterializable = 1 in {
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000347 def ri : T2sI<(outs rGPR:$dst), (ins GPR:$lhs, t2_so_imm:$rhs), IIC_iALUi,
Evan Cheng699beba2009-10-27 00:08:59 +0000348 opc, ".w\t$dst, $lhs, $rhs",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000349 [(set rGPR:$dst, (opnode GPR:$lhs, t2_so_imm:$rhs))]> {
Johnny Chend68e1192009-12-15 17:24:14 +0000350 let Inst{31-27} = 0b11110;
351 let Inst{25} = 0;
352 let Inst{24} = 1;
353 let Inst{23-21} = op23_21;
354 let Inst{20} = 0; // The S bit.
355 let Inst{15} = 0;
356 }
Jim Grosbach663e3392010-08-30 19:49:58 +0000357 }
Evan Chengf49810c2009-06-23 17:48:47 +0000358 // 12-bit imm
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000359 def ri12 : T2I<(outs rGPR:$dst), (ins GPR:$lhs, imm0_4095:$rhs), IIC_iALUi,
Bob Wilsonf5fd4992010-03-08 22:56:15 +0000360 !strconcat(opc, "w"), "\t$dst, $lhs, $rhs",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000361 [(set rGPR:$dst, (opnode GPR:$lhs, imm0_4095:$rhs))]> {
Johnny Chend68e1192009-12-15 17:24:14 +0000362 let Inst{31-27} = 0b11110;
363 let Inst{25} = 1;
364 let Inst{24} = 0;
365 let Inst{23-21} = op23_21;
366 let Inst{20} = 0; // The S bit.
367 let Inst{15} = 0;
368 }
Evan Chenga67efd12009-06-23 19:39:13 +0000369 // register
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000370 def rr : T2sI<(outs rGPR:$dst), (ins GPR:$lhs, rGPR:$rhs), IIC_iALUr,
Evan Cheng699beba2009-10-27 00:08:59 +0000371 opc, ".w\t$dst, $lhs, $rhs",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000372 [(set rGPR:$dst, (opnode GPR:$lhs, rGPR:$rhs))]> {
Evan Cheng8de898a2009-06-26 00:19:44 +0000373 let isCommutable = Commutable;
Johnny Chend68e1192009-12-15 17:24:14 +0000374 let Inst{31-27} = 0b11101;
375 let Inst{26-25} = 0b01;
376 let Inst{24} = 1;
377 let Inst{23-21} = op23_21;
378 let Inst{20} = 0; // The S bit.
379 let Inst{14-12} = 0b000; // imm3
380 let Inst{7-6} = 0b00; // imm2
381 let Inst{5-4} = 0b00; // type
Evan Cheng8de898a2009-06-26 00:19:44 +0000382 }
Evan Chengf49810c2009-06-23 17:48:47 +0000383 // shifted register
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000384 def rs : T2sI<(outs rGPR:$dst), (ins GPR:$lhs, t2_so_reg:$rhs), IIC_iALUsi,
Evan Cheng699beba2009-10-27 00:08:59 +0000385 opc, ".w\t$dst, $lhs, $rhs",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000386 [(set rGPR:$dst, (opnode GPR:$lhs, t2_so_reg:$rhs))]> {
Johnny Chend68e1192009-12-15 17:24:14 +0000387 let Inst{31-27} = 0b11101;
Johnny Chend68e1192009-12-15 17:24:14 +0000388 let Inst{26-25} = 0b01;
Johnny Chend248ffb2010-01-08 17:41:33 +0000389 let Inst{24} = 1;
Johnny Chend68e1192009-12-15 17:24:14 +0000390 let Inst{23-21} = op23_21;
391 let Inst{20} = 0; // The S bit.
392 }
Evan Chengf49810c2009-06-23 17:48:47 +0000393}
394
Jim Grosbach6935efc2009-11-24 00:20:27 +0000395/// T2I_adde_sube_irs - Defines a set of (op reg, {so_imm|r|so_reg}) patterns
Jim Grosbach39be8fc2010-02-16 20:42:29 +0000396/// for a binary operation that produces a value and use the carry
Jim Grosbach6935efc2009-11-24 00:20:27 +0000397/// bit. It's not predicable.
Evan Cheng62674222009-06-25 23:34:10 +0000398let Uses = [CPSR] in {
Jim Grosbach80dc1162010-02-16 21:23:02 +0000399multiclass T2I_adde_sube_irs<bits<4> opcod, string opc, PatFrag opnode,
400 bit Commutable = 0> {
Anton Korobeynikov52237112009-06-17 18:13:58 +0000401 // shifted imm
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000402 def ri : T2sI<(outs rGPR:$dst), (ins rGPR:$lhs, t2_so_imm:$rhs), IIC_iALUi,
Evan Cheng699beba2009-10-27 00:08:59 +0000403 opc, "\t$dst, $lhs, $rhs",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000404 [(set rGPR:$dst, (opnode rGPR:$lhs, t2_so_imm:$rhs))]>,
Jim Grosbach39be8fc2010-02-16 20:42:29 +0000405 Requires<[IsThumb2]> {
Johnny Chend68e1192009-12-15 17:24:14 +0000406 let Inst{31-27} = 0b11110;
407 let Inst{25} = 0;
408 let Inst{24-21} = opcod;
409 let Inst{20} = 0; // The S bit.
410 let Inst{15} = 0;
411 }
Evan Chenga67efd12009-06-23 19:39:13 +0000412 // register
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000413 def rr : T2sI<(outs rGPR:$dst), (ins rGPR:$lhs, rGPR:$rhs), IIC_iALUr,
Evan Cheng699beba2009-10-27 00:08:59 +0000414 opc, ".w\t$dst, $lhs, $rhs",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000415 [(set rGPR:$dst, (opnode rGPR:$lhs, rGPR:$rhs))]>,
Jim Grosbach39be8fc2010-02-16 20:42:29 +0000416 Requires<[IsThumb2]> {
Evan Cheng8de898a2009-06-26 00:19:44 +0000417 let isCommutable = Commutable;
Johnny Chend68e1192009-12-15 17:24:14 +0000418 let Inst{31-27} = 0b11101;
419 let Inst{26-25} = 0b01;
420 let Inst{24-21} = opcod;
421 let Inst{20} = 0; // The S bit.
422 let Inst{14-12} = 0b000; // imm3
423 let Inst{7-6} = 0b00; // imm2
424 let Inst{5-4} = 0b00; // type
Evan Cheng8de898a2009-06-26 00:19:44 +0000425 }
Anton Korobeynikov52237112009-06-17 18:13:58 +0000426 // shifted register
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000427 def rs : T2sI<(outs rGPR:$dst), (ins rGPR:$lhs, t2_so_reg:$rhs), IIC_iALUsi,
Evan Cheng699beba2009-10-27 00:08:59 +0000428 opc, ".w\t$dst, $lhs, $rhs",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000429 [(set rGPR:$dst, (opnode rGPR:$lhs, t2_so_reg:$rhs))]>,
Jim Grosbach39be8fc2010-02-16 20:42:29 +0000430 Requires<[IsThumb2]> {
Johnny Chend68e1192009-12-15 17:24:14 +0000431 let Inst{31-27} = 0b11101;
432 let Inst{26-25} = 0b01;
433 let Inst{24-21} = opcod;
434 let Inst{20} = 0; // The S bit.
435 }
Jim Grosbach39be8fc2010-02-16 20:42:29 +0000436}
437
438// Carry setting variants
439let Defs = [CPSR] in {
Jim Grosbach80dc1162010-02-16 21:23:02 +0000440multiclass T2I_adde_sube_s_irs<bits<4> opcod, string opc, PatFrag opnode,
441 bit Commutable = 0> {
Evan Cheng62674222009-06-25 23:34:10 +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,
Johnny Chenb5031ad2010-03-02 19:38: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))]>,
Johnny Chenb5031ad2010-03-02 19:38:59 +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} = 1; // The S bit.
451 let Inst{15} = 0;
452 }
Evan Cheng62674222009-06-25 23:34:10 +0000453 // register
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000454 def rr : T2sI<(outs rGPR:$dst), (ins rGPR:$lhs, rGPR:$rhs), IIC_iALUr,
Johnny Chenb5031ad2010-03-02 19:38:59 +0000455 opc, ".w\t$dst, $lhs, $rhs",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000456 [(set rGPR:$dst, (opnode rGPR:$lhs, rGPR:$rhs))]>,
Johnny Chenb5031ad2010-03-02 19:38:59 +0000457 Requires<[IsThumb2]> {
Johnny Chend68e1192009-12-15 17:24:14 +0000458 let isCommutable = Commutable;
459 let Inst{31-27} = 0b11101;
460 let Inst{26-25} = 0b01;
461 let Inst{24-21} = opcod;
462 let Inst{20} = 1; // 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 }
Evan Cheng62674222009-06-25 23:34:10 +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,
Johnny Chenb5031ad2010-03-02 19:38: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))]>,
Johnny Chenb5031ad2010-03-02 19:38:59 +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} = 1; // The S bit.
Evan Cheng8de898a2009-06-26 00:19:44 +0000476 }
Evan Chengf49810c2009-06-23 17:48:47 +0000477}
478}
Jim Grosbach39be8fc2010-02-16 20:42:29 +0000479}
Evan Chengf49810c2009-06-23 17:48:47 +0000480
Bob Wilson20d8e4e2010-08-13 23:24:25 +0000481/// T2I_rbin_s_is - Same as T2I_rbin_irs except sets 's' bit and the register
482/// version is not needed since this is only for codegen.
Evan Cheng1e249e32009-06-25 20:59:23 +0000483let Defs = [CPSR] in {
Johnny Chend68e1192009-12-15 17:24:14 +0000484multiclass T2I_rbin_s_is<bits<4> opcod, string opc, PatFrag opnode> {
Evan Chengf49810c2009-06-23 17:48:47 +0000485 // shifted imm
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000486 def ri : T2I<(outs rGPR:$dst), (ins rGPR:$rhs, t2_so_imm:$lhs), IIC_iALUi,
Bob Wilson4876bdb2010-05-25 04:43:08 +0000487 !strconcat(opc, "s"), ".w\t$dst, $rhs, $lhs",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000488 [(set rGPR:$dst, (opnode t2_so_imm:$lhs, rGPR:$rhs))]> {
Johnny Chend68e1192009-12-15 17:24:14 +0000489 let Inst{31-27} = 0b11110;
490 let Inst{25} = 0;
491 let Inst{24-21} = opcod;
492 let Inst{20} = 1; // The S bit.
493 let Inst{15} = 0;
494 }
Evan Chengf49810c2009-06-23 17:48:47 +0000495 // shifted register
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000496 def rs : T2I<(outs rGPR:$dst), (ins rGPR:$rhs, t2_so_reg:$lhs), IIC_iALUsi,
Bob Wilson4876bdb2010-05-25 04:43:08 +0000497 !strconcat(opc, "s"), "\t$dst, $rhs, $lhs",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000498 [(set rGPR:$dst, (opnode t2_so_reg:$lhs, rGPR:$rhs))]> {
Johnny Chend68e1192009-12-15 17:24:14 +0000499 let Inst{31-27} = 0b11101;
500 let Inst{26-25} = 0b01;
501 let Inst{24-21} = opcod;
502 let Inst{20} = 1; // The S bit.
503 }
Evan Chengf49810c2009-06-23 17:48:47 +0000504}
505}
506
Evan Chenga67efd12009-06-23 19:39:13 +0000507/// T2I_sh_ir - Defines a set of (op reg, {so_imm|r}) patterns for a shift /
508// rotate operation that produces a value.
Johnny Chend68e1192009-12-15 17:24:14 +0000509multiclass T2I_sh_ir<bits<2> opcod, string opc, PatFrag opnode> {
Evan Chenga67efd12009-06-23 19:39:13 +0000510 // 5-bit imm
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000511 def ri : T2sI<(outs rGPR:$dst), (ins rGPR:$lhs, i32imm:$rhs), IIC_iMOVsi,
Evan Cheng699beba2009-10-27 00:08:59 +0000512 opc, ".w\t$dst, $lhs, $rhs",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000513 [(set rGPR:$dst, (opnode rGPR:$lhs, imm1_31:$rhs))]> {
Johnny Chend68e1192009-12-15 17:24:14 +0000514 let Inst{31-27} = 0b11101;
515 let Inst{26-21} = 0b010010;
516 let Inst{19-16} = 0b1111; // Rn
517 let Inst{5-4} = opcod;
518 }
Evan Chenga67efd12009-06-23 19:39:13 +0000519 // register
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000520 def rr : T2sI<(outs rGPR:$dst), (ins rGPR:$lhs, rGPR:$rhs), IIC_iMOVsr,
Evan Cheng699beba2009-10-27 00:08:59 +0000521 opc, ".w\t$dst, $lhs, $rhs",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000522 [(set rGPR:$dst, (opnode rGPR:$lhs, rGPR:$rhs))]> {
Johnny Chend68e1192009-12-15 17:24:14 +0000523 let Inst{31-27} = 0b11111;
524 let Inst{26-23} = 0b0100;
525 let Inst{22-21} = opcod;
526 let Inst{15-12} = 0b1111;
527 let Inst{7-4} = 0b0000;
528 }
Evan Chenga67efd12009-06-23 19:39:13 +0000529}
Evan Chengf49810c2009-06-23 17:48:47 +0000530
Johnny Chend68e1192009-12-15 17:24:14 +0000531/// T2I_cmp_irs - Defines a set of (op r, {so_imm|r|so_reg}) cmp / test
Evan Chenga67efd12009-06-23 19:39:13 +0000532/// patterns. Similar to T2I_bin_irs except the instruction does not produce
Evan Chengf49810c2009-06-23 17:48:47 +0000533/// a explicit result, only implicitly set CPSR.
Bill Wendlingf0e132c2010-08-19 00:05:48 +0000534let isCompare = 1, Defs = [CPSR] in {
Evan Cheng5d42c562010-09-29 00:49:25 +0000535multiclass T2I_cmp_irs<bits<4> opcod, string opc,
536 InstrItinClass iii, InstrItinClass iir, InstrItinClass iis,
537 PatFrag opnode> {
Evan Chengf49810c2009-06-23 17:48:47 +0000538 // shifted imm
Evan Cheng5d42c562010-09-29 00:49:25 +0000539 def ri : T2I<(outs), (ins GPR:$lhs, t2_so_imm:$rhs), iii,
Evan Cheng699beba2009-10-27 00:08:59 +0000540 opc, ".w\t$lhs, $rhs",
Johnny Chend68e1192009-12-15 17:24:14 +0000541 [(opnode GPR:$lhs, t2_so_imm:$rhs)]> {
542 let Inst{31-27} = 0b11110;
543 let Inst{25} = 0;
544 let Inst{24-21} = opcod;
545 let Inst{20} = 1; // The S bit.
546 let Inst{15} = 0;
547 let Inst{11-8} = 0b1111; // Rd
548 }
Evan Chenga67efd12009-06-23 19:39:13 +0000549 // register
Evan Cheng5d42c562010-09-29 00:49:25 +0000550 def rr : T2I<(outs), (ins GPR:$lhs, rGPR:$rhs), iir,
Evan Cheng699beba2009-10-27 00:08:59 +0000551 opc, ".w\t$lhs, $rhs",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000552 [(opnode GPR:$lhs, rGPR:$rhs)]> {
Johnny Chend68e1192009-12-15 17:24:14 +0000553 let Inst{31-27} = 0b11101;
554 let Inst{26-25} = 0b01;
555 let Inst{24-21} = opcod;
556 let Inst{20} = 1; // The S bit.
557 let Inst{14-12} = 0b000; // imm3
558 let Inst{11-8} = 0b1111; // Rd
559 let Inst{7-6} = 0b00; // imm2
560 let Inst{5-4} = 0b00; // type
561 }
Evan Chengf49810c2009-06-23 17:48:47 +0000562 // shifted register
Evan Cheng5d42c562010-09-29 00:49:25 +0000563 def rs : T2I<(outs), (ins GPR:$lhs, t2_so_reg:$rhs), iis,
Evan Cheng699beba2009-10-27 00:08:59 +0000564 opc, ".w\t$lhs, $rhs",
Johnny Chend68e1192009-12-15 17:24:14 +0000565 [(opnode GPR:$lhs, t2_so_reg:$rhs)]> {
566 let Inst{31-27} = 0b11101;
567 let Inst{26-25} = 0b01;
568 let Inst{24-21} = opcod;
569 let Inst{20} = 1; // The S bit.
570 let Inst{11-8} = 0b1111; // Rd
571 }
Anton Korobeynikov52237112009-06-17 18:13:58 +0000572}
573}
574
Evan Chengf3c21b82009-06-30 02:15:48 +0000575/// T2I_ld - Defines a set of (op r, {imm12|imm8|so_reg}) load patterns.
Evan Cheng0e55fd62010-09-30 01:08:25 +0000576multiclass T2I_ld<bit signed, bits<2> opcod, string opc,
Evan Cheng7e2fe912010-10-28 06:47:08 +0000577 InstrItinClass iii, InstrItinClass iis, PatFrag opnode> {
Evan Cheng0e55fd62010-09-30 01:08:25 +0000578 def i12 : T2Ii12<(outs GPR:$dst), (ins t2addrmode_imm12:$addr), iii,
Evan Cheng699beba2009-10-27 00:08:59 +0000579 opc, ".w\t$dst, $addr",
Johnny Chend68e1192009-12-15 17:24:14 +0000580 [(set GPR:$dst, (opnode t2addrmode_imm12:$addr))]> {
581 let Inst{31-27} = 0b11111;
582 let Inst{26-25} = 0b00;
583 let Inst{24} = signed;
584 let Inst{23} = 1;
585 let Inst{22-21} = opcod;
586 let Inst{20} = 1; // load
587 }
Evan Cheng0e55fd62010-09-30 01:08:25 +0000588 def i8 : T2Ii8 <(outs GPR:$dst), (ins t2addrmode_imm8:$addr), iii,
Evan Cheng699beba2009-10-27 00:08:59 +0000589 opc, "\t$dst, $addr",
Johnny Chend68e1192009-12-15 17:24:14 +0000590 [(set GPR:$dst, (opnode t2addrmode_imm8:$addr))]> {
591 let Inst{31-27} = 0b11111;
592 let Inst{26-25} = 0b00;
593 let Inst{24} = signed;
594 let Inst{23} = 0;
595 let Inst{22-21} = opcod;
596 let Inst{20} = 1; // load
597 let Inst{11} = 1;
598 // Offset: index==TRUE, wback==FALSE
599 let Inst{10} = 1; // The P bit.
600 let Inst{8} = 0; // The W bit.
601 }
Evan Cheng7e2fe912010-10-28 06:47:08 +0000602 def s : T2Iso <(outs GPR:$dst), (ins t2addrmode_so_reg:$addr), iis,
Evan Cheng699beba2009-10-27 00:08:59 +0000603 opc, ".w\t$dst, $addr",
Johnny Chend68e1192009-12-15 17:24:14 +0000604 [(set GPR:$dst, (opnode t2addrmode_so_reg:$addr))]> {
605 let Inst{31-27} = 0b11111;
606 let Inst{26-25} = 0b00;
607 let Inst{24} = signed;
608 let Inst{23} = 0;
609 let Inst{22-21} = opcod;
610 let Inst{20} = 1; // load
611 let Inst{11-6} = 0b000000;
612 }
Evan Chengbc7deb02010-11-03 05:14:24 +0000613
614 // FIXME: Is the pci variant actually needed?
Evan Cheng0e55fd62010-09-30 01:08:25 +0000615 def pci : T2Ipc <(outs GPR:$dst), (ins i32imm:$addr), iii,
Evan Cheng699beba2009-10-27 00:08:59 +0000616 opc, ".w\t$dst, $addr",
Evan Cheng9eda6892009-10-31 03:39:36 +0000617 [(set GPR:$dst, (opnode (ARMWrapper tconstpool:$addr)))]> {
618 let isReMaterializable = 1;
Johnny Chend68e1192009-12-15 17:24:14 +0000619 let Inst{31-27} = 0b11111;
620 let Inst{26-25} = 0b00;
621 let Inst{24} = signed;
622 let Inst{23} = ?; // add = (U == '1')
623 let Inst{22-21} = opcod;
624 let Inst{20} = 1; // load
625 let Inst{19-16} = 0b1111; // Rn
Evan Cheng9eda6892009-10-31 03:39:36 +0000626 }
Evan Chengf3c21b82009-06-30 02:15:48 +0000627}
628
David Goodwin73b8f162009-06-30 22:11:34 +0000629/// T2I_st - Defines a set of (op r, {imm12|imm8|so_reg}) store patterns.
Evan Cheng0e55fd62010-09-30 01:08:25 +0000630multiclass T2I_st<bits<2> opcod, string opc,
Evan Cheng7e2fe912010-10-28 06:47:08 +0000631 InstrItinClass iii, InstrItinClass iis, PatFrag opnode> {
Evan Cheng0e55fd62010-09-30 01:08:25 +0000632 def i12 : T2Ii12<(outs), (ins GPR:$src, t2addrmode_imm12:$addr), iii,
Evan Cheng699beba2009-10-27 00:08:59 +0000633 opc, ".w\t$src, $addr",
Johnny Chend68e1192009-12-15 17:24:14 +0000634 [(opnode GPR:$src, t2addrmode_imm12:$addr)]> {
635 let Inst{31-27} = 0b11111;
636 let Inst{26-23} = 0b0001;
637 let Inst{22-21} = opcod;
638 let Inst{20} = 0; // !load
639 }
Evan Cheng0e55fd62010-09-30 01:08:25 +0000640 def i8 : T2Ii8 <(outs), (ins GPR:$src, t2addrmode_imm8:$addr), iii,
Evan Cheng699beba2009-10-27 00:08:59 +0000641 opc, "\t$src, $addr",
Johnny Chend68e1192009-12-15 17:24:14 +0000642 [(opnode GPR:$src, t2addrmode_imm8:$addr)]> {
643 let Inst{31-27} = 0b11111;
644 let Inst{26-23} = 0b0000;
645 let Inst{22-21} = opcod;
646 let Inst{20} = 0; // !load
647 let Inst{11} = 1;
648 // Offset: index==TRUE, wback==FALSE
649 let Inst{10} = 1; // The P bit.
650 let Inst{8} = 0; // The W bit.
651 }
Evan Cheng7e2fe912010-10-28 06:47:08 +0000652 def s : T2Iso <(outs), (ins GPR:$src, t2addrmode_so_reg:$addr), iis,
Evan Cheng699beba2009-10-27 00:08:59 +0000653 opc, ".w\t$src, $addr",
Johnny Chend68e1192009-12-15 17:24:14 +0000654 [(opnode GPR:$src, t2addrmode_so_reg:$addr)]> {
655 let Inst{31-27} = 0b11111;
656 let Inst{26-23} = 0b0000;
657 let Inst{22-21} = opcod;
658 let Inst{20} = 0; // !load
659 let Inst{11-6} = 0b000000;
660 }
David Goodwin73b8f162009-06-30 22:11:34 +0000661}
662
Evan Cheng0e55fd62010-09-30 01:08:25 +0000663/// T2I_ext_rrot - A unary operation with two forms: one whose operand is a
Evan Chengd27c9fc2009-07-03 01:43:10 +0000664/// register and one whose operand is a register rotated by 8/16/24.
Evan Cheng0e55fd62010-09-30 01:08:25 +0000665multiclass T2I_ext_rrot<bits<3> opcod, string opc, PatFrag opnode> {
666 def r : T2I<(outs rGPR:$dst), (ins rGPR:$src), IIC_iEXTr,
Evan Cheng699beba2009-10-27 00:08:59 +0000667 opc, ".w\t$dst, $src",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000668 [(set rGPR:$dst, (opnode rGPR:$src))]> {
Johnny Chend68e1192009-12-15 17:24:14 +0000669 let Inst{31-27} = 0b11111;
670 let Inst{26-23} = 0b0100;
671 let Inst{22-20} = opcod;
672 let Inst{19-16} = 0b1111; // Rn
673 let Inst{15-12} = 0b1111;
674 let Inst{7} = 1;
675 let Inst{5-4} = 0b00; // rotate
676 }
Evan Cheng0e55fd62010-09-30 01:08:25 +0000677 def r_rot : T2I<(outs rGPR:$dst), (ins rGPR:$src, i32imm:$rot), IIC_iEXTr,
Evan Cheng699beba2009-10-27 00:08:59 +0000678 opc, ".w\t$dst, $src, ror $rot",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000679 [(set rGPR:$dst, (opnode (rotr rGPR:$src, rot_imm:$rot)))]> {
Johnny Chend68e1192009-12-15 17:24:14 +0000680 let Inst{31-27} = 0b11111;
681 let Inst{26-23} = 0b0100;
682 let Inst{22-20} = opcod;
683 let Inst{19-16} = 0b1111; // Rn
684 let Inst{15-12} = 0b1111;
685 let Inst{7} = 1;
686 let Inst{5-4} = {?,?}; // rotate
687 }
Evan Chengd27c9fc2009-07-03 01:43:10 +0000688}
689
Eli Friedman761fa7a2010-06-24 18:20:04 +0000690// UXTB16 - Requres T2ExtractPack, does not need the .w qualifier.
Evan Cheng0e55fd62010-09-30 01:08:25 +0000691multiclass T2I_ext_rrot_uxtb16<bits<3> opcod, string opc, PatFrag opnode> {
692 def r : T2I<(outs rGPR:$dst), (ins rGPR:$src), IIC_iEXTr,
Johnny Chen267124c2010-03-04 22:24:41 +0000693 opc, "\t$dst, $src",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000694 [(set rGPR:$dst, (opnode rGPR:$src))]>,
Jim Grosbach9729d2e2010-11-01 15:59:52 +0000695 Requires<[HasT2ExtractPack, IsThumb2]> {
Johnny Chen267124c2010-03-04 22:24:41 +0000696 let Inst{31-27} = 0b11111;
697 let Inst{26-23} = 0b0100;
698 let Inst{22-20} = opcod;
699 let Inst{19-16} = 0b1111; // Rn
700 let Inst{15-12} = 0b1111;
701 let Inst{7} = 1;
702 let Inst{5-4} = 0b00; // rotate
703 }
Evan Cheng0e55fd62010-09-30 01:08:25 +0000704 def r_rot : T2I<(outs rGPR:$dst), (ins rGPR:$src, i32imm:$rot), IIC_iEXTr,
Johnny Chen267124c2010-03-04 22:24:41 +0000705 opc, "\t$dst, $src, ror $rot",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000706 [(set rGPR:$dst, (opnode (rotr rGPR:$src, rot_imm:$rot)))]>,
Jim Grosbach9729d2e2010-11-01 15:59:52 +0000707 Requires<[HasT2ExtractPack, IsThumb2]> {
Johnny Chen267124c2010-03-04 22:24:41 +0000708 let Inst{31-27} = 0b11111;
709 let Inst{26-23} = 0b0100;
710 let Inst{22-20} = opcod;
711 let Inst{19-16} = 0b1111; // Rn
712 let Inst{15-12} = 0b1111;
713 let Inst{7} = 1;
714 let Inst{5-4} = {?,?}; // rotate
715 }
716}
717
Eli Friedman761fa7a2010-06-24 18:20:04 +0000718// SXTB16 - Requres T2ExtractPack, does not need the .w qualifier, no pattern
719// supported yet.
Evan Cheng0e55fd62010-09-30 01:08:25 +0000720multiclass T2I_ext_rrot_sxtb16<bits<3> opcod, string opc> {
721 def r : T2I<(outs rGPR:$dst), (ins rGPR:$src), IIC_iEXTr,
Johnny Chen93042d12010-03-02 18:14:57 +0000722 opc, "\t$dst, $src", []> {
723 let Inst{31-27} = 0b11111;
724 let Inst{26-23} = 0b0100;
725 let Inst{22-20} = opcod;
726 let Inst{19-16} = 0b1111; // Rn
727 let Inst{15-12} = 0b1111;
728 let Inst{7} = 1;
729 let Inst{5-4} = 0b00; // rotate
730 }
Evan Cheng0e55fd62010-09-30 01:08:25 +0000731 def r_rot : T2I<(outs rGPR:$dst), (ins rGPR:$src, i32imm:$rot), IIC_iEXTr,
Johnny Chen93042d12010-03-02 18:14:57 +0000732 opc, "\t$dst, $src, ror $rot", []> {
733 let Inst{31-27} = 0b11111;
734 let Inst{26-23} = 0b0100;
735 let Inst{22-20} = opcod;
736 let Inst{19-16} = 0b1111; // Rn
737 let Inst{15-12} = 0b1111;
738 let Inst{7} = 1;
739 let Inst{5-4} = {?,?}; // rotate
740 }
741}
742
Evan Cheng0e55fd62010-09-30 01:08:25 +0000743/// T2I_exta_rrot - A binary operation with two forms: one whose operand is a
Evan Chengd27c9fc2009-07-03 01:43:10 +0000744/// register and one whose operand is a register rotated by 8/16/24.
Evan Cheng0e55fd62010-09-30 01:08:25 +0000745multiclass T2I_exta_rrot<bits<3> opcod, string opc, PatFrag opnode> {
746 def rr : T2I<(outs rGPR:$dst), (ins rGPR:$LHS, rGPR:$RHS), IIC_iEXTAr,
Evan Cheng699beba2009-10-27 00:08:59 +0000747 opc, "\t$dst, $LHS, $RHS",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000748 [(set rGPR:$dst, (opnode rGPR:$LHS, rGPR:$RHS))]>,
Jim Grosbach9729d2e2010-11-01 15:59:52 +0000749 Requires<[HasT2ExtractPack, IsThumb2]> {
Johnny Chend68e1192009-12-15 17:24:14 +0000750 let Inst{31-27} = 0b11111;
751 let Inst{26-23} = 0b0100;
752 let Inst{22-20} = opcod;
753 let Inst{15-12} = 0b1111;
754 let Inst{7} = 1;
755 let Inst{5-4} = 0b00; // rotate
756 }
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000757 def rr_rot : T2I<(outs rGPR:$dst), (ins rGPR:$LHS, rGPR:$RHS, i32imm:$rot),
Evan Cheng0e55fd62010-09-30 01:08:25 +0000758 IIC_iEXTAsr, opc, "\t$dst, $LHS, $RHS, ror $rot",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000759 [(set rGPR:$dst, (opnode rGPR:$LHS,
760 (rotr rGPR:$RHS, rot_imm:$rot)))]>,
Jim Grosbach9729d2e2010-11-01 15:59:52 +0000761 Requires<[HasT2ExtractPack, IsThumb2]> {
Johnny Chend68e1192009-12-15 17:24:14 +0000762 let Inst{31-27} = 0b11111;
763 let Inst{26-23} = 0b0100;
764 let Inst{22-20} = opcod;
765 let Inst{15-12} = 0b1111;
766 let Inst{7} = 1;
767 let Inst{5-4} = {?,?}; // rotate
768 }
Evan Chengd27c9fc2009-07-03 01:43:10 +0000769}
770
Johnny Chen93042d12010-03-02 18:14:57 +0000771// DO variant - disassembly only, no pattern
772
Evan Cheng0e55fd62010-09-30 01:08:25 +0000773multiclass T2I_exta_rrot_DO<bits<3> opcod, string opc> {
Evan Cheng7e1bf302010-09-29 00:27:46 +0000774 def rr : T2I<(outs rGPR:$dst), (ins rGPR:$LHS, rGPR:$RHS), IIC_iEXTAr,
Johnny Chen93042d12010-03-02 18:14:57 +0000775 opc, "\t$dst, $LHS, $RHS", []> {
776 let Inst{31-27} = 0b11111;
777 let Inst{26-23} = 0b0100;
778 let Inst{22-20} = opcod;
779 let Inst{15-12} = 0b1111;
780 let Inst{7} = 1;
781 let Inst{5-4} = 0b00; // rotate
782 }
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000783 def rr_rot : T2I<(outs rGPR:$dst), (ins rGPR:$LHS, rGPR:$RHS, i32imm:$rot),
Evan Cheng7e1bf302010-09-29 00:27:46 +0000784 IIC_iEXTAsr, opc, "\t$dst, $LHS, $RHS, ror $rot", []> {
Johnny Chen93042d12010-03-02 18:14:57 +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} = {?,?}; // rotate
791 }
792}
793
Anton Korobeynikov52237112009-06-17 18:13:58 +0000794//===----------------------------------------------------------------------===//
Evan Cheng9cb9e672009-06-27 02:26:13 +0000795// Instructions
796//===----------------------------------------------------------------------===//
797
798//===----------------------------------------------------------------------===//
Evan Chenga09b9ca2009-06-24 23:47:58 +0000799// Miscellaneous Instructions.
800//
801
Evan Chenga09b9ca2009-06-24 23:47:58 +0000802// LEApcrel - Load a pc-relative address into a register without offending the
803// assembler.
Evan Chengea420b22010-05-19 01:52:25 +0000804let neverHasSideEffects = 1 in {
Evan Cheng9085f982010-05-19 07:28:01 +0000805let isReMaterializable = 1 in
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000806def t2LEApcrel : T2XI<(outs rGPR:$dst), (ins i32imm:$label, pred:$p), IIC_iALUi,
Daniel Dunbar9db683b2010-08-11 04:46:10 +0000807 "adr${p}.w\t$dst, #$label", []> {
Johnny Chend68e1192009-12-15 17:24:14 +0000808 let Inst{31-27} = 0b11110;
809 let Inst{25-24} = 0b10;
810 // Inst{23:21} = '11' (add = FALSE) or '00' (add = TRUE)
811 let Inst{22} = 0;
812 let Inst{20} = 0;
813 let Inst{19-16} = 0b1111; // Rn
814 let Inst{15} = 0;
815}
Jim Grosbacha967d112010-06-21 21:27:27 +0000816} // neverHasSideEffects
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000817def t2LEApcrelJT : T2XI<(outs rGPR:$dst),
Bob Wilson4f38b382009-08-21 21:58:55 +0000818 (ins i32imm:$label, nohash_imm:$id, pred:$p), IIC_iALUi,
Daniel Dunbar9db683b2010-08-11 04:46:10 +0000819 "adr${p}.w\t$dst, #${label}_${id}", []> {
Johnny Chend68e1192009-12-15 17:24:14 +0000820 let Inst{31-27} = 0b11110;
821 let Inst{25-24} = 0b10;
822 // Inst{23:21} = '11' (add = FALSE) or '00' (add = TRUE)
823 let Inst{22} = 0;
824 let Inst{20} = 0;
825 let Inst{19-16} = 0b1111; // Rn
826 let Inst{15} = 0;
827}
Evan Chenga09b9ca2009-06-24 23:47:58 +0000828
Evan Cheng86198642009-08-07 00:34:42 +0000829// ADD r, sp, {so_imm|i12}
David Goodwin5d598aa2009-08-19 18:00:44 +0000830def t2ADDrSPi : T2sI<(outs GPR:$dst), (ins GPR:$sp, t2_so_imm:$imm),
Johnny Chend68e1192009-12-15 17:24:14 +0000831 IIC_iALUi, "add", ".w\t$dst, $sp, $imm", []> {
832 let Inst{31-27} = 0b11110;
833 let Inst{25} = 0;
834 let Inst{24-21} = 0b1000;
835 let Inst{20} = ?; // The S bit.
836 let Inst{19-16} = 0b1101; // Rn = sp
837 let Inst{15} = 0;
838}
Jim Grosbach64171712010-02-16 21:07:46 +0000839def t2ADDrSPi12 : T2I<(outs GPR:$dst), (ins GPR:$sp, imm0_4095:$imm),
Johnny Chend68e1192009-12-15 17:24:14 +0000840 IIC_iALUi, "addw", "\t$dst, $sp, $imm", []> {
841 let Inst{31-27} = 0b11110;
842 let Inst{25} = 1;
843 let Inst{24-21} = 0b0000;
844 let Inst{20} = 0; // The S bit.
845 let Inst{19-16} = 0b1101; // Rn = sp
846 let Inst{15} = 0;
847}
Evan Cheng86198642009-08-07 00:34:42 +0000848
849// ADD r, sp, so_reg
David Goodwin5d598aa2009-08-19 18:00:44 +0000850def t2ADDrSPs : T2sI<(outs GPR:$dst), (ins GPR:$sp, t2_so_reg:$rhs),
Johnny Chend68e1192009-12-15 17:24:14 +0000851 IIC_iALUsi, "add", ".w\t$dst, $sp, $rhs", []> {
852 let Inst{31-27} = 0b11101;
853 let Inst{26-25} = 0b01;
854 let Inst{24-21} = 0b1000;
855 let Inst{20} = ?; // The S bit.
856 let Inst{19-16} = 0b1101; // Rn = sp
857 let Inst{15} = 0;
858}
Evan Cheng86198642009-08-07 00:34:42 +0000859
860// SUB r, sp, {so_imm|i12}
David Goodwin5d598aa2009-08-19 18:00:44 +0000861def t2SUBrSPi : T2sI<(outs GPR:$dst), (ins GPR:$sp, t2_so_imm:$imm),
Johnny Chend68e1192009-12-15 17:24:14 +0000862 IIC_iALUi, "sub", ".w\t$dst, $sp, $imm", []> {
863 let Inst{31-27} = 0b11110;
864 let Inst{25} = 0;
865 let Inst{24-21} = 0b1101;
866 let Inst{20} = ?; // The S bit.
867 let Inst{19-16} = 0b1101; // Rn = sp
868 let Inst{15} = 0;
869}
David Goodwin5d598aa2009-08-19 18:00:44 +0000870def t2SUBrSPi12 : T2I<(outs GPR:$dst), (ins GPR:$sp, imm0_4095:$imm),
Johnny Chend68e1192009-12-15 17:24:14 +0000871 IIC_iALUi, "subw", "\t$dst, $sp, $imm", []> {
872 let Inst{31-27} = 0b11110;
873 let Inst{25} = 1;
874 let Inst{24-21} = 0b0101;
875 let Inst{20} = 0; // The S bit.
876 let Inst{19-16} = 0b1101; // Rn = sp
877 let Inst{15} = 0;
878}
Evan Cheng86198642009-08-07 00:34:42 +0000879
880// SUB r, sp, so_reg
David Goodwin5d598aa2009-08-19 18:00:44 +0000881def t2SUBrSPs : T2sI<(outs GPR:$dst), (ins GPR:$sp, t2_so_reg:$rhs),
882 IIC_iALUsi,
Johnny Chend68e1192009-12-15 17:24:14 +0000883 "sub", "\t$dst, $sp, $rhs", []> {
884 let Inst{31-27} = 0b11101;
885 let Inst{26-25} = 0b01;
886 let Inst{24-21} = 0b1101;
887 let Inst{20} = ?; // The S bit.
888 let Inst{19-16} = 0b1101; // Rn = sp
889 let Inst{15} = 0;
890}
Evan Cheng86198642009-08-07 00:34:42 +0000891
Jim Grosbachb1dc3932010-05-05 20:44:35 +0000892// Signed and unsigned division on v7-M
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000893def t2SDIV : T2I<(outs rGPR:$dst), (ins rGPR:$a, rGPR:$b), IIC_iALUi,
Jim Grosbachb1dc3932010-05-05 20:44:35 +0000894 "sdiv", "\t$dst, $a, $b",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000895 [(set rGPR:$dst, (sdiv rGPR:$a, rGPR:$b))]>,
Jim Grosbach29402132010-05-05 23:44:43 +0000896 Requires<[HasDivide]> {
Johnny Chen93042d12010-03-02 18:14:57 +0000897 let Inst{31-27} = 0b11111;
898 let Inst{26-21} = 0b011100;
899 let Inst{20} = 0b1;
900 let Inst{15-12} = 0b1111;
901 let Inst{7-4} = 0b1111;
902}
903
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000904def t2UDIV : T2I<(outs rGPR:$dst), (ins rGPR:$a, rGPR:$b), IIC_iALUi,
Jim Grosbachb1dc3932010-05-05 20:44:35 +0000905 "udiv", "\t$dst, $a, $b",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000906 [(set rGPR:$dst, (udiv rGPR:$a, rGPR:$b))]>,
Jim Grosbach29402132010-05-05 23:44:43 +0000907 Requires<[HasDivide]> {
Johnny Chen93042d12010-03-02 18:14:57 +0000908 let Inst{31-27} = 0b11111;
909 let Inst{26-21} = 0b011101;
910 let Inst{20} = 0b1;
911 let Inst{15-12} = 0b1111;
912 let Inst{7-4} = 0b1111;
913}
914
Evan Chenga09b9ca2009-06-24 23:47:58 +0000915//===----------------------------------------------------------------------===//
Evan Cheng9cb9e672009-06-27 02:26:13 +0000916// Load / store Instructions.
917//
918
Evan Cheng055b0312009-06-29 07:51:04 +0000919// Load
Dan Gohmanbc9d98b2010-02-27 23:47:46 +0000920let canFoldAsLoad = 1, isReMaterializable = 1 in
Evan Cheng7e2fe912010-10-28 06:47:08 +0000921defm t2LDR : T2I_ld<0, 0b10, "ldr", IIC_iLoad_i, IIC_iLoad_si,
Evan Cheng0e55fd62010-09-30 01:08:25 +0000922 UnOpFrag<(load node:$Src)>>;
Evan Cheng055b0312009-06-29 07:51:04 +0000923
Evan Chengf3c21b82009-06-30 02:15:48 +0000924// Loads with zero extension
Evan Cheng7e2fe912010-10-28 06:47:08 +0000925defm t2LDRH : T2I_ld<0, 0b01, "ldrh", IIC_iLoad_bh_i, IIC_iLoad_bh_si,
Evan Cheng0e55fd62010-09-30 01:08:25 +0000926 UnOpFrag<(zextloadi16 node:$Src)>>;
Evan Cheng7e2fe912010-10-28 06:47:08 +0000927defm t2LDRB : T2I_ld<0, 0b00, "ldrb", IIC_iLoad_bh_i, IIC_iLoad_bh_si,
Evan Cheng0e55fd62010-09-30 01:08:25 +0000928 UnOpFrag<(zextloadi8 node:$Src)>>;
Evan Cheng055b0312009-06-29 07:51:04 +0000929
Evan Chengf3c21b82009-06-30 02:15:48 +0000930// Loads with sign extension
Evan Cheng7e2fe912010-10-28 06:47:08 +0000931defm t2LDRSH : T2I_ld<1, 0b01, "ldrsh", IIC_iLoad_bh_i, IIC_iLoad_bh_si,
Evan Cheng0e55fd62010-09-30 01:08:25 +0000932 UnOpFrag<(sextloadi16 node:$Src)>>;
Evan Cheng7e2fe912010-10-28 06:47:08 +0000933defm t2LDRSB : T2I_ld<1, 0b00, "ldrsb", IIC_iLoad_bh_i, IIC_iLoad_bh_si,
Evan Cheng0e55fd62010-09-30 01:08:25 +0000934 UnOpFrag<(sextloadi8 node:$Src)>>;
Evan Cheng055b0312009-06-29 07:51:04 +0000935
Chris Lattnera1ca91a2010-11-02 23:40:41 +0000936let mayLoad = 1, neverHasSideEffects = 1, hasExtraDefRegAllocReq = 1,
937 isCodeGenOnly = 1 in { // $dst doesn't exist in asmstring?
Evan Chengf3c21b82009-06-30 02:15:48 +0000938// Load doubleword
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000939def t2LDRDi8 : T2Ii8s4<1, 0, 1, (outs rGPR:$dst1, rGPR:$dst2),
Evan Chenge298ab22009-09-27 09:46:04 +0000940 (ins t2addrmode_imm8s4:$addr),
Evan Cheng0e55fd62010-09-30 01:08:25 +0000941 IIC_iLoad_d_i, "ldrd", "\t$dst1, $addr", []>;
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000942def t2LDRDpci : T2Ii8s4<1, 0, 1, (outs rGPR:$dst1, rGPR:$dst2),
Evan Cheng0e55fd62010-09-30 01:08:25 +0000943 (ins i32imm:$addr), IIC_iLoad_d_i,
Johnny Chen83142992010-01-05 22:37:28 +0000944 "ldrd", "\t$dst1, $addr", []> {
Johnny Chend68e1192009-12-15 17:24:14 +0000945 let Inst{19-16} = 0b1111; // Rn
946}
Evan Cheng5fd1c9b2010-05-19 06:07:03 +0000947} // mayLoad = 1, neverHasSideEffects = 1, hasExtraDefRegAllocReq = 1
Evan Chengf3c21b82009-06-30 02:15:48 +0000948
949// zextload i1 -> zextload i8
950def : T2Pat<(zextloadi1 t2addrmode_imm12:$addr),
951 (t2LDRBi12 t2addrmode_imm12:$addr)>;
952def : T2Pat<(zextloadi1 t2addrmode_imm8:$addr),
953 (t2LDRBi8 t2addrmode_imm8:$addr)>;
954def : T2Pat<(zextloadi1 t2addrmode_so_reg:$addr),
955 (t2LDRBs t2addrmode_so_reg:$addr)>;
956def : T2Pat<(zextloadi1 (ARMWrapper tconstpool:$addr)),
957 (t2LDRBpci tconstpool:$addr)>;
958
959// extload -> zextload
960// FIXME: Reduce the number of patterns by legalizing extload to zextload
961// earlier?
962def : T2Pat<(extloadi1 t2addrmode_imm12:$addr),
963 (t2LDRBi12 t2addrmode_imm12:$addr)>;
964def : T2Pat<(extloadi1 t2addrmode_imm8:$addr),
965 (t2LDRBi8 t2addrmode_imm8:$addr)>;
966def : T2Pat<(extloadi1 t2addrmode_so_reg:$addr),
967 (t2LDRBs t2addrmode_so_reg:$addr)>;
968def : T2Pat<(extloadi1 (ARMWrapper tconstpool:$addr)),
969 (t2LDRBpci tconstpool:$addr)>;
970
971def : T2Pat<(extloadi8 t2addrmode_imm12:$addr),
972 (t2LDRBi12 t2addrmode_imm12:$addr)>;
973def : T2Pat<(extloadi8 t2addrmode_imm8:$addr),
974 (t2LDRBi8 t2addrmode_imm8:$addr)>;
975def : T2Pat<(extloadi8 t2addrmode_so_reg:$addr),
976 (t2LDRBs t2addrmode_so_reg:$addr)>;
977def : T2Pat<(extloadi8 (ARMWrapper tconstpool:$addr)),
978 (t2LDRBpci tconstpool:$addr)>;
979
980def : T2Pat<(extloadi16 t2addrmode_imm12:$addr),
981 (t2LDRHi12 t2addrmode_imm12:$addr)>;
982def : T2Pat<(extloadi16 t2addrmode_imm8:$addr),
983 (t2LDRHi8 t2addrmode_imm8:$addr)>;
984def : T2Pat<(extloadi16 t2addrmode_so_reg:$addr),
985 (t2LDRHs t2addrmode_so_reg:$addr)>;
986def : T2Pat<(extloadi16 (ARMWrapper tconstpool:$addr)),
987 (t2LDRHpci tconstpool:$addr)>;
Evan Cheng055b0312009-06-29 07:51:04 +0000988
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000989// FIXME: The destination register of the loads and stores can't be PC, but
990// can be SP. We need another regclass (similar to rGPR) to represent
991// that. Not a pressing issue since these are selected manually,
992// not via pattern.
993
Evan Chenge88d5ce2009-07-02 07:28:31 +0000994// Indexed loads
Evan Cheng5fd1c9b2010-05-19 06:07:03 +0000995let mayLoad = 1, neverHasSideEffects = 1 in {
Johnny Chend68e1192009-12-15 17:24:14 +0000996def t2LDR_PRE : T2Iidxldst<0, 0b10, 1, 1, (outs GPR:$dst, GPR:$base_wb),
Evan Chenge88d5ce2009-07-02 07:28:31 +0000997 (ins t2addrmode_imm8:$addr),
Evan Cheng0e55fd62010-09-30 01:08:25 +0000998 AddrModeT2_i8, IndexModePre, IIC_iLoad_iu,
Evan Cheng699beba2009-10-27 00:08:59 +0000999 "ldr", "\t$dst, $addr!", "$addr.base = $base_wb",
Evan Chenge88d5ce2009-07-02 07:28:31 +00001000 []>;
1001
Johnny Chend68e1192009-12-15 17:24:14 +00001002def t2LDR_POST : T2Iidxldst<0, 0b10, 1, 0, (outs GPR:$dst, GPR:$base_wb),
Evan Chenge88d5ce2009-07-02 07:28:31 +00001003 (ins GPR:$base, t2am_imm8_offset:$offset),
Evan Cheng0e55fd62010-09-30 01:08:25 +00001004 AddrModeT2_i8, IndexModePost, IIC_iLoad_iu,
Evan Cheng699beba2009-10-27 00:08:59 +00001005 "ldr", "\t$dst, [$base], $offset", "$base = $base_wb",
Evan Chenge88d5ce2009-07-02 07:28:31 +00001006 []>;
1007
Johnny Chend68e1192009-12-15 17:24:14 +00001008def t2LDRB_PRE : T2Iidxldst<0, 0b00, 1, 1, (outs GPR:$dst, GPR:$base_wb),
Evan Chenge88d5ce2009-07-02 07:28:31 +00001009 (ins t2addrmode_imm8:$addr),
Evan Cheng0e55fd62010-09-30 01:08:25 +00001010 AddrModeT2_i8, IndexModePre, IIC_iLoad_bh_iu,
Evan Cheng699beba2009-10-27 00:08:59 +00001011 "ldrb", "\t$dst, $addr!", "$addr.base = $base_wb",
Evan Chenge88d5ce2009-07-02 07:28:31 +00001012 []>;
Johnny Chend68e1192009-12-15 17:24:14 +00001013def t2LDRB_POST : T2Iidxldst<0, 0b00, 1, 0, (outs GPR:$dst, GPR:$base_wb),
Evan Chenge88d5ce2009-07-02 07:28:31 +00001014 (ins GPR:$base, t2am_imm8_offset:$offset),
Evan Cheng0e55fd62010-09-30 01:08:25 +00001015 AddrModeT2_i8, IndexModePost, IIC_iLoad_bh_iu,
Evan Cheng699beba2009-10-27 00:08:59 +00001016 "ldrb", "\t$dst, [$base], $offset", "$base = $base_wb",
Evan Chenge88d5ce2009-07-02 07:28:31 +00001017 []>;
1018
Johnny Chend68e1192009-12-15 17:24:14 +00001019def t2LDRH_PRE : T2Iidxldst<0, 0b01, 1, 1, (outs GPR:$dst, GPR:$base_wb),
Evan Chenge88d5ce2009-07-02 07:28:31 +00001020 (ins t2addrmode_imm8:$addr),
Evan Cheng0e55fd62010-09-30 01:08:25 +00001021 AddrModeT2_i8, IndexModePre, IIC_iLoad_bh_iu,
Evan Cheng699beba2009-10-27 00:08:59 +00001022 "ldrh", "\t$dst, $addr!", "$addr.base = $base_wb",
Evan Chenge88d5ce2009-07-02 07:28:31 +00001023 []>;
Johnny Chend68e1192009-12-15 17:24:14 +00001024def t2LDRH_POST : T2Iidxldst<0, 0b01, 1, 0, (outs GPR:$dst, GPR:$base_wb),
Evan Chenge88d5ce2009-07-02 07:28:31 +00001025 (ins GPR:$base, t2am_imm8_offset:$offset),
Evan Cheng0e55fd62010-09-30 01:08:25 +00001026 AddrModeT2_i8, IndexModePost, IIC_iLoad_bh_iu,
Evan Cheng699beba2009-10-27 00:08:59 +00001027 "ldrh", "\t$dst, [$base], $offset", "$base = $base_wb",
Evan Chenge88d5ce2009-07-02 07:28:31 +00001028 []>;
1029
Johnny Chend68e1192009-12-15 17:24:14 +00001030def t2LDRSB_PRE : T2Iidxldst<1, 0b00, 1, 1, (outs GPR:$dst, GPR:$base_wb),
Evan Cheng4fbb9962009-07-02 23:16:11 +00001031 (ins t2addrmode_imm8:$addr),
Evan Cheng0e55fd62010-09-30 01:08:25 +00001032 AddrModeT2_i8, IndexModePre, IIC_iLoad_bh_iu,
Evan Cheng699beba2009-10-27 00:08:59 +00001033 "ldrsb", "\t$dst, $addr!", "$addr.base = $base_wb",
Evan Cheng4fbb9962009-07-02 23:16:11 +00001034 []>;
Johnny Chend68e1192009-12-15 17:24:14 +00001035def t2LDRSB_POST : T2Iidxldst<1, 0b00, 1, 0, (outs GPR:$dst, GPR:$base_wb),
Evan Cheng4fbb9962009-07-02 23:16:11 +00001036 (ins GPR:$base, t2am_imm8_offset:$offset),
Evan Cheng0e55fd62010-09-30 01:08:25 +00001037 AddrModeT2_i8, IndexModePost, IIC_iLoad_bh_iu,
Evan Cheng699beba2009-10-27 00:08:59 +00001038 "ldrsb", "\t$dst, [$base], $offset", "$base = $base_wb",
Evan Cheng4fbb9962009-07-02 23:16:11 +00001039 []>;
1040
Johnny Chend68e1192009-12-15 17:24:14 +00001041def t2LDRSH_PRE : T2Iidxldst<1, 0b01, 1, 1, (outs GPR:$dst, GPR:$base_wb),
Evan Cheng4fbb9962009-07-02 23:16:11 +00001042 (ins t2addrmode_imm8:$addr),
Evan Cheng0e55fd62010-09-30 01:08:25 +00001043 AddrModeT2_i8, IndexModePre, IIC_iLoad_bh_iu,
Evan Cheng699beba2009-10-27 00:08:59 +00001044 "ldrsh", "\t$dst, $addr!", "$addr.base = $base_wb",
Evan Cheng4fbb9962009-07-02 23:16:11 +00001045 []>;
Johnny Chend68e1192009-12-15 17:24:14 +00001046def t2LDRSH_POST : T2Iidxldst<1, 0b01, 1, 0, (outs GPR:$dst, GPR:$base_wb),
Evan Cheng4fbb9962009-07-02 23:16:11 +00001047 (ins GPR:$base, t2am_imm8_offset:$offset),
Evan Cheng0e55fd62010-09-30 01:08:25 +00001048 AddrModeT2_i8, IndexModePost, IIC_iLoad_bh_iu,
Evan Cheng699beba2009-10-27 00:08:59 +00001049 "ldrsh", "\t$dst, [$base], $offset", "$base = $base_wb",
Evan Cheng4fbb9962009-07-02 23:16:11 +00001050 []>;
Evan Cheng5fd1c9b2010-05-19 06:07:03 +00001051} // mayLoad = 1, neverHasSideEffects = 1
Evan Cheng4fbb9962009-07-02 23:16:11 +00001052
Johnny Chene54a3ef2010-03-03 18:45:36 +00001053// LDRT, LDRBT, LDRHT, LDRSBT, LDRSHT all have offset mode (PUW=0b110) and are
1054// for disassembly only.
1055// Ref: A8.6.57 LDR (immediate, Thumb) Encoding T4
Evan Cheng0e55fd62010-09-30 01:08:25 +00001056class T2IldT<bit signed, bits<2> type, string opc, InstrItinClass ii>
1057 : T2Ii8<(outs GPR:$dst), (ins t2addrmode_imm8:$addr), ii, opc,
Johnny Chene54a3ef2010-03-03 18:45:36 +00001058 "\t$dst, $addr", []> {
1059 let Inst{31-27} = 0b11111;
1060 let Inst{26-25} = 0b00;
1061 let Inst{24} = signed;
1062 let Inst{23} = 0;
1063 let Inst{22-21} = type;
1064 let Inst{20} = 1; // load
1065 let Inst{11} = 1;
1066 let Inst{10-8} = 0b110; // PUW.
1067}
1068
Evan Cheng0e55fd62010-09-30 01:08:25 +00001069def t2LDRT : T2IldT<0, 0b10, "ldrt", IIC_iLoad_i>;
1070def t2LDRBT : T2IldT<0, 0b00, "ldrbt", IIC_iLoad_bh_i>;
1071def t2LDRHT : T2IldT<0, 0b01, "ldrht", IIC_iLoad_bh_i>;
1072def t2LDRSBT : T2IldT<1, 0b00, "ldrsbt", IIC_iLoad_bh_i>;
1073def t2LDRSHT : T2IldT<1, 0b01, "ldrsht", IIC_iLoad_bh_i>;
Johnny Chene54a3ef2010-03-03 18:45:36 +00001074
David Goodwin73b8f162009-06-30 22:11:34 +00001075// Store
Evan Cheng7e2fe912010-10-28 06:47:08 +00001076defm t2STR :T2I_st<0b10,"str", IIC_iStore_i, IIC_iStore_si,
Evan Cheng0e55fd62010-09-30 01:08:25 +00001077 BinOpFrag<(store node:$LHS, node:$RHS)>>;
Evan Cheng7e2fe912010-10-28 06:47:08 +00001078defm t2STRB:T2I_st<0b00,"strb", IIC_iStore_bh_i, IIC_iStore_bh_si,
Evan Cheng0e55fd62010-09-30 01:08:25 +00001079 BinOpFrag<(truncstorei8 node:$LHS, node:$RHS)>>;
Evan Cheng7e2fe912010-10-28 06:47:08 +00001080defm t2STRH:T2I_st<0b01,"strh", IIC_iStore_bh_i, IIC_iStore_bh_si,
Evan Cheng0e55fd62010-09-30 01:08:25 +00001081 BinOpFrag<(truncstorei16 node:$LHS, node:$RHS)>>;
David Goodwin73b8f162009-06-30 22:11:34 +00001082
David Goodwin6647cea2009-06-30 22:50:01 +00001083// Store doubleword
Chris Lattnera1ca91a2010-11-02 23:40:41 +00001084let mayLoad = 1, neverHasSideEffects = 1, hasExtraSrcRegAllocReq = 1,
1085 isCodeGenOnly = 1 in // $src2 doesn't exist in asm string
Johnny Chend68e1192009-12-15 17:24:14 +00001086def t2STRDi8 : T2Ii8s4<1, 0, 0, (outs),
Evan Chenge298ab22009-09-27 09:46:04 +00001087 (ins GPR:$src1, GPR:$src2, t2addrmode_imm8s4:$addr),
Evan Cheng0e55fd62010-09-30 01:08:25 +00001088 IIC_iStore_d_r, "strd", "\t$src1, $addr", []>;
David Goodwin6647cea2009-06-30 22:50:01 +00001089
Evan Cheng6d94f112009-07-03 00:06:39 +00001090// Indexed stores
Johnny Chend68e1192009-12-15 17:24:14 +00001091def t2STR_PRE : T2Iidxldst<0, 0b10, 0, 1, (outs GPR:$base_wb),
Evan Cheng6d94f112009-07-03 00:06:39 +00001092 (ins GPR:$src, GPR:$base, t2am_imm8_offset:$offset),
Evan Cheng0e55fd62010-09-30 01:08:25 +00001093 AddrModeT2_i8, IndexModePre, IIC_iStore_iu,
Evan Cheng699beba2009-10-27 00:08:59 +00001094 "str", "\t$src, [$base, $offset]!", "$base = $base_wb",
Evan Cheng6d94f112009-07-03 00:06:39 +00001095 [(set GPR:$base_wb,
1096 (pre_store GPR:$src, GPR:$base, t2am_imm8_offset:$offset))]>;
1097
Johnny Chend68e1192009-12-15 17:24:14 +00001098def t2STR_POST : T2Iidxldst<0, 0b10, 0, 0, (outs GPR:$base_wb),
Evan Cheng6d94f112009-07-03 00:06:39 +00001099 (ins GPR:$src, GPR:$base, t2am_imm8_offset:$offset),
Evan Cheng0e55fd62010-09-30 01:08:25 +00001100 AddrModeT2_i8, IndexModePost, IIC_iStore_iu,
Evan Cheng699beba2009-10-27 00:08:59 +00001101 "str", "\t$src, [$base], $offset", "$base = $base_wb",
Evan Cheng6d94f112009-07-03 00:06:39 +00001102 [(set GPR:$base_wb,
Jim Grosbach6935efc2009-11-24 00:20:27 +00001103 (post_store GPR:$src, GPR:$base, t2am_imm8_offset:$offset))]>;
Evan Cheng6d94f112009-07-03 00:06:39 +00001104
Johnny Chend68e1192009-12-15 17:24:14 +00001105def t2STRH_PRE : T2Iidxldst<0, 0b01, 0, 1, (outs GPR:$base_wb),
Evan Cheng6d94f112009-07-03 00:06:39 +00001106 (ins GPR:$src, GPR:$base, t2am_imm8_offset:$offset),
Evan Cheng0e55fd62010-09-30 01:08:25 +00001107 AddrModeT2_i8, IndexModePre, IIC_iStore_iu,
Evan Cheng699beba2009-10-27 00:08:59 +00001108 "strh", "\t$src, [$base, $offset]!", "$base = $base_wb",
Evan Cheng6d94f112009-07-03 00:06:39 +00001109 [(set GPR:$base_wb,
1110 (pre_truncsti16 GPR:$src, GPR:$base, t2am_imm8_offset:$offset))]>;
1111
Johnny Chend68e1192009-12-15 17:24:14 +00001112def t2STRH_POST : T2Iidxldst<0, 0b01, 0, 0, (outs GPR:$base_wb),
Evan Cheng6d94f112009-07-03 00:06:39 +00001113 (ins GPR:$src, GPR:$base, t2am_imm8_offset:$offset),
Evan Cheng0e55fd62010-09-30 01:08:25 +00001114 AddrModeT2_i8, IndexModePost, IIC_iStore_bh_iu,
Evan Cheng699beba2009-10-27 00:08:59 +00001115 "strh", "\t$src, [$base], $offset", "$base = $base_wb",
Evan Cheng6d94f112009-07-03 00:06:39 +00001116 [(set GPR:$base_wb,
1117 (post_truncsti16 GPR:$src, GPR:$base, t2am_imm8_offset:$offset))]>;
1118
Johnny Chend68e1192009-12-15 17:24:14 +00001119def t2STRB_PRE : T2Iidxldst<0, 0b00, 0, 1, (outs GPR:$base_wb),
Evan Cheng6d94f112009-07-03 00:06:39 +00001120 (ins GPR:$src, GPR:$base, t2am_imm8_offset:$offset),
Evan Cheng0e55fd62010-09-30 01:08:25 +00001121 AddrModeT2_i8, IndexModePre, IIC_iStore_bh_iu,
Evan Cheng699beba2009-10-27 00:08:59 +00001122 "strb", "\t$src, [$base, $offset]!", "$base = $base_wb",
Evan Cheng6d94f112009-07-03 00:06:39 +00001123 [(set GPR:$base_wb,
1124 (pre_truncsti8 GPR:$src, GPR:$base, t2am_imm8_offset:$offset))]>;
1125
Johnny Chend68e1192009-12-15 17:24:14 +00001126def t2STRB_POST : T2Iidxldst<0, 0b00, 0, 0, (outs GPR:$base_wb),
Evan Cheng6d94f112009-07-03 00:06:39 +00001127 (ins GPR:$src, GPR:$base, t2am_imm8_offset:$offset),
Evan Cheng0e55fd62010-09-30 01:08:25 +00001128 AddrModeT2_i8, IndexModePost, IIC_iStore_bh_iu,
Evan Cheng699beba2009-10-27 00:08:59 +00001129 "strb", "\t$src, [$base], $offset", "$base = $base_wb",
Evan Cheng6d94f112009-07-03 00:06:39 +00001130 [(set GPR:$base_wb,
1131 (post_truncsti8 GPR:$src, GPR:$base, t2am_imm8_offset:$offset))]>;
1132
Johnny Chene54a3ef2010-03-03 18:45:36 +00001133// STRT, STRBT, STRHT all have offset mode (PUW=0b110) and are for disassembly
1134// only.
1135// Ref: A8.6.193 STR (immediate, Thumb) Encoding T4
Evan Cheng0e55fd62010-09-30 01:08:25 +00001136class T2IstT<bits<2> type, string opc, InstrItinClass ii>
1137 : T2Ii8<(outs GPR:$src), (ins t2addrmode_imm8:$addr), ii, opc,
Johnny Chene54a3ef2010-03-03 18:45:36 +00001138 "\t$src, $addr", []> {
1139 let Inst{31-27} = 0b11111;
1140 let Inst{26-25} = 0b00;
1141 let Inst{24} = 0; // not signed
1142 let Inst{23} = 0;
1143 let Inst{22-21} = type;
1144 let Inst{20} = 0; // store
1145 let Inst{11} = 1;
1146 let Inst{10-8} = 0b110; // PUW
1147}
1148
Evan Cheng0e55fd62010-09-30 01:08:25 +00001149def t2STRT : T2IstT<0b10, "strt", IIC_iStore_i>;
1150def t2STRBT : T2IstT<0b00, "strbt", IIC_iStore_bh_i>;
1151def t2STRHT : T2IstT<0b01, "strht", IIC_iStore_bh_i>;
David Goodwind1fa1202009-07-01 00:01:13 +00001152
Johnny Chenae1757b2010-03-11 01:13:36 +00001153// ldrd / strd pre / post variants
1154// For disassembly only.
1155
1156def t2LDRD_PRE : T2Ii8s4<1, 1, 1, (outs GPR:$dst1, GPR:$dst2),
Evan Cheng0e55fd62010-09-30 01:08:25 +00001157 (ins GPR:$base, t2am_imm8s4_offset:$imm), IIC_iLoad_d_ru,
Johnny Chenae1757b2010-03-11 01:13:36 +00001158 "ldrd", "\t$dst1, $dst2, [$base, $imm]!", []>;
1159
1160def t2LDRD_POST : T2Ii8s4<0, 1, 1, (outs GPR:$dst1, GPR:$dst2),
Evan Cheng0e55fd62010-09-30 01:08:25 +00001161 (ins GPR:$base, t2am_imm8s4_offset:$imm), IIC_iLoad_d_ru,
Johnny Chenae1757b2010-03-11 01:13:36 +00001162 "ldrd", "\t$dst1, $dst2, [$base], $imm", []>;
1163
1164def t2STRD_PRE : T2Ii8s4<1, 1, 0, (outs),
1165 (ins GPR:$src1, GPR:$src2, GPR:$base, t2am_imm8s4_offset:$imm),
Evan Cheng0e55fd62010-09-30 01:08:25 +00001166 IIC_iStore_d_ru, "strd", "\t$src1, $src2, [$base, $imm]!", []>;
Johnny Chenae1757b2010-03-11 01:13:36 +00001167
1168def t2STRD_POST : T2Ii8s4<0, 1, 0, (outs),
1169 (ins GPR:$src1, GPR:$src2, GPR:$base, t2am_imm8s4_offset:$imm),
Evan Cheng0e55fd62010-09-30 01:08:25 +00001170 IIC_iStore_d_ru, "strd", "\t$src1, $src2, [$base], $imm", []>;
Evan Cheng2889cce2009-07-03 00:18:36 +00001171
Johnny Chen0635fc52010-03-04 17:40:44 +00001172// T2Ipl (Preload Data/Instruction) signals the memory system of possible future
1173// data/instruction access. These are for disassembly only.
Evan Chengdfed19f2010-11-03 06:34:55 +00001174// instr_write is inverted for Thumb mode: (prefetch 3) -> (preload 0),
1175// (prefetch 1) -> (preload 2), (prefetch 2) -> (preload 1).
Evan Cheng416941d2010-11-04 05:19:35 +00001176multiclass T2Ipl<bits<1> write, bits<1> instr, string opc> {
Johnny Chen0635fc52010-03-04 17:40:44 +00001177
Evan Chengdfed19f2010-11-03 06:34:55 +00001178 def i12 : T2Ii12<(outs), (ins t2addrmode_imm12:$addr), IIC_Preload, opc,
Evan Chengbc7deb02010-11-03 05:14:24 +00001179 "\t$addr",
Evan Cheng416941d2010-11-04 05:19:35 +00001180 [(ARMPreload t2addrmode_imm12:$addr, (i32 write), (i32 instr))]> {
Johnny Chen0635fc52010-03-04 17:40:44 +00001181 let Inst{31-25} = 0b1111100;
Evan Cheng416941d2010-11-04 05:19:35 +00001182 let Inst{24} = instr;
Johnny Chen0635fc52010-03-04 17:40:44 +00001183 let Inst{23} = 1; // U = 1
1184 let Inst{22} = 0;
Evan Cheng416941d2010-11-04 05:19:35 +00001185 let Inst{21} = write;
Johnny Chen0635fc52010-03-04 17:40:44 +00001186 let Inst{20} = 1;
1187 let Inst{15-12} = 0b1111;
1188 }
1189
Evan Chengdfed19f2010-11-03 06:34:55 +00001190 def i8 : T2Ii8<(outs), (ins t2addrmode_imm8:$addr), IIC_Preload, opc,
Evan Chengbc7deb02010-11-03 05:14:24 +00001191 "\t$addr",
Evan Cheng416941d2010-11-04 05:19:35 +00001192 [(ARMPreload t2addrmode_imm8:$addr, (i32 write), (i32 instr))]> {
Johnny Chen0635fc52010-03-04 17:40:44 +00001193 let Inst{31-25} = 0b1111100;
Evan Cheng416941d2010-11-04 05:19:35 +00001194 let Inst{24} = instr;
Johnny Chen0635fc52010-03-04 17:40:44 +00001195 let Inst{23} = 0; // U = 0
1196 let Inst{22} = 0;
Evan Cheng416941d2010-11-04 05:19:35 +00001197 let Inst{21} = write;
Johnny Chen0635fc52010-03-04 17:40:44 +00001198 let Inst{20} = 1;
1199 let Inst{15-12} = 0b1111;
1200 let Inst{11-8} = 0b1100;
1201 }
1202
Evan Chengdfed19f2010-11-03 06:34:55 +00001203 def s : T2Iso<(outs), (ins t2addrmode_so_reg:$addr), IIC_Preload, opc,
Evan Chengbc7deb02010-11-03 05:14:24 +00001204 "\t$addr",
Evan Cheng416941d2010-11-04 05:19:35 +00001205 [(ARMPreload t2addrmode_so_reg:$addr, (i32 write), (i32 instr))]> {
Evan Chengbc7deb02010-11-03 05:14:24 +00001206 let Inst{31-25} = 0b1111100;
Evan Cheng416941d2010-11-04 05:19:35 +00001207 let Inst{24} = instr;
Evan Chengbc7deb02010-11-03 05:14:24 +00001208 let Inst{23} = 0; // add = TRUE for T1
1209 let Inst{22} = 0;
Evan Cheng416941d2010-11-04 05:19:35 +00001210 let Inst{21} = write;
Evan Chengbc7deb02010-11-03 05:14:24 +00001211 let Inst{20} = 1;
1212 let Inst{15-12} = 0b1111;
1213 let Inst{11-6} = 0000000;
1214 }
1215
1216 let isCodeGenOnly = 1 in
Evan Chengdfed19f2010-11-03 06:34:55 +00001217 def pci : T2Ipc<(outs), (ins i32imm:$addr), IIC_Preload, opc,
Evan Chengbc7deb02010-11-03 05:14:24 +00001218 "\t$addr",
1219 []> {
Johnny Chen0635fc52010-03-04 17:40:44 +00001220 let Inst{31-25} = 0b1111100;
Evan Cheng416941d2010-11-04 05:19:35 +00001221 let Inst{24} = write;
Johnny Chen0635fc52010-03-04 17:40:44 +00001222 let Inst{23} = ?; // add = (U == 1)
1223 let Inst{22} = 0;
Evan Cheng416941d2010-11-04 05:19:35 +00001224 let Inst{21} = instr;
Johnny Chen0635fc52010-03-04 17:40:44 +00001225 let Inst{20} = 1;
1226 let Inst{19-16} = 0b1111; // Rn = 0b1111
1227 let Inst{15-12} = 0b1111;
1228 }
Johnny Chen0635fc52010-03-04 17:40:44 +00001229}
1230
Evan Cheng416941d2010-11-04 05:19:35 +00001231defm t2PLD : T2Ipl<0, 0, "pld">, Requires<[IsThumb2]>;
1232defm t2PLDW : T2Ipl<1, 0, "pldw">, Requires<[IsThumb2,HasV7,HasMP]>;
1233defm t2PLI : T2Ipl<0, 1, "pli">, Requires<[IsThumb2,HasV7]>;
Johnny Chen0635fc52010-03-04 17:40:44 +00001234
Evan Cheng2889cce2009-07-03 00:18:36 +00001235//===----------------------------------------------------------------------===//
1236// Load / store multiple Instructions.
1237//
1238
Chris Lattner39ee0362010-10-31 19:10:56 +00001239let mayLoad = 1, neverHasSideEffects = 1, hasExtraDefRegAllocReq = 1,
1240 isCodeGenOnly = 1 in {
Jim Grosbache6913602010-11-03 01:01:43 +00001241def t2LDM : T2XI<(outs), (ins GPR:$Rn, ldstm_mode:$amode, pred:$p,
Evan Chenga0792de2010-10-06 06:27:31 +00001242 reglist:$dsts, variable_ops), IIC_iLoad_m,
Jim Grosbache6913602010-11-03 01:01:43 +00001243 "ldm${amode}${p}.w\t$Rn, $dsts", []> {
Johnny Chend68e1192009-12-15 17:24:14 +00001244 let Inst{31-27} = 0b11101;
1245 let Inst{26-25} = 0b00;
1246 let Inst{24-23} = {?, ?}; // IA: '01', DB: '10'
1247 let Inst{22} = 0;
Bob Wilson815baeb2010-03-13 01:08:20 +00001248 let Inst{21} = 0; // The W bit.
Johnny Chend68e1192009-12-15 17:24:14 +00001249 let Inst{20} = 1; // Load
1250}
Evan Cheng2889cce2009-07-03 00:18:36 +00001251
Jim Grosbache6913602010-11-03 01:01:43 +00001252def t2LDM_UPD : T2XIt<(outs GPR:$wb), (ins GPR:$Rn, ldstm_mode:$amode, pred:$p,
Evan Chenga0792de2010-10-06 06:27:31 +00001253 reglist:$dsts, variable_ops),
1254 IIC_iLoad_mu,
Jim Grosbache6913602010-11-03 01:01:43 +00001255 "ldm${amode}${p}.w\t$Rn!, $dsts",
1256 "$Rn = $wb", []> {
Johnny Chend68e1192009-12-15 17:24:14 +00001257 let Inst{31-27} = 0b11101;
1258 let Inst{26-25} = 0b00;
1259 let Inst{24-23} = {?, ?}; // IA: '01', DB: '10'
1260 let Inst{22} = 0;
Bob Wilson815baeb2010-03-13 01:08:20 +00001261 let Inst{21} = 1; // The W bit.
1262 let Inst{20} = 1; // Load
1263}
Evan Cheng5fd1c9b2010-05-19 06:07:03 +00001264} // mayLoad, neverHasSideEffects, hasExtraDefRegAllocReq
Bob Wilson815baeb2010-03-13 01:08:20 +00001265
Chris Lattner39ee0362010-10-31 19:10:56 +00001266let mayStore = 1, neverHasSideEffects = 1, hasExtraSrcRegAllocReq = 1,
1267 isCodeGenOnly = 1 in {
Jim Grosbache6913602010-11-03 01:01:43 +00001268def t2STM : T2XI<(outs), (ins GPR:$Rn, ldstm_mode:$amode, pred:$p,
Evan Chenga0792de2010-10-06 06:27:31 +00001269 reglist:$srcs, variable_ops), IIC_iStore_m,
Jim Grosbache6913602010-11-03 01:01:43 +00001270 "stm${amode}${p}.w\t$Rn, $srcs", []> {
Bob Wilson815baeb2010-03-13 01:08:20 +00001271 let Inst{31-27} = 0b11101;
1272 let Inst{26-25} = 0b00;
1273 let Inst{24-23} = {?, ?}; // IA: '01', DB: '10'
1274 let Inst{22} = 0;
1275 let Inst{21} = 0; // The W bit.
Johnny Chend68e1192009-12-15 17:24:14 +00001276 let Inst{20} = 0; // Store
1277}
Evan Cheng2889cce2009-07-03 00:18:36 +00001278
Jim Grosbache6913602010-11-03 01:01:43 +00001279def t2STM_UPD : T2XIt<(outs GPR:$wb), (ins GPR:$Rn, ldstm_mode:$amode, pred:$p,
Bob Wilson815baeb2010-03-13 01:08:20 +00001280 reglist:$srcs, variable_ops),
Evan Chenga0792de2010-10-06 06:27:31 +00001281 IIC_iStore_m,
Jim Grosbache6913602010-11-03 01:01:43 +00001282 "stm${amode}${p}.w\t$Rn!, $srcs",
1283 "$Rn = $wb", []> {
Bob Wilson815baeb2010-03-13 01:08:20 +00001284 let Inst{31-27} = 0b11101;
1285 let Inst{26-25} = 0b00;
1286 let Inst{24-23} = {?, ?}; // IA: '01', DB: '10'
1287 let Inst{22} = 0;
1288 let Inst{21} = 1; // The W bit.
1289 let Inst{20} = 0; // Store
1290}
Evan Cheng5fd1c9b2010-05-19 06:07:03 +00001291} // mayStore, neverHasSideEffects, hasExtraSrcRegAllocReq
Bob Wilson815baeb2010-03-13 01:08:20 +00001292
Evan Cheng9cb9e672009-06-27 02:26:13 +00001293//===----------------------------------------------------------------------===//
Anton Korobeynikov52237112009-06-17 18:13:58 +00001294// Move Instructions.
1295//
Anton Korobeynikov52237112009-06-17 18:13:58 +00001296
Evan Chengf49810c2009-06-23 17:48:47 +00001297let neverHasSideEffects = 1 in
David Goodwin5d598aa2009-08-19 18:00:44 +00001298def t2MOVr : T2sI<(outs GPR:$dst), (ins GPR:$src), IIC_iMOVr,
Johnny Chend68e1192009-12-15 17:24:14 +00001299 "mov", ".w\t$dst, $src", []> {
1300 let Inst{31-27} = 0b11101;
1301 let Inst{26-25} = 0b01;
1302 let Inst{24-21} = 0b0010;
1303 let Inst{20} = ?; // The S bit.
1304 let Inst{19-16} = 0b1111; // Rn
1305 let Inst{14-12} = 0b000;
1306 let Inst{7-4} = 0b0000;
1307}
Evan Chengf49810c2009-06-23 17:48:47 +00001308
Evan Cheng5adb66a2009-09-28 09:14:39 +00001309// AddedComplexity to ensure isel tries t2MOVi before t2MOVi16.
1310let isReMaterializable = 1, isAsCheapAsAMove = 1, AddedComplexity = 1 in
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001311def t2MOVi : T2sI<(outs rGPR:$dst), (ins t2_so_imm:$src), IIC_iMOVi,
Evan Cheng699beba2009-10-27 00:08:59 +00001312 "mov", ".w\t$dst, $src",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001313 [(set rGPR:$dst, t2_so_imm:$src)]> {
Johnny Chend68e1192009-12-15 17:24:14 +00001314 let Inst{31-27} = 0b11110;
1315 let Inst{25} = 0;
1316 let Inst{24-21} = 0b0010;
1317 let Inst{20} = ?; // The S bit.
1318 let Inst{19-16} = 0b1111; // Rn
1319 let Inst{15} = 0;
1320}
David Goodwin83b35932009-06-26 16:10:07 +00001321
1322let isReMaterializable = 1, isAsCheapAsAMove = 1 in
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001323def t2MOVi16 : T2I<(outs rGPR:$dst), (ins i32imm:$src), IIC_iMOVi,
Evan Cheng699beba2009-10-27 00:08:59 +00001324 "movw", "\t$dst, $src",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001325 [(set rGPR:$dst, imm0_65535:$src)]> {
Johnny Chend68e1192009-12-15 17:24:14 +00001326 let Inst{31-27} = 0b11110;
1327 let Inst{25} = 1;
1328 let Inst{24-21} = 0b0010;
1329 let Inst{20} = 0; // The S bit.
1330 let Inst{15} = 0;
1331}
Evan Chengf49810c2009-06-23 17:48:47 +00001332
Evan Cheng3850a6a2009-06-23 05:23:49 +00001333let Constraints = "$src = $dst" in
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001334def t2MOVTi16 : T2I<(outs rGPR:$dst), (ins rGPR:$src, i32imm:$imm), IIC_iMOVi,
Evan Cheng699beba2009-10-27 00:08:59 +00001335 "movt", "\t$dst, $imm",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001336 [(set rGPR:$dst,
1337 (or (and rGPR:$src, 0xffff), lo16AllZero:$imm))]> {
Johnny Chend68e1192009-12-15 17:24:14 +00001338 let Inst{31-27} = 0b11110;
1339 let Inst{25} = 1;
1340 let Inst{24-21} = 0b0110;
1341 let Inst{20} = 0; // The S bit.
1342 let Inst{15} = 0;
1343}
Anton Korobeynikov52237112009-06-17 18:13:58 +00001344
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001345def : T2Pat<(or rGPR:$src, 0xffff0000), (t2MOVTi16 rGPR:$src, 0xffff)>;
Evan Cheng20956592009-10-21 08:15:52 +00001346
Anton Korobeynikov52237112009-06-17 18:13:58 +00001347//===----------------------------------------------------------------------===//
Evan Chengd27c9fc2009-07-03 01:43:10 +00001348// Extend Instructions.
1349//
1350
1351// Sign extenders
1352
Evan Cheng0e55fd62010-09-30 01:08:25 +00001353defm t2SXTB : T2I_ext_rrot<0b100, "sxtb",
Johnny Chend68e1192009-12-15 17:24:14 +00001354 UnOpFrag<(sext_inreg node:$Src, i8)>>;
Evan Cheng0e55fd62010-09-30 01:08:25 +00001355defm t2SXTH : T2I_ext_rrot<0b000, "sxth",
Johnny Chend68e1192009-12-15 17:24:14 +00001356 UnOpFrag<(sext_inreg node:$Src, i16)>>;
Evan Cheng0e55fd62010-09-30 01:08:25 +00001357defm t2SXTB16 : T2I_ext_rrot_sxtb16<0b010, "sxtb16">;
Evan Chengd27c9fc2009-07-03 01:43:10 +00001358
Evan Cheng0e55fd62010-09-30 01:08:25 +00001359defm t2SXTAB : T2I_exta_rrot<0b100, "sxtab",
Evan Chengd27c9fc2009-07-03 01:43:10 +00001360 BinOpFrag<(add node:$LHS, (sext_inreg node:$RHS, i8))>>;
Evan Cheng0e55fd62010-09-30 01:08:25 +00001361defm t2SXTAH : T2I_exta_rrot<0b000, "sxtah",
Evan Chengd27c9fc2009-07-03 01:43:10 +00001362 BinOpFrag<(add node:$LHS, (sext_inreg node:$RHS,i16))>>;
Evan Cheng0e55fd62010-09-30 01:08:25 +00001363defm t2SXTAB16 : T2I_exta_rrot_DO<0b010, "sxtab16">;
Evan Chengd27c9fc2009-07-03 01:43:10 +00001364
Johnny Chen93042d12010-03-02 18:14:57 +00001365// TODO: SXT(A){B|H}16 - done for disassembly only
Evan Chengd27c9fc2009-07-03 01:43:10 +00001366
1367// Zero extenders
1368
1369let AddedComplexity = 16 in {
Evan Cheng0e55fd62010-09-30 01:08:25 +00001370defm t2UXTB : T2I_ext_rrot<0b101, "uxtb",
Johnny Chend68e1192009-12-15 17:24:14 +00001371 UnOpFrag<(and node:$Src, 0x000000FF)>>;
Evan Cheng0e55fd62010-09-30 01:08:25 +00001372defm t2UXTH : T2I_ext_rrot<0b001, "uxth",
Johnny Chend68e1192009-12-15 17:24:14 +00001373 UnOpFrag<(and node:$Src, 0x0000FFFF)>>;
Evan Cheng0e55fd62010-09-30 01:08:25 +00001374defm t2UXTB16 : T2I_ext_rrot_uxtb16<0b011, "uxtb16",
Johnny Chend68e1192009-12-15 17:24:14 +00001375 UnOpFrag<(and node:$Src, 0x00FF00FF)>>;
Evan Chengd27c9fc2009-07-03 01:43:10 +00001376
Jim Grosbach79464942010-07-28 23:17:45 +00001377// FIXME: This pattern incorrectly assumes the shl operator is a rotate.
1378// The transformation should probably be done as a combiner action
1379// instead so we can include a check for masking back in the upper
1380// eight bits of the source into the lower eight bits of the result.
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001381//def : T2Pat<(and (shl rGPR:$Src, (i32 8)), 0xFF00FF),
Jim Grosbach9729d2e2010-11-01 15:59:52 +00001382// (t2UXTB16r_rot rGPR:$Src, 24)>,
1383// Requires<[HasT2ExtractPack, IsThumb2]>;
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001384def : T2Pat<(and (srl rGPR:$Src, (i32 8)), 0xFF00FF),
Jim Grosbach9729d2e2010-11-01 15:59:52 +00001385 (t2UXTB16r_rot rGPR:$Src, 8)>,
1386 Requires<[HasT2ExtractPack, IsThumb2]>;
Evan Chengd27c9fc2009-07-03 01:43:10 +00001387
Evan Cheng0e55fd62010-09-30 01:08:25 +00001388defm t2UXTAB : T2I_exta_rrot<0b101, "uxtab",
Jim Grosbach6935efc2009-11-24 00:20:27 +00001389 BinOpFrag<(add node:$LHS, (and node:$RHS, 0x00FF))>>;
Evan Cheng0e55fd62010-09-30 01:08:25 +00001390defm t2UXTAH : T2I_exta_rrot<0b001, "uxtah",
Jim Grosbach6935efc2009-11-24 00:20:27 +00001391 BinOpFrag<(add node:$LHS, (and node:$RHS, 0xFFFF))>>;
Evan Cheng0e55fd62010-09-30 01:08:25 +00001392defm t2UXTAB16 : T2I_exta_rrot_DO<0b011, "uxtab16">;
Evan Chengd27c9fc2009-07-03 01:43:10 +00001393}
1394
1395//===----------------------------------------------------------------------===//
Anton Korobeynikov52237112009-06-17 18:13:58 +00001396// Arithmetic Instructions.
1397//
Anton Korobeynikov52237112009-06-17 18:13:58 +00001398
Johnny Chend68e1192009-12-15 17:24:14 +00001399defm t2ADD : T2I_bin_ii12rs<0b000, "add",
1400 BinOpFrag<(add node:$LHS, node:$RHS)>, 1>;
1401defm t2SUB : T2I_bin_ii12rs<0b101, "sub",
1402 BinOpFrag<(sub node:$LHS, node:$RHS)>>;
Anton Korobeynikov52237112009-06-17 18:13:58 +00001403
Evan Chengf49810c2009-06-23 17:48:47 +00001404// ADD and SUB with 's' bit set. No 12-bit immediate (T4) variants.
Johnny Chend68e1192009-12-15 17:24:14 +00001405defm t2ADDS : T2I_bin_s_irs <0b1000, "add",
Evan Cheng7e1bf302010-09-29 00:27:46 +00001406 IIC_iALUi, IIC_iALUr, IIC_iALUsi,
Johnny Chend68e1192009-12-15 17:24:14 +00001407 BinOpFrag<(addc node:$LHS, node:$RHS)>, 1>;
1408defm t2SUBS : T2I_bin_s_irs <0b1101, "sub",
Evan Cheng7e1bf302010-09-29 00:27:46 +00001409 IIC_iALUi, IIC_iALUr, IIC_iALUsi,
Johnny Chend68e1192009-12-15 17:24:14 +00001410 BinOpFrag<(subc node:$LHS, node:$RHS)>>;
Anton Korobeynikov52237112009-06-17 18:13:58 +00001411
Johnny Chend68e1192009-12-15 17:24:14 +00001412defm t2ADC : T2I_adde_sube_irs<0b1010, "adc",
Jim Grosbach39be8fc2010-02-16 20:42:29 +00001413 BinOpFrag<(adde_dead_carry node:$LHS, node:$RHS)>, 1>;
Johnny Chend68e1192009-12-15 17:24:14 +00001414defm t2SBC : T2I_adde_sube_irs<0b1011, "sbc",
Jim Grosbach39be8fc2010-02-16 20:42:29 +00001415 BinOpFrag<(sube_dead_carry node:$LHS, node:$RHS)>>;
Johnny Chenb5031ad2010-03-02 19:38:59 +00001416defm t2ADCS : T2I_adde_sube_s_irs<0b1010, "adc",
Jim Grosbach39be8fc2010-02-16 20:42:29 +00001417 BinOpFrag<(adde_live_carry node:$LHS, node:$RHS)>, 1>;
Johnny Chenb5031ad2010-03-02 19:38:59 +00001418defm t2SBCS : T2I_adde_sube_s_irs<0b1011, "sbc",
Jim Grosbach39be8fc2010-02-16 20:42:29 +00001419 BinOpFrag<(sube_live_carry node:$LHS, node:$RHS)>>;
Evan Chengf49810c2009-06-23 17:48:47 +00001420
David Goodwin752aa7d2009-07-27 16:39:05 +00001421// RSB
Bob Wilson20d8e4e2010-08-13 23:24:25 +00001422defm t2RSB : T2I_rbin_irs <0b1110, "rsb",
Johnny Chend68e1192009-12-15 17:24:14 +00001423 BinOpFrag<(sub node:$LHS, node:$RHS)>>;
1424defm t2RSBS : T2I_rbin_s_is <0b1110, "rsb",
1425 BinOpFrag<(subc node:$LHS, node:$RHS)>>;
Evan Chengf49810c2009-06-23 17:48:47 +00001426
1427// (sub X, imm) gets canonicalized to (add X, -imm). Match this form.
Jim Grosbach502e0aa2010-07-14 17:45:16 +00001428// The assume-no-carry-in form uses the negation of the input since add/sub
1429// assume opposite meanings of the carry flag (i.e., carry == !borrow).
1430// See the definition of AddWithCarry() in the ARM ARM A2.2.1 for the gory
1431// details.
1432// The AddedComplexity preferences the first variant over the others since
1433// it can be shrunk to a 16-bit wide encoding, while the others cannot.
Evan Chengfa2ea1a2009-08-04 01:41:15 +00001434let AddedComplexity = 1 in
Jim Grosbach502e0aa2010-07-14 17:45:16 +00001435def : T2Pat<(add GPR:$src, imm0_255_neg:$imm),
1436 (t2SUBri GPR:$src, imm0_255_neg:$imm)>;
1437def : T2Pat<(add GPR:$src, t2_so_imm_neg:$imm),
1438 (t2SUBri GPR:$src, t2_so_imm_neg:$imm)>;
1439def : T2Pat<(add GPR:$src, imm0_4095_neg:$imm),
1440 (t2SUBri12 GPR:$src, imm0_4095_neg:$imm)>;
1441let AddedComplexity = 1 in
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001442def : T2Pat<(addc rGPR:$src, imm0_255_neg:$imm),
1443 (t2SUBSri rGPR:$src, imm0_255_neg:$imm)>;
1444def : T2Pat<(addc rGPR:$src, t2_so_imm_neg:$imm),
1445 (t2SUBSri rGPR:$src, t2_so_imm_neg:$imm)>;
Jim Grosbach502e0aa2010-07-14 17:45:16 +00001446// The with-carry-in form matches bitwise not instead of the negation.
1447// Effectively, the inverse interpretation of the carry flag already accounts
1448// for part of the negation.
1449let AddedComplexity = 1 in
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001450def : T2Pat<(adde rGPR:$src, imm0_255_not:$imm),
1451 (t2SBCSri rGPR:$src, imm0_255_not:$imm)>;
1452def : T2Pat<(adde rGPR:$src, t2_so_imm_not:$imm),
1453 (t2SBCSri rGPR:$src, t2_so_imm_not:$imm)>;
Anton Korobeynikov52237112009-06-17 18:13:58 +00001454
Johnny Chen93042d12010-03-02 18:14:57 +00001455// Select Bytes -- for disassembly only
1456
1457def t2SEL : T2I<(outs GPR:$dst), (ins GPR:$a, GPR:$b), NoItinerary, "sel",
1458 "\t$dst, $a, $b", []> {
1459 let Inst{31-27} = 0b11111;
1460 let Inst{26-24} = 0b010;
1461 let Inst{23} = 0b1;
1462 let Inst{22-20} = 0b010;
1463 let Inst{15-12} = 0b1111;
1464 let Inst{7} = 0b1;
1465 let Inst{6-4} = 0b000;
1466}
1467
Johnny Chenadc77332010-02-26 22:04:29 +00001468// A6.3.13, A6.3.14, A6.3.15 Parallel addition and subtraction (signed/unsigned)
1469// And Miscellaneous operations -- for disassembly only
Nate Begeman692433b2010-07-29 17:56:55 +00001470class T2I_pam<bits<3> op22_20, bits<4> op7_4, string opc,
1471 list<dag> pat = [/* For disassembly only; pattern left blank */]>
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001472 : T2I<(outs rGPR:$dst), (ins rGPR:$a, rGPR:$b), NoItinerary, opc,
Nate Begeman692433b2010-07-29 17:56:55 +00001473 "\t$dst, $a, $b", pat> {
Johnny Chenadc77332010-02-26 22:04:29 +00001474 let Inst{31-27} = 0b11111;
1475 let Inst{26-23} = 0b0101;
1476 let Inst{22-20} = op22_20;
1477 let Inst{15-12} = 0b1111;
1478 let Inst{7-4} = op7_4;
1479}
1480
1481// Saturating add/subtract -- for disassembly only
1482
Nate Begeman692433b2010-07-29 17:56:55 +00001483def t2QADD : T2I_pam<0b000, 0b1000, "qadd",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001484 [(set rGPR:$dst, (int_arm_qadd rGPR:$a, rGPR:$b))]>;
Johnny Chenadc77332010-02-26 22:04:29 +00001485def t2QADD16 : T2I_pam<0b001, 0b0001, "qadd16">;
1486def t2QADD8 : T2I_pam<0b000, 0b0001, "qadd8">;
1487def t2QASX : T2I_pam<0b010, 0b0001, "qasx">;
1488def t2QDADD : T2I_pam<0b000, 0b1001, "qdadd">;
1489def t2QDSUB : T2I_pam<0b000, 0b1011, "qdsub">;
1490def t2QSAX : T2I_pam<0b110, 0b0001, "qsax">;
Nate Begeman692433b2010-07-29 17:56:55 +00001491def t2QSUB : T2I_pam<0b000, 0b1010, "qsub",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001492 [(set rGPR:$dst, (int_arm_qsub rGPR:$a, rGPR:$b))]>;
Johnny Chenadc77332010-02-26 22:04:29 +00001493def t2QSUB16 : T2I_pam<0b101, 0b0001, "qsub16">;
1494def t2QSUB8 : T2I_pam<0b100, 0b0001, "qsub8">;
1495def t2UQADD16 : T2I_pam<0b001, 0b0101, "uqadd16">;
1496def t2UQADD8 : T2I_pam<0b000, 0b0101, "uqadd8">;
1497def t2UQASX : T2I_pam<0b010, 0b0101, "uqasx">;
1498def t2UQSAX : T2I_pam<0b110, 0b0101, "uqsax">;
1499def t2UQSUB16 : T2I_pam<0b101, 0b0101, "uqsub16">;
1500def t2UQSUB8 : T2I_pam<0b100, 0b0101, "uqsub8">;
1501
1502// Signed/Unsigned add/subtract -- for disassembly only
1503
1504def t2SASX : T2I_pam<0b010, 0b0000, "sasx">;
1505def t2SADD16 : T2I_pam<0b001, 0b0000, "sadd16">;
1506def t2SADD8 : T2I_pam<0b000, 0b0000, "sadd8">;
1507def t2SSAX : T2I_pam<0b110, 0b0000, "ssax">;
1508def t2SSUB16 : T2I_pam<0b101, 0b0000, "ssub16">;
1509def t2SSUB8 : T2I_pam<0b100, 0b0000, "ssub8">;
1510def t2UASX : T2I_pam<0b010, 0b0100, "uasx">;
1511def t2UADD16 : T2I_pam<0b001, 0b0100, "uadd16">;
1512def t2UADD8 : T2I_pam<0b000, 0b0100, "uadd8">;
1513def t2USAX : T2I_pam<0b110, 0b0100, "usax">;
1514def t2USUB16 : T2I_pam<0b101, 0b0100, "usub16">;
1515def t2USUB8 : T2I_pam<0b100, 0b0100, "usub8">;
1516
1517// Signed/Unsigned halving add/subtract -- for disassembly only
1518
1519def t2SHASX : T2I_pam<0b010, 0b0010, "shasx">;
1520def t2SHADD16 : T2I_pam<0b001, 0b0010, "shadd16">;
1521def t2SHADD8 : T2I_pam<0b000, 0b0010, "shadd8">;
1522def t2SHSAX : T2I_pam<0b110, 0b0010, "shsax">;
1523def t2SHSUB16 : T2I_pam<0b101, 0b0010, "shsub16">;
1524def t2SHSUB8 : T2I_pam<0b100, 0b0010, "shsub8">;
1525def t2UHASX : T2I_pam<0b010, 0b0110, "uhasx">;
1526def t2UHADD16 : T2I_pam<0b001, 0b0110, "uhadd16">;
1527def t2UHADD8 : T2I_pam<0b000, 0b0110, "uhadd8">;
1528def t2UHSAX : T2I_pam<0b110, 0b0110, "uhsax">;
1529def t2UHSUB16 : T2I_pam<0b101, 0b0110, "uhsub16">;
1530def t2UHSUB8 : T2I_pam<0b100, 0b0110, "uhsub8">;
1531
1532// Unsigned Sum of Absolute Differences [and Accumulate] -- for disassembly only
1533
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001534def t2USAD8 : T2I_mac<0, 0b111, 0b0000, (outs rGPR:$dst),
1535 (ins rGPR:$a, rGPR:$b),
Johnny Chenadc77332010-02-26 22:04:29 +00001536 NoItinerary, "usad8", "\t$dst, $a, $b", []> {
1537 let Inst{15-12} = 0b1111;
1538}
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001539def t2USADA8 : T2I_mac<0, 0b111, 0b0000, (outs rGPR:$dst),
1540 (ins rGPR:$a, rGPR:$b, rGPR:$acc), NoItinerary, "usada8",
Johnny Chenadc77332010-02-26 22:04:29 +00001541 "\t$dst, $a, $b, $acc", []>;
1542
1543// Signed/Unsigned saturate -- for disassembly only
1544
Bob Wilson22f5dc72010-08-16 18:27:34 +00001545def t2SSAT: T2I<(outs rGPR:$dst), (ins i32imm:$bit_pos, rGPR:$a, shift_imm:$sh),
Bob Wilson38aa2872010-08-13 21:48:10 +00001546 NoItinerary, "ssat", "\t$dst, $bit_pos, $a$sh",
1547 [/* For disassembly only; pattern left blank */]> {
Johnny Chenadc77332010-02-26 22:04:29 +00001548 let Inst{31-27} = 0b11110;
1549 let Inst{25-22} = 0b1100;
1550 let Inst{20} = 0;
1551 let Inst{15} = 0;
Johnny Chenadc77332010-02-26 22:04:29 +00001552}
1553
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001554def t2SSAT16: T2I<(outs rGPR:$dst), (ins i32imm:$bit_pos, rGPR:$a), NoItinerary,
Johnny Chenadc77332010-02-26 22:04:29 +00001555 "ssat16", "\t$dst, $bit_pos, $a",
1556 [/* For disassembly only; pattern left blank */]> {
1557 let Inst{31-27} = 0b11110;
1558 let Inst{25-22} = 0b1100;
1559 let Inst{20} = 0;
1560 let Inst{15} = 0;
1561 let Inst{21} = 1; // sh = '1'
1562 let Inst{14-12} = 0b000; // imm3 = '000'
1563 let Inst{7-6} = 0b00; // imm2 = '00'
1564}
1565
Bob Wilson22f5dc72010-08-16 18:27:34 +00001566def t2USAT: T2I<(outs rGPR:$dst), (ins i32imm:$bit_pos, rGPR:$a, shift_imm:$sh),
Bob Wilson38aa2872010-08-13 21:48:10 +00001567 NoItinerary, "usat", "\t$dst, $bit_pos, $a$sh",
1568 [/* For disassembly only; pattern left blank */]> {
Johnny Chenadc77332010-02-26 22:04:29 +00001569 let Inst{31-27} = 0b11110;
1570 let Inst{25-22} = 0b1110;
1571 let Inst{20} = 0;
1572 let Inst{15} = 0;
Johnny Chenadc77332010-02-26 22:04:29 +00001573}
1574
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001575def t2USAT16: T2I<(outs rGPR:$dst), (ins i32imm:$bit_pos, rGPR:$a), NoItinerary,
Johnny Chenadc77332010-02-26 22:04:29 +00001576 "usat16", "\t$dst, $bit_pos, $a",
1577 [/* For disassembly only; pattern left blank */]> {
1578 let Inst{31-27} = 0b11110;
1579 let Inst{25-22} = 0b1110;
1580 let Inst{20} = 0;
1581 let Inst{15} = 0;
1582 let Inst{21} = 1; // sh = '1'
1583 let Inst{14-12} = 0b000; // imm3 = '000'
1584 let Inst{7-6} = 0b00; // imm2 = '00'
1585}
Anton Korobeynikov52237112009-06-17 18:13:58 +00001586
Bob Wilson38aa2872010-08-13 21:48:10 +00001587def : T2Pat<(int_arm_ssat GPR:$a, imm:$pos), (t2SSAT imm:$pos, GPR:$a, 0)>;
1588def : T2Pat<(int_arm_usat GPR:$a, imm:$pos), (t2USAT imm:$pos, GPR:$a, 0)>;
Nate Begeman0e0a20e2010-07-29 22:48:09 +00001589
Evan Chengf49810c2009-06-23 17:48:47 +00001590//===----------------------------------------------------------------------===//
Evan Chenga67efd12009-06-23 19:39:13 +00001591// Shift and rotate Instructions.
1592//
1593
Johnny Chend68e1192009-12-15 17:24:14 +00001594defm t2LSL : T2I_sh_ir<0b00, "lsl", BinOpFrag<(shl node:$LHS, node:$RHS)>>;
1595defm t2LSR : T2I_sh_ir<0b01, "lsr", BinOpFrag<(srl node:$LHS, node:$RHS)>>;
1596defm t2ASR : T2I_sh_ir<0b10, "asr", BinOpFrag<(sra node:$LHS, node:$RHS)>>;
1597defm t2ROR : T2I_sh_ir<0b11, "ror", BinOpFrag<(rotr node:$LHS, node:$RHS)>>;
Evan Chenga67efd12009-06-23 19:39:13 +00001598
David Goodwinca01a8d2009-09-01 18:32:09 +00001599let Uses = [CPSR] in {
Jim Grosbach792e9792010-10-14 20:43:44 +00001600def t2RRX : T2sI<(outs rGPR:$dst), (ins rGPR:$src), IIC_iMOVsi,
Evan Cheng699beba2009-10-27 00:08:59 +00001601 "rrx", "\t$dst, $src",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001602 [(set rGPR:$dst, (ARMrrx rGPR:$src))]> {
Johnny Chend68e1192009-12-15 17:24:14 +00001603 let Inst{31-27} = 0b11101;
1604 let Inst{26-25} = 0b01;
1605 let Inst{24-21} = 0b0010;
1606 let Inst{20} = ?; // The S bit.
1607 let Inst{19-16} = 0b1111; // Rn
1608 let Inst{14-12} = 0b000;
1609 let Inst{7-4} = 0b0011;
1610}
David Goodwinca01a8d2009-09-01 18:32:09 +00001611}
Evan Chenga67efd12009-06-23 19:39:13 +00001612
David Goodwin3583df72009-07-28 17:06:49 +00001613let Defs = [CPSR] in {
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001614def t2MOVsrl_flag : T2I<(outs rGPR:$dst), (ins rGPR:$src), IIC_iMOVsi,
Bob Wilsona85df802010-05-25 04:51:47 +00001615 "lsrs", ".w\t$dst, $src, #1",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001616 [(set rGPR:$dst, (ARMsrl_flag rGPR:$src))]> {
Johnny Chend68e1192009-12-15 17:24:14 +00001617 let Inst{31-27} = 0b11101;
1618 let Inst{26-25} = 0b01;
1619 let Inst{24-21} = 0b0010;
1620 let Inst{20} = 1; // The S bit.
1621 let Inst{19-16} = 0b1111; // Rn
1622 let Inst{5-4} = 0b01; // Shift type.
1623 // Shift amount = Inst{14-12:7-6} = 1.
1624 let Inst{14-12} = 0b000;
1625 let Inst{7-6} = 0b01;
1626}
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001627def t2MOVsra_flag : T2I<(outs rGPR:$dst), (ins rGPR:$src), IIC_iMOVsi,
Bob Wilsona85df802010-05-25 04:51:47 +00001628 "asrs", ".w\t$dst, $src, #1",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001629 [(set rGPR:$dst, (ARMsra_flag 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} = 1; // The S bit.
1634 let Inst{19-16} = 0b1111; // Rn
1635 let Inst{5-4} = 0b10; // Shift type.
1636 // Shift amount = Inst{14-12:7-6} = 1.
1637 let Inst{14-12} = 0b000;
1638 let Inst{7-6} = 0b01;
1639}
David Goodwin3583df72009-07-28 17:06:49 +00001640}
1641
Evan Chenga67efd12009-06-23 19:39:13 +00001642//===----------------------------------------------------------------------===//
Evan Chengf49810c2009-06-23 17:48:47 +00001643// Bitwise Instructions.
1644//
Anton Korobeynikov52237112009-06-17 18:13:58 +00001645
Johnny Chend68e1192009-12-15 17:24:14 +00001646defm t2AND : T2I_bin_w_irs<0b0000, "and",
Evan Cheng7e1bf302010-09-29 00:27:46 +00001647 IIC_iBITi, IIC_iBITr, IIC_iBITsi,
Johnny Chend68e1192009-12-15 17:24:14 +00001648 BinOpFrag<(and node:$LHS, node:$RHS)>, 1>;
1649defm t2ORR : T2I_bin_w_irs<0b0010, "orr",
Evan Cheng7e1bf302010-09-29 00:27:46 +00001650 IIC_iBITi, IIC_iBITr, IIC_iBITsi,
Johnny Chend68e1192009-12-15 17:24:14 +00001651 BinOpFrag<(or node:$LHS, node:$RHS)>, 1>;
1652defm t2EOR : T2I_bin_w_irs<0b0100, "eor",
Evan Cheng7e1bf302010-09-29 00:27:46 +00001653 IIC_iBITi, IIC_iBITr, IIC_iBITsi,
Johnny Chend68e1192009-12-15 17:24:14 +00001654 BinOpFrag<(xor node:$LHS, node:$RHS)>, 1>;
Evan Chengf49810c2009-06-23 17:48:47 +00001655
Johnny Chend68e1192009-12-15 17:24:14 +00001656defm t2BIC : T2I_bin_w_irs<0b0001, "bic",
Evan Cheng7e1bf302010-09-29 00:27:46 +00001657 IIC_iBITi, IIC_iBITr, IIC_iBITsi,
Johnny Chend68e1192009-12-15 17:24:14 +00001658 BinOpFrag<(and node:$LHS, (not node:$RHS))>>;
Evan Chengf49810c2009-06-23 17:48:47 +00001659
Evan Chengf49810c2009-06-23 17:48:47 +00001660let Constraints = "$src = $dst" in
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001661def t2BFC : T2I<(outs rGPR:$dst), (ins rGPR:$src, bf_inv_mask_imm:$imm),
David Goodwin2f54a2f2009-11-02 17:28:36 +00001662 IIC_iUNAsi, "bfc", "\t$dst, $imm",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001663 [(set rGPR:$dst, (and rGPR:$src, bf_inv_mask_imm:$imm))]> {
Johnny Chend68e1192009-12-15 17:24:14 +00001664 let Inst{31-27} = 0b11110;
1665 let Inst{25} = 1;
1666 let Inst{24-20} = 0b10110;
1667 let Inst{19-16} = 0b1111; // Rn
1668 let Inst{15} = 0;
1669}
Evan Chengf49810c2009-06-23 17:48:47 +00001670
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001671def t2SBFX: T2I<(outs rGPR:$dst), (ins rGPR:$src, imm0_31:$lsb, imm0_31:$width),
Evan Cheng0e55fd62010-09-30 01:08:25 +00001672 IIC_iUNAsi, "sbfx", "\t$dst, $src, $lsb, $width", []> {
Johnny Chend68e1192009-12-15 17:24:14 +00001673 let Inst{31-27} = 0b11110;
1674 let Inst{25} = 1;
1675 let Inst{24-20} = 0b10100;
1676 let Inst{15} = 0;
1677}
Sandeep Patel47eedaa2009-10-13 18:59:48 +00001678
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001679def t2UBFX: T2I<(outs rGPR:$dst), (ins rGPR:$src, imm0_31:$lsb, imm0_31:$width),
Evan Cheng0e55fd62010-09-30 01:08:25 +00001680 IIC_iUNAsi, "ubfx", "\t$dst, $src, $lsb, $width", []> {
Johnny Chend68e1192009-12-15 17:24:14 +00001681 let Inst{31-27} = 0b11110;
1682 let Inst{25} = 1;
1683 let Inst{24-20} = 0b11100;
1684 let Inst{15} = 0;
1685}
Sandeep Patel47eedaa2009-10-13 18:59:48 +00001686
Johnny Chen9474d552010-02-02 19:31:58 +00001687// A8.6.18 BFI - Bitfield insert (Encoding T1)
Jim Grosbach469bbdb2010-07-16 23:05:05 +00001688let Constraints = "$src = $dst" in
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001689def t2BFI : T2I<(outs rGPR:$dst),
1690 (ins rGPR:$src, rGPR:$val, bf_inv_mask_imm:$imm),
Evan Cheng7e1bf302010-09-29 00:27:46 +00001691 IIC_iBITi, "bfi", "\t$dst, $val, $imm",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001692 [(set rGPR:$dst, (ARMbfi rGPR:$src, rGPR:$val,
Jim Grosbach469bbdb2010-07-16 23:05:05 +00001693 bf_inv_mask_imm:$imm))]> {
Johnny Chen9474d552010-02-02 19:31:58 +00001694 let Inst{31-27} = 0b11110;
1695 let Inst{25} = 1;
1696 let Inst{24-20} = 0b10110;
1697 let Inst{15} = 0;
1698}
Evan Chengf49810c2009-06-23 17:48:47 +00001699
Evan Cheng7e1bf302010-09-29 00:27:46 +00001700defm t2ORN : T2I_bin_irs<0b0011, "orn",
1701 IIC_iBITi, IIC_iBITr, IIC_iBITsi,
1702 BinOpFrag<(or node:$LHS, (not node:$RHS))>, 0, "">;
Evan Cheng36a0aeb2009-07-06 22:23:46 +00001703
1704// Prefer over of t2EORri ra, rb, -1 because mvn has 16-bit version
1705let AddedComplexity = 1 in
Evan Cheng5d42c562010-09-29 00:49:25 +00001706defm t2MVN : T2I_un_irs <0b0011, "mvn",
Evan Cheng3881cb72010-09-29 22:42:35 +00001707 IIC_iMVNi, IIC_iMVNr, IIC_iMVNsi,
Evan Cheng5d42c562010-09-29 00:49:25 +00001708 UnOpFrag<(not node:$Src)>, 1, 1>;
Evan Cheng36a0aeb2009-07-06 22:23:46 +00001709
1710
Jim Grosbachf084a5e2010-07-20 16:07:04 +00001711let AddedComplexity = 1 in
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001712def : T2Pat<(and rGPR:$src, t2_so_imm_not:$imm),
1713 (t2BICri rGPR:$src, t2_so_imm_not:$imm)>;
Evan Cheng36a0aeb2009-07-06 22:23:46 +00001714
Evan Cheng25f7cfc2009-08-01 06:13:52 +00001715// FIXME: Disable this pattern on Darwin to workaround an assembler bug.
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001716def : T2Pat<(or rGPR:$src, t2_so_imm_not:$imm),
1717 (t2ORNri rGPR:$src, t2_so_imm_not:$imm)>,
Evan Chengea253b92009-08-12 01:56:42 +00001718 Requires<[IsThumb2]>;
Evan Cheng36a0aeb2009-07-06 22:23:46 +00001719
1720def : T2Pat<(t2_so_imm_not:$src),
1721 (t2MVNi t2_so_imm_not:$src)>;
1722
Evan Chengf49810c2009-06-23 17:48:47 +00001723//===----------------------------------------------------------------------===//
1724// Multiply Instructions.
1725//
Evan Cheng8de898a2009-06-26 00:19:44 +00001726let isCommutable = 1 in
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001727def t2MUL: T2I<(outs rGPR:$dst), (ins rGPR:$a, rGPR:$b), IIC_iMUL32,
Evan Cheng699beba2009-10-27 00:08:59 +00001728 "mul", "\t$dst, $a, $b",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001729 [(set rGPR:$dst, (mul rGPR:$a, rGPR:$b))]> {
Johnny Chend68e1192009-12-15 17:24:14 +00001730 let Inst{31-27} = 0b11111;
1731 let Inst{26-23} = 0b0110;
1732 let Inst{22-20} = 0b000;
1733 let Inst{15-12} = 0b1111; // Ra = 0b1111 (no accumulate)
1734 let Inst{7-4} = 0b0000; // Multiply
1735}
Evan Chengf49810c2009-06-23 17:48:47 +00001736
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001737def t2MLA: T2I<(outs rGPR:$dst), (ins rGPR:$a, rGPR:$b, rGPR:$c), IIC_iMAC32,
Jim Grosbachf38bfd12010-10-29 23:23:15 +00001738 "mla", "\t$dst, $a, $b, $c",
1739 [(set rGPR:$dst, (add (mul rGPR:$a, rGPR:$b), rGPR:$c))]> {
Johnny Chend68e1192009-12-15 17:24:14 +00001740 let Inst{31-27} = 0b11111;
1741 let Inst{26-23} = 0b0110;
1742 let Inst{22-20} = 0b000;
1743 let Inst{15-12} = {?, ?, ?, ?}; // Ra
1744 let Inst{7-4} = 0b0000; // Multiply
1745}
Evan Chengf49810c2009-06-23 17:48:47 +00001746
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001747def t2MLS: T2I<(outs rGPR:$dst), (ins rGPR:$a, rGPR:$b, rGPR:$c), IIC_iMAC32,
Jim Grosbachf38bfd12010-10-29 23:23:15 +00001748 "mls", "\t$dst, $a, $b, $c",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001749 [(set rGPR:$dst, (sub rGPR:$c, (mul rGPR:$a, rGPR:$b)))]> {
Johnny Chend68e1192009-12-15 17:24:14 +00001750 let Inst{31-27} = 0b11111;
1751 let Inst{26-23} = 0b0110;
1752 let Inst{22-20} = 0b000;
1753 let Inst{15-12} = {?, ?, ?, ?}; // Ra
1754 let Inst{7-4} = 0b0001; // Multiply and Subtract
1755}
Evan Chengf49810c2009-06-23 17:48:47 +00001756
Evan Cheng5b9fcd12009-07-07 01:17:28 +00001757// Extra precision multiplies with low / high results
1758let neverHasSideEffects = 1 in {
1759let isCommutable = 1 in {
Jim Grosbachc5ed0132010-08-17 18:39:16 +00001760def t2SMULL : T2I<(outs rGPR:$ldst, rGPR:$hdst),
1761 (ins rGPR:$a, rGPR:$b), IIC_iMUL64,
Johnny Chend68e1192009-12-15 17:24:14 +00001762 "smull", "\t$ldst, $hdst, $a, $b", []> {
1763 let Inst{31-27} = 0b11111;
1764 let Inst{26-23} = 0b0111;
1765 let Inst{22-20} = 0b000;
1766 let Inst{7-4} = 0b0000;
1767}
Evan Cheng5b9fcd12009-07-07 01:17:28 +00001768
Jim Grosbachc5ed0132010-08-17 18:39:16 +00001769def t2UMULL : T2I<(outs rGPR:$ldst, rGPR:$hdst),
1770 (ins rGPR:$a, rGPR:$b), IIC_iMUL64,
Johnny Chend68e1192009-12-15 17:24:14 +00001771 "umull", "\t$ldst, $hdst, $a, $b", []> {
1772 let Inst{31-27} = 0b11111;
1773 let Inst{26-23} = 0b0111;
1774 let Inst{22-20} = 0b010;
1775 let Inst{7-4} = 0b0000;
Evan Cheng5b9fcd12009-07-07 01:17:28 +00001776}
Johnny Chend68e1192009-12-15 17:24:14 +00001777} // isCommutable
Evan Cheng5b9fcd12009-07-07 01:17:28 +00001778
1779// Multiply + accumulate
Jim Grosbachc5ed0132010-08-17 18:39:16 +00001780def t2SMLAL : T2I<(outs rGPR:$ldst, rGPR:$hdst),
1781 (ins rGPR:$a, rGPR:$b), IIC_iMAC64,
Johnny Chend68e1192009-12-15 17:24:14 +00001782 "smlal", "\t$ldst, $hdst, $a, $b", []>{
1783 let Inst{31-27} = 0b11111;
1784 let Inst{26-23} = 0b0111;
1785 let Inst{22-20} = 0b100;
1786 let Inst{7-4} = 0b0000;
1787}
Evan Cheng5b9fcd12009-07-07 01:17:28 +00001788
Jim Grosbachc5ed0132010-08-17 18:39:16 +00001789def t2UMLAL : T2I<(outs rGPR:$ldst, rGPR:$hdst),
1790 (ins rGPR:$a, rGPR:$b), IIC_iMAC64,
Johnny Chend68e1192009-12-15 17:24:14 +00001791 "umlal", "\t$ldst, $hdst, $a, $b", []>{
1792 let Inst{31-27} = 0b11111;
1793 let Inst{26-23} = 0b0111;
1794 let Inst{22-20} = 0b110;
1795 let Inst{7-4} = 0b0000;
1796}
Evan Cheng5b9fcd12009-07-07 01:17:28 +00001797
Jim Grosbachc5ed0132010-08-17 18:39:16 +00001798def t2UMAAL : T2I<(outs rGPR:$ldst, rGPR:$hdst),
1799 (ins rGPR:$a, rGPR:$b), IIC_iMAC64,
Johnny Chend68e1192009-12-15 17:24:14 +00001800 "umaal", "\t$ldst, $hdst, $a, $b", []>{
1801 let Inst{31-27} = 0b11111;
1802 let Inst{26-23} = 0b0111;
1803 let Inst{22-20} = 0b110;
1804 let Inst{7-4} = 0b0110;
1805}
Evan Cheng5b9fcd12009-07-07 01:17:28 +00001806} // neverHasSideEffects
1807
Johnny Chen93042d12010-03-02 18:14:57 +00001808// Rounding variants of the below included for disassembly only
1809
Evan Cheng5b9fcd12009-07-07 01:17:28 +00001810// Most significant word multiply
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001811def t2SMMUL : T2I<(outs rGPR:$dst), (ins rGPR:$a, rGPR:$b), IIC_iMUL32,
Evan Cheng699beba2009-10-27 00:08:59 +00001812 "smmul", "\t$dst, $a, $b",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001813 [(set rGPR:$dst, (mulhs rGPR:$a, rGPR:$b))]> {
Johnny Chend68e1192009-12-15 17:24:14 +00001814 let Inst{31-27} = 0b11111;
1815 let Inst{26-23} = 0b0110;
1816 let Inst{22-20} = 0b101;
1817 let Inst{15-12} = 0b1111; // Ra = 0b1111 (no accumulate)
1818 let Inst{7-4} = 0b0000; // No Rounding (Inst{4} = 0)
1819}
Evan Cheng5b9fcd12009-07-07 01:17:28 +00001820
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001821def t2SMMULR : T2I<(outs rGPR:$dst), (ins rGPR:$a, rGPR:$b), IIC_iMUL32,
Johnny Chen93042d12010-03-02 18:14:57 +00001822 "smmulr", "\t$dst, $a, $b", []> {
1823 let Inst{31-27} = 0b11111;
1824 let Inst{26-23} = 0b0110;
1825 let Inst{22-20} = 0b101;
1826 let Inst{15-12} = 0b1111; // Ra = 0b1111 (no accumulate)
1827 let Inst{7-4} = 0b0001; // Rounding (Inst{4} = 1)
1828}
1829
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001830def t2SMMLA : T2I<(outs rGPR:$dst), (ins rGPR:$a, rGPR:$b, rGPR:$c), IIC_iMAC32,
Evan Cheng699beba2009-10-27 00:08:59 +00001831 "smmla", "\t$dst, $a, $b, $c",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001832 [(set rGPR:$dst, (add (mulhs rGPR:$a, rGPR:$b), rGPR:$c))]> {
Johnny Chend68e1192009-12-15 17:24:14 +00001833 let Inst{31-27} = 0b11111;
1834 let Inst{26-23} = 0b0110;
1835 let Inst{22-20} = 0b101;
1836 let Inst{15-12} = {?, ?, ?, ?}; // Ra
1837 let Inst{7-4} = 0b0000; // No Rounding (Inst{4} = 0)
1838}
Evan Cheng5b9fcd12009-07-07 01:17:28 +00001839
Jim Grosbachc5ed0132010-08-17 18:39:16 +00001840def t2SMMLAR: T2I<(outs rGPR:$dst), (ins rGPR:$a, rGPR:$b, rGPR:$c), IIC_iMAC32,
Johnny Chen93042d12010-03-02 18:14:57 +00001841 "smmlar", "\t$dst, $a, $b, $c", []> {
1842 let Inst{31-27} = 0b11111;
1843 let Inst{26-23} = 0b0110;
1844 let Inst{22-20} = 0b101;
1845 let Inst{15-12} = {?, ?, ?, ?}; // Ra
1846 let Inst{7-4} = 0b0001; // Rounding (Inst{4} = 1)
1847}
Evan Cheng5b9fcd12009-07-07 01:17:28 +00001848
Jim Grosbachc5ed0132010-08-17 18:39:16 +00001849def t2SMMLS: T2I <(outs rGPR:$dst), (ins rGPR:$a, rGPR:$b, rGPR:$c), IIC_iMAC32,
Evan Cheng699beba2009-10-27 00:08:59 +00001850 "smmls", "\t$dst, $a, $b, $c",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001851 [(set rGPR:$dst, (sub rGPR:$c, (mulhs rGPR:$a, rGPR:$b)))]> {
Johnny Chend68e1192009-12-15 17:24:14 +00001852 let Inst{31-27} = 0b11111;
1853 let Inst{26-23} = 0b0110;
1854 let Inst{22-20} = 0b110;
1855 let Inst{15-12} = {?, ?, ?, ?}; // Ra
1856 let Inst{7-4} = 0b0000; // No Rounding (Inst{4} = 0)
1857}
Evan Cheng5b9fcd12009-07-07 01:17:28 +00001858
Jim Grosbachc5ed0132010-08-17 18:39:16 +00001859def t2SMMLSR:T2I <(outs rGPR:$dst), (ins rGPR:$a, rGPR:$b, rGPR:$c), IIC_iMAC32,
Johnny Chen93042d12010-03-02 18:14:57 +00001860 "smmlsr", "\t$dst, $a, $b, $c", []> {
1861 let Inst{31-27} = 0b11111;
1862 let Inst{26-23} = 0b0110;
1863 let Inst{22-20} = 0b110;
1864 let Inst{15-12} = {?, ?, ?, ?}; // Ra
1865 let Inst{7-4} = 0b0001; // Rounding (Inst{4} = 1)
1866}
1867
Evan Cheng5b9fcd12009-07-07 01:17:28 +00001868multiclass T2I_smul<string opc, PatFrag opnode> {
Evan Cheng0e55fd62010-09-30 01:08:25 +00001869 def BB : T2I<(outs rGPR:$dst), (ins rGPR:$a, rGPR:$b), IIC_iMUL16,
Evan Cheng699beba2009-10-27 00:08:59 +00001870 !strconcat(opc, "bb"), "\t$dst, $a, $b",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001871 [(set rGPR:$dst, (opnode (sext_inreg rGPR:$a, i16),
1872 (sext_inreg rGPR:$b, i16)))]> {
Johnny Chend68e1192009-12-15 17:24:14 +00001873 let Inst{31-27} = 0b11111;
1874 let Inst{26-23} = 0b0110;
1875 let Inst{22-20} = 0b001;
1876 let Inst{15-12} = 0b1111; // Ra = 0b1111 (no accumulate)
1877 let Inst{7-6} = 0b00;
1878 let Inst{5-4} = 0b00;
1879 }
Evan Cheng5b9fcd12009-07-07 01:17:28 +00001880
Evan Cheng0e55fd62010-09-30 01:08:25 +00001881 def BT : T2I<(outs rGPR:$dst), (ins rGPR:$a, rGPR:$b), IIC_iMUL16,
Evan Cheng699beba2009-10-27 00:08:59 +00001882 !strconcat(opc, "bt"), "\t$dst, $a, $b",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001883 [(set rGPR:$dst, (opnode (sext_inreg rGPR:$a, i16),
1884 (sra rGPR:$b, (i32 16))))]> {
Johnny Chend68e1192009-12-15 17:24:14 +00001885 let Inst{31-27} = 0b11111;
1886 let Inst{26-23} = 0b0110;
1887 let Inst{22-20} = 0b001;
1888 let Inst{15-12} = 0b1111; // Ra = 0b1111 (no accumulate)
1889 let Inst{7-6} = 0b00;
1890 let Inst{5-4} = 0b01;
1891 }
Evan Cheng5b9fcd12009-07-07 01:17:28 +00001892
Evan Cheng0e55fd62010-09-30 01:08:25 +00001893 def TB : T2I<(outs rGPR:$dst), (ins rGPR:$a, rGPR:$b), IIC_iMUL16,
Evan Cheng699beba2009-10-27 00:08:59 +00001894 !strconcat(opc, "tb"), "\t$dst, $a, $b",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001895 [(set rGPR:$dst, (opnode (sra rGPR:$a, (i32 16)),
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} = 0b10;
1903 }
Evan Cheng5b9fcd12009-07-07 01:17:28 +00001904
Evan Cheng0e55fd62010-09-30 01:08:25 +00001905 def TT : T2I<(outs rGPR:$dst), (ins rGPR:$a, rGPR:$b), IIC_iMUL16,
Evan Cheng699beba2009-10-27 00:08:59 +00001906 !strconcat(opc, "tt"), "\t$dst, $a, $b",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001907 [(set rGPR:$dst, (opnode (sra rGPR:$a, (i32 16)),
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} = 0b11;
1915 }
Evan Cheng5b9fcd12009-07-07 01:17:28 +00001916
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001917 def WB : T2I<(outs rGPR:$dst), (ins rGPR:$a, rGPR:$b), IIC_iMUL16,
Evan Cheng699beba2009-10-27 00:08:59 +00001918 !strconcat(opc, "wb"), "\t$dst, $a, $b",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001919 [(set rGPR:$dst, (sra (opnode rGPR:$a,
1920 (sext_inreg rGPR:$b, i16)), (i32 16)))]> {
Johnny Chend68e1192009-12-15 17:24:14 +00001921 let Inst{31-27} = 0b11111;
1922 let Inst{26-23} = 0b0110;
1923 let Inst{22-20} = 0b011;
1924 let Inst{15-12} = 0b1111; // Ra = 0b1111 (no accumulate)
1925 let Inst{7-6} = 0b00;
1926 let Inst{5-4} = 0b00;
1927 }
Evan Cheng5b9fcd12009-07-07 01:17:28 +00001928
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001929 def WT : T2I<(outs rGPR:$dst), (ins rGPR:$a, rGPR:$b), IIC_iMUL16,
Evan Cheng699beba2009-10-27 00:08:59 +00001930 !strconcat(opc, "wt"), "\t$dst, $a, $b",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001931 [(set rGPR:$dst, (sra (opnode rGPR:$a,
1932 (sra rGPR:$b, (i32 16))), (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} = 0b011;
1936 let Inst{15-12} = 0b1111; // Ra = 0b1111 (no accumulate)
1937 let Inst{7-6} = 0b00;
1938 let Inst{5-4} = 0b01;
1939 }
Evan Cheng5b9fcd12009-07-07 01:17:28 +00001940}
1941
1942
1943multiclass T2I_smla<string opc, PatFrag opnode> {
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001944 def BB : T2I<(outs rGPR:$dst), (ins rGPR:$a, rGPR:$b, rGPR:$acc), IIC_iMAC16,
Evan Cheng699beba2009-10-27 00:08:59 +00001945 !strconcat(opc, "bb"), "\t$dst, $a, $b, $acc",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001946 [(set rGPR:$dst, (add rGPR:$acc,
1947 (opnode (sext_inreg rGPR:$a, i16),
1948 (sext_inreg rGPR:$b, i16))))]> {
Johnny Chend68e1192009-12-15 17:24:14 +00001949 let Inst{31-27} = 0b11111;
1950 let Inst{26-23} = 0b0110;
1951 let Inst{22-20} = 0b001;
1952 let Inst{15-12} = {?, ?, ?, ?}; // Ra
1953 let Inst{7-6} = 0b00;
1954 let Inst{5-4} = 0b00;
1955 }
Evan Cheng5b9fcd12009-07-07 01:17:28 +00001956
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001957 def BT : T2I<(outs rGPR:$dst), (ins rGPR:$a, rGPR:$b, rGPR:$acc), IIC_iMAC16,
Evan Cheng699beba2009-10-27 00:08:59 +00001958 !strconcat(opc, "bt"), "\t$dst, $a, $b, $acc",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001959 [(set rGPR:$dst, (add rGPR:$acc, (opnode (sext_inreg rGPR:$a, i16),
Jim Grosbachc5ed0132010-08-17 18:39:16 +00001960 (sra rGPR:$b, (i32 16)))))]> {
Johnny Chend68e1192009-12-15 17:24:14 +00001961 let Inst{31-27} = 0b11111;
1962 let Inst{26-23} = 0b0110;
1963 let Inst{22-20} = 0b001;
1964 let Inst{15-12} = {?, ?, ?, ?}; // Ra
1965 let Inst{7-6} = 0b00;
1966 let Inst{5-4} = 0b01;
1967 }
Evan Cheng5b9fcd12009-07-07 01:17:28 +00001968
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001969 def TB : T2I<(outs rGPR:$dst), (ins rGPR:$a, rGPR:$b, rGPR:$acc), IIC_iMAC16,
Evan Cheng699beba2009-10-27 00:08:59 +00001970 !strconcat(opc, "tb"), "\t$dst, $a, $b, $acc",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001971 [(set rGPR:$dst, (add rGPR:$acc, (opnode (sra rGPR:$a, (i32 16)),
Jim Grosbachc5ed0132010-08-17 18:39:16 +00001972 (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} = 0b10;
1979 }
Evan Cheng5b9fcd12009-07-07 01:17:28 +00001980
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001981 def TT : T2I<(outs rGPR:$dst), (ins rGPR:$a, rGPR:$b, rGPR:$acc), IIC_iMAC16,
Evan Cheng699beba2009-10-27 00:08:59 +00001982 !strconcat(opc, "tt"), "\t$dst, $a, $b, $acc",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001983 [(set rGPR:$dst, (add rGPR:$acc, (opnode (sra rGPR:$a, (i32 16)),
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} = 0b11;
1991 }
Evan Cheng5b9fcd12009-07-07 01:17:28 +00001992
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001993 def WB : T2I<(outs rGPR:$dst), (ins rGPR:$a, rGPR:$b, rGPR:$acc), IIC_iMAC16,
Evan Cheng699beba2009-10-27 00:08:59 +00001994 !strconcat(opc, "wb"), "\t$dst, $a, $b, $acc",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001995 [(set rGPR:$dst, (add rGPR:$acc, (sra (opnode rGPR:$a,
Jim Grosbachc5ed0132010-08-17 18:39:16 +00001996 (sext_inreg rGPR:$b, i16)), (i32 16))))]> {
Johnny Chend68e1192009-12-15 17:24:14 +00001997 let Inst{31-27} = 0b11111;
1998 let Inst{26-23} = 0b0110;
1999 let Inst{22-20} = 0b011;
2000 let Inst{15-12} = {?, ?, ?, ?}; // Ra
2001 let Inst{7-6} = 0b00;
2002 let Inst{5-4} = 0b00;
2003 }
Evan Cheng5b9fcd12009-07-07 01:17:28 +00002004
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002005 def WT : T2I<(outs rGPR:$dst), (ins rGPR:$a, rGPR:$b, rGPR:$acc), IIC_iMAC16,
Evan Cheng699beba2009-10-27 00:08:59 +00002006 !strconcat(opc, "wt"), "\t$dst, $a, $b, $acc",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002007 [(set rGPR:$dst, (add rGPR:$acc, (sra (opnode rGPR:$a,
Jim Grosbachc5ed0132010-08-17 18:39:16 +00002008 (sra rGPR:$b, (i32 16))), (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} = 0b011;
2012 let Inst{15-12} = {?, ?, ?, ?}; // Ra
2013 let Inst{7-6} = 0b00;
2014 let Inst{5-4} = 0b01;
2015 }
Evan Cheng5b9fcd12009-07-07 01:17:28 +00002016}
2017
2018defm t2SMUL : T2I_smul<"smul", BinOpFrag<(mul node:$LHS, node:$RHS)>>;
2019defm t2SMLA : T2I_smla<"smla", BinOpFrag<(mul node:$LHS, node:$RHS)>>;
2020
Johnny Chenadc77332010-02-26 22:04:29 +00002021// Halfword multiple accumulate long: SMLAL<x><y> -- for disassembly only
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002022def t2SMLALBB : T2I_mac<1, 0b100, 0b1000, (outs rGPR:$ldst,rGPR:$hdst),
Jim Grosbachc5ed0132010-08-17 18:39:16 +00002023 (ins rGPR:$a,rGPR:$b), IIC_iMAC64, "smlalbb", "\t$ldst, $hdst, $a, $b",
Johnny Chenadc77332010-02-26 22:04:29 +00002024 [/* For disassembly only; pattern left blank */]>;
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002025def t2SMLALBT : T2I_mac<1, 0b100, 0b1001, (outs rGPR:$ldst,rGPR:$hdst),
Jim Grosbachc5ed0132010-08-17 18:39:16 +00002026 (ins rGPR:$a,rGPR:$b), IIC_iMAC64, "smlalbt", "\t$ldst, $hdst, $a, $b",
Johnny Chenadc77332010-02-26 22:04:29 +00002027 [/* For disassembly only; pattern left blank */]>;
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002028def t2SMLALTB : T2I_mac<1, 0b100, 0b1010, (outs rGPR:$ldst,rGPR:$hdst),
Jim Grosbachc5ed0132010-08-17 18:39:16 +00002029 (ins rGPR:$a,rGPR:$b), IIC_iMAC64, "smlaltb", "\t$ldst, $hdst, $a, $b",
Johnny Chenadc77332010-02-26 22:04:29 +00002030 [/* For disassembly only; pattern left blank */]>;
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002031def t2SMLALTT : T2I_mac<1, 0b100, 0b1011, (outs rGPR:$ldst,rGPR:$hdst),
Jim Grosbachc5ed0132010-08-17 18:39:16 +00002032 (ins rGPR:$a,rGPR:$b), IIC_iMAC64, "smlaltt", "\t$ldst, $hdst, $a, $b",
Johnny Chenadc77332010-02-26 22:04:29 +00002033 [/* For disassembly only; pattern left blank */]>;
Evan Cheng5b9fcd12009-07-07 01:17:28 +00002034
Johnny Chenadc77332010-02-26 22:04:29 +00002035// Dual halfword multiple: SMUAD, SMUSD, SMLAD, SMLSD, SMLALD, SMLSLD
2036// These are for disassembly only.
2037
Jim Grosbachc5ed0132010-08-17 18:39:16 +00002038def t2SMUAD: T2I_mac<0, 0b010, 0b0000, (outs rGPR:$dst), (ins rGPR:$a, rGPR:$b),
2039 IIC_iMAC32, "smuad", "\t$dst, $a, $b", []> {
Johnny Chenadc77332010-02-26 22:04:29 +00002040 let Inst{15-12} = 0b1111;
2041}
Jim Grosbachc5ed0132010-08-17 18:39:16 +00002042def t2SMUADX:T2I_mac<0, 0b010, 0b0001, (outs rGPR:$dst), (ins rGPR:$a, rGPR:$b),
2043 IIC_iMAC32, "smuadx", "\t$dst, $a, $b", []> {
Johnny Chenadc77332010-02-26 22:04:29 +00002044 let Inst{15-12} = 0b1111;
2045}
Jim Grosbachc5ed0132010-08-17 18:39:16 +00002046def t2SMUSD: T2I_mac<0, 0b100, 0b0000, (outs rGPR:$dst), (ins rGPR:$a, rGPR:$b),
2047 IIC_iMAC32, "smusd", "\t$dst, $a, $b", []> {
Johnny Chenadc77332010-02-26 22:04:29 +00002048 let Inst{15-12} = 0b1111;
2049}
Jim Grosbachc5ed0132010-08-17 18:39:16 +00002050def t2SMUSDX:T2I_mac<0, 0b100, 0b0001, (outs rGPR:$dst), (ins rGPR:$a, rGPR:$b),
2051 IIC_iMAC32, "smusdx", "\t$dst, $a, $b", []> {
Johnny Chenadc77332010-02-26 22:04:29 +00002052 let Inst{15-12} = 0b1111;
2053}
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002054def t2SMLAD : T2I_mac<0, 0b010, 0b0000, (outs rGPR:$dst),
2055 (ins rGPR:$a, rGPR:$b, rGPR:$acc), IIC_iMAC32, "smlad",
Johnny Chenadc77332010-02-26 22:04:29 +00002056 "\t$dst, $a, $b, $acc", []>;
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002057def t2SMLADX : T2I_mac<0, 0b010, 0b0001, (outs rGPR:$dst),
2058 (ins rGPR:$a, rGPR:$b, rGPR:$acc), IIC_iMAC32, "smladx",
Johnny Chenadc77332010-02-26 22:04:29 +00002059 "\t$dst, $a, $b, $acc", []>;
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002060def t2SMLSD : T2I_mac<0, 0b100, 0b0000, (outs rGPR:$dst),
2061 (ins rGPR:$a, rGPR:$b, rGPR:$acc), IIC_iMAC32, "smlsd",
Johnny Chenadc77332010-02-26 22:04:29 +00002062 "\t$dst, $a, $b, $acc", []>;
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002063def t2SMLSDX : T2I_mac<0, 0b100, 0b0001, (outs rGPR:$dst),
2064 (ins rGPR:$a, rGPR:$b, rGPR:$acc), IIC_iMAC32, "smlsdx",
Johnny Chenadc77332010-02-26 22:04:29 +00002065 "\t$dst, $a, $b, $acc", []>;
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002066def t2SMLALD : T2I_mac<1, 0b100, 0b1100, (outs rGPR:$ldst,rGPR:$hdst),
2067 (ins rGPR:$a,rGPR:$b), IIC_iMAC64, "smlald",
Johnny Chenadc77332010-02-26 22:04:29 +00002068 "\t$ldst, $hdst, $a, $b", []>;
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002069def t2SMLALDX : T2I_mac<1, 0b100, 0b1101, (outs rGPR:$ldst,rGPR:$hdst),
2070 (ins rGPR:$a,rGPR:$b), IIC_iMAC64, "smlaldx",
Johnny Chenadc77332010-02-26 22:04:29 +00002071 "\t$ldst, $hdst, $a, $b", []>;
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002072def t2SMLSLD : T2I_mac<1, 0b101, 0b1100, (outs rGPR:$ldst,rGPR:$hdst),
2073 (ins rGPR:$a,rGPR:$b), IIC_iMAC64, "smlsld",
Johnny Chenadc77332010-02-26 22:04:29 +00002074 "\t$ldst, $hdst, $a, $b", []>;
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002075def t2SMLSLDX : T2I_mac<1, 0b101, 0b1101, (outs rGPR:$ldst,rGPR:$hdst),
2076 (ins rGPR:$a,rGPR:$b), IIC_iMAC64, "smlsldx",
Johnny Chenadc77332010-02-26 22:04:29 +00002077 "\t$ldst, $hdst, $a, $b", []>;
Evan Chengf49810c2009-06-23 17:48:47 +00002078
2079//===----------------------------------------------------------------------===//
2080// Misc. Arithmetic Instructions.
2081//
2082
Jim Grosbach80dc1162010-02-16 21:23:02 +00002083class T2I_misc<bits<2> op1, bits<2> op2, dag oops, dag iops,
2084 InstrItinClass itin, string opc, string asm, list<dag> pattern>
Johnny Chend68e1192009-12-15 17:24:14 +00002085 : T2I<oops, iops, itin, opc, asm, pattern> {
2086 let Inst{31-27} = 0b11111;
2087 let Inst{26-22} = 0b01010;
2088 let Inst{21-20} = op1;
2089 let Inst{15-12} = 0b1111;
2090 let Inst{7-6} = 0b10;
2091 let Inst{5-4} = op2;
2092}
Evan Chengf49810c2009-06-23 17:48:47 +00002093
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002094def t2CLZ : T2I_misc<0b11, 0b00, (outs rGPR:$dst), (ins rGPR:$src), IIC_iUNAr,
2095 "clz", "\t$dst, $src", [(set rGPR:$dst, (ctlz rGPR:$src))]>;
Evan Chengf49810c2009-06-23 17:48:47 +00002096
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002097def t2RBIT : T2I_misc<0b01, 0b10, (outs rGPR:$dst), (ins rGPR:$src), IIC_iUNAr,
Evan Chengf609bb82010-01-19 00:44:15 +00002098 "rbit", "\t$dst, $src",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002099 [(set rGPR:$dst, (ARMrbit rGPR:$src))]>;
Jim Grosbach3482c802010-01-18 19:58:49 +00002100
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002101def t2REV : T2I_misc<0b01, 0b00, (outs rGPR:$dst), (ins rGPR:$src), IIC_iUNAr,
Jim Grosbachc5ed0132010-08-17 18:39:16 +00002102 "rev", ".w\t$dst, $src", [(set rGPR:$dst, (bswap rGPR:$src))]>;
Johnny Chend68e1192009-12-15 17:24:14 +00002103
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002104def t2REV16 : T2I_misc<0b01, 0b01, (outs rGPR:$dst), (ins rGPR:$src), IIC_iUNAr,
Johnny Chend68e1192009-12-15 17:24:14 +00002105 "rev16", ".w\t$dst, $src",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002106 [(set rGPR:$dst,
2107 (or (and (srl rGPR:$src, (i32 8)), 0xFF),
2108 (or (and (shl rGPR:$src, (i32 8)), 0xFF00),
2109 (or (and (srl rGPR:$src, (i32 8)), 0xFF0000),
Jim Grosbachc5ed0132010-08-17 18:39:16 +00002110 (and (shl rGPR:$src, (i32 8)), 0xFF000000)))))]>;
Evan Chengf49810c2009-06-23 17:48:47 +00002111
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002112def t2REVSH : T2I_misc<0b01, 0b11, (outs rGPR:$dst), (ins rGPR:$src), IIC_iUNAr,
Johnny Chend68e1192009-12-15 17:24:14 +00002113 "revsh", ".w\t$dst, $src",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002114 [(set rGPR:$dst,
Evan Chengf49810c2009-06-23 17:48:47 +00002115 (sext_inreg
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002116 (or (srl (and rGPR:$src, 0xFF00), (i32 8)),
2117 (shl rGPR:$src, (i32 8))), i16))]>;
Evan Chengf49810c2009-06-23 17:48:47 +00002118
Bob Wilsonf955f292010-08-17 17:23:19 +00002119def t2PKHBT : T2I<(outs rGPR:$dst), (ins rGPR:$src1, rGPR:$src2, shift_imm:$sh),
Evan Cheng7e1bf302010-09-29 00:27:46 +00002120 IIC_iBITsi, "pkhbt", "\t$dst, $src1, $src2$sh",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002121 [(set rGPR:$dst, (or (and rGPR:$src1, 0xFFFF),
Bob Wilsonf955f292010-08-17 17:23:19 +00002122 (and (shl rGPR:$src2, lsl_amt:$sh),
Jim Grosbachb1dc3932010-05-05 20:44:35 +00002123 0xFFFF0000)))]>,
Jim Grosbach9729d2e2010-11-01 15:59:52 +00002124 Requires<[HasT2ExtractPack, IsThumb2]> {
Johnny Chend68e1192009-12-15 17:24:14 +00002125 let Inst{31-27} = 0b11101;
2126 let Inst{26-25} = 0b01;
2127 let Inst{24-20} = 0b01100;
2128 let Inst{5} = 0; // BT form
2129 let Inst{4} = 0;
2130}
Evan Cheng40289b02009-07-07 05:35:52 +00002131
2132// Alternate cases for PKHBT where identities eliminate some nodes.
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002133def : T2Pat<(or (and rGPR:$src1, 0xFFFF), (and rGPR:$src2, 0xFFFF0000)),
2134 (t2PKHBT rGPR:$src1, rGPR:$src2, 0)>,
Jim Grosbach9729d2e2010-11-01 15:59:52 +00002135 Requires<[HasT2ExtractPack, IsThumb2]>;
Bob Wilsonf955f292010-08-17 17:23:19 +00002136def : T2Pat<(or (and rGPR:$src1, 0xFFFF), (shl rGPR:$src2, imm16_31:$sh)),
2137 (t2PKHBT rGPR:$src1, rGPR:$src2, (lsl_shift_imm imm16_31:$sh))>,
Jim Grosbach9729d2e2010-11-01 15:59:52 +00002138 Requires<[HasT2ExtractPack, IsThumb2]>;
Evan Cheng40289b02009-07-07 05:35:52 +00002139
Bob Wilsondc66eda2010-08-16 22:26:55 +00002140// Note: Shifts of 1-15 bits will be transformed to srl instead of sra and
2141// will match the pattern below.
Bob Wilsonf955f292010-08-17 17:23:19 +00002142def t2PKHTB : T2I<(outs rGPR:$dst), (ins rGPR:$src1, rGPR:$src2, shift_imm:$sh),
Evan Cheng7e1bf302010-09-29 00:27:46 +00002143 IIC_iBITsi, "pkhtb", "\t$dst, $src1, $src2$sh",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002144 [(set rGPR:$dst, (or (and rGPR:$src1, 0xFFFF0000),
Bob Wilsonf955f292010-08-17 17:23:19 +00002145 (and (sra rGPR:$src2, asr_amt:$sh),
2146 0xFFFF)))]>,
Jim Grosbach9729d2e2010-11-01 15:59:52 +00002147 Requires<[HasT2ExtractPack, IsThumb2]> {
Johnny Chend68e1192009-12-15 17:24:14 +00002148 let Inst{31-27} = 0b11101;
2149 let Inst{26-25} = 0b01;
2150 let Inst{24-20} = 0b01100;
2151 let Inst{5} = 1; // TB form
2152 let Inst{4} = 0;
2153}
Evan Cheng40289b02009-07-07 05:35:52 +00002154
2155// Alternate cases for PKHTB where identities eliminate some nodes. Note that
2156// a shift amount of 0 is *not legal* here, it is PKHBT instead.
Bob Wilsondc66eda2010-08-16 22:26:55 +00002157def : T2Pat<(or (and rGPR:$src1, 0xFFFF0000), (srl rGPR:$src2, imm16_31:$sh)),
Bob Wilsonf955f292010-08-17 17:23:19 +00002158 (t2PKHTB rGPR:$src1, rGPR:$src2, (asr_shift_imm imm16_31:$sh))>,
Jim Grosbach9729d2e2010-11-01 15:59:52 +00002159 Requires<[HasT2ExtractPack, IsThumb2]>;
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002160def : T2Pat<(or (and rGPR:$src1, 0xFFFF0000),
Bob Wilsonf955f292010-08-17 17:23:19 +00002161 (and (srl rGPR:$src2, imm1_15:$sh), 0xFFFF)),
2162 (t2PKHTB rGPR:$src1, rGPR:$src2, (asr_shift_imm imm1_15:$sh))>,
Jim Grosbach9729d2e2010-11-01 15:59:52 +00002163 Requires<[HasT2ExtractPack, IsThumb2]>;
Evan Chengf49810c2009-06-23 17:48:47 +00002164
2165//===----------------------------------------------------------------------===//
2166// Comparison Instructions...
2167//
Johnny Chend68e1192009-12-15 17:24:14 +00002168defm t2CMP : T2I_cmp_irs<0b1101, "cmp",
Evan Cheng5d42c562010-09-29 00:49:25 +00002169 IIC_iCMPi, IIC_iCMPr, IIC_iCMPsi,
Johnny Chend68e1192009-12-15 17:24:14 +00002170 BinOpFrag<(ARMcmp node:$LHS, node:$RHS)>>;
2171defm t2CMPz : T2I_cmp_irs<0b1101, "cmp",
Evan Cheng5d42c562010-09-29 00:49:25 +00002172 IIC_iCMPi, IIC_iCMPr, IIC_iCMPsi,
Johnny Chend68e1192009-12-15 17:24:14 +00002173 BinOpFrag<(ARMcmpZ node:$LHS, node:$RHS)>>;
Evan Chengf49810c2009-06-23 17:48:47 +00002174
Dan Gohman4b7dff92010-08-26 15:50:25 +00002175//FIXME: Disable CMN, as CCodes are backwards from compare expectations
2176// Compare-to-zero still works out, just not the relationals
Jim Grosbachd5d2bae2010-01-22 00:08:13 +00002177//defm t2CMN : T2I_cmp_irs<0b1000, "cmn",
2178// BinOpFrag<(ARMcmp node:$LHS,(ineg node:$RHS))>>;
Dan Gohman4b7dff92010-08-26 15:50:25 +00002179defm t2CMNz : T2I_cmp_irs<0b1000, "cmn",
Evan Cheng5d42c562010-09-29 00:49:25 +00002180 IIC_iCMPi, IIC_iCMPr, IIC_iCMPsi,
Dan Gohman4b7dff92010-08-26 15:50:25 +00002181 BinOpFrag<(ARMcmpZ node:$LHS,(ineg node:$RHS))>>;
2182
Jim Grosbachd5d2bae2010-01-22 00:08:13 +00002183//def : T2Pat<(ARMcmp GPR:$src, t2_so_imm_neg:$imm),
2184// (t2CMNri GPR:$src, t2_so_imm_neg:$imm)>;
Dan Gohman4b7dff92010-08-26 15:50:25 +00002185
2186def : T2Pat<(ARMcmpZ GPR:$src, t2_so_imm_neg:$imm),
2187 (t2CMNzri GPR:$src, t2_so_imm_neg:$imm)>;
Evan Chengf49810c2009-06-23 17:48:47 +00002188
Johnny Chend68e1192009-12-15 17:24:14 +00002189defm t2TST : T2I_cmp_irs<0b0000, "tst",
Evan Cheng5d42c562010-09-29 00:49:25 +00002190 IIC_iTSTi, IIC_iTSTr, IIC_iTSTsi,
Johnny Chend68e1192009-12-15 17:24:14 +00002191 BinOpFrag<(ARMcmpZ (and node:$LHS, node:$RHS), 0)>>;
2192defm t2TEQ : T2I_cmp_irs<0b0100, "teq",
Evan Cheng5d42c562010-09-29 00:49:25 +00002193 IIC_iTSTi, IIC_iTSTr, IIC_iTSTsi,
Johnny Chend68e1192009-12-15 17:24:14 +00002194 BinOpFrag<(ARMcmpZ (xor node:$LHS, node:$RHS), 0)>>;
Evan Chengf49810c2009-06-23 17:48:47 +00002195
Evan Chenge253c952009-07-07 20:39:03 +00002196// Conditional moves
2197// FIXME: should be able to write a pattern for ARMcmov, but can't use
Jim Grosbach64171712010-02-16 21:07:46 +00002198// a two-value operand where a dag node expects two operands. :(
Owen Andersonf523e472010-09-23 23:45:25 +00002199let neverHasSideEffects = 1 in {
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002200def t2MOVCCr : T2I<(outs rGPR:$dst), (ins rGPR:$false, rGPR:$true), IIC_iCMOVr,
Evan Cheng699beba2009-10-27 00:08:59 +00002201 "mov", ".w\t$dst, $true",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002202 [/*(set rGPR:$dst, (ARMcmov rGPR:$false, rGPR:$true, imm:$cc, CCR:$ccr))*/]>,
Johnny Chend68e1192009-12-15 17:24:14 +00002203 RegConstraint<"$false = $dst"> {
2204 let Inst{31-27} = 0b11101;
2205 let Inst{26-25} = 0b01;
2206 let Inst{24-21} = 0b0010;
2207 let Inst{20} = 0; // The S bit.
2208 let Inst{19-16} = 0b1111; // Rn
2209 let Inst{14-12} = 0b000;
2210 let Inst{7-4} = 0b0000;
2211}
Evan Chenge253c952009-07-07 20:39:03 +00002212
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002213def t2MOVCCi : T2I<(outs rGPR:$dst), (ins rGPR:$false, t2_so_imm:$true),
Evan Cheng699beba2009-10-27 00:08:59 +00002214 IIC_iCMOVi, "mov", ".w\t$dst, $true",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002215[/*(set rGPR:$dst,(ARMcmov rGPR:$false,t2_so_imm:$true, imm:$cc, CCR:$ccr))*/]>,
Johnny Chend68e1192009-12-15 17:24:14 +00002216 RegConstraint<"$false = $dst"> {
2217 let Inst{31-27} = 0b11110;
2218 let Inst{25} = 0;
2219 let Inst{24-21} = 0b0010;
2220 let Inst{20} = 0; // The S bit.
2221 let Inst{19-16} = 0b1111; // Rn
2222 let Inst{15} = 0;
2223}
Evan Chengf49810c2009-06-23 17:48:47 +00002224
Jim Grosbacha4257162010-10-07 00:53:56 +00002225def t2MOVCCi16 : T2I<(outs rGPR:$dst), (ins rGPR:$false, i32imm:$src),
2226 IIC_iMOVi,
2227 "movw", "\t$dst, $src", []>,
2228 RegConstraint<"$false = $dst"> {
2229 let Inst{31-27} = 0b11110;
2230 let Inst{25} = 1;
2231 let Inst{24-21} = 0b0010;
2232 let Inst{20} = 0; // The S bit.
2233 let Inst{15} = 0;
2234}
2235
Johnny Chend68e1192009-12-15 17:24:14 +00002236class T2I_movcc_sh<bits<2> opcod, dag oops, dag iops, InstrItinClass itin,
2237 string opc, string asm, list<dag> pattern>
2238 : T2I<oops, iops, itin, opc, asm, pattern> {
2239 let Inst{31-27} = 0b11101;
2240 let Inst{26-25} = 0b01;
2241 let Inst{24-21} = 0b0010;
2242 let Inst{20} = 0; // The S bit.
2243 let Inst{19-16} = 0b1111; // Rn
2244 let Inst{5-4} = opcod; // Shift type.
2245}
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002246def t2MOVCClsl : T2I_movcc_sh<0b00, (outs rGPR:$dst),
2247 (ins rGPR:$false, rGPR:$true, i32imm:$rhs),
Johnny Chend68e1192009-12-15 17:24:14 +00002248 IIC_iCMOVsi, "lsl", ".w\t$dst, $true, $rhs", []>,
2249 RegConstraint<"$false = $dst">;
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002250def t2MOVCClsr : T2I_movcc_sh<0b01, (outs rGPR:$dst),
2251 (ins rGPR:$false, rGPR:$true, i32imm:$rhs),
Johnny Chend68e1192009-12-15 17:24:14 +00002252 IIC_iCMOVsi, "lsr", ".w\t$dst, $true, $rhs", []>,
2253 RegConstraint<"$false = $dst">;
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002254def t2MOVCCasr : T2I_movcc_sh<0b10, (outs rGPR:$dst),
2255 (ins rGPR:$false, rGPR:$true, i32imm:$rhs),
Johnny Chend68e1192009-12-15 17:24:14 +00002256 IIC_iCMOVsi, "asr", ".w\t$dst, $true, $rhs", []>,
2257 RegConstraint<"$false = $dst">;
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002258def t2MOVCCror : T2I_movcc_sh<0b11, (outs rGPR:$dst),
2259 (ins rGPR:$false, rGPR:$true, i32imm:$rhs),
Johnny Chend68e1192009-12-15 17:24:14 +00002260 IIC_iCMOVsi, "ror", ".w\t$dst, $true, $rhs", []>,
2261 RegConstraint<"$false = $dst">;
Owen Andersonf523e472010-09-23 23:45:25 +00002262} // neverHasSideEffects
Evan Cheng13f8b362009-08-01 01:43:45 +00002263
David Goodwin5e47a9a2009-06-30 18:04:13 +00002264//===----------------------------------------------------------------------===//
Jim Grosbachc219e4d2009-12-14 18:56:47 +00002265// Atomic operations intrinsics
2266//
2267
2268// memory barriers protect the atomic sequences
2269let hasSideEffects = 1 in {
Bob Wilsonf74a4292010-10-30 00:54:37 +00002270def t2DMB : AInoP<(outs), (ins memb_opt:$opt), ThumbFrm, NoItinerary,
2271 "dmb", "\t$opt", [(ARMMemBarrier (i32 imm:$opt))]>,
2272 Requires<[IsThumb, HasDB]> {
2273 bits<4> opt;
2274 let Inst{31-4} = 0xf3bf8f5;
2275 let Inst{3-0} = opt;
Jim Grosbachc219e4d2009-12-14 18:56:47 +00002276}
2277}
2278
Bob Wilsonf74a4292010-10-30 00:54:37 +00002279def t2DSB : AInoP<(outs), (ins memb_opt:$opt), ThumbFrm, NoItinerary,
2280 "dsb", "\t$opt",
2281 [/* For disassembly only; pattern left blank */]>,
2282 Requires<[IsThumb, HasDB]> {
2283 bits<4> opt;
2284 let Inst{31-4} = 0xf3bf8f4;
2285 let Inst{3-0} = opt;
Johnny Chena4339822010-03-03 00:16:28 +00002286}
2287
Johnny Chena4339822010-03-03 00:16:28 +00002288// ISB has only full system option -- for disassembly only
Bob Wilsonf74a4292010-10-30 00:54:37 +00002289def t2ISB : T2I<(outs), (ins), NoItinerary, "isb", "",
2290 [/* For disassembly only; pattern left blank */]>,
2291 Requires<[IsThumb2, HasV7]> {
2292 let Inst{31-4} = 0xf3bf8f6;
Johnny Chena4339822010-03-03 00:16:28 +00002293 let Inst{3-0} = 0b1111;
2294}
2295
Johnny Chend68e1192009-12-15 17:24:14 +00002296class T2I_ldrex<bits<2> opcod, dag oops, dag iops, AddrMode am, SizeFlagVal sz,
2297 InstrItinClass itin, string opc, string asm, string cstr,
2298 list<dag> pattern, bits<4> rt2 = 0b1111>
2299 : Thumb2I<oops, iops, am, sz, itin, opc, asm, cstr, pattern> {
2300 let Inst{31-27} = 0b11101;
2301 let Inst{26-20} = 0b0001101;
2302 let Inst{11-8} = rt2;
2303 let Inst{7-6} = 0b01;
2304 let Inst{5-4} = opcod;
2305 let Inst{3-0} = 0b1111;
2306}
2307class T2I_strex<bits<2> opcod, dag oops, dag iops, AddrMode am, SizeFlagVal sz,
2308 InstrItinClass itin, string opc, string asm, string cstr,
2309 list<dag> pattern, bits<4> rt2 = 0b1111>
2310 : Thumb2I<oops, iops, am, sz, itin, opc, asm, cstr, pattern> {
2311 let Inst{31-27} = 0b11101;
2312 let Inst{26-20} = 0b0001100;
2313 let Inst{11-8} = rt2;
2314 let Inst{7-6} = 0b01;
2315 let Inst{5-4} = opcod;
2316}
2317
Jim Grosbachc219e4d2009-12-14 18:56:47 +00002318let mayLoad = 1 in {
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002319def t2LDREXB : T2I_ldrex<0b00, (outs rGPR:$dest), (ins rGPR:$ptr), AddrModeNone,
Johnny Chend68e1192009-12-15 17:24:14 +00002320 Size4Bytes, NoItinerary, "ldrexb", "\t$dest, [$ptr]",
2321 "", []>;
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002322def t2LDREXH : T2I_ldrex<0b01, (outs rGPR:$dest), (ins rGPR:$ptr), AddrModeNone,
Johnny Chend68e1192009-12-15 17:24:14 +00002323 Size4Bytes, NoItinerary, "ldrexh", "\t$dest, [$ptr]",
2324 "", []>;
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002325def t2LDREX : Thumb2I<(outs rGPR:$dest), (ins rGPR:$ptr), AddrModeNone,
Johnny Chend68e1192009-12-15 17:24:14 +00002326 Size4Bytes, NoItinerary,
2327 "ldrex", "\t$dest, [$ptr]", "",
2328 []> {
2329 let Inst{31-27} = 0b11101;
2330 let Inst{26-20} = 0b0000101;
2331 let Inst{11-8} = 0b1111;
2332 let Inst{7-0} = 0b00000000; // imm8 = 0
2333}
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002334def t2LDREXD : T2I_ldrex<0b11, (outs rGPR:$dest, rGPR:$dest2), (ins rGPR:$ptr),
Johnny Chend68e1192009-12-15 17:24:14 +00002335 AddrModeNone, Size4Bytes, NoItinerary,
2336 "ldrexd", "\t$dest, $dest2, [$ptr]", "",
2337 [], {?, ?, ?, ?}>;
Jim Grosbachc219e4d2009-12-14 18:56:47 +00002338}
2339
Jim Grosbach587b0722009-12-16 19:44:06 +00002340let mayStore = 1, Constraints = "@earlyclobber $success" in {
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002341def t2STREXB : T2I_strex<0b00, (outs rGPR:$success), (ins rGPR:$src, rGPR:$ptr),
Johnny Chend68e1192009-12-15 17:24:14 +00002342 AddrModeNone, Size4Bytes, NoItinerary,
2343 "strexb", "\t$success, $src, [$ptr]", "", []>;
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002344def t2STREXH : T2I_strex<0b01, (outs rGPR:$success), (ins rGPR:$src, rGPR:$ptr),
Johnny Chend68e1192009-12-15 17:24:14 +00002345 AddrModeNone, Size4Bytes, NoItinerary,
2346 "strexh", "\t$success, $src, [$ptr]", "", []>;
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002347def t2STREX : Thumb2I<(outs rGPR:$success), (ins rGPR:$src, rGPR:$ptr),
Johnny Chend68e1192009-12-15 17:24:14 +00002348 AddrModeNone, Size4Bytes, NoItinerary,
2349 "strex", "\t$success, $src, [$ptr]", "",
2350 []> {
2351 let Inst{31-27} = 0b11101;
2352 let Inst{26-20} = 0b0000100;
2353 let Inst{7-0} = 0b00000000; // imm8 = 0
2354}
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002355def t2STREXD : T2I_strex<0b11, (outs rGPR:$success),
2356 (ins rGPR:$src, rGPR:$src2, rGPR:$ptr),
Johnny Chend68e1192009-12-15 17:24:14 +00002357 AddrModeNone, Size4Bytes, NoItinerary,
2358 "strexd", "\t$success, $src, $src2, [$ptr]", "", [],
2359 {?, ?, ?, ?}>;
Jim Grosbachc219e4d2009-12-14 18:56:47 +00002360}
2361
Johnny Chen10a77e12010-03-02 22:11:06 +00002362// Clear-Exclusive is for disassembly only.
2363def t2CLREX : T2I<(outs), (ins), NoItinerary, "clrex", "",
2364 [/* For disassembly only; pattern left blank */]>,
2365 Requires<[IsARM, HasV7]> {
2366 let Inst{31-20} = 0xf3b;
2367 let Inst{15-14} = 0b10;
2368 let Inst{12} = 0;
2369 let Inst{7-4} = 0b0010;
2370}
2371
Jim Grosbachc219e4d2009-12-14 18:56:47 +00002372//===----------------------------------------------------------------------===//
David Goodwin334c2642009-07-08 16:09:28 +00002373// TLS Instructions
2374//
2375
2376// __aeabi_read_tp preserves the registers r1-r3.
2377let isCall = 1,
2378 Defs = [R0, R12, LR, CPSR] in {
David Goodwin8b7d7ad2009-08-06 16:52:47 +00002379 def t2TPsoft : T2XI<(outs), (ins), IIC_Br,
Evan Cheng699beba2009-10-27 00:08:59 +00002380 "bl\t__aeabi_read_tp",
Johnny Chend68e1192009-12-15 17:24:14 +00002381 [(set R0, ARMthread_pointer)]> {
2382 let Inst{31-27} = 0b11110;
2383 let Inst{15-14} = 0b11;
2384 let Inst{12} = 1;
2385 }
David Goodwin334c2642009-07-08 16:09:28 +00002386}
2387
2388//===----------------------------------------------------------------------===//
Jim Grosbach5aa16842009-08-11 19:42:21 +00002389// SJLJ Exception handling intrinsics
Jim Grosbach1add6592009-08-13 15:11:43 +00002390// eh_sjlj_setjmp() is an instruction sequence to store the return
Jim Grosbach5aa16842009-08-11 19:42:21 +00002391// address and save #0 in R0 for the non-longjmp case.
2392// Since by its nature we may be coming from some other function to get
2393// here, and we're using the stack frame for the containing function to
2394// save/restore registers, we can't keep anything live in regs across
2395// the eh_sjlj_setjmp(), else it will almost certainly have been tromped upon
2396// when we get here from a longjmp(). We force everthing out of registers
2397// except for our own input by listing the relevant registers in Defs. By
2398// doing so, we also cause the prologue/epilogue code to actively preserve
2399// all of the callee-saved resgisters, which is exactly what we want.
Jim Grosbach0798edd2010-05-27 23:49:24 +00002400// $val is a scratch register for our use.
Jim Grosbacha87ded22010-02-08 23:22:00 +00002401let Defs =
Jim Grosbachf35d2162009-08-13 16:59:44 +00002402 [ R0, R1, R2, R3, R4, R5, R6, R7, R8, R9, R10, R11, R12, LR, D0,
2403 D1, D2, D3, D4, D5, D6, D7, D8, D9, D10, D11, D12, D13, D14, D15,
Jim Grosbach5aa16842009-08-11 19:42:21 +00002404 D16, D17, D18, D19, D20, D21, D22, D23, D24, D25, D26, D27, D28, D29, D30,
Chris Lattnera4a3a5e2010-10-31 19:15:18 +00002405 D31 ], hasSideEffects = 1, isBarrier = 1, isCodeGenOnly = 1 in {
Jim Grosbach9f134b52010-08-26 17:02:47 +00002406 def t2Int_eh_sjlj_setjmp : Thumb2XI<(outs), (ins tGPR:$src, tGPR:$val),
Jim Grosbach71d933a2010-09-30 16:56:53 +00002407 AddrModeNone, SizeSpecial, NoItinerary, "", "",
Jim Grosbach9f134b52010-08-26 17:02:47 +00002408 [(set R0, (ARMeh_sjlj_setjmp tGPR:$src, tGPR:$val))]>,
Bob Wilsonec80e262010-04-09 20:41:18 +00002409 Requires<[IsThumb2, HasVFP2]>;
Jim Grosbach5aa16842009-08-11 19:42:21 +00002410}
2411
Bob Wilsonec80e262010-04-09 20:41:18 +00002412let Defs =
Jim Grosbach5caeff52010-05-28 17:37:40 +00002413 [ R0, R1, R2, R3, R4, R5, R6, R7, R8, R9, R10, R11, R12, LR ],
Chris Lattnera4a3a5e2010-10-31 19:15:18 +00002414 hasSideEffects = 1, isBarrier = 1, isCodeGenOnly = 1 in {
Jim Grosbach9f134b52010-08-26 17:02:47 +00002415 def t2Int_eh_sjlj_setjmp_nofp : Thumb2XI<(outs), (ins tGPR:$src, tGPR:$val),
Jim Grosbach71d933a2010-09-30 16:56:53 +00002416 AddrModeNone, SizeSpecial, NoItinerary, "", "",
Jim Grosbach9f134b52010-08-26 17:02:47 +00002417 [(set R0, (ARMeh_sjlj_setjmp tGPR:$src, tGPR:$val))]>,
Bob Wilsonec80e262010-04-09 20:41:18 +00002418 Requires<[IsThumb2, NoVFP]>;
2419}
Jim Grosbach5aa16842009-08-11 19:42:21 +00002420
2421
2422//===----------------------------------------------------------------------===//
David Goodwin5e47a9a2009-06-30 18:04:13 +00002423// Control-Flow Instructions
2424//
2425
Evan Chengc50a1cb2009-07-09 22:58:39 +00002426// FIXME: remove when we have a way to marking a MI with these properties.
2427// FIXME: $dst1 should be a def. But the extra ops must be in the end of the
2428// operand list.
2429// FIXME: Should pc be an implicit operand like PICADD, etc?
Evan Cheng0d92f5f2009-10-01 08:22:27 +00002430let isReturn = 1, isTerminator = 1, isBarrier = 1, mayLoad = 1,
Chris Lattner39ee0362010-10-31 19:10:56 +00002431 hasExtraDefRegAllocReq = 1, isCodeGenOnly = 1 in
Jim Grosbache6913602010-11-03 01:01:43 +00002432 def t2LDM_RET: T2XIt<(outs GPR:$wb), (ins GPR:$Rn, ldstm_mode:$amode, pred:$p,
2433 reglist:$dsts, variable_ops),
Evan Chenga0792de2010-10-06 06:27:31 +00002434 IIC_iLoad_mBr,
Jim Grosbache6913602010-11-03 01:01:43 +00002435 "ldm${amode}${p}.w\t$Rn!, $dsts",
2436 "$Rn = $wb", []> {
Johnny Chend68e1192009-12-15 17:24:14 +00002437 let Inst{31-27} = 0b11101;
2438 let Inst{26-25} = 0b00;
2439 let Inst{24-23} = {?, ?}; // IA: '01', DB: '10'
2440 let Inst{22} = 0;
Bob Wilson815baeb2010-03-13 01:08:20 +00002441 let Inst{21} = 1; // The W bit.
Johnny Chend68e1192009-12-15 17:24:14 +00002442 let Inst{20} = 1; // Load
2443}
Evan Chengc50a1cb2009-07-09 22:58:39 +00002444
David Goodwin5e47a9a2009-06-30 18:04:13 +00002445let isBranch = 1, isTerminator = 1, isBarrier = 1 in {
2446let isPredicable = 1 in
David Goodwin8b7d7ad2009-08-06 16:52:47 +00002447def t2B : T2XI<(outs), (ins brtarget:$target), IIC_Br,
Evan Cheng699beba2009-10-27 00:08:59 +00002448 "b.w\t$target",
Johnny Chend68e1192009-12-15 17:24:14 +00002449 [(br bb:$target)]> {
2450 let Inst{31-27} = 0b11110;
2451 let Inst{15-14} = 0b10;
2452 let Inst{12} = 1;
2453}
David Goodwin5e47a9a2009-06-30 18:04:13 +00002454
Chris Lattnera1ca91a2010-11-02 23:40:41 +00002455let isNotDuplicable = 1, isIndirectBranch = 1,
2456 isCodeGenOnly = 1 in { // $id doesn't exist in asmstring, should be lowered.
Evan Cheng66ac5312009-07-25 00:33:29 +00002457def t2BR_JT :
Evan Cheng5657c012009-07-29 02:18:14 +00002458 T2JTI<(outs),
2459 (ins GPR:$target, GPR:$index, jt2block_operand:$jt, i32imm:$id),
Bob Wilsond4d188e2010-07-31 06:28:10 +00002460 IIC_Br, "mov\tpc, $target$jt",
Johnny Chend68e1192009-12-15 17:24:14 +00002461 [(ARMbr2jt GPR:$target, GPR:$index, tjumptable:$jt, imm:$id)]> {
2462 let Inst{31-27} = 0b11101;
2463 let Inst{26-20} = 0b0100100;
2464 let Inst{19-16} = 0b1111;
2465 let Inst{14-12} = 0b000;
2466 let Inst{11-8} = 0b1111; // Rd = pc
2467 let Inst{7-4} = 0b0000;
2468}
Evan Cheng5657c012009-07-29 02:18:14 +00002469
Evan Cheng25f7cfc2009-08-01 06:13:52 +00002470// FIXME: Add a non-pc based case that can be predicated.
Chris Lattnera1ca91a2010-11-02 23:40:41 +00002471let isCodeGenOnly = 1 in // $id doesn't exist in asm string, should be lowered.
Evan Cheng5657c012009-07-29 02:18:14 +00002472def t2TBB :
Evan Cheng25f7cfc2009-08-01 06:13:52 +00002473 T2JTI<(outs),
Evan Cheng5657c012009-07-29 02:18:14 +00002474 (ins tb_addrmode:$index, jt2block_operand:$jt, i32imm:$id),
Bob Wilsond4d188e2010-07-31 06:28:10 +00002475 IIC_Br, "tbb\t$index$jt", []> {
Johnny Chend68e1192009-12-15 17:24:14 +00002476 let Inst{31-27} = 0b11101;
2477 let Inst{26-20} = 0b0001101;
2478 let Inst{19-16} = 0b1111; // Rn = pc (table follows this instruction)
2479 let Inst{15-8} = 0b11110000;
2480 let Inst{7-4} = 0b0000; // B form
2481}
Evan Cheng5657c012009-07-29 02:18:14 +00002482
Chris Lattnera1ca91a2010-11-02 23:40:41 +00002483let isCodeGenOnly = 1 in // $id doesn't exist in asm string, should be lowered.
Evan Cheng5657c012009-07-29 02:18:14 +00002484def t2TBH :
Evan Cheng25f7cfc2009-08-01 06:13:52 +00002485 T2JTI<(outs),
Evan Cheng5657c012009-07-29 02:18:14 +00002486 (ins tb_addrmode:$index, jt2block_operand:$jt, i32imm:$id),
Bob Wilsond4d188e2010-07-31 06:28:10 +00002487 IIC_Br, "tbh\t$index$jt", []> {
Johnny Chend68e1192009-12-15 17:24:14 +00002488 let Inst{31-27} = 0b11101;
2489 let Inst{26-20} = 0b0001101;
2490 let Inst{19-16} = 0b1111; // Rn = pc (table follows this instruction)
2491 let Inst{15-8} = 0b11110000;
2492 let Inst{7-4} = 0b0001; // H form
2493}
Johnny Chen93042d12010-03-02 18:14:57 +00002494
2495// Generic versions of the above two instructions, for disassembly only
2496
2497def t2TBBgen : T2I<(outs), (ins GPR:$a, GPR:$b), IIC_Br,
2498 "tbb", "\t[$a, $b]", []>{
2499 let Inst{31-27} = 0b11101;
2500 let Inst{26-20} = 0b0001101;
2501 let Inst{15-8} = 0b11110000;
2502 let Inst{7-4} = 0b0000; // B form
2503}
2504
2505def t2TBHgen : T2I<(outs), (ins GPR:$a, GPR:$b), IIC_Br,
2506 "tbh", "\t[$a, $b, lsl #1]", []> {
2507 let Inst{31-27} = 0b11101;
2508 let Inst{26-20} = 0b0001101;
2509 let Inst{15-8} = 0b11110000;
2510 let Inst{7-4} = 0b0001; // H form
2511}
Evan Cheng5657c012009-07-29 02:18:14 +00002512} // isNotDuplicable, isIndirectBranch
2513
David Goodwinc9a59b52009-06-30 19:50:22 +00002514} // isBranch, isTerminator, isBarrier
David Goodwin5e47a9a2009-06-30 18:04:13 +00002515
2516// FIXME: should be able to write a pattern for ARMBrcond, but can't use
2517// a two-value operand where a dag node expects two operands. :(
2518let isBranch = 1, isTerminator = 1 in
David Goodwin8b7d7ad2009-08-06 16:52:47 +00002519def t2Bcc : T2I<(outs), (ins brtarget:$target), IIC_Br,
Evan Cheng699beba2009-10-27 00:08:59 +00002520 "b", ".w\t$target",
Johnny Chend68e1192009-12-15 17:24:14 +00002521 [/*(ARMbrcond bb:$target, imm:$cc)*/]> {
2522 let Inst{31-27} = 0b11110;
2523 let Inst{15-14} = 0b10;
2524 let Inst{12} = 0;
2525}
Evan Chengf49810c2009-06-23 17:48:47 +00002526
Evan Cheng06e16582009-07-10 01:54:42 +00002527
2528// IT block
Evan Cheng86050dc2010-06-18 23:09:54 +00002529let Defs = [ITSTATE] in
Evan Cheng06e16582009-07-10 01:54:42 +00002530def t2IT : Thumb2XI<(outs), (ins it_pred:$cc, it_mask:$mask),
David Goodwin5d598aa2009-08-19 18:00:44 +00002531 AddrModeNone, Size2Bytes, IIC_iALUx,
Johnny Chend68e1192009-12-15 17:24:14 +00002532 "it$mask\t$cc", "", []> {
2533 // 16-bit instruction.
Johnny Chenbbc71b22009-12-16 02:32:54 +00002534 let Inst{31-16} = 0x0000;
Johnny Chend68e1192009-12-15 17:24:14 +00002535 let Inst{15-8} = 0b10111111;
2536}
Evan Cheng06e16582009-07-10 01:54:42 +00002537
Johnny Chence6275f2010-02-25 19:05:29 +00002538// Branch and Exchange Jazelle -- for disassembly only
2539// Rm = Inst{19-16}
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002540def t2BXJ : T2I<(outs), (ins rGPR:$func), NoItinerary, "bxj", "\t$func",
Johnny Chence6275f2010-02-25 19:05:29 +00002541 [/* For disassembly only; pattern left blank */]> {
2542 let Inst{31-27} = 0b11110;
2543 let Inst{26} = 0;
2544 let Inst{25-20} = 0b111100;
2545 let Inst{15-14} = 0b10;
2546 let Inst{12} = 0;
2547}
2548
Johnny Chen93042d12010-03-02 18:14:57 +00002549// Change Processor State is a system instruction -- for disassembly only.
2550// The singleton $opt operand contains the following information:
2551// opt{4-0} = mode from Inst{4-0}
2552// opt{5} = changemode from Inst{17}
2553// opt{8-6} = AIF from Inst{8-6}
2554// opt{10-9} = imod from Inst{19-18} with 0b10 as enable and 0b11 as disable
Johnny Chendd0f3cf2010-03-10 18:59:38 +00002555def t2CPS : T2XI<(outs),(ins cps_opt:$opt), NoItinerary, "cps$opt",
Johnny Chen93042d12010-03-02 18:14:57 +00002556 [/* For disassembly only; pattern left blank */]> {
2557 let Inst{31-27} = 0b11110;
2558 let Inst{26} = 0;
2559 let Inst{25-20} = 0b111010;
2560 let Inst{15-14} = 0b10;
2561 let Inst{12} = 0;
2562}
2563
Johnny Chen0f7866e2010-03-03 02:09:43 +00002564// A6.3.4 Branches and miscellaneous control
2565// Table A6-14 Change Processor State, and hint instructions
2566// Helper class for disassembly only.
2567class T2I_hint<bits<8> op7_0, string opc, string asm>
2568 : T2I<(outs), (ins), NoItinerary, opc, asm,
2569 [/* For disassembly only; pattern left blank */]> {
2570 let Inst{31-20} = 0xf3a;
2571 let Inst{15-14} = 0b10;
2572 let Inst{12} = 0;
2573 let Inst{10-8} = 0b000;
2574 let Inst{7-0} = op7_0;
2575}
2576
2577def t2NOP : T2I_hint<0b00000000, "nop", ".w">;
2578def t2YIELD : T2I_hint<0b00000001, "yield", ".w">;
2579def t2WFE : T2I_hint<0b00000010, "wfe", ".w">;
2580def t2WFI : T2I_hint<0b00000011, "wfi", ".w">;
2581def t2SEV : T2I_hint<0b00000100, "sev", ".w">;
2582
2583def t2DBG : T2I<(outs),(ins i32imm:$opt), NoItinerary, "dbg", "\t$opt",
2584 [/* For disassembly only; pattern left blank */]> {
2585 let Inst{31-20} = 0xf3a;
2586 let Inst{15-14} = 0b10;
2587 let Inst{12} = 0;
2588 let Inst{10-8} = 0b000;
2589 let Inst{7-4} = 0b1111;
2590}
2591
Johnny Chen6341c5a2010-02-25 20:25:24 +00002592// Secure Monitor Call is a system instruction -- for disassembly only
2593// Option = Inst{19-16}
2594def t2SMC : T2I<(outs), (ins i32imm:$opt), NoItinerary, "smc", "\t$opt",
2595 [/* For disassembly only; pattern left blank */]> {
2596 let Inst{31-27} = 0b11110;
2597 let Inst{26-20} = 0b1111111;
2598 let Inst{15-12} = 0b1000;
2599}
2600
2601// Store Return State is a system instruction -- for disassembly only
2602def t2SRSDBW : T2I<(outs),(ins i32imm:$mode),NoItinerary,"srsdb","\tsp!, $mode",
2603 [/* For disassembly only; pattern left blank */]> {
2604 let Inst{31-27} = 0b11101;
2605 let Inst{26-20} = 0b0000010; // W = 1
2606}
2607
2608def t2SRSDB : T2I<(outs),(ins i32imm:$mode),NoItinerary,"srsdb","\tsp, $mode",
2609 [/* For disassembly only; pattern left blank */]> {
2610 let Inst{31-27} = 0b11101;
2611 let Inst{26-20} = 0b0000000; // W = 0
2612}
2613
2614def t2SRSIAW : T2I<(outs),(ins i32imm:$mode),NoItinerary,"srsia","\tsp!, $mode",
2615 [/* For disassembly only; pattern left blank */]> {
2616 let Inst{31-27} = 0b11101;
2617 let Inst{26-20} = 0b0011010; // W = 1
2618}
2619
2620def t2SRSIA : T2I<(outs), (ins i32imm:$mode),NoItinerary,"srsia","\tsp, $mode",
2621 [/* For disassembly only; pattern left blank */]> {
2622 let Inst{31-27} = 0b11101;
2623 let Inst{26-20} = 0b0011000; // W = 0
2624}
2625
2626// Return From Exception is a system instruction -- for disassembly only
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002627def t2RFEDBW : T2I<(outs), (ins rGPR:$base), NoItinerary, "rfedb", "\t$base!",
Johnny Chen6341c5a2010-02-25 20:25:24 +00002628 [/* For disassembly only; pattern left blank */]> {
2629 let Inst{31-27} = 0b11101;
2630 let Inst{26-20} = 0b0000011; // W = 1
2631}
2632
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002633def t2RFEDB : T2I<(outs), (ins rGPR:$base), NoItinerary, "rfeab", "\t$base",
Johnny Chen6341c5a2010-02-25 20:25:24 +00002634 [/* For disassembly only; pattern left blank */]> {
2635 let Inst{31-27} = 0b11101;
2636 let Inst{26-20} = 0b0000001; // W = 0
2637}
2638
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002639def t2RFEIAW : T2I<(outs), (ins rGPR:$base), NoItinerary, "rfeia", "\t$base!",
Johnny Chen6341c5a2010-02-25 20:25:24 +00002640 [/* For disassembly only; pattern left blank */]> {
2641 let Inst{31-27} = 0b11101;
2642 let Inst{26-20} = 0b0011011; // W = 1
2643}
2644
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002645def t2RFEIA : T2I<(outs), (ins rGPR:$base), NoItinerary, "rfeia", "\t$base",
Johnny Chen6341c5a2010-02-25 20:25:24 +00002646 [/* For disassembly only; pattern left blank */]> {
2647 let Inst{31-27} = 0b11101;
2648 let Inst{26-20} = 0b0011001; // W = 0
2649}
2650
Evan Chengf49810c2009-06-23 17:48:47 +00002651//===----------------------------------------------------------------------===//
2652// Non-Instruction Patterns
2653//
2654
Jim Grosbach65b7f3a2009-10-21 20:44:34 +00002655// Two piece so_imms.
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002656def : T2Pat<(or rGPR:$LHS, t2_so_imm2part:$RHS),
2657 (t2ORRri (t2ORRri rGPR:$LHS, (t2_so_imm2part_1 imm:$RHS)),
Jim Grosbach65b7f3a2009-10-21 20:44:34 +00002658 (t2_so_imm2part_2 imm:$RHS))>;
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002659def : T2Pat<(xor rGPR:$LHS, t2_so_imm2part:$RHS),
2660 (t2EORri (t2EORri rGPR:$LHS, (t2_so_imm2part_1 imm:$RHS)),
Jim Grosbach65b7f3a2009-10-21 20:44:34 +00002661 (t2_so_imm2part_2 imm:$RHS))>;
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002662def : T2Pat<(add rGPR:$LHS, t2_so_imm2part:$RHS),
2663 (t2ADDri (t2ADDri rGPR:$LHS, (t2_so_imm2part_1 imm:$RHS)),
Jim Grosbach65b7f3a2009-10-21 20:44:34 +00002664 (t2_so_imm2part_2 imm:$RHS))>;
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002665def : T2Pat<(add rGPR:$LHS, t2_so_neg_imm2part:$RHS),
2666 (t2SUBri (t2SUBri rGPR:$LHS, (t2_so_neg_imm2part_1 imm:$RHS)),
Jim Grosbach15e6ef82009-11-23 20:35:53 +00002667 (t2_so_neg_imm2part_2 imm:$RHS))>;
Jim Grosbach65b7f3a2009-10-21 20:44:34 +00002668
Evan Cheng5adb66a2009-09-28 09:14:39 +00002669// 32-bit immediate using movw + movt.
Evan Cheng5be39222010-09-24 22:03:46 +00002670// This is a single pseudo instruction to make it re-materializable.
2671// FIXME: Remove this when we can do generalized remat.
Evan Cheng5adb66a2009-09-28 09:14:39 +00002672let isReMaterializable = 1 in
Jim Grosbach3c38f962010-10-06 22:01:26 +00002673def t2MOVi32imm : PseudoInst<(outs rGPR:$dst), (ins i32imm:$src), IIC_iMOVix2,
2674 "", [(set rGPR:$dst, (i32 imm:$src))]>,
2675 Requires<[IsThumb, HasV6T2]>;
Evan Chengb9803a82009-11-06 23:52:48 +00002676
Anton Korobeynikov5cdc3a92009-11-24 00:44:37 +00002677// ConstantPool, GlobalAddress, and JumpTable
2678def : T2Pat<(ARMWrapper tglobaladdr :$dst), (t2LEApcrel tglobaladdr :$dst)>,
2679 Requires<[IsThumb2, DontUseMovt]>;
2680def : T2Pat<(ARMWrapper tconstpool :$dst), (t2LEApcrel tconstpool :$dst)>;
2681def : T2Pat<(ARMWrapper tglobaladdr :$dst), (t2MOVi32imm tglobaladdr :$dst)>,
2682 Requires<[IsThumb2, UseMovt]>;
2683
2684def : T2Pat<(ARMWrapperJT tjumptable:$dst, imm:$id),
2685 (t2LEApcrelJT tjumptable:$dst, imm:$id)>;
2686
Evan Chengb9803a82009-11-06 23:52:48 +00002687// Pseudo instruction that combines ldr from constpool and add pc. This should
2688// be expanded into two instructions late to allow if-conversion and
2689// scheduling.
Dan Gohmanbc9d98b2010-02-27 23:47:46 +00002690let canFoldAsLoad = 1, isReMaterializable = 1 in
Evan Chengb9803a82009-11-06 23:52:48 +00002691def t2LDRpci_pic : PseudoInst<(outs GPR:$dst), (ins i32imm:$addr, pclabel:$cp),
Jim Grosbach78890f42010-10-01 23:21:38 +00002692 IIC_iLoadiALU, "",
Evan Chengb9803a82009-11-06 23:52:48 +00002693 [(set GPR:$dst, (ARMpic_add (load (ARMWrapper tconstpool:$addr)),
2694 imm:$cp))]>,
2695 Requires<[IsThumb2]>;
Johnny Chen23336552010-02-25 18:46:43 +00002696
2697//===----------------------------------------------------------------------===//
2698// Move between special register and ARM core register -- for disassembly only
2699//
2700
2701// Rd = Instr{11-8}
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002702def t2MRS : T2I<(outs rGPR:$dst), (ins), NoItinerary, "mrs", "\t$dst, cpsr",
Johnny Chen23336552010-02-25 18:46:43 +00002703 [/* For disassembly only; pattern left blank */]> {
2704 let Inst{31-27} = 0b11110;
2705 let Inst{26} = 0;
2706 let Inst{25-21} = 0b11111;
2707 let Inst{20} = 0; // The R bit.
2708 let Inst{15-14} = 0b10;
2709 let Inst{12} = 0;
2710}
2711
2712// Rd = Instr{11-8}
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002713def t2MRSsys : T2I<(outs rGPR:$dst), (ins), NoItinerary, "mrs", "\t$dst, spsr",
Johnny Chen23336552010-02-25 18:46:43 +00002714 [/* For disassembly only; pattern left blank */]> {
2715 let Inst{31-27} = 0b11110;
2716 let Inst{26} = 0;
2717 let Inst{25-21} = 0b11111;
2718 let Inst{20} = 1; // The R bit.
2719 let Inst{15-14} = 0b10;
2720 let Inst{12} = 0;
2721}
2722
Johnny Chen23336552010-02-25 18:46:43 +00002723// Rn = Inst{19-16}
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002724def t2MSR : T2I<(outs), (ins rGPR:$src, msr_mask:$mask), NoItinerary, "msr",
Johnny Chendd0f3cf2010-03-10 18:59:38 +00002725 "\tcpsr$mask, $src",
Johnny Chen23336552010-02-25 18:46:43 +00002726 [/* For disassembly only; pattern left blank */]> {
2727 let Inst{31-27} = 0b11110;
2728 let Inst{26} = 0;
2729 let Inst{25-21} = 0b11100;
2730 let Inst{20} = 0; // The R bit.
2731 let Inst{15-14} = 0b10;
2732 let Inst{12} = 0;
2733}
2734
Johnny Chen23336552010-02-25 18:46:43 +00002735// Rn = Inst{19-16}
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002736def t2MSRsys : T2I<(outs), (ins rGPR:$src, msr_mask:$mask), NoItinerary, "msr",
Johnny Chendd0f3cf2010-03-10 18:59:38 +00002737 "\tspsr$mask, $src",
Johnny Chen23336552010-02-25 18:46:43 +00002738 [/* For disassembly only; pattern left blank */]> {
2739 let Inst{31-27} = 0b11110;
2740 let Inst{26} = 0;
2741 let Inst{25-21} = 0b11100;
2742 let Inst{20} = 1; // The R bit.
2743 let Inst{15-14} = 0b10;
2744 let Inst{12} = 0;
2745}