blob: 7d2b076c2098a549bbb4c2dce2388989a276c6b7 [file] [log] [blame]
Anton Korobeynikovd4022c32009-05-29 23:41:08 +00001//===- ARMInstrThumb2.td - Thumb2 support for ARM -------------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file describes the Thumb2 instruction set.
11//
12//===----------------------------------------------------------------------===//
Anton Korobeynikov52237112009-06-17 18:13:58 +000013
Evan Cheng06e16582009-07-10 01:54:42 +000014// IT block predicate field
15def it_pred : Operand<i32> {
Johnny Chen9d3acaa2010-03-02 17:57:15 +000016 let PrintMethod = "printMandatoryPredicateOperand";
Evan Cheng06e16582009-07-10 01:54:42 +000017}
18
19// IT block condition mask
20def it_mask : Operand<i32> {
21 let PrintMethod = "printThumbITMask";
22}
23
Evan Cheng5657c012009-07-29 02:18:14 +000024// Table branch address
25def tb_addrmode : Operand<i32> {
26 let PrintMethod = "printTBAddrMode";
27}
28
Anton Korobeynikov52237112009-06-17 18:13:58 +000029// Shifted operands. No register controlled shifts for Thumb2.
30// Note: We do not support rrx shifted operands yet.
31def t2_so_reg : Operand<i32>, // reg imm
Evan Cheng9cb9e672009-06-27 02:26:13 +000032 ComplexPattern<i32, 2, "SelectT2ShifterOperandReg",
Anton Korobeynikov52237112009-06-17 18:13:58 +000033 [shl,srl,sra,rotr]> {
Evan Cheng9cb9e672009-06-27 02:26:13 +000034 let PrintMethod = "printT2SOOperand";
Jim Grosbach6ccfc502010-07-30 02:41:01 +000035 let MIOperandInfo = (ops rGPR, i32imm);
Anton Korobeynikov52237112009-06-17 18:13:58 +000036}
37
Evan Chengf49810c2009-06-23 17:48:47 +000038// t2_so_imm_not_XFORM - Return the complement of a t2_so_imm value
39def t2_so_imm_not_XFORM : SDNodeXForm<imm, [{
Owen Anderson825b72b2009-08-11 20:47:22 +000040 return CurDAG->getTargetConstant(~((uint32_t)N->getZExtValue()), MVT::i32);
Anton Korobeynikov52237112009-06-17 18:13:58 +000041}]>;
42
Evan Chengf49810c2009-06-23 17:48:47 +000043// t2_so_imm_neg_XFORM - Return the negation of a t2_so_imm value
44def t2_so_imm_neg_XFORM : SDNodeXForm<imm, [{
Owen Anderson825b72b2009-08-11 20:47:22 +000045 return CurDAG->getTargetConstant(-((int)N->getZExtValue()), MVT::i32);
Evan Chengf49810c2009-06-23 17:48:47 +000046}]>;
Anton Korobeynikov52237112009-06-17 18:13:58 +000047
Evan Chengf49810c2009-06-23 17:48:47 +000048// t2_so_imm - Match a 32-bit immediate operand, which is an
49// 8-bit immediate rotated by an arbitrary number of bits, or an 8-bit
50// immediate splatted into multiple bytes of the word. t2_so_imm values are
51// represented in the imm field in the same 12-bit form that they are encoded
Jim Grosbach6935efc2009-11-24 00:20:27 +000052// into t2_so_imm instructions: the 8-bit immediate is the least significant
53// bits [bits 0-7], the 4-bit shift/splat amount is the next 4 bits [bits 8-11].
Jakob Stoklund Olesen00d3dda2010-08-17 20:39:04 +000054def t2_so_imm : Operand<i32>, PatLeaf<(imm), [{ return Pred_t2_so_imm(N); }]>;
Anton Korobeynikov52237112009-06-17 18:13:58 +000055
Jim Grosbach64171712010-02-16 21:07:46 +000056// t2_so_imm_not - Match an immediate that is a complement
Evan Chengf49810c2009-06-23 17:48:47 +000057// of a t2_so_imm.
58def t2_so_imm_not : Operand<i32>,
59 PatLeaf<(imm), [{
Evan Chenge7cbe412009-07-08 21:03:57 +000060 return ARM_AM::getT2SOImmVal(~((uint32_t)N->getZExtValue())) != -1;
61}], t2_so_imm_not_XFORM>;
Evan Chengf49810c2009-06-23 17:48:47 +000062
63// t2_so_imm_neg - Match an immediate that is a negation of a t2_so_imm.
64def t2_so_imm_neg : Operand<i32>,
65 PatLeaf<(imm), [{
Evan Chenge7cbe412009-07-08 21:03:57 +000066 return ARM_AM::getT2SOImmVal(-((int)N->getZExtValue())) != -1;
67}], t2_so_imm_neg_XFORM>;
Evan Chengf49810c2009-06-23 17:48:47 +000068
Jim Grosbach65b7f3a2009-10-21 20:44:34 +000069// Break t2_so_imm's up into two pieces. This handles immediates with up to 16
70// bits set in them. This uses t2_so_imm2part to match and t2_so_imm2part_[12]
71// to get the first/second pieces.
72def t2_so_imm2part : Operand<i32>,
73 PatLeaf<(imm), [{
74 return ARM_AM::isT2SOImmTwoPartVal((unsigned)N->getZExtValue());
75 }]> {
76}
77
78def t2_so_imm2part_1 : SDNodeXForm<imm, [{
79 unsigned V = ARM_AM::getT2SOImmTwoPartFirst((unsigned)N->getZExtValue());
80 return CurDAG->getTargetConstant(V, MVT::i32);
81}]>;
82
83def t2_so_imm2part_2 : SDNodeXForm<imm, [{
84 unsigned V = ARM_AM::getT2SOImmTwoPartSecond((unsigned)N->getZExtValue());
85 return CurDAG->getTargetConstant(V, MVT::i32);
86}]>;
87
Jim Grosbach15e6ef82009-11-23 20:35:53 +000088def t2_so_neg_imm2part : Operand<i32>, PatLeaf<(imm), [{
89 return ARM_AM::isT2SOImmTwoPartVal(-(int)N->getZExtValue());
90 }]> {
91}
92
93def t2_so_neg_imm2part_1 : SDNodeXForm<imm, [{
94 unsigned V = ARM_AM::getT2SOImmTwoPartFirst(-(int)N->getZExtValue());
95 return CurDAG->getTargetConstant(V, MVT::i32);
96}]>;
97
98def t2_so_neg_imm2part_2 : SDNodeXForm<imm, [{
99 unsigned V = ARM_AM::getT2SOImmTwoPartSecond(-(int)N->getZExtValue());
100 return CurDAG->getTargetConstant(V, MVT::i32);
101}]>;
102
Evan Chenga67efd12009-06-23 19:39:13 +0000103/// imm1_31 predicate - True if the 32-bit immediate is in the range [1,31].
104def imm1_31 : PatLeaf<(i32 imm), [{
105 return (int32_t)N->getZExtValue() >= 1 && (int32_t)N->getZExtValue() < 32;
106}]>;
107
Evan Chengf49810c2009-06-23 17:48:47 +0000108/// imm0_4095 predicate - True if the 32-bit immediate is in the range [0.4095].
Evan Cheng86198642009-08-07 00:34:42 +0000109def imm0_4095 : Operand<i32>,
110 PatLeaf<(i32 imm), [{
Evan Chengf49810c2009-06-23 17:48:47 +0000111 return (uint32_t)N->getZExtValue() < 4096;
112}]>;
Anton Korobeynikov52237112009-06-17 18:13:58 +0000113
Jim Grosbach64171712010-02-16 21:07:46 +0000114def imm0_4095_neg : PatLeaf<(i32 imm), [{
115 return (uint32_t)(-N->getZExtValue()) < 4096;
116}], imm_neg_XFORM>;
Anton Korobeynikov52237112009-06-17 18:13:58 +0000117
Evan Chengfa2ea1a2009-08-04 01:41:15 +0000118def imm0_255_neg : PatLeaf<(i32 imm), [{
119 return (uint32_t)(-N->getZExtValue()) < 255;
Jim Grosbach64171712010-02-16 21:07:46 +0000120}], imm_neg_XFORM>;
Evan Chengfa2ea1a2009-08-04 01:41:15 +0000121
Jim Grosbach502e0aa2010-07-14 17:45:16 +0000122def imm0_255_not : PatLeaf<(i32 imm), [{
123 return (uint32_t)(~N->getZExtValue()) < 255;
124}], imm_comp_XFORM>;
125
Evan Cheng055b0312009-06-29 07:51:04 +0000126// Define Thumb2 specific addressing modes.
127
128// t2addrmode_imm12 := reg + imm12
129def t2addrmode_imm12 : Operand<i32>,
130 ComplexPattern<i32, 2, "SelectT2AddrModeImm12", []> {
131 let PrintMethod = "printT2AddrModeImm12Operand";
132 let MIOperandInfo = (ops GPR:$base, i32imm:$offsimm);
133}
134
Johnny Chen0635fc52010-03-04 17:40:44 +0000135// t2addrmode_imm8 := reg +/- imm8
Evan Cheng055b0312009-06-29 07:51:04 +0000136def t2addrmode_imm8 : Operand<i32>,
137 ComplexPattern<i32, 2, "SelectT2AddrModeImm8", []> {
138 let PrintMethod = "printT2AddrModeImm8Operand";
139 let MIOperandInfo = (ops GPR:$base, i32imm:$offsimm);
140}
141
Evan Cheng6d94f112009-07-03 00:06:39 +0000142def t2am_imm8_offset : Operand<i32>,
143 ComplexPattern<i32, 1, "SelectT2AddrModeImm8Offset", []>{
Evan Chenge88d5ce2009-07-02 07:28:31 +0000144 let PrintMethod = "printT2AddrModeImm8OffsetOperand";
145}
146
Evan Cheng5c874172009-07-09 22:21:59 +0000147// t2addrmode_imm8s4 := reg +/- (imm8 << 2)
David Goodwin6647cea2009-06-30 22:50:01 +0000148def t2addrmode_imm8s4 : Operand<i32>,
149 ComplexPattern<i32, 2, "SelectT2AddrModeImm8s4", []> {
Evan Cheng5c874172009-07-09 22:21:59 +0000150 let PrintMethod = "printT2AddrModeImm8s4Operand";
David Goodwin6647cea2009-06-30 22:50:01 +0000151 let MIOperandInfo = (ops GPR:$base, i32imm:$offsimm);
152}
153
Johnny Chenae1757b2010-03-11 01:13:36 +0000154def t2am_imm8s4_offset : Operand<i32> {
155 let PrintMethod = "printT2AddrModeImm8s4OffsetOperand";
156}
157
Evan Chengcba962d2009-07-09 20:40:44 +0000158// t2addrmode_so_reg := reg + (reg << imm2)
Evan Cheng055b0312009-06-29 07:51:04 +0000159def t2addrmode_so_reg : Operand<i32>,
160 ComplexPattern<i32, 3, "SelectT2AddrModeSoReg", []> {
161 let PrintMethod = "printT2AddrModeSoRegOperand";
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000162 let MIOperandInfo = (ops GPR:$base, rGPR:$offsreg, i32imm:$offsimm);
Evan Cheng055b0312009-06-29 07:51:04 +0000163}
164
165
Anton Korobeynikov52237112009-06-17 18:13:58 +0000166//===----------------------------------------------------------------------===//
Evan Cheng9cb9e672009-06-27 02:26:13 +0000167// Multiclass helpers...
Anton Korobeynikov52237112009-06-17 18:13:58 +0000168//
169
Evan Chenga67efd12009-06-23 19:39:13 +0000170/// T2I_un_irs - Defines a set of (op reg, {so_imm|r|so_reg}) patterns for a
Evan Cheng0aa1d8c2009-06-25 02:08:06 +0000171/// unary operation that produces a value. These are predicable and can be
172/// changed to modify CPSR.
Johnny Chend68e1192009-12-15 17:24:14 +0000173multiclass T2I_un_irs<bits<4> opcod, string opc, PatFrag opnode,
174 bit Cheap = 0, bit ReMat = 0> {
Evan Chenga67efd12009-06-23 19:39:13 +0000175 // shifted imm
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000176 def i : T2sI<(outs rGPR:$dst), (ins t2_so_imm:$src), IIC_iMOVi,
Evan Cheng699beba2009-10-27 00:08:59 +0000177 opc, "\t$dst, $src",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000178 [(set rGPR:$dst, (opnode t2_so_imm:$src))]> {
Evan Chenga67efd12009-06-23 19:39:13 +0000179 let isAsCheapAsAMove = Cheap;
180 let isReMaterializable = ReMat;
Johnny Chend68e1192009-12-15 17:24:14 +0000181 let Inst{31-27} = 0b11110;
182 let Inst{25} = 0;
183 let Inst{24-21} = opcod;
184 let Inst{20} = ?; // The S bit.
185 let Inst{19-16} = 0b1111; // Rn
186 let Inst{15} = 0;
Evan Chenga67efd12009-06-23 19:39:13 +0000187 }
188 // register
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000189 def r : T2sI<(outs rGPR:$dst), (ins rGPR:$src), IIC_iMOVr,
Bob Wilsonc21763f2010-05-24 22:41:19 +0000190 opc, ".w\t$dst, $src",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000191 [(set rGPR:$dst, (opnode rGPR:$src))]> {
Johnny Chend68e1192009-12-15 17:24:14 +0000192 let Inst{31-27} = 0b11101;
193 let Inst{26-25} = 0b01;
194 let Inst{24-21} = opcod;
195 let Inst{20} = ?; // The S bit.
196 let Inst{19-16} = 0b1111; // Rn
197 let Inst{14-12} = 0b000; // imm3
198 let Inst{7-6} = 0b00; // imm2
199 let Inst{5-4} = 0b00; // type
200 }
Evan Chenga67efd12009-06-23 19:39:13 +0000201 // shifted register
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000202 def s : T2sI<(outs rGPR:$dst), (ins t2_so_reg:$src), IIC_iMOVsi,
Bob Wilsonc21763f2010-05-24 22:41:19 +0000203 opc, ".w\t$dst, $src",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000204 [(set rGPR:$dst, (opnode t2_so_reg:$src))]> {
Johnny Chend68e1192009-12-15 17:24:14 +0000205 let Inst{31-27} = 0b11101;
206 let Inst{26-25} = 0b01;
207 let Inst{24-21} = opcod;
208 let Inst{20} = ?; // The S bit.
209 let Inst{19-16} = 0b1111; // Rn
210 }
Evan Chenga67efd12009-06-23 19:39:13 +0000211}
212
213/// T2I_bin_irs - Defines a set of (op reg, {so_imm|r|so_reg}) patterns for a
Bob Wilson4876bdb2010-05-25 04:43:08 +0000214/// binary operation that produces a value. These are predicable and can be
Evan Cheng0aa1d8c2009-06-25 02:08:06 +0000215/// changed to modify CPSR.
Jim Grosbach64171712010-02-16 21:07:46 +0000216multiclass T2I_bin_irs<bits<4> opcod, string opc, PatFrag opnode,
Bill Wendling1f7bf0e2010-08-29 03:55:31 +0000217 bit Commutable = 0, string wide = "", bit SBit = 0> {
Anton Korobeynikov52237112009-06-17 18:13:58 +0000218 // shifted imm
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000219 def ri : T2sI<(outs rGPR:$dst), (ins rGPR:$lhs, t2_so_imm:$rhs), IIC_iALUi,
Evan Cheng699beba2009-10-27 00:08:59 +0000220 opc, "\t$dst, $lhs, $rhs",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000221 [(set rGPR:$dst, (opnode rGPR:$lhs, t2_so_imm:$rhs))]> {
Johnny Chend68e1192009-12-15 17:24:14 +0000222 let Inst{31-27} = 0b11110;
223 let Inst{25} = 0;
224 let Inst{24-21} = opcod;
Bill Wendling1f7bf0e2010-08-29 03:55:31 +0000225 let Inst{20} = SBit; // The S bit.
Johnny Chend68e1192009-12-15 17:24:14 +0000226 let Inst{15} = 0;
227 }
Evan Chenga67efd12009-06-23 19:39:13 +0000228 // register
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000229 def rr : T2sI<(outs rGPR:$dst), (ins rGPR:$lhs, rGPR:$rhs), IIC_iALUr,
Evan Cheng699beba2009-10-27 00:08:59 +0000230 opc, !strconcat(wide, "\t$dst, $lhs, $rhs"),
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000231 [(set rGPR:$dst, (opnode rGPR:$lhs, rGPR:$rhs))]> {
Evan Cheng8de898a2009-06-26 00:19:44 +0000232 let isCommutable = Commutable;
Johnny Chend68e1192009-12-15 17:24:14 +0000233 let Inst{31-27} = 0b11101;
234 let Inst{26-25} = 0b01;
235 let Inst{24-21} = opcod;
Bill Wendling1f7bf0e2010-08-29 03:55:31 +0000236 let Inst{20} = SBit; // The S bit.
Johnny Chend68e1192009-12-15 17:24:14 +0000237 let Inst{14-12} = 0b000; // imm3
238 let Inst{7-6} = 0b00; // imm2
239 let Inst{5-4} = 0b00; // type
Evan Cheng8de898a2009-06-26 00:19:44 +0000240 }
Anton Korobeynikov52237112009-06-17 18:13:58 +0000241 // shifted register
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000242 def rs : T2sI<(outs rGPR:$dst), (ins rGPR:$lhs, t2_so_reg:$rhs), IIC_iALUsi,
Evan Cheng699beba2009-10-27 00:08:59 +0000243 opc, !strconcat(wide, "\t$dst, $lhs, $rhs"),
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000244 [(set rGPR:$dst, (opnode rGPR:$lhs, t2_so_reg:$rhs))]> {
Johnny Chend68e1192009-12-15 17:24:14 +0000245 let Inst{31-27} = 0b11101;
246 let Inst{26-25} = 0b01;
247 let Inst{24-21} = opcod;
Bill Wendling1f7bf0e2010-08-29 03:55:31 +0000248 let Inst{20} = SBit; // The S bit.
Johnny Chend68e1192009-12-15 17:24:14 +0000249 }
Anton Korobeynikov52237112009-06-17 18:13:58 +0000250}
251
David Goodwin1f096272009-07-27 23:34:12 +0000252/// T2I_bin_w_irs - Same as T2I_bin_irs except these operations need
253// the ".w" prefix to indicate that they are wide.
Johnny Chend68e1192009-12-15 17:24:14 +0000254multiclass T2I_bin_w_irs<bits<4> opcod, string opc, PatFrag opnode,
255 bit Commutable = 0> :
Bill Wendling1f7bf0e2010-08-29 03:55:31 +0000256 T2I_bin_irs<opcod, opc, opnode, Commutable, ".w", ?>;
257
258/// T2I_bin_sw_irs - Same as T2I_bin_w_irs except these operations set
259// the 'S' bit.
260multiclass T2I_bin_sw_irs<bits<4> opcod, string opc, PatFrag opnode,
261 bit Commutable = 0> :
262 T2I_bin_irs<opcod, opc, opnode, Commutable, ".w", 1>;
David Goodwin1f096272009-07-27 23:34:12 +0000263
Evan Cheng1e249e32009-06-25 20:59:23 +0000264/// T2I_rbin_is - Same as T2I_bin_irs except the order of operands are
Bob Wilson20d8e4e2010-08-13 23:24:25 +0000265/// reversed. The 'rr' form is only defined for the disassembler; for codegen
266/// it is equivalent to the T2I_bin_irs counterpart.
267multiclass T2I_rbin_irs<bits<4> opcod, string opc, PatFrag opnode> {
Evan Chengf49810c2009-06-23 17:48:47 +0000268 // shifted imm
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000269 def ri : T2sI<(outs rGPR:$dst), (ins rGPR:$rhs, t2_so_imm:$lhs), IIC_iALUi,
Bob Wilson4876bdb2010-05-25 04:43:08 +0000270 opc, ".w\t$dst, $rhs, $lhs",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000271 [(set rGPR:$dst, (opnode t2_so_imm:$lhs, rGPR:$rhs))]> {
Johnny Chend68e1192009-12-15 17:24:14 +0000272 let Inst{31-27} = 0b11110;
273 let Inst{25} = 0;
274 let Inst{24-21} = opcod;
Bob Wilson4876bdb2010-05-25 04:43:08 +0000275 let Inst{20} = ?; // The S bit.
Johnny Chend68e1192009-12-15 17:24:14 +0000276 let Inst{15} = 0;
277 }
Bob Wilson20d8e4e2010-08-13 23:24:25 +0000278 // register
279 def rr : T2sI<(outs rGPR:$dst), (ins rGPR:$rhs, rGPR:$lhs), IIC_iALUr,
280 opc, "\t$dst, $rhs, $lhs",
Bob Wilson136e4912010-08-14 03:18:29 +0000281 [/* For disassembly only; pattern left blank */]> {
Bob Wilson20d8e4e2010-08-13 23:24:25 +0000282 let Inst{31-27} = 0b11101;
283 let Inst{26-25} = 0b01;
284 let Inst{24-21} = opcod;
285 let Inst{20} = ?; // The S bit.
286 let Inst{14-12} = 0b000; // imm3
287 let Inst{7-6} = 0b00; // imm2
288 let Inst{5-4} = 0b00; // type
289 }
Evan Chengf49810c2009-06-23 17:48:47 +0000290 // shifted register
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000291 def rs : T2sI<(outs rGPR:$dst), (ins rGPR:$rhs, t2_so_reg:$lhs), IIC_iALUsi,
Bob Wilson4876bdb2010-05-25 04:43:08 +0000292 opc, "\t$dst, $rhs, $lhs",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000293 [(set rGPR:$dst, (opnode t2_so_reg:$lhs, rGPR:$rhs))]> {
Johnny Chend68e1192009-12-15 17:24:14 +0000294 let Inst{31-27} = 0b11101;
295 let Inst{26-25} = 0b01;
296 let Inst{24-21} = opcod;
Bob Wilson4876bdb2010-05-25 04:43:08 +0000297 let Inst{20} = ?; // The S bit.
Johnny Chend68e1192009-12-15 17:24:14 +0000298 }
Evan Chengf49810c2009-06-23 17:48:47 +0000299}
300
Evan Chenga67efd12009-06-23 19:39:13 +0000301/// T2I_bin_s_irs - Similar to T2I_bin_irs except it sets the 's' bit so the
Anton Korobeynikov52237112009-06-17 18:13:58 +0000302/// instruction modifies the CPSR register.
303let Defs = [CPSR] in {
Johnny Chend68e1192009-12-15 17:24:14 +0000304multiclass T2I_bin_s_irs<bits<4> opcod, string opc, PatFrag opnode,
305 bit Commutable = 0> {
Anton Korobeynikov52237112009-06-17 18:13:58 +0000306 // shifted imm
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000307 def ri : T2I<(outs rGPR:$dst), (ins GPR:$lhs, t2_so_imm:$rhs), IIC_iALUi,
Evan Cheng699beba2009-10-27 00:08:59 +0000308 !strconcat(opc, "s"), ".w\t$dst, $lhs, $rhs",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000309 [(set rGPR:$dst, (opnode GPR:$lhs, t2_so_imm:$rhs))]> {
Johnny Chend68e1192009-12-15 17:24:14 +0000310 let Inst{31-27} = 0b11110;
311 let Inst{25} = 0;
312 let Inst{24-21} = opcod;
313 let Inst{20} = 1; // The S bit.
314 let Inst{15} = 0;
315 }
Evan Chenga67efd12009-06-23 19:39:13 +0000316 // register
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000317 def rr : T2I<(outs rGPR:$dst), (ins GPR:$lhs, rGPR:$rhs), IIC_iALUr,
Evan Cheng699beba2009-10-27 00:08:59 +0000318 !strconcat(opc, "s"), ".w\t$dst, $lhs, $rhs",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000319 [(set rGPR:$dst, (opnode GPR:$lhs, rGPR:$rhs))]> {
Evan Cheng8de898a2009-06-26 00:19:44 +0000320 let isCommutable = Commutable;
Johnny Chend68e1192009-12-15 17:24:14 +0000321 let Inst{31-27} = 0b11101;
322 let Inst{26-25} = 0b01;
323 let Inst{24-21} = opcod;
324 let Inst{20} = 1; // The S bit.
325 let Inst{14-12} = 0b000; // imm3
326 let Inst{7-6} = 0b00; // imm2
327 let Inst{5-4} = 0b00; // type
Evan Cheng8de898a2009-06-26 00:19:44 +0000328 }
Anton Korobeynikov52237112009-06-17 18:13:58 +0000329 // shifted register
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000330 def rs : T2I<(outs rGPR:$dst), (ins GPR:$lhs, t2_so_reg:$rhs), IIC_iALUsi,
Evan Cheng699beba2009-10-27 00:08:59 +0000331 !strconcat(opc, "s"), ".w\t$dst, $lhs, $rhs",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000332 [(set rGPR:$dst, (opnode GPR:$lhs, t2_so_reg:$rhs))]> {
Johnny Chend68e1192009-12-15 17:24:14 +0000333 let Inst{31-27} = 0b11101;
334 let Inst{26-25} = 0b01;
335 let Inst{24-21} = opcod;
336 let Inst{20} = 1; // The S bit.
337 }
Anton Korobeynikov52237112009-06-17 18:13:58 +0000338}
339}
340
Evan Chenga67efd12009-06-23 19:39:13 +0000341/// T2I_bin_ii12rs - Defines a set of (op reg, {so_imm|imm0_4095|r|so_reg})
342/// patterns for a binary operation that produces a value.
Johnny Chend68e1192009-12-15 17:24:14 +0000343multiclass T2I_bin_ii12rs<bits<3> op23_21, string opc, PatFrag opnode,
344 bit Commutable = 0> {
Evan Chengf49810c2009-06-23 17:48:47 +0000345 // shifted imm
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000346 def ri : T2sI<(outs rGPR:$dst), (ins GPR:$lhs, t2_so_imm:$rhs), IIC_iALUi,
Evan Cheng699beba2009-10-27 00:08:59 +0000347 opc, ".w\t$dst, $lhs, $rhs",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000348 [(set rGPR:$dst, (opnode GPR:$lhs, t2_so_imm:$rhs))]> {
Johnny Chend68e1192009-12-15 17:24:14 +0000349 let Inst{31-27} = 0b11110;
350 let Inst{25} = 0;
351 let Inst{24} = 1;
352 let Inst{23-21} = op23_21;
353 let Inst{20} = 0; // The S bit.
354 let Inst{15} = 0;
355 }
Evan Chengf49810c2009-06-23 17:48:47 +0000356 // 12-bit imm
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000357 def ri12 : T2I<(outs rGPR:$dst), (ins GPR:$lhs, imm0_4095:$rhs), IIC_iALUi,
Bob Wilsonf5fd4992010-03-08 22:56:15 +0000358 !strconcat(opc, "w"), "\t$dst, $lhs, $rhs",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000359 [(set rGPR:$dst, (opnode GPR:$lhs, imm0_4095:$rhs))]> {
Johnny Chend68e1192009-12-15 17:24:14 +0000360 let Inst{31-27} = 0b11110;
361 let Inst{25} = 1;
362 let Inst{24} = 0;
363 let Inst{23-21} = op23_21;
364 let Inst{20} = 0; // The S bit.
365 let Inst{15} = 0;
366 }
Evan Chenga67efd12009-06-23 19:39:13 +0000367 // register
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000368 def rr : T2sI<(outs rGPR:$dst), (ins GPR:$lhs, rGPR:$rhs), IIC_iALUr,
Evan Cheng699beba2009-10-27 00:08:59 +0000369 opc, ".w\t$dst, $lhs, $rhs",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000370 [(set rGPR:$dst, (opnode GPR:$lhs, rGPR:$rhs))]> {
Evan Cheng8de898a2009-06-26 00:19:44 +0000371 let isCommutable = Commutable;
Johnny Chend68e1192009-12-15 17:24:14 +0000372 let Inst{31-27} = 0b11101;
373 let Inst{26-25} = 0b01;
374 let Inst{24} = 1;
375 let Inst{23-21} = op23_21;
376 let Inst{20} = 0; // The S bit.
377 let Inst{14-12} = 0b000; // imm3
378 let Inst{7-6} = 0b00; // imm2
379 let Inst{5-4} = 0b00; // type
Evan Cheng8de898a2009-06-26 00:19:44 +0000380 }
Evan Chengf49810c2009-06-23 17:48:47 +0000381 // shifted register
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000382 def rs : T2sI<(outs rGPR:$dst), (ins GPR:$lhs, t2_so_reg:$rhs), IIC_iALUsi,
Evan Cheng699beba2009-10-27 00:08:59 +0000383 opc, ".w\t$dst, $lhs, $rhs",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000384 [(set rGPR:$dst, (opnode GPR:$lhs, t2_so_reg:$rhs))]> {
Johnny Chend68e1192009-12-15 17:24:14 +0000385 let Inst{31-27} = 0b11101;
Johnny Chend68e1192009-12-15 17:24:14 +0000386 let Inst{26-25} = 0b01;
Johnny Chend248ffb2010-01-08 17:41:33 +0000387 let Inst{24} = 1;
Johnny Chend68e1192009-12-15 17:24:14 +0000388 let Inst{23-21} = op23_21;
389 let Inst{20} = 0; // The S bit.
390 }
Evan Chengf49810c2009-06-23 17:48:47 +0000391}
392
Jim Grosbach6935efc2009-11-24 00:20:27 +0000393/// T2I_adde_sube_irs - Defines a set of (op reg, {so_imm|r|so_reg}) patterns
Jim Grosbach39be8fc2010-02-16 20:42:29 +0000394/// for a binary operation that produces a value and use the carry
Jim Grosbach6935efc2009-11-24 00:20:27 +0000395/// bit. It's not predicable.
Evan Cheng62674222009-06-25 23:34:10 +0000396let Uses = [CPSR] in {
Jim Grosbach80dc1162010-02-16 21:23:02 +0000397multiclass T2I_adde_sube_irs<bits<4> opcod, string opc, PatFrag opnode,
398 bit Commutable = 0> {
Anton Korobeynikov52237112009-06-17 18:13:58 +0000399 // shifted imm
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000400 def ri : T2sI<(outs rGPR:$dst), (ins rGPR:$lhs, t2_so_imm:$rhs), IIC_iALUi,
Evan Cheng699beba2009-10-27 00:08:59 +0000401 opc, "\t$dst, $lhs, $rhs",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000402 [(set rGPR:$dst, (opnode rGPR:$lhs, t2_so_imm:$rhs))]>,
Jim Grosbach39be8fc2010-02-16 20:42:29 +0000403 Requires<[IsThumb2]> {
Johnny Chend68e1192009-12-15 17:24:14 +0000404 let Inst{31-27} = 0b11110;
405 let Inst{25} = 0;
406 let Inst{24-21} = opcod;
407 let Inst{20} = 0; // The S bit.
408 let Inst{15} = 0;
409 }
Evan Chenga67efd12009-06-23 19:39:13 +0000410 // register
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000411 def rr : T2sI<(outs rGPR:$dst), (ins rGPR:$lhs, rGPR:$rhs), IIC_iALUr,
Evan Cheng699beba2009-10-27 00:08:59 +0000412 opc, ".w\t$dst, $lhs, $rhs",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000413 [(set rGPR:$dst, (opnode rGPR:$lhs, rGPR:$rhs))]>,
Jim Grosbach39be8fc2010-02-16 20:42:29 +0000414 Requires<[IsThumb2]> {
Evan Cheng8de898a2009-06-26 00:19:44 +0000415 let isCommutable = Commutable;
Johnny Chend68e1192009-12-15 17:24:14 +0000416 let Inst{31-27} = 0b11101;
417 let Inst{26-25} = 0b01;
418 let Inst{24-21} = opcod;
419 let Inst{20} = 0; // The S bit.
420 let Inst{14-12} = 0b000; // imm3
421 let Inst{7-6} = 0b00; // imm2
422 let Inst{5-4} = 0b00; // type
Evan Cheng8de898a2009-06-26 00:19:44 +0000423 }
Anton Korobeynikov52237112009-06-17 18:13:58 +0000424 // shifted register
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000425 def rs : T2sI<(outs rGPR:$dst), (ins rGPR:$lhs, t2_so_reg:$rhs), IIC_iALUsi,
Evan Cheng699beba2009-10-27 00:08:59 +0000426 opc, ".w\t$dst, $lhs, $rhs",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000427 [(set rGPR:$dst, (opnode rGPR:$lhs, t2_so_reg:$rhs))]>,
Jim Grosbach39be8fc2010-02-16 20:42:29 +0000428 Requires<[IsThumb2]> {
Johnny Chend68e1192009-12-15 17:24:14 +0000429 let Inst{31-27} = 0b11101;
430 let Inst{26-25} = 0b01;
431 let Inst{24-21} = opcod;
432 let Inst{20} = 0; // The S bit.
433 }
Jim Grosbach39be8fc2010-02-16 20:42:29 +0000434}
435
436// Carry setting variants
437let Defs = [CPSR] in {
Jim Grosbach80dc1162010-02-16 21:23:02 +0000438multiclass T2I_adde_sube_s_irs<bits<4> opcod, string opc, PatFrag opnode,
439 bit Commutable = 0> {
Evan Cheng62674222009-06-25 23:34:10 +0000440 // shifted imm
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000441 def ri : T2sI<(outs rGPR:$dst), (ins rGPR:$lhs, t2_so_imm:$rhs), IIC_iALUi,
Johnny Chenb5031ad2010-03-02 19:38:59 +0000442 opc, "\t$dst, $lhs, $rhs",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000443 [(set rGPR:$dst, (opnode rGPR:$lhs, t2_so_imm:$rhs))]>,
Johnny Chenb5031ad2010-03-02 19:38:59 +0000444 Requires<[IsThumb2]> {
Johnny Chend68e1192009-12-15 17:24:14 +0000445 let Inst{31-27} = 0b11110;
446 let Inst{25} = 0;
447 let Inst{24-21} = opcod;
448 let Inst{20} = 1; // The S bit.
449 let Inst{15} = 0;
450 }
Evan Cheng62674222009-06-25 23:34:10 +0000451 // register
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000452 def rr : T2sI<(outs rGPR:$dst), (ins rGPR:$lhs, rGPR:$rhs), IIC_iALUr,
Johnny Chenb5031ad2010-03-02 19:38:59 +0000453 opc, ".w\t$dst, $lhs, $rhs",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000454 [(set rGPR:$dst, (opnode rGPR:$lhs, rGPR:$rhs))]>,
Johnny Chenb5031ad2010-03-02 19:38:59 +0000455 Requires<[IsThumb2]> {
Johnny Chend68e1192009-12-15 17:24:14 +0000456 let isCommutable = Commutable;
457 let Inst{31-27} = 0b11101;
458 let Inst{26-25} = 0b01;
459 let Inst{24-21} = opcod;
460 let Inst{20} = 1; // The S bit.
461 let Inst{14-12} = 0b000; // imm3
462 let Inst{7-6} = 0b00; // imm2
463 let Inst{5-4} = 0b00; // type
Evan Cheng8de898a2009-06-26 00:19:44 +0000464 }
Evan Cheng62674222009-06-25 23:34:10 +0000465 // shifted register
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000466 def rs : T2sI<(outs rGPR:$dst), (ins rGPR:$lhs, t2_so_reg:$rhs), IIC_iALUsi,
Johnny Chenb5031ad2010-03-02 19:38:59 +0000467 opc, ".w\t$dst, $lhs, $rhs",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000468 [(set rGPR:$dst, (opnode rGPR:$lhs, t2_so_reg:$rhs))]>,
Johnny Chenb5031ad2010-03-02 19:38:59 +0000469 Requires<[IsThumb2]> {
Johnny Chend68e1192009-12-15 17:24:14 +0000470 let Inst{31-27} = 0b11101;
471 let Inst{26-25} = 0b01;
472 let Inst{24-21} = opcod;
473 let Inst{20} = 1; // The S bit.
Evan Cheng8de898a2009-06-26 00:19:44 +0000474 }
Evan Chengf49810c2009-06-23 17:48:47 +0000475}
476}
Jim Grosbach39be8fc2010-02-16 20:42:29 +0000477}
Evan Chengf49810c2009-06-23 17:48:47 +0000478
Bob Wilson20d8e4e2010-08-13 23:24:25 +0000479/// T2I_rbin_s_is - Same as T2I_rbin_irs except sets 's' bit and the register
480/// version is not needed since this is only for codegen.
Evan Cheng1e249e32009-06-25 20:59:23 +0000481let Defs = [CPSR] in {
Johnny Chend68e1192009-12-15 17:24:14 +0000482multiclass T2I_rbin_s_is<bits<4> opcod, string opc, PatFrag opnode> {
Evan Chengf49810c2009-06-23 17:48:47 +0000483 // shifted imm
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000484 def ri : T2I<(outs rGPR:$dst), (ins rGPR:$rhs, t2_so_imm:$lhs), IIC_iALUi,
Bob Wilson4876bdb2010-05-25 04:43:08 +0000485 !strconcat(opc, "s"), ".w\t$dst, $rhs, $lhs",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000486 [(set rGPR:$dst, (opnode t2_so_imm:$lhs, rGPR:$rhs))]> {
Johnny Chend68e1192009-12-15 17:24:14 +0000487 let Inst{31-27} = 0b11110;
488 let Inst{25} = 0;
489 let Inst{24-21} = opcod;
490 let Inst{20} = 1; // The S bit.
491 let Inst{15} = 0;
492 }
Evan Chengf49810c2009-06-23 17:48:47 +0000493 // shifted register
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000494 def rs : T2I<(outs rGPR:$dst), (ins rGPR:$rhs, t2_so_reg:$lhs), IIC_iALUsi,
Bob Wilson4876bdb2010-05-25 04:43:08 +0000495 !strconcat(opc, "s"), "\t$dst, $rhs, $lhs",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000496 [(set rGPR:$dst, (opnode t2_so_reg:$lhs, rGPR:$rhs))]> {
Johnny Chend68e1192009-12-15 17:24:14 +0000497 let Inst{31-27} = 0b11101;
498 let Inst{26-25} = 0b01;
499 let Inst{24-21} = opcod;
500 let Inst{20} = 1; // The S bit.
501 }
Evan Chengf49810c2009-06-23 17:48:47 +0000502}
503}
504
Evan Chenga67efd12009-06-23 19:39:13 +0000505/// T2I_sh_ir - Defines a set of (op reg, {so_imm|r}) patterns for a shift /
506// rotate operation that produces a value.
Johnny Chend68e1192009-12-15 17:24:14 +0000507multiclass T2I_sh_ir<bits<2> opcod, string opc, PatFrag opnode> {
Evan Chenga67efd12009-06-23 19:39:13 +0000508 // 5-bit imm
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000509 def ri : T2sI<(outs rGPR:$dst), (ins rGPR:$lhs, i32imm:$rhs), IIC_iMOVsi,
Evan Cheng699beba2009-10-27 00:08:59 +0000510 opc, ".w\t$dst, $lhs, $rhs",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000511 [(set rGPR:$dst, (opnode rGPR:$lhs, imm1_31:$rhs))]> {
Johnny Chend68e1192009-12-15 17:24:14 +0000512 let Inst{31-27} = 0b11101;
513 let Inst{26-21} = 0b010010;
514 let Inst{19-16} = 0b1111; // Rn
515 let Inst{5-4} = opcod;
516 }
Evan Chenga67efd12009-06-23 19:39:13 +0000517 // register
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000518 def rr : T2sI<(outs rGPR:$dst), (ins rGPR:$lhs, rGPR:$rhs), IIC_iMOVsr,
Evan Cheng699beba2009-10-27 00:08:59 +0000519 opc, ".w\t$dst, $lhs, $rhs",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000520 [(set rGPR:$dst, (opnode rGPR:$lhs, rGPR:$rhs))]> {
Johnny Chend68e1192009-12-15 17:24:14 +0000521 let Inst{31-27} = 0b11111;
522 let Inst{26-23} = 0b0100;
523 let Inst{22-21} = opcod;
524 let Inst{15-12} = 0b1111;
525 let Inst{7-4} = 0b0000;
526 }
Evan Chenga67efd12009-06-23 19:39:13 +0000527}
Evan Chengf49810c2009-06-23 17:48:47 +0000528
Johnny Chend68e1192009-12-15 17:24:14 +0000529/// T2I_cmp_irs - Defines a set of (op r, {so_imm|r|so_reg}) cmp / test
Evan Chenga67efd12009-06-23 19:39:13 +0000530/// patterns. Similar to T2I_bin_irs except the instruction does not produce
Evan Chengf49810c2009-06-23 17:48:47 +0000531/// a explicit result, only implicitly set CPSR.
Bill Wendlingf0e132c2010-08-19 00:05:48 +0000532let isCompare = 1, Defs = [CPSR] in {
Johnny Chend68e1192009-12-15 17:24:14 +0000533multiclass T2I_cmp_irs<bits<4> opcod, string opc, PatFrag opnode> {
Evan Chengf49810c2009-06-23 17:48:47 +0000534 // shifted imm
David Goodwin5d598aa2009-08-19 18:00:44 +0000535 def ri : T2I<(outs), (ins GPR:$lhs, t2_so_imm:$rhs), IIC_iCMPi,
Evan Cheng699beba2009-10-27 00:08:59 +0000536 opc, ".w\t$lhs, $rhs",
Johnny Chend68e1192009-12-15 17:24:14 +0000537 [(opnode GPR:$lhs, t2_so_imm:$rhs)]> {
538 let Inst{31-27} = 0b11110;
539 let Inst{25} = 0;
540 let Inst{24-21} = opcod;
541 let Inst{20} = 1; // The S bit.
542 let Inst{15} = 0;
543 let Inst{11-8} = 0b1111; // Rd
544 }
Evan Chenga67efd12009-06-23 19:39:13 +0000545 // register
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000546 def rr : T2I<(outs), (ins GPR:$lhs, rGPR:$rhs), IIC_iCMPr,
Evan Cheng699beba2009-10-27 00:08:59 +0000547 opc, ".w\t$lhs, $rhs",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000548 [(opnode GPR:$lhs, rGPR:$rhs)]> {
Johnny Chend68e1192009-12-15 17:24:14 +0000549 let Inst{31-27} = 0b11101;
550 let Inst{26-25} = 0b01;
551 let Inst{24-21} = opcod;
552 let Inst{20} = 1; // The S bit.
553 let Inst{14-12} = 0b000; // imm3
554 let Inst{11-8} = 0b1111; // Rd
555 let Inst{7-6} = 0b00; // imm2
556 let Inst{5-4} = 0b00; // type
557 }
Evan Chengf49810c2009-06-23 17:48:47 +0000558 // shifted register
David Goodwin5d598aa2009-08-19 18:00:44 +0000559 def rs : T2I<(outs), (ins GPR:$lhs, t2_so_reg:$rhs), IIC_iCMPsi,
Evan Cheng699beba2009-10-27 00:08:59 +0000560 opc, ".w\t$lhs, $rhs",
Johnny Chend68e1192009-12-15 17:24:14 +0000561 [(opnode GPR:$lhs, t2_so_reg:$rhs)]> {
562 let Inst{31-27} = 0b11101;
563 let Inst{26-25} = 0b01;
564 let Inst{24-21} = opcod;
565 let Inst{20} = 1; // The S bit.
566 let Inst{11-8} = 0b1111; // Rd
567 }
Anton Korobeynikov52237112009-06-17 18:13:58 +0000568}
569}
570
Evan Chengf3c21b82009-06-30 02:15:48 +0000571/// T2I_ld - Defines a set of (op r, {imm12|imm8|so_reg}) load patterns.
Johnny Chend68e1192009-12-15 17:24:14 +0000572multiclass T2I_ld<bit signed, bits<2> opcod, string opc, PatFrag opnode> {
David Goodwin5d598aa2009-08-19 18:00:44 +0000573 def i12 : T2Ii12<(outs GPR:$dst), (ins t2addrmode_imm12:$addr), IIC_iLoadi,
Evan Cheng699beba2009-10-27 00:08:59 +0000574 opc, ".w\t$dst, $addr",
Johnny Chend68e1192009-12-15 17:24:14 +0000575 [(set GPR:$dst, (opnode t2addrmode_imm12:$addr))]> {
576 let Inst{31-27} = 0b11111;
577 let Inst{26-25} = 0b00;
578 let Inst{24} = signed;
579 let Inst{23} = 1;
580 let Inst{22-21} = opcod;
581 let Inst{20} = 1; // load
582 }
David Goodwin5d598aa2009-08-19 18:00:44 +0000583 def i8 : T2Ii8 <(outs GPR:$dst), (ins t2addrmode_imm8:$addr), IIC_iLoadi,
Evan Cheng699beba2009-10-27 00:08:59 +0000584 opc, "\t$dst, $addr",
Johnny Chend68e1192009-12-15 17:24:14 +0000585 [(set GPR:$dst, (opnode t2addrmode_imm8:$addr))]> {
586 let Inst{31-27} = 0b11111;
587 let Inst{26-25} = 0b00;
588 let Inst{24} = signed;
589 let Inst{23} = 0;
590 let Inst{22-21} = opcod;
591 let Inst{20} = 1; // load
592 let Inst{11} = 1;
593 // Offset: index==TRUE, wback==FALSE
594 let Inst{10} = 1; // The P bit.
595 let Inst{8} = 0; // The W bit.
596 }
David Goodwin5d598aa2009-08-19 18:00:44 +0000597 def s : T2Iso <(outs GPR:$dst), (ins t2addrmode_so_reg:$addr), IIC_iLoadr,
Evan Cheng699beba2009-10-27 00:08:59 +0000598 opc, ".w\t$dst, $addr",
Johnny Chend68e1192009-12-15 17:24:14 +0000599 [(set GPR:$dst, (opnode t2addrmode_so_reg:$addr))]> {
600 let Inst{31-27} = 0b11111;
601 let Inst{26-25} = 0b00;
602 let Inst{24} = signed;
603 let Inst{23} = 0;
604 let Inst{22-21} = opcod;
605 let Inst{20} = 1; // load
606 let Inst{11-6} = 0b000000;
607 }
David Goodwin5d598aa2009-08-19 18:00:44 +0000608 def pci : T2Ipc <(outs GPR:$dst), (ins i32imm:$addr), IIC_iLoadi,
Evan Cheng699beba2009-10-27 00:08:59 +0000609 opc, ".w\t$dst, $addr",
Evan Cheng9eda6892009-10-31 03:39:36 +0000610 [(set GPR:$dst, (opnode (ARMWrapper tconstpool:$addr)))]> {
611 let isReMaterializable = 1;
Johnny Chend68e1192009-12-15 17:24:14 +0000612 let Inst{31-27} = 0b11111;
613 let Inst{26-25} = 0b00;
614 let Inst{24} = signed;
615 let Inst{23} = ?; // add = (U == '1')
616 let Inst{22-21} = opcod;
617 let Inst{20} = 1; // load
618 let Inst{19-16} = 0b1111; // Rn
Evan Cheng9eda6892009-10-31 03:39:36 +0000619 }
Evan Chengf3c21b82009-06-30 02:15:48 +0000620}
621
David Goodwin73b8f162009-06-30 22:11:34 +0000622/// T2I_st - Defines a set of (op r, {imm12|imm8|so_reg}) store patterns.
Johnny Chend68e1192009-12-15 17:24:14 +0000623multiclass T2I_st<bits<2> opcod, string opc, PatFrag opnode> {
David Goodwin5d598aa2009-08-19 18:00:44 +0000624 def i12 : T2Ii12<(outs), (ins GPR:$src, t2addrmode_imm12:$addr), IIC_iStorei,
Evan Cheng699beba2009-10-27 00:08:59 +0000625 opc, ".w\t$src, $addr",
Johnny Chend68e1192009-12-15 17:24:14 +0000626 [(opnode GPR:$src, t2addrmode_imm12:$addr)]> {
627 let Inst{31-27} = 0b11111;
628 let Inst{26-23} = 0b0001;
629 let Inst{22-21} = opcod;
630 let Inst{20} = 0; // !load
631 }
David Goodwin5d598aa2009-08-19 18:00:44 +0000632 def i8 : T2Ii8 <(outs), (ins GPR:$src, t2addrmode_imm8:$addr), IIC_iStorei,
Evan Cheng699beba2009-10-27 00:08:59 +0000633 opc, "\t$src, $addr",
Johnny Chend68e1192009-12-15 17:24:14 +0000634 [(opnode GPR:$src, t2addrmode_imm8:$addr)]> {
635 let Inst{31-27} = 0b11111;
636 let Inst{26-23} = 0b0000;
637 let Inst{22-21} = opcod;
638 let Inst{20} = 0; // !load
639 let Inst{11} = 1;
640 // Offset: index==TRUE, wback==FALSE
641 let Inst{10} = 1; // The P bit.
642 let Inst{8} = 0; // The W bit.
643 }
David Goodwin5d598aa2009-08-19 18:00:44 +0000644 def s : T2Iso <(outs), (ins GPR:$src, t2addrmode_so_reg:$addr), IIC_iStorer,
Evan Cheng699beba2009-10-27 00:08:59 +0000645 opc, ".w\t$src, $addr",
Johnny Chend68e1192009-12-15 17:24:14 +0000646 [(opnode GPR:$src, t2addrmode_so_reg:$addr)]> {
647 let Inst{31-27} = 0b11111;
648 let Inst{26-23} = 0b0000;
649 let Inst{22-21} = opcod;
650 let Inst{20} = 0; // !load
651 let Inst{11-6} = 0b000000;
652 }
David Goodwin73b8f162009-06-30 22:11:34 +0000653}
654
Evan Chengd27c9fc2009-07-03 01:43:10 +0000655/// T2I_unary_rrot - A unary operation with two forms: one whose operand is a
656/// register and one whose operand is a register rotated by 8/16/24.
Johnny Chend68e1192009-12-15 17:24:14 +0000657multiclass T2I_unary_rrot<bits<3> opcod, string opc, PatFrag opnode> {
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000658 def r : T2I<(outs rGPR:$dst), (ins rGPR:$src), IIC_iUNAr,
Evan Cheng699beba2009-10-27 00:08:59 +0000659 opc, ".w\t$dst, $src",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000660 [(set rGPR:$dst, (opnode rGPR:$src))]> {
Johnny Chend68e1192009-12-15 17:24:14 +0000661 let Inst{31-27} = 0b11111;
662 let Inst{26-23} = 0b0100;
663 let Inst{22-20} = opcod;
664 let Inst{19-16} = 0b1111; // Rn
665 let Inst{15-12} = 0b1111;
666 let Inst{7} = 1;
667 let Inst{5-4} = 0b00; // rotate
668 }
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000669 def r_rot : T2I<(outs rGPR:$dst), (ins rGPR:$src, i32imm:$rot), IIC_iUNAsi,
Evan Cheng699beba2009-10-27 00:08:59 +0000670 opc, ".w\t$dst, $src, ror $rot",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000671 [(set rGPR:$dst, (opnode (rotr rGPR:$src, rot_imm:$rot)))]> {
Johnny Chend68e1192009-12-15 17:24:14 +0000672 let Inst{31-27} = 0b11111;
673 let Inst{26-23} = 0b0100;
674 let Inst{22-20} = opcod;
675 let Inst{19-16} = 0b1111; // Rn
676 let Inst{15-12} = 0b1111;
677 let Inst{7} = 1;
678 let Inst{5-4} = {?,?}; // rotate
679 }
Evan Chengd27c9fc2009-07-03 01:43:10 +0000680}
681
Eli Friedman761fa7a2010-06-24 18:20:04 +0000682// UXTB16 - Requres T2ExtractPack, does not need the .w qualifier.
683multiclass T2I_unary_rrot_uxtb16<bits<3> opcod, string opc, PatFrag opnode> {
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000684 def r : T2I<(outs rGPR:$dst), (ins rGPR:$src), IIC_iUNAr,
Johnny Chen267124c2010-03-04 22:24:41 +0000685 opc, "\t$dst, $src",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000686 [(set rGPR:$dst, (opnode rGPR:$src))]>,
Jim Grosbach29402132010-05-05 23:44:43 +0000687 Requires<[HasT2ExtractPack]> {
Johnny Chen267124c2010-03-04 22:24:41 +0000688 let Inst{31-27} = 0b11111;
689 let Inst{26-23} = 0b0100;
690 let Inst{22-20} = opcod;
691 let Inst{19-16} = 0b1111; // Rn
692 let Inst{15-12} = 0b1111;
693 let Inst{7} = 1;
694 let Inst{5-4} = 0b00; // rotate
695 }
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000696 def r_rot : T2I<(outs rGPR:$dst), (ins rGPR:$src, i32imm:$rot), IIC_iUNAsi,
Johnny Chen267124c2010-03-04 22:24:41 +0000697 opc, "\t$dst, $src, ror $rot",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000698 [(set rGPR:$dst, (opnode (rotr rGPR:$src, rot_imm:$rot)))]>,
Jim Grosbach29402132010-05-05 23:44:43 +0000699 Requires<[HasT2ExtractPack]> {
Johnny Chen267124c2010-03-04 22:24:41 +0000700 let Inst{31-27} = 0b11111;
701 let Inst{26-23} = 0b0100;
702 let Inst{22-20} = opcod;
703 let Inst{19-16} = 0b1111; // Rn
704 let Inst{15-12} = 0b1111;
705 let Inst{7} = 1;
706 let Inst{5-4} = {?,?}; // rotate
707 }
708}
709
Eli Friedman761fa7a2010-06-24 18:20:04 +0000710// SXTB16 - Requres T2ExtractPack, does not need the .w qualifier, no pattern
711// supported yet.
712multiclass T2I_unary_rrot_sxtb16<bits<3> opcod, string opc> {
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000713 def r : T2I<(outs rGPR:$dst), (ins rGPR:$src), IIC_iUNAr,
Johnny Chen93042d12010-03-02 18:14:57 +0000714 opc, "\t$dst, $src", []> {
715 let Inst{31-27} = 0b11111;
716 let Inst{26-23} = 0b0100;
717 let Inst{22-20} = opcod;
718 let Inst{19-16} = 0b1111; // Rn
719 let Inst{15-12} = 0b1111;
720 let Inst{7} = 1;
721 let Inst{5-4} = 0b00; // rotate
722 }
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000723 def r_rot : T2I<(outs rGPR:$dst), (ins rGPR:$src, i32imm:$rot), IIC_iUNAsi,
Johnny Chen93042d12010-03-02 18:14:57 +0000724 opc, "\t$dst, $src, ror $rot", []> {
725 let Inst{31-27} = 0b11111;
726 let Inst{26-23} = 0b0100;
727 let Inst{22-20} = opcod;
728 let Inst{19-16} = 0b1111; // Rn
729 let Inst{15-12} = 0b1111;
730 let Inst{7} = 1;
731 let Inst{5-4} = {?,?}; // rotate
732 }
733}
734
Evan Chengd27c9fc2009-07-03 01:43:10 +0000735/// T2I_bin_rrot - A binary operation with two forms: one whose operand is a
736/// register and one whose operand is a register rotated by 8/16/24.
Johnny Chend68e1192009-12-15 17:24:14 +0000737multiclass T2I_bin_rrot<bits<3> opcod, string opc, PatFrag opnode> {
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000738 def rr : T2I<(outs rGPR:$dst), (ins rGPR:$LHS, rGPR:$RHS), IIC_iALUr,
Evan Cheng699beba2009-10-27 00:08:59 +0000739 opc, "\t$dst, $LHS, $RHS",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000740 [(set rGPR:$dst, (opnode rGPR:$LHS, rGPR:$RHS))]>,
Jim Grosbach29402132010-05-05 23:44:43 +0000741 Requires<[HasT2ExtractPack]> {
Johnny Chend68e1192009-12-15 17:24:14 +0000742 let Inst{31-27} = 0b11111;
743 let Inst{26-23} = 0b0100;
744 let Inst{22-20} = opcod;
745 let Inst{15-12} = 0b1111;
746 let Inst{7} = 1;
747 let Inst{5-4} = 0b00; // rotate
748 }
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000749 def rr_rot : T2I<(outs rGPR:$dst), (ins rGPR:$LHS, rGPR:$RHS, i32imm:$rot),
Evan Cheng699beba2009-10-27 00:08:59 +0000750 IIC_iALUsr, opc, "\t$dst, $LHS, $RHS, ror $rot",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000751 [(set rGPR:$dst, (opnode rGPR:$LHS,
752 (rotr rGPR:$RHS, rot_imm:$rot)))]>,
Jim Grosbach29402132010-05-05 23:44:43 +0000753 Requires<[HasT2ExtractPack]> {
Johnny Chend68e1192009-12-15 17:24:14 +0000754 let Inst{31-27} = 0b11111;
755 let Inst{26-23} = 0b0100;
756 let Inst{22-20} = opcod;
757 let Inst{15-12} = 0b1111;
758 let Inst{7} = 1;
759 let Inst{5-4} = {?,?}; // rotate
760 }
Evan Chengd27c9fc2009-07-03 01:43:10 +0000761}
762
Johnny Chen93042d12010-03-02 18:14:57 +0000763// DO variant - disassembly only, no pattern
764
765multiclass T2I_bin_rrot_DO<bits<3> opcod, string opc> {
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000766 def rr : T2I<(outs rGPR:$dst), (ins rGPR:$LHS, rGPR:$RHS), IIC_iALUr,
Johnny Chen93042d12010-03-02 18:14:57 +0000767 opc, "\t$dst, $LHS, $RHS", []> {
768 let Inst{31-27} = 0b11111;
769 let Inst{26-23} = 0b0100;
770 let Inst{22-20} = opcod;
771 let Inst{15-12} = 0b1111;
772 let Inst{7} = 1;
773 let Inst{5-4} = 0b00; // rotate
774 }
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000775 def rr_rot : T2I<(outs rGPR:$dst), (ins rGPR:$LHS, rGPR:$RHS, i32imm:$rot),
Johnny Chen93042d12010-03-02 18:14:57 +0000776 IIC_iALUsr, opc, "\t$dst, $LHS, $RHS, ror $rot", []> {
777 let Inst{31-27} = 0b11111;
778 let Inst{26-23} = 0b0100;
779 let Inst{22-20} = opcod;
780 let Inst{15-12} = 0b1111;
781 let Inst{7} = 1;
782 let Inst{5-4} = {?,?}; // rotate
783 }
784}
785
Anton Korobeynikov52237112009-06-17 18:13:58 +0000786//===----------------------------------------------------------------------===//
Evan Cheng9cb9e672009-06-27 02:26:13 +0000787// Instructions
788//===----------------------------------------------------------------------===//
789
790//===----------------------------------------------------------------------===//
Evan Chenga09b9ca2009-06-24 23:47:58 +0000791// Miscellaneous Instructions.
792//
793
Evan Chenga09b9ca2009-06-24 23:47:58 +0000794// LEApcrel - Load a pc-relative address into a register without offending the
795// assembler.
Evan Chengea420b22010-05-19 01:52:25 +0000796let neverHasSideEffects = 1 in {
Evan Cheng9085f982010-05-19 07:28:01 +0000797let isReMaterializable = 1 in
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000798def t2LEApcrel : T2XI<(outs rGPR:$dst), (ins i32imm:$label, pred:$p), IIC_iALUi,
Daniel Dunbar9db683b2010-08-11 04:46:10 +0000799 "adr${p}.w\t$dst, #$label", []> {
Johnny Chend68e1192009-12-15 17:24:14 +0000800 let Inst{31-27} = 0b11110;
801 let Inst{25-24} = 0b10;
802 // Inst{23:21} = '11' (add = FALSE) or '00' (add = TRUE)
803 let Inst{22} = 0;
804 let Inst{20} = 0;
805 let Inst{19-16} = 0b1111; // Rn
806 let Inst{15} = 0;
807}
Jim Grosbacha967d112010-06-21 21:27:27 +0000808} // neverHasSideEffects
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000809def t2LEApcrelJT : T2XI<(outs rGPR:$dst),
Bob Wilson4f38b382009-08-21 21:58:55 +0000810 (ins i32imm:$label, nohash_imm:$id, pred:$p), IIC_iALUi,
Daniel Dunbar9db683b2010-08-11 04:46:10 +0000811 "adr${p}.w\t$dst, #${label}_${id}", []> {
Johnny Chend68e1192009-12-15 17:24:14 +0000812 let Inst{31-27} = 0b11110;
813 let Inst{25-24} = 0b10;
814 // Inst{23:21} = '11' (add = FALSE) or '00' (add = TRUE)
815 let Inst{22} = 0;
816 let Inst{20} = 0;
817 let Inst{19-16} = 0b1111; // Rn
818 let Inst{15} = 0;
819}
Evan Chenga09b9ca2009-06-24 23:47:58 +0000820
Evan Cheng86198642009-08-07 00:34:42 +0000821// ADD r, sp, {so_imm|i12}
David Goodwin5d598aa2009-08-19 18:00:44 +0000822def t2ADDrSPi : T2sI<(outs GPR:$dst), (ins GPR:$sp, t2_so_imm:$imm),
Johnny Chend68e1192009-12-15 17:24:14 +0000823 IIC_iALUi, "add", ".w\t$dst, $sp, $imm", []> {
824 let Inst{31-27} = 0b11110;
825 let Inst{25} = 0;
826 let Inst{24-21} = 0b1000;
827 let Inst{20} = ?; // The S bit.
828 let Inst{19-16} = 0b1101; // Rn = sp
829 let Inst{15} = 0;
830}
Jim Grosbach64171712010-02-16 21:07:46 +0000831def t2ADDrSPi12 : T2I<(outs GPR:$dst), (ins GPR:$sp, imm0_4095:$imm),
Johnny Chend68e1192009-12-15 17:24:14 +0000832 IIC_iALUi, "addw", "\t$dst, $sp, $imm", []> {
833 let Inst{31-27} = 0b11110;
834 let Inst{25} = 1;
835 let Inst{24-21} = 0b0000;
836 let Inst{20} = 0; // The S bit.
837 let Inst{19-16} = 0b1101; // Rn = sp
838 let Inst{15} = 0;
839}
Evan Cheng86198642009-08-07 00:34:42 +0000840
841// ADD r, sp, so_reg
David Goodwin5d598aa2009-08-19 18:00:44 +0000842def t2ADDrSPs : T2sI<(outs GPR:$dst), (ins GPR:$sp, t2_so_reg:$rhs),
Johnny Chend68e1192009-12-15 17:24:14 +0000843 IIC_iALUsi, "add", ".w\t$dst, $sp, $rhs", []> {
844 let Inst{31-27} = 0b11101;
845 let Inst{26-25} = 0b01;
846 let Inst{24-21} = 0b1000;
847 let Inst{20} = ?; // The S bit.
848 let Inst{19-16} = 0b1101; // Rn = sp
849 let Inst{15} = 0;
850}
Evan Cheng86198642009-08-07 00:34:42 +0000851
852// SUB r, sp, {so_imm|i12}
David Goodwin5d598aa2009-08-19 18:00:44 +0000853def t2SUBrSPi : T2sI<(outs GPR:$dst), (ins GPR:$sp, t2_so_imm:$imm),
Johnny Chend68e1192009-12-15 17:24:14 +0000854 IIC_iALUi, "sub", ".w\t$dst, $sp, $imm", []> {
855 let Inst{31-27} = 0b11110;
856 let Inst{25} = 0;
857 let Inst{24-21} = 0b1101;
858 let Inst{20} = ?; // The S bit.
859 let Inst{19-16} = 0b1101; // Rn = sp
860 let Inst{15} = 0;
861}
David Goodwin5d598aa2009-08-19 18:00:44 +0000862def t2SUBrSPi12 : T2I<(outs GPR:$dst), (ins GPR:$sp, imm0_4095:$imm),
Johnny Chend68e1192009-12-15 17:24:14 +0000863 IIC_iALUi, "subw", "\t$dst, $sp, $imm", []> {
864 let Inst{31-27} = 0b11110;
865 let Inst{25} = 1;
866 let Inst{24-21} = 0b0101;
867 let Inst{20} = 0; // The S bit.
868 let Inst{19-16} = 0b1101; // Rn = sp
869 let Inst{15} = 0;
870}
Evan Cheng86198642009-08-07 00:34:42 +0000871
872// SUB r, sp, so_reg
David Goodwin5d598aa2009-08-19 18:00:44 +0000873def t2SUBrSPs : T2sI<(outs GPR:$dst), (ins GPR:$sp, t2_so_reg:$rhs),
874 IIC_iALUsi,
Johnny Chend68e1192009-12-15 17:24:14 +0000875 "sub", "\t$dst, $sp, $rhs", []> {
876 let Inst{31-27} = 0b11101;
877 let Inst{26-25} = 0b01;
878 let Inst{24-21} = 0b1101;
879 let Inst{20} = ?; // The S bit.
880 let Inst{19-16} = 0b1101; // Rn = sp
881 let Inst{15} = 0;
882}
Evan Cheng86198642009-08-07 00:34:42 +0000883
Jim Grosbachb1dc3932010-05-05 20:44:35 +0000884// Signed and unsigned division on v7-M
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000885def t2SDIV : T2I<(outs rGPR:$dst), (ins rGPR:$a, rGPR:$b), IIC_iALUi,
Jim Grosbachb1dc3932010-05-05 20:44:35 +0000886 "sdiv", "\t$dst, $a, $b",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000887 [(set rGPR:$dst, (sdiv rGPR:$a, rGPR:$b))]>,
Jim Grosbach29402132010-05-05 23:44:43 +0000888 Requires<[HasDivide]> {
Johnny Chen93042d12010-03-02 18:14:57 +0000889 let Inst{31-27} = 0b11111;
890 let Inst{26-21} = 0b011100;
891 let Inst{20} = 0b1;
892 let Inst{15-12} = 0b1111;
893 let Inst{7-4} = 0b1111;
894}
895
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000896def t2UDIV : T2I<(outs rGPR:$dst), (ins rGPR:$a, rGPR:$b), IIC_iALUi,
Jim Grosbachb1dc3932010-05-05 20:44:35 +0000897 "udiv", "\t$dst, $a, $b",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000898 [(set rGPR:$dst, (udiv rGPR:$a, rGPR:$b))]>,
Jim Grosbach29402132010-05-05 23:44:43 +0000899 Requires<[HasDivide]> {
Johnny Chen93042d12010-03-02 18:14:57 +0000900 let Inst{31-27} = 0b11111;
901 let Inst{26-21} = 0b011101;
902 let Inst{20} = 0b1;
903 let Inst{15-12} = 0b1111;
904 let Inst{7-4} = 0b1111;
905}
906
Evan Chenga09b9ca2009-06-24 23:47:58 +0000907//===----------------------------------------------------------------------===//
Evan Cheng9cb9e672009-06-27 02:26:13 +0000908// Load / store Instructions.
909//
910
Evan Cheng055b0312009-06-29 07:51:04 +0000911// Load
Dan Gohmanbc9d98b2010-02-27 23:47:46 +0000912let canFoldAsLoad = 1, isReMaterializable = 1 in
Johnny Chend68e1192009-12-15 17:24:14 +0000913defm t2LDR : T2I_ld<0, 0b10, "ldr", UnOpFrag<(load node:$Src)>>;
Evan Cheng055b0312009-06-29 07:51:04 +0000914
Evan Chengf3c21b82009-06-30 02:15:48 +0000915// Loads with zero extension
Johnny Chend68e1192009-12-15 17:24:14 +0000916defm t2LDRH : T2I_ld<0, 0b01, "ldrh", UnOpFrag<(zextloadi16 node:$Src)>>;
917defm t2LDRB : T2I_ld<0, 0b00, "ldrb", UnOpFrag<(zextloadi8 node:$Src)>>;
Evan Cheng055b0312009-06-29 07:51:04 +0000918
Evan Chengf3c21b82009-06-30 02:15:48 +0000919// Loads with sign extension
Johnny Chend68e1192009-12-15 17:24:14 +0000920defm t2LDRSH : T2I_ld<1, 0b01, "ldrsh", UnOpFrag<(sextloadi16 node:$Src)>>;
921defm t2LDRSB : T2I_ld<1, 0b00, "ldrsb", UnOpFrag<(sextloadi8 node:$Src)>>;
Evan Cheng055b0312009-06-29 07:51:04 +0000922
Evan Cheng5fd1c9b2010-05-19 06:07:03 +0000923let mayLoad = 1, neverHasSideEffects = 1, hasExtraDefRegAllocReq = 1 in {
Evan Chengf3c21b82009-06-30 02:15:48 +0000924// Load doubleword
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000925def t2LDRDi8 : T2Ii8s4<1, 0, 1, (outs rGPR:$dst1, rGPR:$dst2),
Evan Chenge298ab22009-09-27 09:46:04 +0000926 (ins t2addrmode_imm8s4:$addr),
Johnny Chen83142992010-01-05 22:37:28 +0000927 IIC_iLoadi, "ldrd", "\t$dst1, $addr", []>;
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000928def t2LDRDpci : T2Ii8s4<1, 0, 1, (outs rGPR:$dst1, rGPR:$dst2),
Evan Chenge298ab22009-09-27 09:46:04 +0000929 (ins i32imm:$addr), IIC_iLoadi,
Johnny Chen83142992010-01-05 22:37:28 +0000930 "ldrd", "\t$dst1, $addr", []> {
Johnny Chend68e1192009-12-15 17:24:14 +0000931 let Inst{19-16} = 0b1111; // Rn
932}
Evan Cheng5fd1c9b2010-05-19 06:07:03 +0000933} // mayLoad = 1, neverHasSideEffects = 1, hasExtraDefRegAllocReq = 1
Evan Chengf3c21b82009-06-30 02:15:48 +0000934
935// zextload i1 -> zextload i8
936def : T2Pat<(zextloadi1 t2addrmode_imm12:$addr),
937 (t2LDRBi12 t2addrmode_imm12:$addr)>;
938def : T2Pat<(zextloadi1 t2addrmode_imm8:$addr),
939 (t2LDRBi8 t2addrmode_imm8:$addr)>;
940def : T2Pat<(zextloadi1 t2addrmode_so_reg:$addr),
941 (t2LDRBs t2addrmode_so_reg:$addr)>;
942def : T2Pat<(zextloadi1 (ARMWrapper tconstpool:$addr)),
943 (t2LDRBpci tconstpool:$addr)>;
944
945// extload -> zextload
946// FIXME: Reduce the number of patterns by legalizing extload to zextload
947// earlier?
948def : T2Pat<(extloadi1 t2addrmode_imm12:$addr),
949 (t2LDRBi12 t2addrmode_imm12:$addr)>;
950def : T2Pat<(extloadi1 t2addrmode_imm8:$addr),
951 (t2LDRBi8 t2addrmode_imm8:$addr)>;
952def : T2Pat<(extloadi1 t2addrmode_so_reg:$addr),
953 (t2LDRBs t2addrmode_so_reg:$addr)>;
954def : T2Pat<(extloadi1 (ARMWrapper tconstpool:$addr)),
955 (t2LDRBpci tconstpool:$addr)>;
956
957def : T2Pat<(extloadi8 t2addrmode_imm12:$addr),
958 (t2LDRBi12 t2addrmode_imm12:$addr)>;
959def : T2Pat<(extloadi8 t2addrmode_imm8:$addr),
960 (t2LDRBi8 t2addrmode_imm8:$addr)>;
961def : T2Pat<(extloadi8 t2addrmode_so_reg:$addr),
962 (t2LDRBs t2addrmode_so_reg:$addr)>;
963def : T2Pat<(extloadi8 (ARMWrapper tconstpool:$addr)),
964 (t2LDRBpci tconstpool:$addr)>;
965
966def : T2Pat<(extloadi16 t2addrmode_imm12:$addr),
967 (t2LDRHi12 t2addrmode_imm12:$addr)>;
968def : T2Pat<(extloadi16 t2addrmode_imm8:$addr),
969 (t2LDRHi8 t2addrmode_imm8:$addr)>;
970def : T2Pat<(extloadi16 t2addrmode_so_reg:$addr),
971 (t2LDRHs t2addrmode_so_reg:$addr)>;
972def : T2Pat<(extloadi16 (ARMWrapper tconstpool:$addr)),
973 (t2LDRHpci tconstpool:$addr)>;
Evan Cheng055b0312009-06-29 07:51:04 +0000974
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000975// FIXME: The destination register of the loads and stores can't be PC, but
976// can be SP. We need another regclass (similar to rGPR) to represent
977// that. Not a pressing issue since these are selected manually,
978// not via pattern.
979
Evan Chenge88d5ce2009-07-02 07:28:31 +0000980// Indexed loads
Evan Cheng5fd1c9b2010-05-19 06:07:03 +0000981let mayLoad = 1, neverHasSideEffects = 1 in {
Johnny Chend68e1192009-12-15 17:24:14 +0000982def t2LDR_PRE : T2Iidxldst<0, 0b10, 1, 1, (outs GPR:$dst, GPR:$base_wb),
Evan Chenge88d5ce2009-07-02 07:28:31 +0000983 (ins t2addrmode_imm8:$addr),
David Goodwin5d598aa2009-08-19 18:00:44 +0000984 AddrModeT2_i8, IndexModePre, IIC_iLoadiu,
Evan Cheng699beba2009-10-27 00:08:59 +0000985 "ldr", "\t$dst, $addr!", "$addr.base = $base_wb",
Evan Chenge88d5ce2009-07-02 07:28:31 +0000986 []>;
987
Johnny Chend68e1192009-12-15 17:24:14 +0000988def t2LDR_POST : T2Iidxldst<0, 0b10, 1, 0, (outs GPR:$dst, GPR:$base_wb),
Evan Chenge88d5ce2009-07-02 07:28:31 +0000989 (ins GPR:$base, t2am_imm8_offset:$offset),
David Goodwin5d598aa2009-08-19 18:00:44 +0000990 AddrModeT2_i8, IndexModePost, IIC_iLoadiu,
Evan Cheng699beba2009-10-27 00:08:59 +0000991 "ldr", "\t$dst, [$base], $offset", "$base = $base_wb",
Evan Chenge88d5ce2009-07-02 07:28:31 +0000992 []>;
993
Johnny Chend68e1192009-12-15 17:24:14 +0000994def t2LDRB_PRE : T2Iidxldst<0, 0b00, 1, 1, (outs GPR:$dst, GPR:$base_wb),
Evan Chenge88d5ce2009-07-02 07:28:31 +0000995 (ins t2addrmode_imm8:$addr),
David Goodwin5d598aa2009-08-19 18:00:44 +0000996 AddrModeT2_i8, IndexModePre, IIC_iLoadiu,
Evan Cheng699beba2009-10-27 00:08:59 +0000997 "ldrb", "\t$dst, $addr!", "$addr.base = $base_wb",
Evan Chenge88d5ce2009-07-02 07:28:31 +0000998 []>;
Johnny Chend68e1192009-12-15 17:24:14 +0000999def t2LDRB_POST : T2Iidxldst<0, 0b00, 1, 0, (outs GPR:$dst, GPR:$base_wb),
Evan Chenge88d5ce2009-07-02 07:28:31 +00001000 (ins GPR:$base, t2am_imm8_offset:$offset),
David Goodwin5d598aa2009-08-19 18:00:44 +00001001 AddrModeT2_i8, IndexModePost, IIC_iLoadiu,
Evan Cheng699beba2009-10-27 00:08:59 +00001002 "ldrb", "\t$dst, [$base], $offset", "$base = $base_wb",
Evan Chenge88d5ce2009-07-02 07:28:31 +00001003 []>;
1004
Johnny Chend68e1192009-12-15 17:24:14 +00001005def t2LDRH_PRE : T2Iidxldst<0, 0b01, 1, 1, (outs GPR:$dst, GPR:$base_wb),
Evan Chenge88d5ce2009-07-02 07:28:31 +00001006 (ins t2addrmode_imm8:$addr),
David Goodwin5d598aa2009-08-19 18:00:44 +00001007 AddrModeT2_i8, IndexModePre, IIC_iLoadiu,
Evan Cheng699beba2009-10-27 00:08:59 +00001008 "ldrh", "\t$dst, $addr!", "$addr.base = $base_wb",
Evan Chenge88d5ce2009-07-02 07:28:31 +00001009 []>;
Johnny Chend68e1192009-12-15 17:24:14 +00001010def t2LDRH_POST : T2Iidxldst<0, 0b01, 1, 0, (outs GPR:$dst, GPR:$base_wb),
Evan Chenge88d5ce2009-07-02 07:28:31 +00001011 (ins GPR:$base, t2am_imm8_offset:$offset),
David Goodwin5d598aa2009-08-19 18:00:44 +00001012 AddrModeT2_i8, IndexModePost, IIC_iLoadiu,
Evan Cheng699beba2009-10-27 00:08:59 +00001013 "ldrh", "\t$dst, [$base], $offset", "$base = $base_wb",
Evan Chenge88d5ce2009-07-02 07:28:31 +00001014 []>;
1015
Johnny Chend68e1192009-12-15 17:24:14 +00001016def t2LDRSB_PRE : T2Iidxldst<1, 0b00, 1, 1, (outs GPR:$dst, GPR:$base_wb),
Evan Cheng4fbb9962009-07-02 23:16:11 +00001017 (ins t2addrmode_imm8:$addr),
David Goodwin5d598aa2009-08-19 18:00:44 +00001018 AddrModeT2_i8, IndexModePre, IIC_iLoadiu,
Evan Cheng699beba2009-10-27 00:08:59 +00001019 "ldrsb", "\t$dst, $addr!", "$addr.base = $base_wb",
Evan Cheng4fbb9962009-07-02 23:16:11 +00001020 []>;
Johnny Chend68e1192009-12-15 17:24:14 +00001021def t2LDRSB_POST : T2Iidxldst<1, 0b00, 1, 0, (outs GPR:$dst, GPR:$base_wb),
Evan Cheng4fbb9962009-07-02 23:16:11 +00001022 (ins GPR:$base, t2am_imm8_offset:$offset),
David Goodwin5d598aa2009-08-19 18:00:44 +00001023 AddrModeT2_i8, IndexModePost, IIC_iLoadiu,
Evan Cheng699beba2009-10-27 00:08:59 +00001024 "ldrsb", "\t$dst, [$base], $offset", "$base = $base_wb",
Evan Cheng4fbb9962009-07-02 23:16:11 +00001025 []>;
1026
Johnny Chend68e1192009-12-15 17:24:14 +00001027def t2LDRSH_PRE : T2Iidxldst<1, 0b01, 1, 1, (outs GPR:$dst, GPR:$base_wb),
Evan Cheng4fbb9962009-07-02 23:16:11 +00001028 (ins t2addrmode_imm8:$addr),
David Goodwin5d598aa2009-08-19 18:00:44 +00001029 AddrModeT2_i8, IndexModePre, IIC_iLoadiu,
Evan Cheng699beba2009-10-27 00:08:59 +00001030 "ldrsh", "\t$dst, $addr!", "$addr.base = $base_wb",
Evan Cheng4fbb9962009-07-02 23:16:11 +00001031 []>;
Johnny Chend68e1192009-12-15 17:24:14 +00001032def t2LDRSH_POST : T2Iidxldst<1, 0b01, 1, 0, (outs GPR:$dst, GPR:$base_wb),
Evan Cheng4fbb9962009-07-02 23:16:11 +00001033 (ins GPR:$base, t2am_imm8_offset:$offset),
David Goodwin5d598aa2009-08-19 18:00:44 +00001034 AddrModeT2_i8, IndexModePost, IIC_iLoadiu,
Evan Cheng699beba2009-10-27 00:08:59 +00001035 "ldrsh", "\t$dst, [$base], $offset", "$base = $base_wb",
Evan Cheng4fbb9962009-07-02 23:16:11 +00001036 []>;
Evan Cheng5fd1c9b2010-05-19 06:07:03 +00001037} // mayLoad = 1, neverHasSideEffects = 1
Evan Cheng4fbb9962009-07-02 23:16:11 +00001038
Johnny Chene54a3ef2010-03-03 18:45:36 +00001039// LDRT, LDRBT, LDRHT, LDRSBT, LDRSHT all have offset mode (PUW=0b110) and are
1040// for disassembly only.
1041// Ref: A8.6.57 LDR (immediate, Thumb) Encoding T4
1042class T2IldT<bit signed, bits<2> type, string opc>
1043 : T2Ii8<(outs GPR:$dst), (ins t2addrmode_imm8:$addr), IIC_iLoadi, opc,
1044 "\t$dst, $addr", []> {
1045 let Inst{31-27} = 0b11111;
1046 let Inst{26-25} = 0b00;
1047 let Inst{24} = signed;
1048 let Inst{23} = 0;
1049 let Inst{22-21} = type;
1050 let Inst{20} = 1; // load
1051 let Inst{11} = 1;
1052 let Inst{10-8} = 0b110; // PUW.
1053}
1054
1055def t2LDRT : T2IldT<0, 0b10, "ldrt">;
1056def t2LDRBT : T2IldT<0, 0b00, "ldrbt">;
1057def t2LDRHT : T2IldT<0, 0b01, "ldrht">;
1058def t2LDRSBT : T2IldT<1, 0b00, "ldrsbt">;
1059def t2LDRSHT : T2IldT<1, 0b01, "ldrsht">;
1060
David Goodwin73b8f162009-06-30 22:11:34 +00001061// Store
Jim Grosbach80dc1162010-02-16 21:23:02 +00001062defm t2STR :T2I_st<0b10,"str", BinOpFrag<(store node:$LHS, node:$RHS)>>;
1063defm t2STRB:T2I_st<0b00,"strb",BinOpFrag<(truncstorei8 node:$LHS, node:$RHS)>>;
1064defm t2STRH:T2I_st<0b01,"strh",BinOpFrag<(truncstorei16 node:$LHS, node:$RHS)>>;
David Goodwin73b8f162009-06-30 22:11:34 +00001065
David Goodwin6647cea2009-06-30 22:50:01 +00001066// Store doubleword
Evan Cheng5fd1c9b2010-05-19 06:07:03 +00001067let mayLoad = 1, neverHasSideEffects = 1, hasExtraSrcRegAllocReq = 1 in
Johnny Chend68e1192009-12-15 17:24:14 +00001068def t2STRDi8 : T2Ii8s4<1, 0, 0, (outs),
Evan Chenge298ab22009-09-27 09:46:04 +00001069 (ins GPR:$src1, GPR:$src2, t2addrmode_imm8s4:$addr),
Johnny Chen83142992010-01-05 22:37:28 +00001070 IIC_iStorer, "strd", "\t$src1, $addr", []>;
David Goodwin6647cea2009-06-30 22:50:01 +00001071
Evan Cheng6d94f112009-07-03 00:06:39 +00001072// Indexed stores
Johnny Chend68e1192009-12-15 17:24:14 +00001073def t2STR_PRE : T2Iidxldst<0, 0b10, 0, 1, (outs GPR:$base_wb),
Evan Cheng6d94f112009-07-03 00:06:39 +00001074 (ins GPR:$src, GPR:$base, t2am_imm8_offset:$offset),
David Goodwin5d598aa2009-08-19 18:00:44 +00001075 AddrModeT2_i8, IndexModePre, IIC_iStoreiu,
Evan Cheng699beba2009-10-27 00:08:59 +00001076 "str", "\t$src, [$base, $offset]!", "$base = $base_wb",
Evan Cheng6d94f112009-07-03 00:06:39 +00001077 [(set GPR:$base_wb,
1078 (pre_store GPR:$src, GPR:$base, t2am_imm8_offset:$offset))]>;
1079
Johnny Chend68e1192009-12-15 17:24:14 +00001080def t2STR_POST : T2Iidxldst<0, 0b10, 0, 0, (outs GPR:$base_wb),
Evan Cheng6d94f112009-07-03 00:06:39 +00001081 (ins GPR:$src, GPR:$base, t2am_imm8_offset:$offset),
David Goodwin5d598aa2009-08-19 18:00:44 +00001082 AddrModeT2_i8, IndexModePost, IIC_iStoreiu,
Evan Cheng699beba2009-10-27 00:08:59 +00001083 "str", "\t$src, [$base], $offset", "$base = $base_wb",
Evan Cheng6d94f112009-07-03 00:06:39 +00001084 [(set GPR:$base_wb,
Jim Grosbach6935efc2009-11-24 00:20:27 +00001085 (post_store GPR:$src, GPR:$base, t2am_imm8_offset:$offset))]>;
Evan Cheng6d94f112009-07-03 00:06:39 +00001086
Johnny Chend68e1192009-12-15 17:24:14 +00001087def t2STRH_PRE : T2Iidxldst<0, 0b01, 0, 1, (outs GPR:$base_wb),
Evan Cheng6d94f112009-07-03 00:06:39 +00001088 (ins GPR:$src, GPR:$base, t2am_imm8_offset:$offset),
David Goodwin5d598aa2009-08-19 18:00:44 +00001089 AddrModeT2_i8, IndexModePre, IIC_iStoreiu,
Evan Cheng699beba2009-10-27 00:08:59 +00001090 "strh", "\t$src, [$base, $offset]!", "$base = $base_wb",
Evan Cheng6d94f112009-07-03 00:06:39 +00001091 [(set GPR:$base_wb,
1092 (pre_truncsti16 GPR:$src, GPR:$base, t2am_imm8_offset:$offset))]>;
1093
Johnny Chend68e1192009-12-15 17:24:14 +00001094def t2STRH_POST : T2Iidxldst<0, 0b01, 0, 0, (outs GPR:$base_wb),
Evan Cheng6d94f112009-07-03 00:06:39 +00001095 (ins GPR:$src, GPR:$base, t2am_imm8_offset:$offset),
David Goodwin5d598aa2009-08-19 18:00:44 +00001096 AddrModeT2_i8, IndexModePost, IIC_iStoreiu,
Evan Cheng699beba2009-10-27 00:08:59 +00001097 "strh", "\t$src, [$base], $offset", "$base = $base_wb",
Evan Cheng6d94f112009-07-03 00:06:39 +00001098 [(set GPR:$base_wb,
1099 (post_truncsti16 GPR:$src, GPR:$base, t2am_imm8_offset:$offset))]>;
1100
Johnny Chend68e1192009-12-15 17:24:14 +00001101def t2STRB_PRE : T2Iidxldst<0, 0b00, 0, 1, (outs GPR:$base_wb),
Evan Cheng6d94f112009-07-03 00:06:39 +00001102 (ins GPR:$src, GPR:$base, t2am_imm8_offset:$offset),
David Goodwin5d598aa2009-08-19 18:00:44 +00001103 AddrModeT2_i8, IndexModePre, IIC_iStoreiu,
Evan Cheng699beba2009-10-27 00:08:59 +00001104 "strb", "\t$src, [$base, $offset]!", "$base = $base_wb",
Evan Cheng6d94f112009-07-03 00:06:39 +00001105 [(set GPR:$base_wb,
1106 (pre_truncsti8 GPR:$src, GPR:$base, t2am_imm8_offset:$offset))]>;
1107
Johnny Chend68e1192009-12-15 17:24:14 +00001108def t2STRB_POST : T2Iidxldst<0, 0b00, 0, 0, (outs GPR:$base_wb),
Evan Cheng6d94f112009-07-03 00:06:39 +00001109 (ins GPR:$src, GPR:$base, t2am_imm8_offset:$offset),
David Goodwin5d598aa2009-08-19 18:00:44 +00001110 AddrModeT2_i8, IndexModePost, IIC_iStoreiu,
Evan Cheng699beba2009-10-27 00:08:59 +00001111 "strb", "\t$src, [$base], $offset", "$base = $base_wb",
Evan Cheng6d94f112009-07-03 00:06:39 +00001112 [(set GPR:$base_wb,
1113 (post_truncsti8 GPR:$src, GPR:$base, t2am_imm8_offset:$offset))]>;
1114
Johnny Chene54a3ef2010-03-03 18:45:36 +00001115// STRT, STRBT, STRHT all have offset mode (PUW=0b110) and are for disassembly
1116// only.
1117// Ref: A8.6.193 STR (immediate, Thumb) Encoding T4
1118class T2IstT<bits<2> type, string opc>
1119 : T2Ii8<(outs GPR:$src), (ins t2addrmode_imm8:$addr), IIC_iStorei, opc,
1120 "\t$src, $addr", []> {
1121 let Inst{31-27} = 0b11111;
1122 let Inst{26-25} = 0b00;
1123 let Inst{24} = 0; // not signed
1124 let Inst{23} = 0;
1125 let Inst{22-21} = type;
1126 let Inst{20} = 0; // store
1127 let Inst{11} = 1;
1128 let Inst{10-8} = 0b110; // PUW
1129}
1130
1131def t2STRT : T2IstT<0b10, "strt">;
1132def t2STRBT : T2IstT<0b00, "strbt">;
1133def t2STRHT : T2IstT<0b01, "strht">;
David Goodwind1fa1202009-07-01 00:01:13 +00001134
Johnny Chenae1757b2010-03-11 01:13:36 +00001135// ldrd / strd pre / post variants
1136// For disassembly only.
1137
1138def t2LDRD_PRE : T2Ii8s4<1, 1, 1, (outs GPR:$dst1, GPR:$dst2),
1139 (ins GPR:$base, t2am_imm8s4_offset:$imm), NoItinerary,
1140 "ldrd", "\t$dst1, $dst2, [$base, $imm]!", []>;
1141
1142def t2LDRD_POST : T2Ii8s4<0, 1, 1, (outs GPR:$dst1, GPR:$dst2),
1143 (ins GPR:$base, t2am_imm8s4_offset:$imm), NoItinerary,
1144 "ldrd", "\t$dst1, $dst2, [$base], $imm", []>;
1145
1146def t2STRD_PRE : T2Ii8s4<1, 1, 0, (outs),
1147 (ins GPR:$src1, GPR:$src2, GPR:$base, t2am_imm8s4_offset:$imm),
1148 NoItinerary, "strd", "\t$src1, $src2, [$base, $imm]!", []>;
1149
1150def t2STRD_POST : T2Ii8s4<0, 1, 0, (outs),
1151 (ins GPR:$src1, GPR:$src2, GPR:$base, t2am_imm8s4_offset:$imm),
1152 NoItinerary, "strd", "\t$src1, $src2, [$base], $imm", []>;
Evan Cheng2889cce2009-07-03 00:18:36 +00001153
Johnny Chen0635fc52010-03-04 17:40:44 +00001154// T2Ipl (Preload Data/Instruction) signals the memory system of possible future
1155// data/instruction access. These are for disassembly only.
Johnny Chendd0f3cf2010-03-10 18:59:38 +00001156//
1157// A8.6.117, A8.6.118. Different instructions are generated for #0 and #-0.
1158// The neg_zero operand translates -0 to -1, -1 to -2, ..., etc.
Johnny Chen0635fc52010-03-04 17:40:44 +00001159multiclass T2Ipl<bit instr, bit write, string opc> {
1160
Johnny Chendd0f3cf2010-03-10 18:59:38 +00001161 def i12 : T2I<(outs), (ins GPR:$base, i32imm:$imm), IIC_iLoadi, opc,
1162 "\t[$base, $imm]", []> {
Johnny Chen0635fc52010-03-04 17:40:44 +00001163 let Inst{31-25} = 0b1111100;
1164 let Inst{24} = instr;
1165 let Inst{23} = 1; // U = 1
1166 let Inst{22} = 0;
1167 let Inst{21} = write;
1168 let Inst{20} = 1;
1169 let Inst{15-12} = 0b1111;
1170 }
1171
Johnny Chendd0f3cf2010-03-10 18:59:38 +00001172 def i8 : T2I<(outs), (ins GPR:$base, neg_zero:$imm), IIC_iLoadi, opc,
1173 "\t[$base, $imm]", []> {
Johnny Chen0635fc52010-03-04 17:40:44 +00001174 let Inst{31-25} = 0b1111100;
1175 let Inst{24} = instr;
1176 let Inst{23} = 0; // U = 0
1177 let Inst{22} = 0;
1178 let Inst{21} = write;
1179 let Inst{20} = 1;
1180 let Inst{15-12} = 0b1111;
1181 let Inst{11-8} = 0b1100;
1182 }
1183
Johnny Chendd0f3cf2010-03-10 18:59:38 +00001184 def pci : T2I<(outs), (ins GPR:$base, neg_zero:$imm), IIC_iLoadi, opc,
1185 "\t[pc, $imm]", []> {
Johnny Chen0635fc52010-03-04 17:40:44 +00001186 let Inst{31-25} = 0b1111100;
1187 let Inst{24} = instr;
1188 let Inst{23} = ?; // add = (U == 1)
1189 let Inst{22} = 0;
1190 let Inst{21} = write;
1191 let Inst{20} = 1;
1192 let Inst{19-16} = 0b1111; // Rn = 0b1111
1193 let Inst{15-12} = 0b1111;
1194 }
1195
1196 def r : T2I<(outs), (ins GPR:$base, GPR:$a), IIC_iLoadi, opc,
1197 "\t[$base, $a]", []> {
1198 let Inst{31-25} = 0b1111100;
1199 let Inst{24} = instr;
1200 let Inst{23} = 0; // add = TRUE for T1
1201 let Inst{22} = 0;
1202 let Inst{21} = write;
1203 let Inst{20} = 1;
1204 let Inst{15-12} = 0b1111;
1205 let Inst{11-6} = 0000000;
1206 let Inst{5-4} = 0b00; // no shift is applied
1207 }
1208
1209 def s : T2I<(outs), (ins GPR:$base, GPR:$a, i32imm:$shamt), IIC_iLoadi, opc,
1210 "\t[$base, $a, lsl $shamt]", []> {
1211 let Inst{31-25} = 0b1111100;
1212 let Inst{24} = instr;
1213 let Inst{23} = 0; // add = TRUE for T1
1214 let Inst{22} = 0;
1215 let Inst{21} = write;
1216 let Inst{20} = 1;
1217 let Inst{15-12} = 0b1111;
1218 let Inst{11-6} = 0000000;
1219 }
1220}
1221
1222defm t2PLD : T2Ipl<0, 0, "pld">;
1223defm t2PLDW : T2Ipl<0, 1, "pldw">;
1224defm t2PLI : T2Ipl<1, 0, "pli">;
1225
Evan Cheng2889cce2009-07-03 00:18:36 +00001226//===----------------------------------------------------------------------===//
1227// Load / store multiple Instructions.
1228//
1229
Evan Cheng5fd1c9b2010-05-19 06:07:03 +00001230let mayLoad = 1, neverHasSideEffects = 1, hasExtraDefRegAllocReq = 1 in {
Bob Wilson815baeb2010-03-13 01:08:20 +00001231def t2LDM : T2XI<(outs), (ins addrmode4:$addr, pred:$p,
1232 reglist:$dsts, variable_ops), IIC_iLoadm,
1233 "ldm${addr:submode}${p}${addr:wide}\t$addr, $dsts", []> {
Johnny Chend68e1192009-12-15 17:24:14 +00001234 let Inst{31-27} = 0b11101;
1235 let Inst{26-25} = 0b00;
1236 let Inst{24-23} = {?, ?}; // IA: '01', DB: '10'
1237 let Inst{22} = 0;
Bob Wilson815baeb2010-03-13 01:08:20 +00001238 let Inst{21} = 0; // The W bit.
Johnny Chend68e1192009-12-15 17:24:14 +00001239 let Inst{20} = 1; // Load
1240}
Evan Cheng2889cce2009-07-03 00:18:36 +00001241
Bob Wilson815baeb2010-03-13 01:08:20 +00001242def t2LDM_UPD : T2XIt<(outs GPR:$wb), (ins addrmode4:$addr, pred:$p,
1243 reglist:$dsts, variable_ops), IIC_iLoadm,
Bob Wilsonab346052010-03-16 17:46:45 +00001244 "ldm${addr:submode}${p}${addr:wide}\t$addr!, $dsts",
Bob Wilson815baeb2010-03-13 01:08:20 +00001245 "$addr.addr = $wb", []> {
Johnny Chend68e1192009-12-15 17:24:14 +00001246 let Inst{31-27} = 0b11101;
1247 let Inst{26-25} = 0b00;
1248 let Inst{24-23} = {?, ?}; // IA: '01', DB: '10'
1249 let Inst{22} = 0;
Bob Wilson815baeb2010-03-13 01:08:20 +00001250 let Inst{21} = 1; // The W bit.
1251 let Inst{20} = 1; // Load
1252}
Evan Cheng5fd1c9b2010-05-19 06:07:03 +00001253} // mayLoad, neverHasSideEffects, hasExtraDefRegAllocReq
Bob Wilson815baeb2010-03-13 01:08:20 +00001254
Evan Cheng5fd1c9b2010-05-19 06:07:03 +00001255let mayStore = 1, neverHasSideEffects = 1, hasExtraSrcRegAllocReq = 1 in {
Bob Wilson815baeb2010-03-13 01:08:20 +00001256def t2STM : T2XI<(outs), (ins addrmode4:$addr, pred:$p,
1257 reglist:$srcs, variable_ops), IIC_iStorem,
1258 "stm${addr:submode}${p}${addr:wide}\t$addr, $srcs", []> {
1259 let Inst{31-27} = 0b11101;
1260 let Inst{26-25} = 0b00;
1261 let Inst{24-23} = {?, ?}; // IA: '01', DB: '10'
1262 let Inst{22} = 0;
1263 let Inst{21} = 0; // The W bit.
Johnny Chend68e1192009-12-15 17:24:14 +00001264 let Inst{20} = 0; // Store
1265}
Evan Cheng2889cce2009-07-03 00:18:36 +00001266
Bob Wilson815baeb2010-03-13 01:08:20 +00001267def t2STM_UPD : T2XIt<(outs GPR:$wb), (ins addrmode4:$addr, pred:$p,
1268 reglist:$srcs, variable_ops),
1269 IIC_iStorem,
Bob Wilsonab346052010-03-16 17:46:45 +00001270 "stm${addr:submode}${p}${addr:wide}\t$addr!, $srcs",
Bob Wilson815baeb2010-03-13 01:08:20 +00001271 "$addr.addr = $wb", []> {
1272 let Inst{31-27} = 0b11101;
1273 let Inst{26-25} = 0b00;
1274 let Inst{24-23} = {?, ?}; // IA: '01', DB: '10'
1275 let Inst{22} = 0;
1276 let Inst{21} = 1; // The W bit.
1277 let Inst{20} = 0; // Store
1278}
Evan Cheng5fd1c9b2010-05-19 06:07:03 +00001279} // mayStore, neverHasSideEffects, hasExtraSrcRegAllocReq
Bob Wilson815baeb2010-03-13 01:08:20 +00001280
Evan Cheng9cb9e672009-06-27 02:26:13 +00001281//===----------------------------------------------------------------------===//
Anton Korobeynikov52237112009-06-17 18:13:58 +00001282// Move Instructions.
1283//
Anton Korobeynikov52237112009-06-17 18:13:58 +00001284
Evan Chengf49810c2009-06-23 17:48:47 +00001285let neverHasSideEffects = 1 in
David Goodwin5d598aa2009-08-19 18:00:44 +00001286def t2MOVr : T2sI<(outs GPR:$dst), (ins GPR:$src), IIC_iMOVr,
Johnny Chend68e1192009-12-15 17:24:14 +00001287 "mov", ".w\t$dst, $src", []> {
1288 let Inst{31-27} = 0b11101;
1289 let Inst{26-25} = 0b01;
1290 let Inst{24-21} = 0b0010;
1291 let Inst{20} = ?; // The S bit.
1292 let Inst{19-16} = 0b1111; // Rn
1293 let Inst{14-12} = 0b000;
1294 let Inst{7-4} = 0b0000;
1295}
Evan Chengf49810c2009-06-23 17:48:47 +00001296
Evan Cheng5adb66a2009-09-28 09:14:39 +00001297// AddedComplexity to ensure isel tries t2MOVi before t2MOVi16.
1298let isReMaterializable = 1, isAsCheapAsAMove = 1, AddedComplexity = 1 in
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001299def t2MOVi : T2sI<(outs rGPR:$dst), (ins t2_so_imm:$src), IIC_iMOVi,
Evan Cheng699beba2009-10-27 00:08:59 +00001300 "mov", ".w\t$dst, $src",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001301 [(set rGPR:$dst, t2_so_imm:$src)]> {
Johnny Chend68e1192009-12-15 17:24:14 +00001302 let Inst{31-27} = 0b11110;
1303 let Inst{25} = 0;
1304 let Inst{24-21} = 0b0010;
1305 let Inst{20} = ?; // The S bit.
1306 let Inst{19-16} = 0b1111; // Rn
1307 let Inst{15} = 0;
1308}
David Goodwin83b35932009-06-26 16:10:07 +00001309
1310let isReMaterializable = 1, isAsCheapAsAMove = 1 in
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001311def t2MOVi16 : T2I<(outs rGPR:$dst), (ins i32imm:$src), IIC_iMOVi,
Evan Cheng699beba2009-10-27 00:08:59 +00001312 "movw", "\t$dst, $src",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001313 [(set rGPR:$dst, imm0_65535:$src)]> {
Johnny Chend68e1192009-12-15 17:24:14 +00001314 let Inst{31-27} = 0b11110;
1315 let Inst{25} = 1;
1316 let Inst{24-21} = 0b0010;
1317 let Inst{20} = 0; // The S bit.
1318 let Inst{15} = 0;
1319}
Evan Chengf49810c2009-06-23 17:48:47 +00001320
Evan Cheng3850a6a2009-06-23 05:23:49 +00001321let Constraints = "$src = $dst" in
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001322def t2MOVTi16 : T2I<(outs rGPR:$dst), (ins rGPR:$src, i32imm:$imm), IIC_iMOVi,
Evan Cheng699beba2009-10-27 00:08:59 +00001323 "movt", "\t$dst, $imm",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001324 [(set rGPR:$dst,
1325 (or (and rGPR:$src, 0xffff), lo16AllZero:$imm))]> {
Johnny Chend68e1192009-12-15 17:24:14 +00001326 let Inst{31-27} = 0b11110;
1327 let Inst{25} = 1;
1328 let Inst{24-21} = 0b0110;
1329 let Inst{20} = 0; // The S bit.
1330 let Inst{15} = 0;
1331}
Anton Korobeynikov52237112009-06-17 18:13:58 +00001332
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001333def : T2Pat<(or rGPR:$src, 0xffff0000), (t2MOVTi16 rGPR:$src, 0xffff)>;
Evan Cheng20956592009-10-21 08:15:52 +00001334
Anton Korobeynikov52237112009-06-17 18:13:58 +00001335//===----------------------------------------------------------------------===//
Evan Chengd27c9fc2009-07-03 01:43:10 +00001336// Extend Instructions.
1337//
1338
1339// Sign extenders
1340
Johnny Chend68e1192009-12-15 17:24:14 +00001341defm t2SXTB : T2I_unary_rrot<0b100, "sxtb",
1342 UnOpFrag<(sext_inreg node:$Src, i8)>>;
1343defm t2SXTH : T2I_unary_rrot<0b000, "sxth",
1344 UnOpFrag<(sext_inreg node:$Src, i16)>>;
Eli Friedman761fa7a2010-06-24 18:20:04 +00001345defm t2SXTB16 : T2I_unary_rrot_sxtb16<0b010, "sxtb16">;
Evan Chengd27c9fc2009-07-03 01:43:10 +00001346
Johnny Chend68e1192009-12-15 17:24:14 +00001347defm t2SXTAB : T2I_bin_rrot<0b100, "sxtab",
Evan Chengd27c9fc2009-07-03 01:43:10 +00001348 BinOpFrag<(add node:$LHS, (sext_inreg node:$RHS, i8))>>;
Johnny Chend68e1192009-12-15 17:24:14 +00001349defm t2SXTAH : T2I_bin_rrot<0b000, "sxtah",
Evan Chengd27c9fc2009-07-03 01:43:10 +00001350 BinOpFrag<(add node:$LHS, (sext_inreg node:$RHS,i16))>>;
Johnny Chen93042d12010-03-02 18:14:57 +00001351defm t2SXTAB16 : T2I_bin_rrot_DO<0b010, "sxtab16">;
Evan Chengd27c9fc2009-07-03 01:43:10 +00001352
Johnny Chen93042d12010-03-02 18:14:57 +00001353// TODO: SXT(A){B|H}16 - done for disassembly only
Evan Chengd27c9fc2009-07-03 01:43:10 +00001354
1355// Zero extenders
1356
1357let AddedComplexity = 16 in {
Johnny Chend68e1192009-12-15 17:24:14 +00001358defm t2UXTB : T2I_unary_rrot<0b101, "uxtb",
1359 UnOpFrag<(and node:$Src, 0x000000FF)>>;
1360defm t2UXTH : T2I_unary_rrot<0b001, "uxth",
1361 UnOpFrag<(and node:$Src, 0x0000FFFF)>>;
Eli Friedman761fa7a2010-06-24 18:20:04 +00001362defm t2UXTB16 : T2I_unary_rrot_uxtb16<0b011, "uxtb16",
Johnny Chend68e1192009-12-15 17:24:14 +00001363 UnOpFrag<(and node:$Src, 0x00FF00FF)>>;
Evan Chengd27c9fc2009-07-03 01:43:10 +00001364
Jim Grosbach79464942010-07-28 23:17:45 +00001365// FIXME: This pattern incorrectly assumes the shl operator is a rotate.
1366// The transformation should probably be done as a combiner action
1367// instead so we can include a check for masking back in the upper
1368// eight bits of the source into the lower eight bits of the result.
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001369//def : T2Pat<(and (shl rGPR:$Src, (i32 8)), 0xFF00FF),
1370// (t2UXTB16r_rot rGPR:$Src, 24)>, Requires<[HasT2ExtractPack]>;
1371def : T2Pat<(and (srl rGPR:$Src, (i32 8)), 0xFF00FF),
1372 (t2UXTB16r_rot rGPR:$Src, 8)>, Requires<[HasT2ExtractPack]>;
Evan Chengd27c9fc2009-07-03 01:43:10 +00001373
Johnny Chend68e1192009-12-15 17:24:14 +00001374defm t2UXTAB : T2I_bin_rrot<0b101, "uxtab",
Jim Grosbach6935efc2009-11-24 00:20:27 +00001375 BinOpFrag<(add node:$LHS, (and node:$RHS, 0x00FF))>>;
Johnny Chend68e1192009-12-15 17:24:14 +00001376defm t2UXTAH : T2I_bin_rrot<0b001, "uxtah",
Jim Grosbach6935efc2009-11-24 00:20:27 +00001377 BinOpFrag<(add node:$LHS, (and node:$RHS, 0xFFFF))>>;
Johnny Chen93042d12010-03-02 18:14:57 +00001378defm t2UXTAB16 : T2I_bin_rrot_DO<0b011, "uxtab16">;
Evan Chengd27c9fc2009-07-03 01:43:10 +00001379}
1380
1381//===----------------------------------------------------------------------===//
Anton Korobeynikov52237112009-06-17 18:13:58 +00001382// Arithmetic Instructions.
1383//
Anton Korobeynikov52237112009-06-17 18:13:58 +00001384
Johnny Chend68e1192009-12-15 17:24:14 +00001385defm t2ADD : T2I_bin_ii12rs<0b000, "add",
1386 BinOpFrag<(add node:$LHS, node:$RHS)>, 1>;
1387defm t2SUB : T2I_bin_ii12rs<0b101, "sub",
1388 BinOpFrag<(sub node:$LHS, node:$RHS)>>;
Anton Korobeynikov52237112009-06-17 18:13:58 +00001389
Evan Chengf49810c2009-06-23 17:48:47 +00001390// ADD and SUB with 's' bit set. No 12-bit immediate (T4) variants.
Johnny Chend68e1192009-12-15 17:24:14 +00001391defm t2ADDS : T2I_bin_s_irs <0b1000, "add",
1392 BinOpFrag<(addc node:$LHS, node:$RHS)>, 1>;
1393defm t2SUBS : T2I_bin_s_irs <0b1101, "sub",
1394 BinOpFrag<(subc node:$LHS, node:$RHS)>>;
Anton Korobeynikov52237112009-06-17 18:13:58 +00001395
Johnny Chend68e1192009-12-15 17:24:14 +00001396defm t2ADC : T2I_adde_sube_irs<0b1010, "adc",
Jim Grosbach39be8fc2010-02-16 20:42:29 +00001397 BinOpFrag<(adde_dead_carry node:$LHS, node:$RHS)>, 1>;
Johnny Chend68e1192009-12-15 17:24:14 +00001398defm t2SBC : T2I_adde_sube_irs<0b1011, "sbc",
Jim Grosbach39be8fc2010-02-16 20:42:29 +00001399 BinOpFrag<(sube_dead_carry node:$LHS, node:$RHS)>>;
Johnny Chenb5031ad2010-03-02 19:38:59 +00001400defm t2ADCS : T2I_adde_sube_s_irs<0b1010, "adc",
Jim Grosbach39be8fc2010-02-16 20:42:29 +00001401 BinOpFrag<(adde_live_carry node:$LHS, node:$RHS)>, 1>;
Johnny Chenb5031ad2010-03-02 19:38:59 +00001402defm t2SBCS : T2I_adde_sube_s_irs<0b1011, "sbc",
Jim Grosbach39be8fc2010-02-16 20:42:29 +00001403 BinOpFrag<(sube_live_carry node:$LHS, node:$RHS)>>;
Evan Chengf49810c2009-06-23 17:48:47 +00001404
David Goodwin752aa7d2009-07-27 16:39:05 +00001405// RSB
Bob Wilson20d8e4e2010-08-13 23:24:25 +00001406defm t2RSB : T2I_rbin_irs <0b1110, "rsb",
Johnny Chend68e1192009-12-15 17:24:14 +00001407 BinOpFrag<(sub node:$LHS, node:$RHS)>>;
1408defm t2RSBS : T2I_rbin_s_is <0b1110, "rsb",
1409 BinOpFrag<(subc node:$LHS, node:$RHS)>>;
Evan Chengf49810c2009-06-23 17:48:47 +00001410
1411// (sub X, imm) gets canonicalized to (add X, -imm). Match this form.
Jim Grosbach502e0aa2010-07-14 17:45:16 +00001412// The assume-no-carry-in form uses the negation of the input since add/sub
1413// assume opposite meanings of the carry flag (i.e., carry == !borrow).
1414// See the definition of AddWithCarry() in the ARM ARM A2.2.1 for the gory
1415// details.
1416// The AddedComplexity preferences the first variant over the others since
1417// it can be shrunk to a 16-bit wide encoding, while the others cannot.
Evan Chengfa2ea1a2009-08-04 01:41:15 +00001418let AddedComplexity = 1 in
Jim Grosbach502e0aa2010-07-14 17:45:16 +00001419def : T2Pat<(add GPR:$src, imm0_255_neg:$imm),
1420 (t2SUBri GPR:$src, imm0_255_neg:$imm)>;
1421def : T2Pat<(add GPR:$src, t2_so_imm_neg:$imm),
1422 (t2SUBri GPR:$src, t2_so_imm_neg:$imm)>;
1423def : T2Pat<(add GPR:$src, imm0_4095_neg:$imm),
1424 (t2SUBri12 GPR:$src, imm0_4095_neg:$imm)>;
1425let AddedComplexity = 1 in
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001426def : T2Pat<(addc rGPR:$src, imm0_255_neg:$imm),
1427 (t2SUBSri rGPR:$src, imm0_255_neg:$imm)>;
1428def : T2Pat<(addc rGPR:$src, t2_so_imm_neg:$imm),
1429 (t2SUBSri rGPR:$src, t2_so_imm_neg:$imm)>;
Jim Grosbach502e0aa2010-07-14 17:45:16 +00001430// The with-carry-in form matches bitwise not instead of the negation.
1431// Effectively, the inverse interpretation of the carry flag already accounts
1432// for part of the negation.
1433let AddedComplexity = 1 in
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001434def : T2Pat<(adde rGPR:$src, imm0_255_not:$imm),
1435 (t2SBCSri rGPR:$src, imm0_255_not:$imm)>;
1436def : T2Pat<(adde rGPR:$src, t2_so_imm_not:$imm),
1437 (t2SBCSri rGPR:$src, t2_so_imm_not:$imm)>;
Anton Korobeynikov52237112009-06-17 18:13:58 +00001438
Johnny Chen93042d12010-03-02 18:14:57 +00001439// Select Bytes -- for disassembly only
1440
1441def t2SEL : T2I<(outs GPR:$dst), (ins GPR:$a, GPR:$b), NoItinerary, "sel",
1442 "\t$dst, $a, $b", []> {
1443 let Inst{31-27} = 0b11111;
1444 let Inst{26-24} = 0b010;
1445 let Inst{23} = 0b1;
1446 let Inst{22-20} = 0b010;
1447 let Inst{15-12} = 0b1111;
1448 let Inst{7} = 0b1;
1449 let Inst{6-4} = 0b000;
1450}
1451
Johnny Chenadc77332010-02-26 22:04:29 +00001452// A6.3.13, A6.3.14, A6.3.15 Parallel addition and subtraction (signed/unsigned)
1453// And Miscellaneous operations -- for disassembly only
Nate Begeman692433b2010-07-29 17:56:55 +00001454class T2I_pam<bits<3> op22_20, bits<4> op7_4, string opc,
1455 list<dag> pat = [/* For disassembly only; pattern left blank */]>
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001456 : T2I<(outs rGPR:$dst), (ins rGPR:$a, rGPR:$b), NoItinerary, opc,
Nate Begeman692433b2010-07-29 17:56:55 +00001457 "\t$dst, $a, $b", pat> {
Johnny Chenadc77332010-02-26 22:04:29 +00001458 let Inst{31-27} = 0b11111;
1459 let Inst{26-23} = 0b0101;
1460 let Inst{22-20} = op22_20;
1461 let Inst{15-12} = 0b1111;
1462 let Inst{7-4} = op7_4;
1463}
1464
1465// Saturating add/subtract -- for disassembly only
1466
Nate Begeman692433b2010-07-29 17:56:55 +00001467def t2QADD : T2I_pam<0b000, 0b1000, "qadd",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001468 [(set rGPR:$dst, (int_arm_qadd rGPR:$a, rGPR:$b))]>;
Johnny Chenadc77332010-02-26 22:04:29 +00001469def t2QADD16 : T2I_pam<0b001, 0b0001, "qadd16">;
1470def t2QADD8 : T2I_pam<0b000, 0b0001, "qadd8">;
1471def t2QASX : T2I_pam<0b010, 0b0001, "qasx">;
1472def t2QDADD : T2I_pam<0b000, 0b1001, "qdadd">;
1473def t2QDSUB : T2I_pam<0b000, 0b1011, "qdsub">;
1474def t2QSAX : T2I_pam<0b110, 0b0001, "qsax">;
Nate Begeman692433b2010-07-29 17:56:55 +00001475def t2QSUB : T2I_pam<0b000, 0b1010, "qsub",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001476 [(set rGPR:$dst, (int_arm_qsub rGPR:$a, rGPR:$b))]>;
Johnny Chenadc77332010-02-26 22:04:29 +00001477def t2QSUB16 : T2I_pam<0b101, 0b0001, "qsub16">;
1478def t2QSUB8 : T2I_pam<0b100, 0b0001, "qsub8">;
1479def t2UQADD16 : T2I_pam<0b001, 0b0101, "uqadd16">;
1480def t2UQADD8 : T2I_pam<0b000, 0b0101, "uqadd8">;
1481def t2UQASX : T2I_pam<0b010, 0b0101, "uqasx">;
1482def t2UQSAX : T2I_pam<0b110, 0b0101, "uqsax">;
1483def t2UQSUB16 : T2I_pam<0b101, 0b0101, "uqsub16">;
1484def t2UQSUB8 : T2I_pam<0b100, 0b0101, "uqsub8">;
1485
1486// Signed/Unsigned add/subtract -- for disassembly only
1487
1488def t2SASX : T2I_pam<0b010, 0b0000, "sasx">;
1489def t2SADD16 : T2I_pam<0b001, 0b0000, "sadd16">;
1490def t2SADD8 : T2I_pam<0b000, 0b0000, "sadd8">;
1491def t2SSAX : T2I_pam<0b110, 0b0000, "ssax">;
1492def t2SSUB16 : T2I_pam<0b101, 0b0000, "ssub16">;
1493def t2SSUB8 : T2I_pam<0b100, 0b0000, "ssub8">;
1494def t2UASX : T2I_pam<0b010, 0b0100, "uasx">;
1495def t2UADD16 : T2I_pam<0b001, 0b0100, "uadd16">;
1496def t2UADD8 : T2I_pam<0b000, 0b0100, "uadd8">;
1497def t2USAX : T2I_pam<0b110, 0b0100, "usax">;
1498def t2USUB16 : T2I_pam<0b101, 0b0100, "usub16">;
1499def t2USUB8 : T2I_pam<0b100, 0b0100, "usub8">;
1500
1501// Signed/Unsigned halving add/subtract -- for disassembly only
1502
1503def t2SHASX : T2I_pam<0b010, 0b0010, "shasx">;
1504def t2SHADD16 : T2I_pam<0b001, 0b0010, "shadd16">;
1505def t2SHADD8 : T2I_pam<0b000, 0b0010, "shadd8">;
1506def t2SHSAX : T2I_pam<0b110, 0b0010, "shsax">;
1507def t2SHSUB16 : T2I_pam<0b101, 0b0010, "shsub16">;
1508def t2SHSUB8 : T2I_pam<0b100, 0b0010, "shsub8">;
1509def t2UHASX : T2I_pam<0b010, 0b0110, "uhasx">;
1510def t2UHADD16 : T2I_pam<0b001, 0b0110, "uhadd16">;
1511def t2UHADD8 : T2I_pam<0b000, 0b0110, "uhadd8">;
1512def t2UHSAX : T2I_pam<0b110, 0b0110, "uhsax">;
1513def t2UHSUB16 : T2I_pam<0b101, 0b0110, "uhsub16">;
1514def t2UHSUB8 : T2I_pam<0b100, 0b0110, "uhsub8">;
1515
1516// Unsigned Sum of Absolute Differences [and Accumulate] -- for disassembly only
1517
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001518def t2USAD8 : T2I_mac<0, 0b111, 0b0000, (outs rGPR:$dst),
1519 (ins rGPR:$a, rGPR:$b),
Johnny Chenadc77332010-02-26 22:04:29 +00001520 NoItinerary, "usad8", "\t$dst, $a, $b", []> {
1521 let Inst{15-12} = 0b1111;
1522}
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001523def t2USADA8 : T2I_mac<0, 0b111, 0b0000, (outs rGPR:$dst),
1524 (ins rGPR:$a, rGPR:$b, rGPR:$acc), NoItinerary, "usada8",
Johnny Chenadc77332010-02-26 22:04:29 +00001525 "\t$dst, $a, $b, $acc", []>;
1526
1527// Signed/Unsigned saturate -- for disassembly only
1528
Bob Wilson22f5dc72010-08-16 18:27:34 +00001529def t2SSAT: T2I<(outs rGPR:$dst), (ins i32imm:$bit_pos, rGPR:$a, shift_imm:$sh),
Bob Wilson38aa2872010-08-13 21:48:10 +00001530 NoItinerary, "ssat", "\t$dst, $bit_pos, $a$sh",
1531 [/* For disassembly only; pattern left blank */]> {
Johnny Chenadc77332010-02-26 22:04:29 +00001532 let Inst{31-27} = 0b11110;
1533 let Inst{25-22} = 0b1100;
1534 let Inst{20} = 0;
1535 let Inst{15} = 0;
Johnny Chenadc77332010-02-26 22:04:29 +00001536}
1537
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001538def t2SSAT16: T2I<(outs rGPR:$dst), (ins i32imm:$bit_pos, rGPR:$a), NoItinerary,
Johnny Chenadc77332010-02-26 22:04:29 +00001539 "ssat16", "\t$dst, $bit_pos, $a",
1540 [/* For disassembly only; pattern left blank */]> {
1541 let Inst{31-27} = 0b11110;
1542 let Inst{25-22} = 0b1100;
1543 let Inst{20} = 0;
1544 let Inst{15} = 0;
1545 let Inst{21} = 1; // sh = '1'
1546 let Inst{14-12} = 0b000; // imm3 = '000'
1547 let Inst{7-6} = 0b00; // imm2 = '00'
1548}
1549
Bob Wilson22f5dc72010-08-16 18:27:34 +00001550def t2USAT: T2I<(outs rGPR:$dst), (ins i32imm:$bit_pos, rGPR:$a, shift_imm:$sh),
Bob Wilson38aa2872010-08-13 21:48:10 +00001551 NoItinerary, "usat", "\t$dst, $bit_pos, $a$sh",
1552 [/* For disassembly only; pattern left blank */]> {
Johnny Chenadc77332010-02-26 22:04:29 +00001553 let Inst{31-27} = 0b11110;
1554 let Inst{25-22} = 0b1110;
1555 let Inst{20} = 0;
1556 let Inst{15} = 0;
Johnny Chenadc77332010-02-26 22:04:29 +00001557}
1558
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001559def t2USAT16: T2I<(outs rGPR:$dst), (ins i32imm:$bit_pos, rGPR:$a), NoItinerary,
Johnny Chenadc77332010-02-26 22:04:29 +00001560 "usat16", "\t$dst, $bit_pos, $a",
1561 [/* For disassembly only; pattern left blank */]> {
1562 let Inst{31-27} = 0b11110;
1563 let Inst{25-22} = 0b1110;
1564 let Inst{20} = 0;
1565 let Inst{15} = 0;
1566 let Inst{21} = 1; // sh = '1'
1567 let Inst{14-12} = 0b000; // imm3 = '000'
1568 let Inst{7-6} = 0b00; // imm2 = '00'
1569}
Anton Korobeynikov52237112009-06-17 18:13:58 +00001570
Bob Wilson38aa2872010-08-13 21:48:10 +00001571def : T2Pat<(int_arm_ssat GPR:$a, imm:$pos), (t2SSAT imm:$pos, GPR:$a, 0)>;
1572def : T2Pat<(int_arm_usat GPR:$a, imm:$pos), (t2USAT imm:$pos, GPR:$a, 0)>;
Nate Begeman0e0a20e2010-07-29 22:48:09 +00001573
Evan Chengf49810c2009-06-23 17:48:47 +00001574//===----------------------------------------------------------------------===//
Evan Chenga67efd12009-06-23 19:39:13 +00001575// Shift and rotate Instructions.
1576//
1577
Johnny Chend68e1192009-12-15 17:24:14 +00001578defm t2LSL : T2I_sh_ir<0b00, "lsl", BinOpFrag<(shl node:$LHS, node:$RHS)>>;
1579defm t2LSR : T2I_sh_ir<0b01, "lsr", BinOpFrag<(srl node:$LHS, node:$RHS)>>;
1580defm t2ASR : T2I_sh_ir<0b10, "asr", BinOpFrag<(sra node:$LHS, node:$RHS)>>;
1581defm t2ROR : T2I_sh_ir<0b11, "ror", BinOpFrag<(rotr node:$LHS, node:$RHS)>>;
Evan Chenga67efd12009-06-23 19:39:13 +00001582
David Goodwinca01a8d2009-09-01 18:32:09 +00001583let Uses = [CPSR] in {
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001584def t2MOVrx : T2sI<(outs rGPR:$dst), (ins rGPR:$src), IIC_iMOVsi,
Evan Cheng699beba2009-10-27 00:08:59 +00001585 "rrx", "\t$dst, $src",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001586 [(set rGPR:$dst, (ARMrrx rGPR:$src))]> {
Johnny Chend68e1192009-12-15 17:24:14 +00001587 let Inst{31-27} = 0b11101;
1588 let Inst{26-25} = 0b01;
1589 let Inst{24-21} = 0b0010;
1590 let Inst{20} = ?; // The S bit.
1591 let Inst{19-16} = 0b1111; // Rn
1592 let Inst{14-12} = 0b000;
1593 let Inst{7-4} = 0b0011;
1594}
David Goodwinca01a8d2009-09-01 18:32:09 +00001595}
Evan Chenga67efd12009-06-23 19:39:13 +00001596
David Goodwin3583df72009-07-28 17:06:49 +00001597let Defs = [CPSR] in {
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001598def t2MOVsrl_flag : T2I<(outs rGPR:$dst), (ins rGPR:$src), IIC_iMOVsi,
Bob Wilsona85df802010-05-25 04:51:47 +00001599 "lsrs", ".w\t$dst, $src, #1",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001600 [(set rGPR:$dst, (ARMsrl_flag rGPR:$src))]> {
Johnny Chend68e1192009-12-15 17:24:14 +00001601 let Inst{31-27} = 0b11101;
1602 let Inst{26-25} = 0b01;
1603 let Inst{24-21} = 0b0010;
1604 let Inst{20} = 1; // The S bit.
1605 let Inst{19-16} = 0b1111; // Rn
1606 let Inst{5-4} = 0b01; // Shift type.
1607 // Shift amount = Inst{14-12:7-6} = 1.
1608 let Inst{14-12} = 0b000;
1609 let Inst{7-6} = 0b01;
1610}
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001611def t2MOVsra_flag : T2I<(outs rGPR:$dst), (ins rGPR:$src), IIC_iMOVsi,
Bob Wilsona85df802010-05-25 04:51:47 +00001612 "asrs", ".w\t$dst, $src, #1",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001613 [(set rGPR:$dst, (ARMsra_flag rGPR:$src))]> {
Johnny Chend68e1192009-12-15 17:24:14 +00001614 let Inst{31-27} = 0b11101;
1615 let Inst{26-25} = 0b01;
1616 let Inst{24-21} = 0b0010;
1617 let Inst{20} = 1; // The S bit.
1618 let Inst{19-16} = 0b1111; // Rn
1619 let Inst{5-4} = 0b10; // Shift type.
1620 // Shift amount = Inst{14-12:7-6} = 1.
1621 let Inst{14-12} = 0b000;
1622 let Inst{7-6} = 0b01;
1623}
David Goodwin3583df72009-07-28 17:06:49 +00001624}
1625
Evan Chenga67efd12009-06-23 19:39:13 +00001626//===----------------------------------------------------------------------===//
Evan Chengf49810c2009-06-23 17:48:47 +00001627// Bitwise Instructions.
1628//
Anton Korobeynikov52237112009-06-17 18:13:58 +00001629
Johnny Chend68e1192009-12-15 17:24:14 +00001630defm t2AND : T2I_bin_w_irs<0b0000, "and",
1631 BinOpFrag<(and node:$LHS, node:$RHS)>, 1>;
1632defm t2ORR : T2I_bin_w_irs<0b0010, "orr",
1633 BinOpFrag<(or node:$LHS, node:$RHS)>, 1>;
1634defm t2EOR : T2I_bin_w_irs<0b0100, "eor",
1635 BinOpFrag<(xor node:$LHS, node:$RHS)>, 1>;
Evan Chengf49810c2009-06-23 17:48:47 +00001636
Johnny Chend68e1192009-12-15 17:24:14 +00001637defm t2BIC : T2I_bin_w_irs<0b0001, "bic",
1638 BinOpFrag<(and node:$LHS, (not node:$RHS))>>;
Evan Chengf49810c2009-06-23 17:48:47 +00001639
Bill Wendling0b4aa7d2010-08-29 03:02:11 +00001640let Defs = [CPSR] in
Bill Wendling1f7bf0e2010-08-29 03:55:31 +00001641defm t2ANDS : T2I_bin_sw_irs<0b0000, "and",
1642 BinOpFrag<(ARMand node:$LHS, node:$RHS)>, 1>;
Bill Wendling0b4aa7d2010-08-29 03:02:11 +00001643
Evan Chengf49810c2009-06-23 17:48:47 +00001644let Constraints = "$src = $dst" in
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001645def t2BFC : T2I<(outs rGPR:$dst), (ins rGPR:$src, bf_inv_mask_imm:$imm),
David Goodwin2f54a2f2009-11-02 17:28:36 +00001646 IIC_iUNAsi, "bfc", "\t$dst, $imm",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001647 [(set rGPR:$dst, (and rGPR:$src, bf_inv_mask_imm:$imm))]> {
Johnny Chend68e1192009-12-15 17:24:14 +00001648 let Inst{31-27} = 0b11110;
1649 let Inst{25} = 1;
1650 let Inst{24-20} = 0b10110;
1651 let Inst{19-16} = 0b1111; // Rn
1652 let Inst{15} = 0;
1653}
Evan Chengf49810c2009-06-23 17:48:47 +00001654
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001655def t2SBFX: T2I<(outs rGPR:$dst), (ins rGPR:$src, imm0_31:$lsb, imm0_31:$width),
Johnny Chend68e1192009-12-15 17:24:14 +00001656 IIC_iALUi, "sbfx", "\t$dst, $src, $lsb, $width", []> {
1657 let Inst{31-27} = 0b11110;
1658 let Inst{25} = 1;
1659 let Inst{24-20} = 0b10100;
1660 let Inst{15} = 0;
1661}
Sandeep Patel47eedaa2009-10-13 18:59:48 +00001662
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001663def t2UBFX: T2I<(outs rGPR:$dst), (ins rGPR:$src, imm0_31:$lsb, imm0_31:$width),
Johnny Chend68e1192009-12-15 17:24:14 +00001664 IIC_iALUi, "ubfx", "\t$dst, $src, $lsb, $width", []> {
1665 let Inst{31-27} = 0b11110;
1666 let Inst{25} = 1;
1667 let Inst{24-20} = 0b11100;
1668 let Inst{15} = 0;
1669}
Sandeep Patel47eedaa2009-10-13 18:59:48 +00001670
Johnny Chen9474d552010-02-02 19:31:58 +00001671// A8.6.18 BFI - Bitfield insert (Encoding T1)
Jim Grosbach469bbdb2010-07-16 23:05:05 +00001672let Constraints = "$src = $dst" in
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001673def t2BFI : T2I<(outs rGPR:$dst),
1674 (ins rGPR:$src, rGPR:$val, bf_inv_mask_imm:$imm),
Jim Grosbach469bbdb2010-07-16 23:05:05 +00001675 IIC_iALUi, "bfi", "\t$dst, $val, $imm",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001676 [(set rGPR:$dst, (ARMbfi rGPR:$src, rGPR:$val,
Jim Grosbach469bbdb2010-07-16 23:05:05 +00001677 bf_inv_mask_imm:$imm))]> {
Johnny Chen9474d552010-02-02 19:31:58 +00001678 let Inst{31-27} = 0b11110;
1679 let Inst{25} = 1;
1680 let Inst{24-20} = 0b10110;
1681 let Inst{15} = 0;
1682}
Evan Chengf49810c2009-06-23 17:48:47 +00001683
Johnny Chend68e1192009-12-15 17:24:14 +00001684defm t2ORN : T2I_bin_irs<0b0011, "orn", BinOpFrag<(or node:$LHS,
Bill Wendling1f7bf0e2010-08-29 03:55:31 +00001685 (not node:$RHS))>, 0, "", ?>;
Evan Cheng36a0aeb2009-07-06 22:23:46 +00001686
1687// Prefer over of t2EORri ra, rb, -1 because mvn has 16-bit version
1688let AddedComplexity = 1 in
Johnny Chend68e1192009-12-15 17:24:14 +00001689defm t2MVN : T2I_un_irs <0b0011, "mvn", UnOpFrag<(not node:$Src)>, 1, 1>;
Evan Cheng36a0aeb2009-07-06 22:23:46 +00001690
1691
Jim Grosbachf084a5e2010-07-20 16:07:04 +00001692let AddedComplexity = 1 in
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001693def : T2Pat<(and rGPR:$src, t2_so_imm_not:$imm),
1694 (t2BICri rGPR:$src, t2_so_imm_not:$imm)>;
Evan Cheng36a0aeb2009-07-06 22:23:46 +00001695
Evan Cheng25f7cfc2009-08-01 06:13:52 +00001696// FIXME: Disable this pattern on Darwin to workaround an assembler bug.
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001697def : T2Pat<(or rGPR:$src, t2_so_imm_not:$imm),
1698 (t2ORNri rGPR:$src, t2_so_imm_not:$imm)>,
Evan Chengea253b92009-08-12 01:56:42 +00001699 Requires<[IsThumb2]>;
Evan Cheng36a0aeb2009-07-06 22:23:46 +00001700
1701def : T2Pat<(t2_so_imm_not:$src),
1702 (t2MVNi t2_so_imm_not:$src)>;
1703
Evan Chengf49810c2009-06-23 17:48:47 +00001704//===----------------------------------------------------------------------===//
1705// Multiply Instructions.
1706//
Evan Cheng8de898a2009-06-26 00:19:44 +00001707let isCommutable = 1 in
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001708def t2MUL: T2I<(outs rGPR:$dst), (ins rGPR:$a, rGPR:$b), IIC_iMUL32,
Evan Cheng699beba2009-10-27 00:08:59 +00001709 "mul", "\t$dst, $a, $b",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001710 [(set rGPR:$dst, (mul rGPR:$a, rGPR:$b))]> {
Johnny Chend68e1192009-12-15 17:24:14 +00001711 let Inst{31-27} = 0b11111;
1712 let Inst{26-23} = 0b0110;
1713 let Inst{22-20} = 0b000;
1714 let Inst{15-12} = 0b1111; // Ra = 0b1111 (no accumulate)
1715 let Inst{7-4} = 0b0000; // Multiply
1716}
Evan Chengf49810c2009-06-23 17:48:47 +00001717
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001718def t2MLA: T2I<(outs rGPR:$dst), (ins rGPR:$a, rGPR:$b, rGPR:$c), IIC_iMAC32,
Evan Cheng699beba2009-10-27 00:08:59 +00001719 "mla", "\t$dst, $a, $b, $c",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001720 [(set rGPR:$dst, (add (mul rGPR:$a, rGPR:$b), rGPR:$c))]> {
Johnny Chend68e1192009-12-15 17:24:14 +00001721 let Inst{31-27} = 0b11111;
1722 let Inst{26-23} = 0b0110;
1723 let Inst{22-20} = 0b000;
1724 let Inst{15-12} = {?, ?, ?, ?}; // Ra
1725 let Inst{7-4} = 0b0000; // Multiply
1726}
Evan Chengf49810c2009-06-23 17:48:47 +00001727
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001728def t2MLS: T2I<(outs rGPR:$dst), (ins rGPR:$a, rGPR:$b, rGPR:$c), IIC_iMAC32,
Evan Cheng699beba2009-10-27 00:08:59 +00001729 "mls", "\t$dst, $a, $b, $c",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001730 [(set rGPR:$dst, (sub rGPR:$c, (mul rGPR:$a, rGPR:$b)))]> {
Johnny Chend68e1192009-12-15 17:24:14 +00001731 let Inst{31-27} = 0b11111;
1732 let Inst{26-23} = 0b0110;
1733 let Inst{22-20} = 0b000;
1734 let Inst{15-12} = {?, ?, ?, ?}; // Ra
1735 let Inst{7-4} = 0b0001; // Multiply and Subtract
1736}
Evan Chengf49810c2009-06-23 17:48:47 +00001737
Evan Cheng5b9fcd12009-07-07 01:17:28 +00001738// Extra precision multiplies with low / high results
1739let neverHasSideEffects = 1 in {
1740let isCommutable = 1 in {
Jim Grosbachc5ed0132010-08-17 18:39:16 +00001741def t2SMULL : T2I<(outs rGPR:$ldst, rGPR:$hdst),
1742 (ins rGPR:$a, rGPR:$b), IIC_iMUL64,
Johnny Chend68e1192009-12-15 17:24:14 +00001743 "smull", "\t$ldst, $hdst, $a, $b", []> {
1744 let Inst{31-27} = 0b11111;
1745 let Inst{26-23} = 0b0111;
1746 let Inst{22-20} = 0b000;
1747 let Inst{7-4} = 0b0000;
1748}
Evan Cheng5b9fcd12009-07-07 01:17:28 +00001749
Jim Grosbachc5ed0132010-08-17 18:39:16 +00001750def t2UMULL : T2I<(outs rGPR:$ldst, rGPR:$hdst),
1751 (ins rGPR:$a, rGPR:$b), IIC_iMUL64,
Johnny Chend68e1192009-12-15 17:24:14 +00001752 "umull", "\t$ldst, $hdst, $a, $b", []> {
1753 let Inst{31-27} = 0b11111;
1754 let Inst{26-23} = 0b0111;
1755 let Inst{22-20} = 0b010;
1756 let Inst{7-4} = 0b0000;
Evan Cheng5b9fcd12009-07-07 01:17:28 +00001757}
Johnny Chend68e1192009-12-15 17:24:14 +00001758} // isCommutable
Evan Cheng5b9fcd12009-07-07 01:17:28 +00001759
1760// Multiply + accumulate
Jim Grosbachc5ed0132010-08-17 18:39:16 +00001761def t2SMLAL : T2I<(outs rGPR:$ldst, rGPR:$hdst),
1762 (ins rGPR:$a, rGPR:$b), IIC_iMAC64,
Johnny Chend68e1192009-12-15 17:24:14 +00001763 "smlal", "\t$ldst, $hdst, $a, $b", []>{
1764 let Inst{31-27} = 0b11111;
1765 let Inst{26-23} = 0b0111;
1766 let Inst{22-20} = 0b100;
1767 let Inst{7-4} = 0b0000;
1768}
Evan Cheng5b9fcd12009-07-07 01:17:28 +00001769
Jim Grosbachc5ed0132010-08-17 18:39:16 +00001770def t2UMLAL : T2I<(outs rGPR:$ldst, rGPR:$hdst),
1771 (ins rGPR:$a, rGPR:$b), IIC_iMAC64,
Johnny Chend68e1192009-12-15 17:24:14 +00001772 "umlal", "\t$ldst, $hdst, $a, $b", []>{
1773 let Inst{31-27} = 0b11111;
1774 let Inst{26-23} = 0b0111;
1775 let Inst{22-20} = 0b110;
1776 let Inst{7-4} = 0b0000;
1777}
Evan Cheng5b9fcd12009-07-07 01:17:28 +00001778
Jim Grosbachc5ed0132010-08-17 18:39:16 +00001779def t2UMAAL : T2I<(outs rGPR:$ldst, rGPR:$hdst),
1780 (ins rGPR:$a, rGPR:$b), IIC_iMAC64,
Johnny Chend68e1192009-12-15 17:24:14 +00001781 "umaal", "\t$ldst, $hdst, $a, $b", []>{
1782 let Inst{31-27} = 0b11111;
1783 let Inst{26-23} = 0b0111;
1784 let Inst{22-20} = 0b110;
1785 let Inst{7-4} = 0b0110;
1786}
Evan Cheng5b9fcd12009-07-07 01:17:28 +00001787} // neverHasSideEffects
1788
Johnny Chen93042d12010-03-02 18:14:57 +00001789// Rounding variants of the below included for disassembly only
1790
Evan Cheng5b9fcd12009-07-07 01:17:28 +00001791// Most significant word multiply
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001792def t2SMMUL : T2I<(outs rGPR:$dst), (ins rGPR:$a, rGPR:$b), IIC_iMUL32,
Evan Cheng699beba2009-10-27 00:08:59 +00001793 "smmul", "\t$dst, $a, $b",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001794 [(set rGPR:$dst, (mulhs rGPR:$a, rGPR:$b))]> {
Johnny Chend68e1192009-12-15 17:24:14 +00001795 let Inst{31-27} = 0b11111;
1796 let Inst{26-23} = 0b0110;
1797 let Inst{22-20} = 0b101;
1798 let Inst{15-12} = 0b1111; // Ra = 0b1111 (no accumulate)
1799 let Inst{7-4} = 0b0000; // No Rounding (Inst{4} = 0)
1800}
Evan Cheng5b9fcd12009-07-07 01:17:28 +00001801
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001802def t2SMMULR : T2I<(outs rGPR:$dst), (ins rGPR:$a, rGPR:$b), IIC_iMUL32,
Johnny Chen93042d12010-03-02 18:14:57 +00001803 "smmulr", "\t$dst, $a, $b", []> {
1804 let Inst{31-27} = 0b11111;
1805 let Inst{26-23} = 0b0110;
1806 let Inst{22-20} = 0b101;
1807 let Inst{15-12} = 0b1111; // Ra = 0b1111 (no accumulate)
1808 let Inst{7-4} = 0b0001; // Rounding (Inst{4} = 1)
1809}
1810
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001811def t2SMMLA : T2I<(outs rGPR:$dst), (ins rGPR:$a, rGPR:$b, rGPR:$c), IIC_iMAC32,
Evan Cheng699beba2009-10-27 00:08:59 +00001812 "smmla", "\t$dst, $a, $b, $c",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001813 [(set rGPR:$dst, (add (mulhs rGPR:$a, rGPR:$b), rGPR:$c))]> {
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} = {?, ?, ?, ?}; // Ra
1818 let Inst{7-4} = 0b0000; // No Rounding (Inst{4} = 0)
1819}
Evan Cheng5b9fcd12009-07-07 01:17:28 +00001820
Jim Grosbachc5ed0132010-08-17 18:39:16 +00001821def t2SMMLAR: T2I<(outs rGPR:$dst), (ins rGPR:$a, rGPR:$b, rGPR:$c), IIC_iMAC32,
Johnny Chen93042d12010-03-02 18:14:57 +00001822 "smmlar", "\t$dst, $a, $b, $c", []> {
1823 let Inst{31-27} = 0b11111;
1824 let Inst{26-23} = 0b0110;
1825 let Inst{22-20} = 0b101;
1826 let Inst{15-12} = {?, ?, ?, ?}; // Ra
1827 let Inst{7-4} = 0b0001; // Rounding (Inst{4} = 1)
1828}
Evan Cheng5b9fcd12009-07-07 01:17:28 +00001829
Jim Grosbachc5ed0132010-08-17 18:39:16 +00001830def t2SMMLS: T2I <(outs rGPR:$dst), (ins rGPR:$a, rGPR:$b, rGPR:$c), IIC_iMAC32,
Evan Cheng699beba2009-10-27 00:08:59 +00001831 "smmls", "\t$dst, $a, $b, $c",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001832 [(set rGPR:$dst, (sub rGPR:$c, (mulhs rGPR:$a, rGPR:$b)))]> {
Johnny Chend68e1192009-12-15 17:24:14 +00001833 let Inst{31-27} = 0b11111;
1834 let Inst{26-23} = 0b0110;
1835 let Inst{22-20} = 0b110;
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 t2SMMLSR:T2I <(outs rGPR:$dst), (ins rGPR:$a, rGPR:$b, rGPR:$c), IIC_iMAC32,
Johnny Chen93042d12010-03-02 18:14:57 +00001841 "smmlsr", "\t$dst, $a, $b, $c", []> {
1842 let Inst{31-27} = 0b11111;
1843 let Inst{26-23} = 0b0110;
1844 let Inst{22-20} = 0b110;
1845 let Inst{15-12} = {?, ?, ?, ?}; // Ra
1846 let Inst{7-4} = 0b0001; // Rounding (Inst{4} = 1)
1847}
1848
Evan Cheng5b9fcd12009-07-07 01:17:28 +00001849multiclass T2I_smul<string opc, PatFrag opnode> {
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001850 def BB : T2I<(outs rGPR:$dst), (ins rGPR:$a, rGPR:$b), IIC_iMUL32,
Evan Cheng699beba2009-10-27 00:08:59 +00001851 !strconcat(opc, "bb"), "\t$dst, $a, $b",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001852 [(set rGPR:$dst, (opnode (sext_inreg rGPR:$a, i16),
1853 (sext_inreg rGPR:$b, i16)))]> {
Johnny Chend68e1192009-12-15 17:24:14 +00001854 let Inst{31-27} = 0b11111;
1855 let Inst{26-23} = 0b0110;
1856 let Inst{22-20} = 0b001;
1857 let Inst{15-12} = 0b1111; // Ra = 0b1111 (no accumulate)
1858 let Inst{7-6} = 0b00;
1859 let Inst{5-4} = 0b00;
1860 }
Evan Cheng5b9fcd12009-07-07 01:17:28 +00001861
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001862 def BT : T2I<(outs rGPR:$dst), (ins rGPR:$a, rGPR:$b), IIC_iMUL32,
Evan Cheng699beba2009-10-27 00:08:59 +00001863 !strconcat(opc, "bt"), "\t$dst, $a, $b",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001864 [(set rGPR:$dst, (opnode (sext_inreg rGPR:$a, i16),
1865 (sra rGPR:$b, (i32 16))))]> {
Johnny Chend68e1192009-12-15 17:24:14 +00001866 let Inst{31-27} = 0b11111;
1867 let Inst{26-23} = 0b0110;
1868 let Inst{22-20} = 0b001;
1869 let Inst{15-12} = 0b1111; // Ra = 0b1111 (no accumulate)
1870 let Inst{7-6} = 0b00;
1871 let Inst{5-4} = 0b01;
1872 }
Evan Cheng5b9fcd12009-07-07 01:17:28 +00001873
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001874 def TB : T2I<(outs rGPR:$dst), (ins rGPR:$a, rGPR:$b), IIC_iMUL32,
Evan Cheng699beba2009-10-27 00:08:59 +00001875 !strconcat(opc, "tb"), "\t$dst, $a, $b",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001876 [(set rGPR:$dst, (opnode (sra rGPR:$a, (i32 16)),
1877 (sext_inreg rGPR:$b, i16)))]> {
Johnny Chend68e1192009-12-15 17:24:14 +00001878 let Inst{31-27} = 0b11111;
1879 let Inst{26-23} = 0b0110;
1880 let Inst{22-20} = 0b001;
1881 let Inst{15-12} = 0b1111; // Ra = 0b1111 (no accumulate)
1882 let Inst{7-6} = 0b00;
1883 let Inst{5-4} = 0b10;
1884 }
Evan Cheng5b9fcd12009-07-07 01:17:28 +00001885
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001886 def TT : T2I<(outs rGPR:$dst), (ins rGPR:$a, rGPR:$b), IIC_iMUL32,
Evan Cheng699beba2009-10-27 00:08:59 +00001887 !strconcat(opc, "tt"), "\t$dst, $a, $b",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001888 [(set rGPR:$dst, (opnode (sra rGPR:$a, (i32 16)),
1889 (sra rGPR:$b, (i32 16))))]> {
Johnny Chend68e1192009-12-15 17:24:14 +00001890 let Inst{31-27} = 0b11111;
1891 let Inst{26-23} = 0b0110;
1892 let Inst{22-20} = 0b001;
1893 let Inst{15-12} = 0b1111; // Ra = 0b1111 (no accumulate)
1894 let Inst{7-6} = 0b00;
1895 let Inst{5-4} = 0b11;
1896 }
Evan Cheng5b9fcd12009-07-07 01:17:28 +00001897
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001898 def WB : T2I<(outs rGPR:$dst), (ins rGPR:$a, rGPR:$b), IIC_iMUL16,
Evan Cheng699beba2009-10-27 00:08:59 +00001899 !strconcat(opc, "wb"), "\t$dst, $a, $b",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001900 [(set rGPR:$dst, (sra (opnode rGPR:$a,
1901 (sext_inreg rGPR:$b, i16)), (i32 16)))]> {
Johnny Chend68e1192009-12-15 17:24:14 +00001902 let Inst{31-27} = 0b11111;
1903 let Inst{26-23} = 0b0110;
1904 let Inst{22-20} = 0b011;
1905 let Inst{15-12} = 0b1111; // Ra = 0b1111 (no accumulate)
1906 let Inst{7-6} = 0b00;
1907 let Inst{5-4} = 0b00;
1908 }
Evan Cheng5b9fcd12009-07-07 01:17:28 +00001909
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001910 def WT : T2I<(outs rGPR:$dst), (ins rGPR:$a, rGPR:$b), IIC_iMUL16,
Evan Cheng699beba2009-10-27 00:08:59 +00001911 !strconcat(opc, "wt"), "\t$dst, $a, $b",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001912 [(set rGPR:$dst, (sra (opnode rGPR:$a,
1913 (sra rGPR:$b, (i32 16))), (i32 16)))]> {
Johnny Chend68e1192009-12-15 17:24:14 +00001914 let Inst{31-27} = 0b11111;
1915 let Inst{26-23} = 0b0110;
1916 let Inst{22-20} = 0b011;
1917 let Inst{15-12} = 0b1111; // Ra = 0b1111 (no accumulate)
1918 let Inst{7-6} = 0b00;
1919 let Inst{5-4} = 0b01;
1920 }
Evan Cheng5b9fcd12009-07-07 01:17:28 +00001921}
1922
1923
1924multiclass T2I_smla<string opc, PatFrag opnode> {
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001925 def BB : T2I<(outs rGPR:$dst), (ins rGPR:$a, rGPR:$b, rGPR:$acc), IIC_iMAC16,
Evan Cheng699beba2009-10-27 00:08:59 +00001926 !strconcat(opc, "bb"), "\t$dst, $a, $b, $acc",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001927 [(set rGPR:$dst, (add rGPR:$acc,
1928 (opnode (sext_inreg rGPR:$a, i16),
1929 (sext_inreg rGPR:$b, i16))))]> {
Johnny Chend68e1192009-12-15 17:24:14 +00001930 let Inst{31-27} = 0b11111;
1931 let Inst{26-23} = 0b0110;
1932 let Inst{22-20} = 0b001;
1933 let Inst{15-12} = {?, ?, ?, ?}; // Ra
1934 let Inst{7-6} = 0b00;
1935 let Inst{5-4} = 0b00;
1936 }
Evan Cheng5b9fcd12009-07-07 01:17:28 +00001937
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001938 def BT : T2I<(outs rGPR:$dst), (ins rGPR:$a, rGPR:$b, rGPR:$acc), IIC_iMAC16,
Evan Cheng699beba2009-10-27 00:08:59 +00001939 !strconcat(opc, "bt"), "\t$dst, $a, $b, $acc",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001940 [(set rGPR:$dst, (add rGPR:$acc, (opnode (sext_inreg rGPR:$a, i16),
Jim Grosbachc5ed0132010-08-17 18:39:16 +00001941 (sra rGPR:$b, (i32 16)))))]> {
Johnny Chend68e1192009-12-15 17:24:14 +00001942 let Inst{31-27} = 0b11111;
1943 let Inst{26-23} = 0b0110;
1944 let Inst{22-20} = 0b001;
1945 let Inst{15-12} = {?, ?, ?, ?}; // Ra
1946 let Inst{7-6} = 0b00;
1947 let Inst{5-4} = 0b01;
1948 }
Evan Cheng5b9fcd12009-07-07 01:17:28 +00001949
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001950 def TB : T2I<(outs rGPR:$dst), (ins rGPR:$a, rGPR:$b, rGPR:$acc), IIC_iMAC16,
Evan Cheng699beba2009-10-27 00:08:59 +00001951 !strconcat(opc, "tb"), "\t$dst, $a, $b, $acc",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001952 [(set rGPR:$dst, (add rGPR:$acc, (opnode (sra rGPR:$a, (i32 16)),
Jim Grosbachc5ed0132010-08-17 18:39:16 +00001953 (sext_inreg rGPR:$b, i16))))]> {
Johnny Chend68e1192009-12-15 17:24:14 +00001954 let Inst{31-27} = 0b11111;
1955 let Inst{26-23} = 0b0110;
1956 let Inst{22-20} = 0b001;
1957 let Inst{15-12} = {?, ?, ?, ?}; // Ra
1958 let Inst{7-6} = 0b00;
1959 let Inst{5-4} = 0b10;
1960 }
Evan Cheng5b9fcd12009-07-07 01:17:28 +00001961
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001962 def TT : T2I<(outs rGPR:$dst), (ins rGPR:$a, rGPR:$b, rGPR:$acc), IIC_iMAC16,
Evan Cheng699beba2009-10-27 00:08:59 +00001963 !strconcat(opc, "tt"), "\t$dst, $a, $b, $acc",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001964 [(set rGPR:$dst, (add rGPR:$acc, (opnode (sra rGPR:$a, (i32 16)),
Jim Grosbachc5ed0132010-08-17 18:39:16 +00001965 (sra rGPR:$b, (i32 16)))))]> {
Johnny Chend68e1192009-12-15 17:24:14 +00001966 let Inst{31-27} = 0b11111;
1967 let Inst{26-23} = 0b0110;
1968 let Inst{22-20} = 0b001;
1969 let Inst{15-12} = {?, ?, ?, ?}; // Ra
1970 let Inst{7-6} = 0b00;
1971 let Inst{5-4} = 0b11;
1972 }
Evan Cheng5b9fcd12009-07-07 01:17:28 +00001973
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001974 def WB : T2I<(outs rGPR:$dst), (ins rGPR:$a, rGPR:$b, rGPR:$acc), IIC_iMAC16,
Evan Cheng699beba2009-10-27 00:08:59 +00001975 !strconcat(opc, "wb"), "\t$dst, $a, $b, $acc",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001976 [(set rGPR:$dst, (add rGPR:$acc, (sra (opnode rGPR:$a,
Jim Grosbachc5ed0132010-08-17 18:39:16 +00001977 (sext_inreg rGPR:$b, i16)), (i32 16))))]> {
Johnny Chend68e1192009-12-15 17:24:14 +00001978 let Inst{31-27} = 0b11111;
1979 let Inst{26-23} = 0b0110;
1980 let Inst{22-20} = 0b011;
1981 let Inst{15-12} = {?, ?, ?, ?}; // Ra
1982 let Inst{7-6} = 0b00;
1983 let Inst{5-4} = 0b00;
1984 }
Evan Cheng5b9fcd12009-07-07 01:17:28 +00001985
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001986 def WT : T2I<(outs rGPR:$dst), (ins rGPR:$a, rGPR:$b, rGPR:$acc), IIC_iMAC16,
Evan Cheng699beba2009-10-27 00:08:59 +00001987 !strconcat(opc, "wt"), "\t$dst, $a, $b, $acc",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001988 [(set rGPR:$dst, (add rGPR:$acc, (sra (opnode rGPR:$a,
Jim Grosbachc5ed0132010-08-17 18:39:16 +00001989 (sra rGPR:$b, (i32 16))), (i32 16))))]> {
Johnny Chend68e1192009-12-15 17:24:14 +00001990 let Inst{31-27} = 0b11111;
1991 let Inst{26-23} = 0b0110;
1992 let Inst{22-20} = 0b011;
1993 let Inst{15-12} = {?, ?, ?, ?}; // Ra
1994 let Inst{7-6} = 0b00;
1995 let Inst{5-4} = 0b01;
1996 }
Evan Cheng5b9fcd12009-07-07 01:17:28 +00001997}
1998
1999defm t2SMUL : T2I_smul<"smul", BinOpFrag<(mul node:$LHS, node:$RHS)>>;
2000defm t2SMLA : T2I_smla<"smla", BinOpFrag<(mul node:$LHS, node:$RHS)>>;
2001
Johnny Chenadc77332010-02-26 22:04:29 +00002002// Halfword multiple accumulate long: SMLAL<x><y> -- for disassembly only
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002003def t2SMLALBB : T2I_mac<1, 0b100, 0b1000, (outs rGPR:$ldst,rGPR:$hdst),
Jim Grosbachc5ed0132010-08-17 18:39:16 +00002004 (ins rGPR:$a,rGPR:$b), IIC_iMAC64, "smlalbb", "\t$ldst, $hdst, $a, $b",
Johnny Chenadc77332010-02-26 22:04:29 +00002005 [/* For disassembly only; pattern left blank */]>;
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002006def t2SMLALBT : T2I_mac<1, 0b100, 0b1001, (outs rGPR:$ldst,rGPR:$hdst),
Jim Grosbachc5ed0132010-08-17 18:39:16 +00002007 (ins rGPR:$a,rGPR:$b), IIC_iMAC64, "smlalbt", "\t$ldst, $hdst, $a, $b",
Johnny Chenadc77332010-02-26 22:04:29 +00002008 [/* For disassembly only; pattern left blank */]>;
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002009def t2SMLALTB : T2I_mac<1, 0b100, 0b1010, (outs rGPR:$ldst,rGPR:$hdst),
Jim Grosbachc5ed0132010-08-17 18:39:16 +00002010 (ins rGPR:$a,rGPR:$b), IIC_iMAC64, "smlaltb", "\t$ldst, $hdst, $a, $b",
Johnny Chenadc77332010-02-26 22:04:29 +00002011 [/* For disassembly only; pattern left blank */]>;
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002012def t2SMLALTT : T2I_mac<1, 0b100, 0b1011, (outs rGPR:$ldst,rGPR:$hdst),
Jim Grosbachc5ed0132010-08-17 18:39:16 +00002013 (ins rGPR:$a,rGPR:$b), IIC_iMAC64, "smlaltt", "\t$ldst, $hdst, $a, $b",
Johnny Chenadc77332010-02-26 22:04:29 +00002014 [/* For disassembly only; pattern left blank */]>;
Evan Cheng5b9fcd12009-07-07 01:17:28 +00002015
Johnny Chenadc77332010-02-26 22:04:29 +00002016// Dual halfword multiple: SMUAD, SMUSD, SMLAD, SMLSD, SMLALD, SMLSLD
2017// These are for disassembly only.
2018
Jim Grosbachc5ed0132010-08-17 18:39:16 +00002019def t2SMUAD: T2I_mac<0, 0b010, 0b0000, (outs rGPR:$dst), (ins rGPR:$a, rGPR:$b),
2020 IIC_iMAC32, "smuad", "\t$dst, $a, $b", []> {
Johnny Chenadc77332010-02-26 22:04:29 +00002021 let Inst{15-12} = 0b1111;
2022}
Jim Grosbachc5ed0132010-08-17 18:39:16 +00002023def t2SMUADX:T2I_mac<0, 0b010, 0b0001, (outs rGPR:$dst), (ins rGPR:$a, rGPR:$b),
2024 IIC_iMAC32, "smuadx", "\t$dst, $a, $b", []> {
Johnny Chenadc77332010-02-26 22:04:29 +00002025 let Inst{15-12} = 0b1111;
2026}
Jim Grosbachc5ed0132010-08-17 18:39:16 +00002027def t2SMUSD: T2I_mac<0, 0b100, 0b0000, (outs rGPR:$dst), (ins rGPR:$a, rGPR:$b),
2028 IIC_iMAC32, "smusd", "\t$dst, $a, $b", []> {
Johnny Chenadc77332010-02-26 22:04:29 +00002029 let Inst{15-12} = 0b1111;
2030}
Jim Grosbachc5ed0132010-08-17 18:39:16 +00002031def t2SMUSDX:T2I_mac<0, 0b100, 0b0001, (outs rGPR:$dst), (ins rGPR:$a, rGPR:$b),
2032 IIC_iMAC32, "smusdx", "\t$dst, $a, $b", []> {
Johnny Chenadc77332010-02-26 22:04:29 +00002033 let Inst{15-12} = 0b1111;
2034}
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002035def t2SMLAD : T2I_mac<0, 0b010, 0b0000, (outs rGPR:$dst),
2036 (ins rGPR:$a, rGPR:$b, rGPR:$acc), IIC_iMAC32, "smlad",
Johnny Chenadc77332010-02-26 22:04:29 +00002037 "\t$dst, $a, $b, $acc", []>;
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002038def t2SMLADX : T2I_mac<0, 0b010, 0b0001, (outs rGPR:$dst),
2039 (ins rGPR:$a, rGPR:$b, rGPR:$acc), IIC_iMAC32, "smladx",
Johnny Chenadc77332010-02-26 22:04:29 +00002040 "\t$dst, $a, $b, $acc", []>;
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002041def t2SMLSD : T2I_mac<0, 0b100, 0b0000, (outs rGPR:$dst),
2042 (ins rGPR:$a, rGPR:$b, rGPR:$acc), IIC_iMAC32, "smlsd",
Johnny Chenadc77332010-02-26 22:04:29 +00002043 "\t$dst, $a, $b, $acc", []>;
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002044def t2SMLSDX : T2I_mac<0, 0b100, 0b0001, (outs rGPR:$dst),
2045 (ins rGPR:$a, rGPR:$b, rGPR:$acc), IIC_iMAC32, "smlsdx",
Johnny Chenadc77332010-02-26 22:04:29 +00002046 "\t$dst, $a, $b, $acc", []>;
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002047def t2SMLALD : T2I_mac<1, 0b100, 0b1100, (outs rGPR:$ldst,rGPR:$hdst),
2048 (ins rGPR:$a,rGPR:$b), IIC_iMAC64, "smlald",
Johnny Chenadc77332010-02-26 22:04:29 +00002049 "\t$ldst, $hdst, $a, $b", []>;
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002050def t2SMLALDX : T2I_mac<1, 0b100, 0b1101, (outs rGPR:$ldst,rGPR:$hdst),
2051 (ins rGPR:$a,rGPR:$b), IIC_iMAC64, "smlaldx",
Johnny Chenadc77332010-02-26 22:04:29 +00002052 "\t$ldst, $hdst, $a, $b", []>;
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002053def t2SMLSLD : T2I_mac<1, 0b101, 0b1100, (outs rGPR:$ldst,rGPR:$hdst),
2054 (ins rGPR:$a,rGPR:$b), IIC_iMAC64, "smlsld",
Johnny Chenadc77332010-02-26 22:04:29 +00002055 "\t$ldst, $hdst, $a, $b", []>;
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002056def t2SMLSLDX : T2I_mac<1, 0b101, 0b1101, (outs rGPR:$ldst,rGPR:$hdst),
2057 (ins rGPR:$a,rGPR:$b), IIC_iMAC64, "smlsldx",
Johnny Chenadc77332010-02-26 22:04:29 +00002058 "\t$ldst, $hdst, $a, $b", []>;
Evan Chengf49810c2009-06-23 17:48:47 +00002059
2060//===----------------------------------------------------------------------===//
2061// Misc. Arithmetic Instructions.
2062//
2063
Jim Grosbach80dc1162010-02-16 21:23:02 +00002064class T2I_misc<bits<2> op1, bits<2> op2, dag oops, dag iops,
2065 InstrItinClass itin, string opc, string asm, list<dag> pattern>
Johnny Chend68e1192009-12-15 17:24:14 +00002066 : T2I<oops, iops, itin, opc, asm, pattern> {
2067 let Inst{31-27} = 0b11111;
2068 let Inst{26-22} = 0b01010;
2069 let Inst{21-20} = op1;
2070 let Inst{15-12} = 0b1111;
2071 let Inst{7-6} = 0b10;
2072 let Inst{5-4} = op2;
2073}
Evan Chengf49810c2009-06-23 17:48:47 +00002074
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002075def t2CLZ : T2I_misc<0b11, 0b00, (outs rGPR:$dst), (ins rGPR:$src), IIC_iUNAr,
2076 "clz", "\t$dst, $src", [(set rGPR:$dst, (ctlz rGPR:$src))]>;
Evan Chengf49810c2009-06-23 17:48:47 +00002077
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002078def t2RBIT : T2I_misc<0b01, 0b10, (outs rGPR:$dst), (ins rGPR:$src), IIC_iUNAr,
Evan Chengf609bb82010-01-19 00:44:15 +00002079 "rbit", "\t$dst, $src",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002080 [(set rGPR:$dst, (ARMrbit rGPR:$src))]>;
Jim Grosbach3482c802010-01-18 19:58:49 +00002081
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002082def t2REV : T2I_misc<0b01, 0b00, (outs rGPR:$dst), (ins rGPR:$src), IIC_iUNAr,
Jim Grosbachc5ed0132010-08-17 18:39:16 +00002083 "rev", ".w\t$dst, $src", [(set rGPR:$dst, (bswap rGPR:$src))]>;
Johnny Chend68e1192009-12-15 17:24:14 +00002084
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002085def t2REV16 : T2I_misc<0b01, 0b01, (outs rGPR:$dst), (ins rGPR:$src), IIC_iUNAr,
Johnny Chend68e1192009-12-15 17:24:14 +00002086 "rev16", ".w\t$dst, $src",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002087 [(set rGPR:$dst,
2088 (or (and (srl rGPR:$src, (i32 8)), 0xFF),
2089 (or (and (shl rGPR:$src, (i32 8)), 0xFF00),
2090 (or (and (srl rGPR:$src, (i32 8)), 0xFF0000),
Jim Grosbachc5ed0132010-08-17 18:39:16 +00002091 (and (shl rGPR:$src, (i32 8)), 0xFF000000)))))]>;
Evan Chengf49810c2009-06-23 17:48:47 +00002092
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002093def t2REVSH : T2I_misc<0b01, 0b11, (outs rGPR:$dst), (ins rGPR:$src), IIC_iUNAr,
Johnny Chend68e1192009-12-15 17:24:14 +00002094 "revsh", ".w\t$dst, $src",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002095 [(set rGPR:$dst,
Evan Chengf49810c2009-06-23 17:48:47 +00002096 (sext_inreg
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002097 (or (srl (and rGPR:$src, 0xFF00), (i32 8)),
2098 (shl rGPR:$src, (i32 8))), i16))]>;
Evan Chengf49810c2009-06-23 17:48:47 +00002099
Bob Wilsonf955f292010-08-17 17:23:19 +00002100def t2PKHBT : T2I<(outs rGPR:$dst), (ins rGPR:$src1, rGPR:$src2, shift_imm:$sh),
2101 IIC_iALUsi, "pkhbt", "\t$dst, $src1, $src2$sh",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002102 [(set rGPR:$dst, (or (and rGPR:$src1, 0xFFFF),
Bob Wilsonf955f292010-08-17 17:23:19 +00002103 (and (shl rGPR:$src2, lsl_amt:$sh),
Jim Grosbachb1dc3932010-05-05 20:44:35 +00002104 0xFFFF0000)))]>,
Jim Grosbach29402132010-05-05 23:44:43 +00002105 Requires<[HasT2ExtractPack]> {
Johnny Chend68e1192009-12-15 17:24:14 +00002106 let Inst{31-27} = 0b11101;
2107 let Inst{26-25} = 0b01;
2108 let Inst{24-20} = 0b01100;
2109 let Inst{5} = 0; // BT form
2110 let Inst{4} = 0;
2111}
Evan Cheng40289b02009-07-07 05:35:52 +00002112
2113// Alternate cases for PKHBT where identities eliminate some nodes.
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002114def : T2Pat<(or (and rGPR:$src1, 0xFFFF), (and rGPR:$src2, 0xFFFF0000)),
2115 (t2PKHBT rGPR:$src1, rGPR:$src2, 0)>,
Jim Grosbach29402132010-05-05 23:44:43 +00002116 Requires<[HasT2ExtractPack]>;
Bob Wilsonf955f292010-08-17 17:23:19 +00002117def : T2Pat<(or (and rGPR:$src1, 0xFFFF), (shl rGPR:$src2, imm16_31:$sh)),
2118 (t2PKHBT rGPR:$src1, rGPR:$src2, (lsl_shift_imm imm16_31:$sh))>,
Jim Grosbach29402132010-05-05 23:44:43 +00002119 Requires<[HasT2ExtractPack]>;
Evan Cheng40289b02009-07-07 05:35:52 +00002120
Bob Wilsondc66eda2010-08-16 22:26:55 +00002121// Note: Shifts of 1-15 bits will be transformed to srl instead of sra and
2122// will match the pattern below.
Bob Wilsonf955f292010-08-17 17:23:19 +00002123def t2PKHTB : T2I<(outs rGPR:$dst), (ins rGPR:$src1, rGPR:$src2, shift_imm:$sh),
2124 IIC_iALUsi, "pkhtb", "\t$dst, $src1, $src2$sh",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002125 [(set rGPR:$dst, (or (and rGPR:$src1, 0xFFFF0000),
Bob Wilsonf955f292010-08-17 17:23:19 +00002126 (and (sra rGPR:$src2, asr_amt:$sh),
2127 0xFFFF)))]>,
Jim Grosbach29402132010-05-05 23:44:43 +00002128 Requires<[HasT2ExtractPack]> {
Johnny Chend68e1192009-12-15 17:24:14 +00002129 let Inst{31-27} = 0b11101;
2130 let Inst{26-25} = 0b01;
2131 let Inst{24-20} = 0b01100;
2132 let Inst{5} = 1; // TB form
2133 let Inst{4} = 0;
2134}
Evan Cheng40289b02009-07-07 05:35:52 +00002135
2136// Alternate cases for PKHTB where identities eliminate some nodes. Note that
2137// a shift amount of 0 is *not legal* here, it is PKHBT instead.
Bob Wilsondc66eda2010-08-16 22:26:55 +00002138def : T2Pat<(or (and rGPR:$src1, 0xFFFF0000), (srl rGPR:$src2, imm16_31:$sh)),
Bob Wilsonf955f292010-08-17 17:23:19 +00002139 (t2PKHTB rGPR:$src1, rGPR:$src2, (asr_shift_imm imm16_31:$sh))>,
Jim Grosbach29402132010-05-05 23:44:43 +00002140 Requires<[HasT2ExtractPack]>;
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002141def : T2Pat<(or (and rGPR:$src1, 0xFFFF0000),
Bob Wilsonf955f292010-08-17 17:23:19 +00002142 (and (srl rGPR:$src2, imm1_15:$sh), 0xFFFF)),
2143 (t2PKHTB rGPR:$src1, rGPR:$src2, (asr_shift_imm imm1_15:$sh))>,
Jim Grosbach29402132010-05-05 23:44:43 +00002144 Requires<[HasT2ExtractPack]>;
Evan Chengf49810c2009-06-23 17:48:47 +00002145
2146//===----------------------------------------------------------------------===//
2147// Comparison Instructions...
2148//
Johnny Chend68e1192009-12-15 17:24:14 +00002149defm t2CMP : T2I_cmp_irs<0b1101, "cmp",
2150 BinOpFrag<(ARMcmp node:$LHS, node:$RHS)>>;
2151defm t2CMPz : T2I_cmp_irs<0b1101, "cmp",
2152 BinOpFrag<(ARMcmpZ node:$LHS, node:$RHS)>>;
Evan Chengf49810c2009-06-23 17:48:47 +00002153
Dan Gohman4b7dff92010-08-26 15:50:25 +00002154//FIXME: Disable CMN, as CCodes are backwards from compare expectations
2155// Compare-to-zero still works out, just not the relationals
Jim Grosbachd5d2bae2010-01-22 00:08:13 +00002156//defm t2CMN : T2I_cmp_irs<0b1000, "cmn",
2157// BinOpFrag<(ARMcmp node:$LHS,(ineg node:$RHS))>>;
Dan Gohman4b7dff92010-08-26 15:50:25 +00002158defm t2CMNz : T2I_cmp_irs<0b1000, "cmn",
2159 BinOpFrag<(ARMcmpZ node:$LHS,(ineg node:$RHS))>>;
2160
Jim Grosbachd5d2bae2010-01-22 00:08:13 +00002161//def : T2Pat<(ARMcmp GPR:$src, t2_so_imm_neg:$imm),
2162// (t2CMNri GPR:$src, t2_so_imm_neg:$imm)>;
Dan Gohman4b7dff92010-08-26 15:50:25 +00002163
2164def : T2Pat<(ARMcmpZ GPR:$src, t2_so_imm_neg:$imm),
2165 (t2CMNzri GPR:$src, t2_so_imm_neg:$imm)>;
Evan Chengf49810c2009-06-23 17:48:47 +00002166
Johnny Chend68e1192009-12-15 17:24:14 +00002167defm t2TST : T2I_cmp_irs<0b0000, "tst",
2168 BinOpFrag<(ARMcmpZ (and node:$LHS, node:$RHS), 0)>>;
2169defm t2TEQ : T2I_cmp_irs<0b0100, "teq",
2170 BinOpFrag<(ARMcmpZ (xor node:$LHS, node:$RHS), 0)>>;
Evan Chengf49810c2009-06-23 17:48:47 +00002171
Evan Chenge253c952009-07-07 20:39:03 +00002172// Conditional moves
2173// FIXME: should be able to write a pattern for ARMcmov, but can't use
Jim Grosbach64171712010-02-16 21:07:46 +00002174// a two-value operand where a dag node expects two operands. :(
Evan Chengea420b22010-05-19 01:52:25 +00002175let neverHasSideEffects = 1 in {
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002176def t2MOVCCr : T2I<(outs rGPR:$dst), (ins rGPR:$false, rGPR:$true), IIC_iCMOVr,
Evan Cheng699beba2009-10-27 00:08:59 +00002177 "mov", ".w\t$dst, $true",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002178 [/*(set rGPR:$dst, (ARMcmov rGPR:$false, rGPR:$true, imm:$cc, CCR:$ccr))*/]>,
Johnny Chend68e1192009-12-15 17:24:14 +00002179 RegConstraint<"$false = $dst"> {
2180 let Inst{31-27} = 0b11101;
2181 let Inst{26-25} = 0b01;
2182 let Inst{24-21} = 0b0010;
2183 let Inst{20} = 0; // The S bit.
2184 let Inst{19-16} = 0b1111; // Rn
2185 let Inst{14-12} = 0b000;
2186 let Inst{7-4} = 0b0000;
2187}
Evan Chenge253c952009-07-07 20:39:03 +00002188
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002189def t2MOVCCi : T2I<(outs rGPR:$dst), (ins rGPR:$false, t2_so_imm:$true),
Evan Cheng699beba2009-10-27 00:08:59 +00002190 IIC_iCMOVi, "mov", ".w\t$dst, $true",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002191[/*(set rGPR:$dst,(ARMcmov rGPR:$false,t2_so_imm:$true, imm:$cc, CCR:$ccr))*/]>,
Johnny Chend68e1192009-12-15 17:24:14 +00002192 RegConstraint<"$false = $dst"> {
2193 let Inst{31-27} = 0b11110;
2194 let Inst{25} = 0;
2195 let Inst{24-21} = 0b0010;
2196 let Inst{20} = 0; // The S bit.
2197 let Inst{19-16} = 0b1111; // Rn
2198 let Inst{15} = 0;
2199}
Evan Chengf49810c2009-06-23 17:48:47 +00002200
Johnny Chend68e1192009-12-15 17:24:14 +00002201class T2I_movcc_sh<bits<2> opcod, dag oops, dag iops, InstrItinClass itin,
2202 string opc, string asm, list<dag> pattern>
2203 : T2I<oops, iops, itin, opc, asm, pattern> {
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{5-4} = opcod; // Shift type.
2210}
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002211def t2MOVCClsl : T2I_movcc_sh<0b00, (outs rGPR:$dst),
2212 (ins rGPR:$false, rGPR:$true, i32imm:$rhs),
Johnny Chend68e1192009-12-15 17:24:14 +00002213 IIC_iCMOVsi, "lsl", ".w\t$dst, $true, $rhs", []>,
2214 RegConstraint<"$false = $dst">;
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002215def t2MOVCClsr : T2I_movcc_sh<0b01, (outs rGPR:$dst),
2216 (ins rGPR:$false, rGPR:$true, i32imm:$rhs),
Johnny Chend68e1192009-12-15 17:24:14 +00002217 IIC_iCMOVsi, "lsr", ".w\t$dst, $true, $rhs", []>,
2218 RegConstraint<"$false = $dst">;
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002219def t2MOVCCasr : T2I_movcc_sh<0b10, (outs rGPR:$dst),
2220 (ins rGPR:$false, rGPR:$true, i32imm:$rhs),
Johnny Chend68e1192009-12-15 17:24:14 +00002221 IIC_iCMOVsi, "asr", ".w\t$dst, $true, $rhs", []>,
2222 RegConstraint<"$false = $dst">;
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002223def t2MOVCCror : T2I_movcc_sh<0b11, (outs rGPR:$dst),
2224 (ins rGPR:$false, rGPR:$true, i32imm:$rhs),
Johnny Chend68e1192009-12-15 17:24:14 +00002225 IIC_iCMOVsi, "ror", ".w\t$dst, $true, $rhs", []>,
2226 RegConstraint<"$false = $dst">;
Evan Chengea420b22010-05-19 01:52:25 +00002227} // neverHasSideEffects
Evan Cheng13f8b362009-08-01 01:43:45 +00002228
David Goodwin5e47a9a2009-06-30 18:04:13 +00002229//===----------------------------------------------------------------------===//
Jim Grosbachc219e4d2009-12-14 18:56:47 +00002230// Atomic operations intrinsics
2231//
2232
2233// memory barriers protect the atomic sequences
2234let hasSideEffects = 1 in {
Evan Cheng11db0682010-08-11 06:22:01 +00002235def t2DMBsy : AInoP<(outs), (ins), ThumbFrm, NoItinerary, "dmb", "",
Evan Chengee349872010-08-11 06:36:31 +00002236 [(ARMMemBarrier)]>, Requires<[IsThumb, HasDB]> {
Johnny Chend68e1192009-12-15 17:24:14 +00002237 let Inst{31-4} = 0xF3BF8F5;
Jim Grosbachc219e4d2009-12-14 18:56:47 +00002238 // FIXME: add support for options other than a full system DMB
Johnny Chend68e1192009-12-15 17:24:14 +00002239 let Inst{3-0} = 0b1111;
Jim Grosbachc219e4d2009-12-14 18:56:47 +00002240}
2241
Evan Cheng11db0682010-08-11 06:22:01 +00002242def t2DSBsy : AInoP<(outs), (ins), ThumbFrm, NoItinerary, "dsb", "",
Evan Chengee349872010-08-11 06:36:31 +00002243 [(ARMSyncBarrier)]>, Requires<[IsThumb, HasDB]> {
Johnny Chend68e1192009-12-15 17:24:14 +00002244 let Inst{31-4} = 0xF3BF8F4;
Jim Grosbachc219e4d2009-12-14 18:56:47 +00002245 // FIXME: add support for options other than a full system DSB
Johnny Chend68e1192009-12-15 17:24:14 +00002246 let Inst{3-0} = 0b1111;
Jim Grosbachc219e4d2009-12-14 18:56:47 +00002247}
2248}
2249
Johnny Chena4339822010-03-03 00:16:28 +00002250// Helper class for multiclass T2MemB -- for disassembly only
2251class T2I_memb<string opc, string asm>
2252 : T2I<(outs), (ins), NoItinerary, opc, asm,
2253 [/* For disassembly only; pattern left blank */]>,
2254 Requires<[IsThumb2, HasV7]> {
2255 let Inst{31-20} = 0xf3b;
2256 let Inst{15-14} = 0b10;
2257 let Inst{12} = 0;
2258}
2259
2260multiclass T2MemB<bits<4> op7_4, string opc> {
2261
2262 def st : T2I_memb<opc, "\tst"> {
2263 let Inst{7-4} = op7_4;
2264 let Inst{3-0} = 0b1110;
2265 }
2266
2267 def ish : T2I_memb<opc, "\tish"> {
2268 let Inst{7-4} = op7_4;
2269 let Inst{3-0} = 0b1011;
2270 }
2271
2272 def ishst : T2I_memb<opc, "\tishst"> {
2273 let Inst{7-4} = op7_4;
2274 let Inst{3-0} = 0b1010;
2275 }
2276
2277 def nsh : T2I_memb<opc, "\tnsh"> {
2278 let Inst{7-4} = op7_4;
2279 let Inst{3-0} = 0b0111;
2280 }
2281
2282 def nshst : T2I_memb<opc, "\tnshst"> {
2283 let Inst{7-4} = op7_4;
2284 let Inst{3-0} = 0b0110;
2285 }
2286
2287 def osh : T2I_memb<opc, "\tosh"> {
2288 let Inst{7-4} = op7_4;
2289 let Inst{3-0} = 0b0011;
2290 }
2291
2292 def oshst : T2I_memb<opc, "\toshst"> {
2293 let Inst{7-4} = op7_4;
2294 let Inst{3-0} = 0b0010;
2295 }
2296}
2297
2298// These DMB variants are for disassembly only.
2299defm t2DMB : T2MemB<0b0101, "dmb">;
2300
2301// These DSB variants are for disassembly only.
2302defm t2DSB : T2MemB<0b0100, "dsb">;
2303
2304// ISB has only full system option -- for disassembly only
2305def t2ISBsy : T2I_memb<"isb", ""> {
2306 let Inst{7-4} = 0b0110;
2307 let Inst{3-0} = 0b1111;
2308}
2309
Johnny Chend68e1192009-12-15 17:24:14 +00002310class T2I_ldrex<bits<2> opcod, dag oops, dag iops, AddrMode am, SizeFlagVal sz,
2311 InstrItinClass itin, string opc, string asm, string cstr,
2312 list<dag> pattern, bits<4> rt2 = 0b1111>
2313 : Thumb2I<oops, iops, am, sz, itin, opc, asm, cstr, pattern> {
2314 let Inst{31-27} = 0b11101;
2315 let Inst{26-20} = 0b0001101;
2316 let Inst{11-8} = rt2;
2317 let Inst{7-6} = 0b01;
2318 let Inst{5-4} = opcod;
2319 let Inst{3-0} = 0b1111;
2320}
2321class T2I_strex<bits<2> opcod, dag oops, dag iops, AddrMode am, SizeFlagVal sz,
2322 InstrItinClass itin, string opc, string asm, string cstr,
2323 list<dag> pattern, bits<4> rt2 = 0b1111>
2324 : Thumb2I<oops, iops, am, sz, itin, opc, asm, cstr, pattern> {
2325 let Inst{31-27} = 0b11101;
2326 let Inst{26-20} = 0b0001100;
2327 let Inst{11-8} = rt2;
2328 let Inst{7-6} = 0b01;
2329 let Inst{5-4} = opcod;
2330}
2331
Jim Grosbachc219e4d2009-12-14 18:56:47 +00002332let mayLoad = 1 in {
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002333def t2LDREXB : T2I_ldrex<0b00, (outs rGPR:$dest), (ins rGPR:$ptr), AddrModeNone,
Johnny Chend68e1192009-12-15 17:24:14 +00002334 Size4Bytes, NoItinerary, "ldrexb", "\t$dest, [$ptr]",
2335 "", []>;
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002336def t2LDREXH : T2I_ldrex<0b01, (outs rGPR:$dest), (ins rGPR:$ptr), AddrModeNone,
Johnny Chend68e1192009-12-15 17:24:14 +00002337 Size4Bytes, NoItinerary, "ldrexh", "\t$dest, [$ptr]",
2338 "", []>;
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002339def t2LDREX : Thumb2I<(outs rGPR:$dest), (ins rGPR:$ptr), AddrModeNone,
Johnny Chend68e1192009-12-15 17:24:14 +00002340 Size4Bytes, NoItinerary,
2341 "ldrex", "\t$dest, [$ptr]", "",
2342 []> {
2343 let Inst{31-27} = 0b11101;
2344 let Inst{26-20} = 0b0000101;
2345 let Inst{11-8} = 0b1111;
2346 let Inst{7-0} = 0b00000000; // imm8 = 0
2347}
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002348def t2LDREXD : T2I_ldrex<0b11, (outs rGPR:$dest, rGPR:$dest2), (ins rGPR:$ptr),
Johnny Chend68e1192009-12-15 17:24:14 +00002349 AddrModeNone, Size4Bytes, NoItinerary,
2350 "ldrexd", "\t$dest, $dest2, [$ptr]", "",
2351 [], {?, ?, ?, ?}>;
Jim Grosbachc219e4d2009-12-14 18:56:47 +00002352}
2353
Jim Grosbach587b0722009-12-16 19:44:06 +00002354let mayStore = 1, Constraints = "@earlyclobber $success" in {
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002355def t2STREXB : T2I_strex<0b00, (outs rGPR:$success), (ins rGPR:$src, rGPR:$ptr),
Johnny Chend68e1192009-12-15 17:24:14 +00002356 AddrModeNone, Size4Bytes, NoItinerary,
2357 "strexb", "\t$success, $src, [$ptr]", "", []>;
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002358def t2STREXH : T2I_strex<0b01, (outs rGPR:$success), (ins rGPR:$src, rGPR:$ptr),
Johnny Chend68e1192009-12-15 17:24:14 +00002359 AddrModeNone, Size4Bytes, NoItinerary,
2360 "strexh", "\t$success, $src, [$ptr]", "", []>;
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002361def t2STREX : Thumb2I<(outs rGPR:$success), (ins rGPR:$src, rGPR:$ptr),
Johnny Chend68e1192009-12-15 17:24:14 +00002362 AddrModeNone, Size4Bytes, NoItinerary,
2363 "strex", "\t$success, $src, [$ptr]", "",
2364 []> {
2365 let Inst{31-27} = 0b11101;
2366 let Inst{26-20} = 0b0000100;
2367 let Inst{7-0} = 0b00000000; // imm8 = 0
2368}
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002369def t2STREXD : T2I_strex<0b11, (outs rGPR:$success),
2370 (ins rGPR:$src, rGPR:$src2, rGPR:$ptr),
Johnny Chend68e1192009-12-15 17:24:14 +00002371 AddrModeNone, Size4Bytes, NoItinerary,
2372 "strexd", "\t$success, $src, $src2, [$ptr]", "", [],
2373 {?, ?, ?, ?}>;
Jim Grosbachc219e4d2009-12-14 18:56:47 +00002374}
2375
Johnny Chen10a77e12010-03-02 22:11:06 +00002376// Clear-Exclusive is for disassembly only.
2377def t2CLREX : T2I<(outs), (ins), NoItinerary, "clrex", "",
2378 [/* For disassembly only; pattern left blank */]>,
2379 Requires<[IsARM, HasV7]> {
2380 let Inst{31-20} = 0xf3b;
2381 let Inst{15-14} = 0b10;
2382 let Inst{12} = 0;
2383 let Inst{7-4} = 0b0010;
2384}
2385
Jim Grosbachc219e4d2009-12-14 18:56:47 +00002386//===----------------------------------------------------------------------===//
David Goodwin334c2642009-07-08 16:09:28 +00002387// TLS Instructions
2388//
2389
2390// __aeabi_read_tp preserves the registers r1-r3.
2391let isCall = 1,
2392 Defs = [R0, R12, LR, CPSR] in {
David Goodwin8b7d7ad2009-08-06 16:52:47 +00002393 def t2TPsoft : T2XI<(outs), (ins), IIC_Br,
Evan Cheng699beba2009-10-27 00:08:59 +00002394 "bl\t__aeabi_read_tp",
Johnny Chend68e1192009-12-15 17:24:14 +00002395 [(set R0, ARMthread_pointer)]> {
2396 let Inst{31-27} = 0b11110;
2397 let Inst{15-14} = 0b11;
2398 let Inst{12} = 1;
2399 }
David Goodwin334c2642009-07-08 16:09:28 +00002400}
2401
2402//===----------------------------------------------------------------------===//
Jim Grosbach5aa16842009-08-11 19:42:21 +00002403// SJLJ Exception handling intrinsics
Jim Grosbach1add6592009-08-13 15:11:43 +00002404// eh_sjlj_setjmp() is an instruction sequence to store the return
Jim Grosbach5aa16842009-08-11 19:42:21 +00002405// address and save #0 in R0 for the non-longjmp case.
2406// Since by its nature we may be coming from some other function to get
2407// here, and we're using the stack frame for the containing function to
2408// save/restore registers, we can't keep anything live in regs across
2409// the eh_sjlj_setjmp(), else it will almost certainly have been tromped upon
2410// when we get here from a longjmp(). We force everthing out of registers
2411// except for our own input by listing the relevant registers in Defs. By
2412// doing so, we also cause the prologue/epilogue code to actively preserve
2413// all of the callee-saved resgisters, which is exactly what we want.
Jim Grosbach0798edd2010-05-27 23:49:24 +00002414// $val is a scratch register for our use.
Jim Grosbacha87ded22010-02-08 23:22:00 +00002415let Defs =
Jim Grosbachf35d2162009-08-13 16:59:44 +00002416 [ R0, R1, R2, R3, R4, R5, R6, R7, R8, R9, R10, R11, R12, LR, D0,
2417 D1, D2, D3, D4, D5, D6, D7, D8, D9, D10, D11, D12, D13, D14, D15,
Jim Grosbach5aa16842009-08-11 19:42:21 +00002418 D16, D17, D18, D19, D20, D21, D22, D23, D24, D25, D26, D27, D28, D29, D30,
Jim Grosbach5caeff52010-05-28 17:37:40 +00002419 D31 ], hasSideEffects = 1, isBarrier = 1 in {
Jim Grosbach9f134b52010-08-26 17:02:47 +00002420 def t2Int_eh_sjlj_setjmp : Thumb2XI<(outs), (ins tGPR:$src, tGPR:$val),
Jim Grosbach5aa16842009-08-11 19:42:21 +00002421 AddrModeNone, SizeSpecial, NoItinerary,
Jim Grosbachc9792a32010-05-28 17:51:20 +00002422 "mov\t$val, pc\t${:comment} begin eh.setjmp\n\t"
2423 "adds\t$val, #7\n\t"
2424 "str\t$val, [$src, #4]\n\t"
2425 "movs\tr0, #0\n\t"
2426 "b\t1f\n\t"
2427 "movs\tr0, #1\t${:comment} end eh.setjmp\n\t"
Jim Grosbach8db5cce2009-08-13 15:12:16 +00002428 "1:", "",
Jim Grosbach9f134b52010-08-26 17:02:47 +00002429 [(set R0, (ARMeh_sjlj_setjmp tGPR:$src, tGPR:$val))]>,
Bob Wilsonec80e262010-04-09 20:41:18 +00002430 Requires<[IsThumb2, HasVFP2]>;
Jim Grosbach5aa16842009-08-11 19:42:21 +00002431}
2432
Bob Wilsonec80e262010-04-09 20:41:18 +00002433let Defs =
Jim Grosbach5caeff52010-05-28 17:37:40 +00002434 [ R0, R1, R2, R3, R4, R5, R6, R7, R8, R9, R10, R11, R12, LR ],
2435 hasSideEffects = 1, isBarrier = 1 in {
Jim Grosbach9f134b52010-08-26 17:02:47 +00002436 def t2Int_eh_sjlj_setjmp_nofp : Thumb2XI<(outs), (ins tGPR:$src, tGPR:$val),
Bob Wilsonec80e262010-04-09 20:41:18 +00002437 AddrModeNone, SizeSpecial, NoItinerary,
Jim Grosbachc9792a32010-05-28 17:51:20 +00002438 "mov\t$val, pc\t${:comment} begin eh.setjmp\n\t"
2439 "adds\t$val, #7\n\t"
2440 "str\t$val, [$src, #4]\n\t"
2441 "movs\tr0, #0\n\t"
2442 "b\t1f\n\t"
2443 "movs\tr0, #1\t${:comment} end eh.setjmp\n\t"
Bob Wilsonec80e262010-04-09 20:41:18 +00002444 "1:", "",
Jim Grosbach9f134b52010-08-26 17:02:47 +00002445 [(set R0, (ARMeh_sjlj_setjmp tGPR:$src, tGPR:$val))]>,
Bob Wilsonec80e262010-04-09 20:41:18 +00002446 Requires<[IsThumb2, NoVFP]>;
2447}
Jim Grosbach5aa16842009-08-11 19:42:21 +00002448
2449
2450//===----------------------------------------------------------------------===//
David Goodwin5e47a9a2009-06-30 18:04:13 +00002451// Control-Flow Instructions
2452//
2453
Evan Chengc50a1cb2009-07-09 22:58:39 +00002454// FIXME: remove when we have a way to marking a MI with these properties.
2455// FIXME: $dst1 should be a def. But the extra ops must be in the end of the
2456// operand list.
2457// FIXME: Should pc be an implicit operand like PICADD, etc?
Evan Cheng0d92f5f2009-10-01 08:22:27 +00002458let isReturn = 1, isTerminator = 1, isBarrier = 1, mayLoad = 1,
2459 hasExtraDefRegAllocReq = 1 in
Bob Wilson815baeb2010-03-13 01:08:20 +00002460 def t2LDM_RET : T2XIt<(outs GPR:$wb), (ins addrmode4:$addr, pred:$p,
2461 reglist:$dsts, variable_ops), IIC_Br,
Bob Wilsonfed76ff2010-07-14 16:02:13 +00002462 "ldm${addr:submode}${p}${addr:wide}\t$addr!, $dsts",
Bob Wilson815baeb2010-03-13 01:08:20 +00002463 "$addr.addr = $wb", []> {
Johnny Chend68e1192009-12-15 17:24:14 +00002464 let Inst{31-27} = 0b11101;
2465 let Inst{26-25} = 0b00;
2466 let Inst{24-23} = {?, ?}; // IA: '01', DB: '10'
2467 let Inst{22} = 0;
Bob Wilson815baeb2010-03-13 01:08:20 +00002468 let Inst{21} = 1; // The W bit.
Johnny Chend68e1192009-12-15 17:24:14 +00002469 let Inst{20} = 1; // Load
2470}
Evan Chengc50a1cb2009-07-09 22:58:39 +00002471
David Goodwin5e47a9a2009-06-30 18:04:13 +00002472let isBranch = 1, isTerminator = 1, isBarrier = 1 in {
2473let isPredicable = 1 in
David Goodwin8b7d7ad2009-08-06 16:52:47 +00002474def t2B : T2XI<(outs), (ins brtarget:$target), IIC_Br,
Evan Cheng699beba2009-10-27 00:08:59 +00002475 "b.w\t$target",
Johnny Chend68e1192009-12-15 17:24:14 +00002476 [(br bb:$target)]> {
2477 let Inst{31-27} = 0b11110;
2478 let Inst{15-14} = 0b10;
2479 let Inst{12} = 1;
2480}
David Goodwin5e47a9a2009-06-30 18:04:13 +00002481
Evan Cheng5657c012009-07-29 02:18:14 +00002482let isNotDuplicable = 1, isIndirectBranch = 1 in {
Evan Cheng66ac5312009-07-25 00:33:29 +00002483def t2BR_JT :
Evan Cheng5657c012009-07-29 02:18:14 +00002484 T2JTI<(outs),
2485 (ins GPR:$target, GPR:$index, jt2block_operand:$jt, i32imm:$id),
Bob Wilsond4d188e2010-07-31 06:28:10 +00002486 IIC_Br, "mov\tpc, $target$jt",
Johnny Chend68e1192009-12-15 17:24:14 +00002487 [(ARMbr2jt GPR:$target, GPR:$index, tjumptable:$jt, imm:$id)]> {
2488 let Inst{31-27} = 0b11101;
2489 let Inst{26-20} = 0b0100100;
2490 let Inst{19-16} = 0b1111;
2491 let Inst{14-12} = 0b000;
2492 let Inst{11-8} = 0b1111; // Rd = pc
2493 let Inst{7-4} = 0b0000;
2494}
Evan Cheng5657c012009-07-29 02:18:14 +00002495
Evan Cheng25f7cfc2009-08-01 06:13:52 +00002496// FIXME: Add a non-pc based case that can be predicated.
Evan Cheng5657c012009-07-29 02:18:14 +00002497def t2TBB :
Evan Cheng25f7cfc2009-08-01 06:13:52 +00002498 T2JTI<(outs),
Evan Cheng5657c012009-07-29 02:18:14 +00002499 (ins tb_addrmode:$index, jt2block_operand:$jt, i32imm:$id),
Bob Wilsond4d188e2010-07-31 06:28:10 +00002500 IIC_Br, "tbb\t$index$jt", []> {
Johnny Chend68e1192009-12-15 17:24:14 +00002501 let Inst{31-27} = 0b11101;
2502 let Inst{26-20} = 0b0001101;
2503 let Inst{19-16} = 0b1111; // Rn = pc (table follows this instruction)
2504 let Inst{15-8} = 0b11110000;
2505 let Inst{7-4} = 0b0000; // B form
2506}
Evan Cheng5657c012009-07-29 02:18:14 +00002507
2508def t2TBH :
Evan Cheng25f7cfc2009-08-01 06:13:52 +00002509 T2JTI<(outs),
Evan Cheng5657c012009-07-29 02:18:14 +00002510 (ins tb_addrmode:$index, jt2block_operand:$jt, i32imm:$id),
Bob Wilsond4d188e2010-07-31 06:28:10 +00002511 IIC_Br, "tbh\t$index$jt", []> {
Johnny Chend68e1192009-12-15 17:24:14 +00002512 let Inst{31-27} = 0b11101;
2513 let Inst{26-20} = 0b0001101;
2514 let Inst{19-16} = 0b1111; // Rn = pc (table follows this instruction)
2515 let Inst{15-8} = 0b11110000;
2516 let Inst{7-4} = 0b0001; // H form
2517}
Johnny Chen93042d12010-03-02 18:14:57 +00002518
2519// Generic versions of the above two instructions, for disassembly only
2520
2521def t2TBBgen : T2I<(outs), (ins GPR:$a, GPR:$b), IIC_Br,
2522 "tbb", "\t[$a, $b]", []>{
2523 let Inst{31-27} = 0b11101;
2524 let Inst{26-20} = 0b0001101;
2525 let Inst{15-8} = 0b11110000;
2526 let Inst{7-4} = 0b0000; // B form
2527}
2528
2529def t2TBHgen : T2I<(outs), (ins GPR:$a, GPR:$b), IIC_Br,
2530 "tbh", "\t[$a, $b, lsl #1]", []> {
2531 let Inst{31-27} = 0b11101;
2532 let Inst{26-20} = 0b0001101;
2533 let Inst{15-8} = 0b11110000;
2534 let Inst{7-4} = 0b0001; // H form
2535}
Evan Cheng5657c012009-07-29 02:18:14 +00002536} // isNotDuplicable, isIndirectBranch
2537
David Goodwinc9a59b52009-06-30 19:50:22 +00002538} // isBranch, isTerminator, isBarrier
David Goodwin5e47a9a2009-06-30 18:04:13 +00002539
2540// FIXME: should be able to write a pattern for ARMBrcond, but can't use
2541// a two-value operand where a dag node expects two operands. :(
2542let isBranch = 1, isTerminator = 1 in
David Goodwin8b7d7ad2009-08-06 16:52:47 +00002543def t2Bcc : T2I<(outs), (ins brtarget:$target), IIC_Br,
Evan Cheng699beba2009-10-27 00:08:59 +00002544 "b", ".w\t$target",
Johnny Chend68e1192009-12-15 17:24:14 +00002545 [/*(ARMbrcond bb:$target, imm:$cc)*/]> {
2546 let Inst{31-27} = 0b11110;
2547 let Inst{15-14} = 0b10;
2548 let Inst{12} = 0;
2549}
Evan Chengf49810c2009-06-23 17:48:47 +00002550
Evan Cheng06e16582009-07-10 01:54:42 +00002551
2552// IT block
Evan Cheng86050dc2010-06-18 23:09:54 +00002553let Defs = [ITSTATE] in
Evan Cheng06e16582009-07-10 01:54:42 +00002554def t2IT : Thumb2XI<(outs), (ins it_pred:$cc, it_mask:$mask),
David Goodwin5d598aa2009-08-19 18:00:44 +00002555 AddrModeNone, Size2Bytes, IIC_iALUx,
Johnny Chend68e1192009-12-15 17:24:14 +00002556 "it$mask\t$cc", "", []> {
2557 // 16-bit instruction.
Johnny Chenbbc71b22009-12-16 02:32:54 +00002558 let Inst{31-16} = 0x0000;
Johnny Chend68e1192009-12-15 17:24:14 +00002559 let Inst{15-8} = 0b10111111;
2560}
Evan Cheng06e16582009-07-10 01:54:42 +00002561
Johnny Chence6275f2010-02-25 19:05:29 +00002562// Branch and Exchange Jazelle -- for disassembly only
2563// Rm = Inst{19-16}
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002564def t2BXJ : T2I<(outs), (ins rGPR:$func), NoItinerary, "bxj", "\t$func",
Johnny Chence6275f2010-02-25 19:05:29 +00002565 [/* For disassembly only; pattern left blank */]> {
2566 let Inst{31-27} = 0b11110;
2567 let Inst{26} = 0;
2568 let Inst{25-20} = 0b111100;
2569 let Inst{15-14} = 0b10;
2570 let Inst{12} = 0;
2571}
2572
Johnny Chen93042d12010-03-02 18:14:57 +00002573// Change Processor State is a system instruction -- for disassembly only.
2574// The singleton $opt operand contains the following information:
2575// opt{4-0} = mode from Inst{4-0}
2576// opt{5} = changemode from Inst{17}
2577// opt{8-6} = AIF from Inst{8-6}
2578// opt{10-9} = imod from Inst{19-18} with 0b10 as enable and 0b11 as disable
Johnny Chendd0f3cf2010-03-10 18:59:38 +00002579def t2CPS : T2XI<(outs),(ins cps_opt:$opt), NoItinerary, "cps$opt",
Johnny Chen93042d12010-03-02 18:14:57 +00002580 [/* For disassembly only; pattern left blank */]> {
2581 let Inst{31-27} = 0b11110;
2582 let Inst{26} = 0;
2583 let Inst{25-20} = 0b111010;
2584 let Inst{15-14} = 0b10;
2585 let Inst{12} = 0;
2586}
2587
Johnny Chen0f7866e2010-03-03 02:09:43 +00002588// A6.3.4 Branches and miscellaneous control
2589// Table A6-14 Change Processor State, and hint instructions
2590// Helper class for disassembly only.
2591class T2I_hint<bits<8> op7_0, string opc, string asm>
2592 : T2I<(outs), (ins), NoItinerary, opc, asm,
2593 [/* For disassembly only; pattern left blank */]> {
2594 let Inst{31-20} = 0xf3a;
2595 let Inst{15-14} = 0b10;
2596 let Inst{12} = 0;
2597 let Inst{10-8} = 0b000;
2598 let Inst{7-0} = op7_0;
2599}
2600
2601def t2NOP : T2I_hint<0b00000000, "nop", ".w">;
2602def t2YIELD : T2I_hint<0b00000001, "yield", ".w">;
2603def t2WFE : T2I_hint<0b00000010, "wfe", ".w">;
2604def t2WFI : T2I_hint<0b00000011, "wfi", ".w">;
2605def t2SEV : T2I_hint<0b00000100, "sev", ".w">;
2606
2607def t2DBG : T2I<(outs),(ins i32imm:$opt), NoItinerary, "dbg", "\t$opt",
2608 [/* For disassembly only; pattern left blank */]> {
2609 let Inst{31-20} = 0xf3a;
2610 let Inst{15-14} = 0b10;
2611 let Inst{12} = 0;
2612 let Inst{10-8} = 0b000;
2613 let Inst{7-4} = 0b1111;
2614}
2615
Johnny Chen6341c5a2010-02-25 20:25:24 +00002616// Secure Monitor Call is a system instruction -- for disassembly only
2617// Option = Inst{19-16}
2618def t2SMC : T2I<(outs), (ins i32imm:$opt), NoItinerary, "smc", "\t$opt",
2619 [/* For disassembly only; pattern left blank */]> {
2620 let Inst{31-27} = 0b11110;
2621 let Inst{26-20} = 0b1111111;
2622 let Inst{15-12} = 0b1000;
2623}
2624
2625// Store Return State is a system instruction -- for disassembly only
2626def t2SRSDBW : T2I<(outs),(ins i32imm:$mode),NoItinerary,"srsdb","\tsp!, $mode",
2627 [/* For disassembly only; pattern left blank */]> {
2628 let Inst{31-27} = 0b11101;
2629 let Inst{26-20} = 0b0000010; // W = 1
2630}
2631
2632def t2SRSDB : T2I<(outs),(ins i32imm:$mode),NoItinerary,"srsdb","\tsp, $mode",
2633 [/* For disassembly only; pattern left blank */]> {
2634 let Inst{31-27} = 0b11101;
2635 let Inst{26-20} = 0b0000000; // W = 0
2636}
2637
2638def t2SRSIAW : T2I<(outs),(ins i32imm:$mode),NoItinerary,"srsia","\tsp!, $mode",
2639 [/* For disassembly only; pattern left blank */]> {
2640 let Inst{31-27} = 0b11101;
2641 let Inst{26-20} = 0b0011010; // W = 1
2642}
2643
2644def t2SRSIA : T2I<(outs), (ins i32imm:$mode),NoItinerary,"srsia","\tsp, $mode",
2645 [/* For disassembly only; pattern left blank */]> {
2646 let Inst{31-27} = 0b11101;
2647 let Inst{26-20} = 0b0011000; // W = 0
2648}
2649
2650// Return From Exception is a system instruction -- for disassembly only
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002651def t2RFEDBW : T2I<(outs), (ins rGPR:$base), NoItinerary, "rfedb", "\t$base!",
Johnny Chen6341c5a2010-02-25 20:25:24 +00002652 [/* For disassembly only; pattern left blank */]> {
2653 let Inst{31-27} = 0b11101;
2654 let Inst{26-20} = 0b0000011; // W = 1
2655}
2656
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002657def t2RFEDB : T2I<(outs), (ins rGPR:$base), NoItinerary, "rfeab", "\t$base",
Johnny Chen6341c5a2010-02-25 20:25:24 +00002658 [/* For disassembly only; pattern left blank */]> {
2659 let Inst{31-27} = 0b11101;
2660 let Inst{26-20} = 0b0000001; // W = 0
2661}
2662
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002663def t2RFEIAW : T2I<(outs), (ins rGPR:$base), NoItinerary, "rfeia", "\t$base!",
Johnny Chen6341c5a2010-02-25 20:25:24 +00002664 [/* For disassembly only; pattern left blank */]> {
2665 let Inst{31-27} = 0b11101;
2666 let Inst{26-20} = 0b0011011; // W = 1
2667}
2668
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002669def t2RFEIA : T2I<(outs), (ins rGPR:$base), NoItinerary, "rfeia", "\t$base",
Johnny Chen6341c5a2010-02-25 20:25:24 +00002670 [/* For disassembly only; pattern left blank */]> {
2671 let Inst{31-27} = 0b11101;
2672 let Inst{26-20} = 0b0011001; // W = 0
2673}
2674
Evan Chengf49810c2009-06-23 17:48:47 +00002675//===----------------------------------------------------------------------===//
2676// Non-Instruction Patterns
2677//
2678
Jim Grosbach65b7f3a2009-10-21 20:44:34 +00002679// Two piece so_imms.
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002680def : T2Pat<(or rGPR:$LHS, t2_so_imm2part:$RHS),
2681 (t2ORRri (t2ORRri rGPR:$LHS, (t2_so_imm2part_1 imm:$RHS)),
Jim Grosbach65b7f3a2009-10-21 20:44:34 +00002682 (t2_so_imm2part_2 imm:$RHS))>;
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002683def : T2Pat<(xor rGPR:$LHS, t2_so_imm2part:$RHS),
2684 (t2EORri (t2EORri rGPR:$LHS, (t2_so_imm2part_1 imm:$RHS)),
Jim Grosbach65b7f3a2009-10-21 20:44:34 +00002685 (t2_so_imm2part_2 imm:$RHS))>;
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002686def : T2Pat<(add rGPR:$LHS, t2_so_imm2part:$RHS),
2687 (t2ADDri (t2ADDri rGPR:$LHS, (t2_so_imm2part_1 imm:$RHS)),
Jim Grosbach65b7f3a2009-10-21 20:44:34 +00002688 (t2_so_imm2part_2 imm:$RHS))>;
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002689def : T2Pat<(add rGPR:$LHS, t2_so_neg_imm2part:$RHS),
2690 (t2SUBri (t2SUBri rGPR:$LHS, (t2_so_neg_imm2part_1 imm:$RHS)),
Jim Grosbach15e6ef82009-11-23 20:35:53 +00002691 (t2_so_neg_imm2part_2 imm:$RHS))>;
Jim Grosbach65b7f3a2009-10-21 20:44:34 +00002692
Evan Cheng5adb66a2009-09-28 09:14:39 +00002693// 32-bit immediate using movw + movt.
2694// This is a single pseudo instruction to make it re-materializable. Remove
2695// when we can do generalized remat.
2696let isReMaterializable = 1 in
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002697def t2MOVi32imm : T2Ix2<(outs rGPR:$dst), (ins i32imm:$src), IIC_iMOVi,
Evan Cheng699beba2009-10-27 00:08:59 +00002698 "movw", "\t$dst, ${src:lo16}\n\tmovt${p}\t$dst, ${src:hi16}",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002699 [(set rGPR:$dst, (i32 imm:$src))]>;
Evan Chengb9803a82009-11-06 23:52:48 +00002700
Anton Korobeynikov5cdc3a92009-11-24 00:44:37 +00002701// ConstantPool, GlobalAddress, and JumpTable
2702def : T2Pat<(ARMWrapper tglobaladdr :$dst), (t2LEApcrel tglobaladdr :$dst)>,
2703 Requires<[IsThumb2, DontUseMovt]>;
2704def : T2Pat<(ARMWrapper tconstpool :$dst), (t2LEApcrel tconstpool :$dst)>;
2705def : T2Pat<(ARMWrapper tglobaladdr :$dst), (t2MOVi32imm tglobaladdr :$dst)>,
2706 Requires<[IsThumb2, UseMovt]>;
2707
2708def : T2Pat<(ARMWrapperJT tjumptable:$dst, imm:$id),
2709 (t2LEApcrelJT tjumptable:$dst, imm:$id)>;
2710
Evan Chengb9803a82009-11-06 23:52:48 +00002711// Pseudo instruction that combines ldr from constpool and add pc. This should
2712// be expanded into two instructions late to allow if-conversion and
2713// scheduling.
Dan Gohmanbc9d98b2010-02-27 23:47:46 +00002714let canFoldAsLoad = 1, isReMaterializable = 1 in
Evan Chengb9803a82009-11-06 23:52:48 +00002715def t2LDRpci_pic : PseudoInst<(outs GPR:$dst), (ins i32imm:$addr, pclabel:$cp),
Jim Grosbach18f30e62010-06-02 21:53:11 +00002716 NoItinerary,
2717 "${:comment} ldr.w\t$dst, $addr\n$cp:\n\tadd\t$dst, pc",
Evan Chengb9803a82009-11-06 23:52:48 +00002718 [(set GPR:$dst, (ARMpic_add (load (ARMWrapper tconstpool:$addr)),
2719 imm:$cp))]>,
2720 Requires<[IsThumb2]>;
Johnny Chen23336552010-02-25 18:46:43 +00002721
2722//===----------------------------------------------------------------------===//
2723// Move between special register and ARM core register -- for disassembly only
2724//
2725
2726// Rd = Instr{11-8}
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002727def t2MRS : T2I<(outs rGPR:$dst), (ins), NoItinerary, "mrs", "\t$dst, cpsr",
Johnny Chen23336552010-02-25 18:46:43 +00002728 [/* For disassembly only; pattern left blank */]> {
2729 let Inst{31-27} = 0b11110;
2730 let Inst{26} = 0;
2731 let Inst{25-21} = 0b11111;
2732 let Inst{20} = 0; // The R bit.
2733 let Inst{15-14} = 0b10;
2734 let Inst{12} = 0;
2735}
2736
2737// Rd = Instr{11-8}
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002738def t2MRSsys : T2I<(outs rGPR:$dst), (ins), NoItinerary, "mrs", "\t$dst, spsr",
Johnny Chen23336552010-02-25 18:46:43 +00002739 [/* For disassembly only; pattern left blank */]> {
2740 let Inst{31-27} = 0b11110;
2741 let Inst{26} = 0;
2742 let Inst{25-21} = 0b11111;
2743 let Inst{20} = 1; // The R bit.
2744 let Inst{15-14} = 0b10;
2745 let Inst{12} = 0;
2746}
2747
Johnny Chen23336552010-02-25 18:46:43 +00002748// Rn = Inst{19-16}
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002749def t2MSR : T2I<(outs), (ins rGPR:$src, msr_mask:$mask), NoItinerary, "msr",
Johnny Chendd0f3cf2010-03-10 18:59:38 +00002750 "\tcpsr$mask, $src",
Johnny Chen23336552010-02-25 18:46:43 +00002751 [/* For disassembly only; pattern left blank */]> {
2752 let Inst{31-27} = 0b11110;
2753 let Inst{26} = 0;
2754 let Inst{25-21} = 0b11100;
2755 let Inst{20} = 0; // The R bit.
2756 let Inst{15-14} = 0b10;
2757 let Inst{12} = 0;
2758}
2759
Johnny Chen23336552010-02-25 18:46:43 +00002760// Rn = Inst{19-16}
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002761def t2MSRsys : T2I<(outs), (ins rGPR:$src, msr_mask:$mask), NoItinerary, "msr",
Johnny Chendd0f3cf2010-03-10 18:59:38 +00002762 "\tspsr$mask, $src",
Johnny Chen23336552010-02-25 18:46:43 +00002763 [/* For disassembly only; pattern left blank */]> {
2764 let Inst{31-27} = 0b11110;
2765 let Inst{26} = 0;
2766 let Inst{25-21} = 0b11100;
2767 let Inst{20} = 1; // The R bit.
2768 let Inst{15-14} = 0b10;
2769 let Inst{12} = 0;
2770}