blob: 31c1eeffdbc9b3b0ebb9231b90f7e6082e05ded0 [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,
David Goodwin1f096272009-07-27 23:34:12 +0000217 bit Commutable = 0, string wide =""> {
Anton Korobeynikov52237112009-06-17 18:13:58 +0000218 // shifted imm
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000219 def ri : T2sI<(outs rGPR:$dst), (ins rGPR:$lhs, t2_so_imm:$rhs), IIC_iALUi,
Evan Cheng699beba2009-10-27 00:08:59 +0000220 opc, "\t$dst, $lhs, $rhs",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000221 [(set rGPR:$dst, (opnode rGPR:$lhs, t2_so_imm:$rhs))]> {
Johnny Chend68e1192009-12-15 17:24:14 +0000222 let Inst{31-27} = 0b11110;
223 let Inst{25} = 0;
224 let Inst{24-21} = opcod;
225 let Inst{20} = ?; // The S bit.
226 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;
236 let Inst{20} = ?; // The S bit.
237 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;
248 let Inst{20} = ?; // The S bit.
249 }
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> :
256 T2I_bin_irs<opcod, opc, opnode, Commutable, ".w">;
David Goodwin1f096272009-07-27 23:34:12 +0000257
Evan Cheng1e249e32009-06-25 20:59:23 +0000258/// T2I_rbin_is - Same as T2I_bin_irs except the order of operands are
Bob Wilson20d8e4e2010-08-13 23:24:25 +0000259/// reversed. The 'rr' form is only defined for the disassembler; for codegen
260/// it is equivalent to the T2I_bin_irs counterpart.
261multiclass T2I_rbin_irs<bits<4> opcod, string opc, PatFrag opnode> {
Evan Chengf49810c2009-06-23 17:48:47 +0000262 // shifted imm
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000263 def ri : T2sI<(outs rGPR:$dst), (ins rGPR:$rhs, t2_so_imm:$lhs), IIC_iALUi,
Bob Wilson4876bdb2010-05-25 04:43:08 +0000264 opc, ".w\t$dst, $rhs, $lhs",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000265 [(set rGPR:$dst, (opnode t2_so_imm:$lhs, rGPR:$rhs))]> {
Johnny Chend68e1192009-12-15 17:24:14 +0000266 let Inst{31-27} = 0b11110;
267 let Inst{25} = 0;
268 let Inst{24-21} = opcod;
Bob Wilson4876bdb2010-05-25 04:43:08 +0000269 let Inst{20} = ?; // The S bit.
Johnny Chend68e1192009-12-15 17:24:14 +0000270 let Inst{15} = 0;
271 }
Bob Wilson20d8e4e2010-08-13 23:24:25 +0000272 // register
273 def rr : T2sI<(outs rGPR:$dst), (ins rGPR:$rhs, rGPR:$lhs), IIC_iALUr,
274 opc, "\t$dst, $rhs, $lhs",
Bob Wilson136e4912010-08-14 03:18:29 +0000275 [/* For disassembly only; pattern left blank */]> {
Bob Wilson20d8e4e2010-08-13 23:24:25 +0000276 let Inst{31-27} = 0b11101;
277 let Inst{26-25} = 0b01;
278 let Inst{24-21} = opcod;
279 let Inst{20} = ?; // The S bit.
280 let Inst{14-12} = 0b000; // imm3
281 let Inst{7-6} = 0b00; // imm2
282 let Inst{5-4} = 0b00; // type
283 }
Evan Chengf49810c2009-06-23 17:48:47 +0000284 // shifted register
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000285 def rs : T2sI<(outs rGPR:$dst), (ins rGPR:$rhs, t2_so_reg:$lhs), IIC_iALUsi,
Bob Wilson4876bdb2010-05-25 04:43:08 +0000286 opc, "\t$dst, $rhs, $lhs",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000287 [(set rGPR:$dst, (opnode t2_so_reg:$lhs, rGPR:$rhs))]> {
Johnny Chend68e1192009-12-15 17:24:14 +0000288 let Inst{31-27} = 0b11101;
289 let Inst{26-25} = 0b01;
290 let Inst{24-21} = opcod;
Bob Wilson4876bdb2010-05-25 04:43:08 +0000291 let Inst{20} = ?; // The S bit.
Johnny Chend68e1192009-12-15 17:24:14 +0000292 }
Evan Chengf49810c2009-06-23 17:48:47 +0000293}
294
Evan Chenga67efd12009-06-23 19:39:13 +0000295/// T2I_bin_s_irs - Similar to T2I_bin_irs except it sets the 's' bit so the
Anton Korobeynikov52237112009-06-17 18:13:58 +0000296/// instruction modifies the CPSR register.
297let Defs = [CPSR] in {
Johnny Chend68e1192009-12-15 17:24:14 +0000298multiclass T2I_bin_s_irs<bits<4> opcod, string opc, PatFrag opnode,
299 bit Commutable = 0> {
Anton Korobeynikov52237112009-06-17 18:13:58 +0000300 // shifted imm
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000301 def ri : T2I<(outs rGPR:$dst), (ins GPR:$lhs, t2_so_imm:$rhs), IIC_iALUi,
Evan Cheng699beba2009-10-27 00:08:59 +0000302 !strconcat(opc, "s"), ".w\t$dst, $lhs, $rhs",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000303 [(set rGPR:$dst, (opnode GPR:$lhs, t2_so_imm:$rhs))]> {
Johnny Chend68e1192009-12-15 17:24:14 +0000304 let Inst{31-27} = 0b11110;
305 let Inst{25} = 0;
306 let Inst{24-21} = opcod;
307 let Inst{20} = 1; // The S bit.
308 let Inst{15} = 0;
309 }
Evan Chenga67efd12009-06-23 19:39:13 +0000310 // register
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000311 def rr : T2I<(outs rGPR:$dst), (ins GPR:$lhs, rGPR:$rhs), IIC_iALUr,
Evan Cheng699beba2009-10-27 00:08:59 +0000312 !strconcat(opc, "s"), ".w\t$dst, $lhs, $rhs",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000313 [(set rGPR:$dst, (opnode GPR:$lhs, rGPR:$rhs))]> {
Evan Cheng8de898a2009-06-26 00:19:44 +0000314 let isCommutable = Commutable;
Johnny Chend68e1192009-12-15 17:24:14 +0000315 let Inst{31-27} = 0b11101;
316 let Inst{26-25} = 0b01;
317 let Inst{24-21} = opcod;
318 let Inst{20} = 1; // The S bit.
319 let Inst{14-12} = 0b000; // imm3
320 let Inst{7-6} = 0b00; // imm2
321 let Inst{5-4} = 0b00; // type
Evan Cheng8de898a2009-06-26 00:19:44 +0000322 }
Anton Korobeynikov52237112009-06-17 18:13:58 +0000323 // shifted register
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000324 def rs : T2I<(outs rGPR:$dst), (ins GPR:$lhs, t2_so_reg:$rhs), IIC_iALUsi,
Evan Cheng699beba2009-10-27 00:08:59 +0000325 !strconcat(opc, "s"), ".w\t$dst, $lhs, $rhs",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000326 [(set rGPR:$dst, (opnode GPR:$lhs, t2_so_reg:$rhs))]> {
Johnny Chend68e1192009-12-15 17:24:14 +0000327 let Inst{31-27} = 0b11101;
328 let Inst{26-25} = 0b01;
329 let Inst{24-21} = opcod;
330 let Inst{20} = 1; // The S bit.
331 }
Anton Korobeynikov52237112009-06-17 18:13:58 +0000332}
333}
334
Evan Chenga67efd12009-06-23 19:39:13 +0000335/// T2I_bin_ii12rs - Defines a set of (op reg, {so_imm|imm0_4095|r|so_reg})
336/// patterns for a binary operation that produces a value.
Johnny Chend68e1192009-12-15 17:24:14 +0000337multiclass T2I_bin_ii12rs<bits<3> op23_21, string opc, PatFrag opnode,
338 bit Commutable = 0> {
Evan Chengf49810c2009-06-23 17:48:47 +0000339 // shifted imm
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000340 def ri : T2sI<(outs rGPR:$dst), (ins GPR:$lhs, t2_so_imm:$rhs), IIC_iALUi,
Evan Cheng699beba2009-10-27 00:08:59 +0000341 opc, ".w\t$dst, $lhs, $rhs",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000342 [(set rGPR:$dst, (opnode GPR:$lhs, t2_so_imm:$rhs))]> {
Johnny Chend68e1192009-12-15 17:24:14 +0000343 let Inst{31-27} = 0b11110;
344 let Inst{25} = 0;
345 let Inst{24} = 1;
346 let Inst{23-21} = op23_21;
347 let Inst{20} = 0; // The S bit.
348 let Inst{15} = 0;
349 }
Evan Chengf49810c2009-06-23 17:48:47 +0000350 // 12-bit imm
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000351 def ri12 : T2I<(outs rGPR:$dst), (ins GPR:$lhs, imm0_4095:$rhs), IIC_iALUi,
Bob Wilsonf5fd4992010-03-08 22:56:15 +0000352 !strconcat(opc, "w"), "\t$dst, $lhs, $rhs",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000353 [(set rGPR:$dst, (opnode GPR:$lhs, imm0_4095:$rhs))]> {
Johnny Chend68e1192009-12-15 17:24:14 +0000354 let Inst{31-27} = 0b11110;
355 let Inst{25} = 1;
356 let Inst{24} = 0;
357 let Inst{23-21} = op23_21;
358 let Inst{20} = 0; // The S bit.
359 let Inst{15} = 0;
360 }
Evan Chenga67efd12009-06-23 19:39:13 +0000361 // register
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000362 def rr : T2sI<(outs rGPR:$dst), (ins GPR:$lhs, rGPR:$rhs), IIC_iALUr,
Evan Cheng699beba2009-10-27 00:08:59 +0000363 opc, ".w\t$dst, $lhs, $rhs",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000364 [(set rGPR:$dst, (opnode GPR:$lhs, rGPR:$rhs))]> {
Evan Cheng8de898a2009-06-26 00:19:44 +0000365 let isCommutable = Commutable;
Johnny Chend68e1192009-12-15 17:24:14 +0000366 let Inst{31-27} = 0b11101;
367 let Inst{26-25} = 0b01;
368 let Inst{24} = 1;
369 let Inst{23-21} = op23_21;
370 let Inst{20} = 0; // The S bit.
371 let Inst{14-12} = 0b000; // imm3
372 let Inst{7-6} = 0b00; // imm2
373 let Inst{5-4} = 0b00; // type
Evan Cheng8de898a2009-06-26 00:19:44 +0000374 }
Evan Chengf49810c2009-06-23 17:48:47 +0000375 // shifted register
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000376 def rs : T2sI<(outs rGPR:$dst), (ins GPR:$lhs, t2_so_reg:$rhs), IIC_iALUsi,
Evan Cheng699beba2009-10-27 00:08:59 +0000377 opc, ".w\t$dst, $lhs, $rhs",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000378 [(set rGPR:$dst, (opnode GPR:$lhs, t2_so_reg:$rhs))]> {
Johnny Chend68e1192009-12-15 17:24:14 +0000379 let Inst{31-27} = 0b11101;
Johnny Chend68e1192009-12-15 17:24:14 +0000380 let Inst{26-25} = 0b01;
Johnny Chend248ffb2010-01-08 17:41:33 +0000381 let Inst{24} = 1;
Johnny Chend68e1192009-12-15 17:24:14 +0000382 let Inst{23-21} = op23_21;
383 let Inst{20} = 0; // The S bit.
384 }
Evan Chengf49810c2009-06-23 17:48:47 +0000385}
386
Jim Grosbach6935efc2009-11-24 00:20:27 +0000387/// T2I_adde_sube_irs - Defines a set of (op reg, {so_imm|r|so_reg}) patterns
Jim Grosbach39be8fc2010-02-16 20:42:29 +0000388/// for a binary operation that produces a value and use the carry
Jim Grosbach6935efc2009-11-24 00:20:27 +0000389/// bit. It's not predicable.
Evan Cheng62674222009-06-25 23:34:10 +0000390let Uses = [CPSR] in {
Jim Grosbach80dc1162010-02-16 21:23:02 +0000391multiclass T2I_adde_sube_irs<bits<4> opcod, string opc, PatFrag opnode,
392 bit Commutable = 0> {
Anton Korobeynikov52237112009-06-17 18:13:58 +0000393 // shifted imm
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000394 def ri : T2sI<(outs rGPR:$dst), (ins rGPR:$lhs, t2_so_imm:$rhs), IIC_iALUi,
Evan Cheng699beba2009-10-27 00:08:59 +0000395 opc, "\t$dst, $lhs, $rhs",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000396 [(set rGPR:$dst, (opnode rGPR:$lhs, t2_so_imm:$rhs))]>,
Jim Grosbach39be8fc2010-02-16 20:42:29 +0000397 Requires<[IsThumb2]> {
Johnny Chend68e1192009-12-15 17:24:14 +0000398 let Inst{31-27} = 0b11110;
399 let Inst{25} = 0;
400 let Inst{24-21} = opcod;
401 let Inst{20} = 0; // The S bit.
402 let Inst{15} = 0;
403 }
Evan Chenga67efd12009-06-23 19:39:13 +0000404 // register
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000405 def rr : T2sI<(outs rGPR:$dst), (ins rGPR:$lhs, rGPR:$rhs), IIC_iALUr,
Evan Cheng699beba2009-10-27 00:08:59 +0000406 opc, ".w\t$dst, $lhs, $rhs",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000407 [(set rGPR:$dst, (opnode rGPR:$lhs, rGPR:$rhs))]>,
Jim Grosbach39be8fc2010-02-16 20:42:29 +0000408 Requires<[IsThumb2]> {
Evan Cheng8de898a2009-06-26 00:19:44 +0000409 let isCommutable = Commutable;
Johnny Chend68e1192009-12-15 17:24:14 +0000410 let Inst{31-27} = 0b11101;
411 let Inst{26-25} = 0b01;
412 let Inst{24-21} = opcod;
413 let Inst{20} = 0; // The S bit.
414 let Inst{14-12} = 0b000; // imm3
415 let Inst{7-6} = 0b00; // imm2
416 let Inst{5-4} = 0b00; // type
Evan Cheng8de898a2009-06-26 00:19:44 +0000417 }
Anton Korobeynikov52237112009-06-17 18:13:58 +0000418 // shifted register
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000419 def rs : T2sI<(outs rGPR:$dst), (ins rGPR:$lhs, t2_so_reg:$rhs), IIC_iALUsi,
Evan Cheng699beba2009-10-27 00:08:59 +0000420 opc, ".w\t$dst, $lhs, $rhs",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000421 [(set rGPR:$dst, (opnode rGPR:$lhs, t2_so_reg:$rhs))]>,
Jim Grosbach39be8fc2010-02-16 20:42:29 +0000422 Requires<[IsThumb2]> {
Johnny Chend68e1192009-12-15 17:24:14 +0000423 let Inst{31-27} = 0b11101;
424 let Inst{26-25} = 0b01;
425 let Inst{24-21} = opcod;
426 let Inst{20} = 0; // The S bit.
427 }
Jim Grosbach39be8fc2010-02-16 20:42:29 +0000428}
429
430// Carry setting variants
431let Defs = [CPSR] in {
Jim Grosbach80dc1162010-02-16 21:23:02 +0000432multiclass T2I_adde_sube_s_irs<bits<4> opcod, string opc, PatFrag opnode,
433 bit Commutable = 0> {
Evan Cheng62674222009-06-25 23:34:10 +0000434 // shifted imm
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000435 def ri : T2sI<(outs rGPR:$dst), (ins rGPR:$lhs, t2_so_imm:$rhs), IIC_iALUi,
Johnny Chenb5031ad2010-03-02 19:38:59 +0000436 opc, "\t$dst, $lhs, $rhs",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000437 [(set rGPR:$dst, (opnode rGPR:$lhs, t2_so_imm:$rhs))]>,
Johnny Chenb5031ad2010-03-02 19:38:59 +0000438 Requires<[IsThumb2]> {
Johnny Chend68e1192009-12-15 17:24:14 +0000439 let Inst{31-27} = 0b11110;
440 let Inst{25} = 0;
441 let Inst{24-21} = opcod;
442 let Inst{20} = 1; // The S bit.
443 let Inst{15} = 0;
444 }
Evan Cheng62674222009-06-25 23:34:10 +0000445 // register
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000446 def rr : T2sI<(outs rGPR:$dst), (ins rGPR:$lhs, rGPR:$rhs), IIC_iALUr,
Johnny Chenb5031ad2010-03-02 19:38:59 +0000447 opc, ".w\t$dst, $lhs, $rhs",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000448 [(set rGPR:$dst, (opnode rGPR:$lhs, rGPR:$rhs))]>,
Johnny Chenb5031ad2010-03-02 19:38:59 +0000449 Requires<[IsThumb2]> {
Johnny Chend68e1192009-12-15 17:24:14 +0000450 let isCommutable = Commutable;
451 let Inst{31-27} = 0b11101;
452 let Inst{26-25} = 0b01;
453 let Inst{24-21} = opcod;
454 let Inst{20} = 1; // The S bit.
455 let Inst{14-12} = 0b000; // imm3
456 let Inst{7-6} = 0b00; // imm2
457 let Inst{5-4} = 0b00; // type
Evan Cheng8de898a2009-06-26 00:19:44 +0000458 }
Evan Cheng62674222009-06-25 23:34:10 +0000459 // shifted register
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000460 def rs : T2sI<(outs rGPR:$dst), (ins rGPR:$lhs, t2_so_reg:$rhs), IIC_iALUsi,
Johnny Chenb5031ad2010-03-02 19:38:59 +0000461 opc, ".w\t$dst, $lhs, $rhs",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000462 [(set rGPR:$dst, (opnode rGPR:$lhs, t2_so_reg:$rhs))]>,
Johnny Chenb5031ad2010-03-02 19:38:59 +0000463 Requires<[IsThumb2]> {
Johnny Chend68e1192009-12-15 17:24:14 +0000464 let Inst{31-27} = 0b11101;
465 let Inst{26-25} = 0b01;
466 let Inst{24-21} = opcod;
467 let Inst{20} = 1; // The S bit.
Evan Cheng8de898a2009-06-26 00:19:44 +0000468 }
Evan Chengf49810c2009-06-23 17:48:47 +0000469}
470}
Jim Grosbach39be8fc2010-02-16 20:42:29 +0000471}
Evan Chengf49810c2009-06-23 17:48:47 +0000472
Bob Wilson20d8e4e2010-08-13 23:24:25 +0000473/// T2I_rbin_s_is - Same as T2I_rbin_irs except sets 's' bit and the register
474/// version is not needed since this is only for codegen.
Evan Cheng1e249e32009-06-25 20:59:23 +0000475let Defs = [CPSR] in {
Johnny Chend68e1192009-12-15 17:24:14 +0000476multiclass T2I_rbin_s_is<bits<4> opcod, string opc, PatFrag opnode> {
Evan Chengf49810c2009-06-23 17:48:47 +0000477 // shifted imm
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000478 def ri : T2I<(outs rGPR:$dst), (ins rGPR:$rhs, t2_so_imm:$lhs), IIC_iALUi,
Bob Wilson4876bdb2010-05-25 04:43:08 +0000479 !strconcat(opc, "s"), ".w\t$dst, $rhs, $lhs",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000480 [(set rGPR:$dst, (opnode t2_so_imm:$lhs, rGPR:$rhs))]> {
Johnny Chend68e1192009-12-15 17:24:14 +0000481 let Inst{31-27} = 0b11110;
482 let Inst{25} = 0;
483 let Inst{24-21} = opcod;
484 let Inst{20} = 1; // The S bit.
485 let Inst{15} = 0;
486 }
Evan Chengf49810c2009-06-23 17:48:47 +0000487 // shifted register
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000488 def rs : T2I<(outs rGPR:$dst), (ins rGPR:$rhs, t2_so_reg:$lhs), IIC_iALUsi,
Bob Wilson4876bdb2010-05-25 04:43:08 +0000489 !strconcat(opc, "s"), "\t$dst, $rhs, $lhs",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000490 [(set rGPR:$dst, (opnode t2_so_reg:$lhs, rGPR:$rhs))]> {
Johnny Chend68e1192009-12-15 17:24:14 +0000491 let Inst{31-27} = 0b11101;
492 let Inst{26-25} = 0b01;
493 let Inst{24-21} = opcod;
494 let Inst{20} = 1; // The S bit.
495 }
Evan Chengf49810c2009-06-23 17:48:47 +0000496}
497}
498
Evan Chenga67efd12009-06-23 19:39:13 +0000499/// T2I_sh_ir - Defines a set of (op reg, {so_imm|r}) patterns for a shift /
500// rotate operation that produces a value.
Johnny Chend68e1192009-12-15 17:24:14 +0000501multiclass T2I_sh_ir<bits<2> opcod, string opc, PatFrag opnode> {
Evan Chenga67efd12009-06-23 19:39:13 +0000502 // 5-bit imm
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000503 def ri : T2sI<(outs rGPR:$dst), (ins rGPR:$lhs, i32imm:$rhs), IIC_iMOVsi,
Evan Cheng699beba2009-10-27 00:08:59 +0000504 opc, ".w\t$dst, $lhs, $rhs",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000505 [(set rGPR:$dst, (opnode rGPR:$lhs, imm1_31:$rhs))]> {
Johnny Chend68e1192009-12-15 17:24:14 +0000506 let Inst{31-27} = 0b11101;
507 let Inst{26-21} = 0b010010;
508 let Inst{19-16} = 0b1111; // Rn
509 let Inst{5-4} = opcod;
510 }
Evan Chenga67efd12009-06-23 19:39:13 +0000511 // register
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000512 def rr : T2sI<(outs rGPR:$dst), (ins rGPR:$lhs, rGPR:$rhs), IIC_iMOVsr,
Evan Cheng699beba2009-10-27 00:08:59 +0000513 opc, ".w\t$dst, $lhs, $rhs",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000514 [(set rGPR:$dst, (opnode rGPR:$lhs, rGPR:$rhs))]> {
Johnny Chend68e1192009-12-15 17:24:14 +0000515 let Inst{31-27} = 0b11111;
516 let Inst{26-23} = 0b0100;
517 let Inst{22-21} = opcod;
518 let Inst{15-12} = 0b1111;
519 let Inst{7-4} = 0b0000;
520 }
Evan Chenga67efd12009-06-23 19:39:13 +0000521}
Evan Chengf49810c2009-06-23 17:48:47 +0000522
Johnny Chend68e1192009-12-15 17:24:14 +0000523/// T2I_cmp_irs - Defines a set of (op r, {so_imm|r|so_reg}) cmp / test
Evan Chenga67efd12009-06-23 19:39:13 +0000524/// patterns. Similar to T2I_bin_irs except the instruction does not produce
Evan Chengf49810c2009-06-23 17:48:47 +0000525/// a explicit result, only implicitly set CPSR.
Bill Wendlingf0e132c2010-08-19 00:05:48 +0000526let isCompare = 1, Defs = [CPSR] in {
Johnny Chend68e1192009-12-15 17:24:14 +0000527multiclass T2I_cmp_irs<bits<4> opcod, string opc, PatFrag opnode> {
Evan Chengf49810c2009-06-23 17:48:47 +0000528 // shifted imm
David Goodwin5d598aa2009-08-19 18:00:44 +0000529 def ri : T2I<(outs), (ins GPR:$lhs, t2_so_imm:$rhs), IIC_iCMPi,
Evan Cheng699beba2009-10-27 00:08:59 +0000530 opc, ".w\t$lhs, $rhs",
Johnny Chend68e1192009-12-15 17:24:14 +0000531 [(opnode GPR:$lhs, t2_so_imm:$rhs)]> {
532 let Inst{31-27} = 0b11110;
533 let Inst{25} = 0;
534 let Inst{24-21} = opcod;
535 let Inst{20} = 1; // The S bit.
536 let Inst{15} = 0;
537 let Inst{11-8} = 0b1111; // Rd
538 }
Evan Chenga67efd12009-06-23 19:39:13 +0000539 // register
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000540 def rr : T2I<(outs), (ins GPR:$lhs, rGPR:$rhs), IIC_iCMPr,
Evan Cheng699beba2009-10-27 00:08:59 +0000541 opc, ".w\t$lhs, $rhs",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000542 [(opnode GPR:$lhs, rGPR:$rhs)]> {
Johnny Chend68e1192009-12-15 17:24:14 +0000543 let Inst{31-27} = 0b11101;
544 let Inst{26-25} = 0b01;
545 let Inst{24-21} = opcod;
546 let Inst{20} = 1; // The S bit.
547 let Inst{14-12} = 0b000; // imm3
548 let Inst{11-8} = 0b1111; // Rd
549 let Inst{7-6} = 0b00; // imm2
550 let Inst{5-4} = 0b00; // type
551 }
Evan Chengf49810c2009-06-23 17:48:47 +0000552 // shifted register
David Goodwin5d598aa2009-08-19 18:00:44 +0000553 def rs : T2I<(outs), (ins GPR:$lhs, t2_so_reg:$rhs), IIC_iCMPsi,
Evan Cheng699beba2009-10-27 00:08:59 +0000554 opc, ".w\t$lhs, $rhs",
Johnny Chend68e1192009-12-15 17:24:14 +0000555 [(opnode GPR:$lhs, t2_so_reg:$rhs)]> {
556 let Inst{31-27} = 0b11101;
557 let Inst{26-25} = 0b01;
558 let Inst{24-21} = opcod;
559 let Inst{20} = 1; // The S bit.
560 let Inst{11-8} = 0b1111; // Rd
561 }
Anton Korobeynikov52237112009-06-17 18:13:58 +0000562}
563}
564
Evan Chengf3c21b82009-06-30 02:15:48 +0000565/// T2I_ld - Defines a set of (op r, {imm12|imm8|so_reg}) load patterns.
Johnny Chend68e1192009-12-15 17:24:14 +0000566multiclass T2I_ld<bit signed, bits<2> opcod, string opc, PatFrag opnode> {
David Goodwin5d598aa2009-08-19 18:00:44 +0000567 def i12 : T2Ii12<(outs GPR:$dst), (ins t2addrmode_imm12:$addr), IIC_iLoadi,
Evan Cheng699beba2009-10-27 00:08:59 +0000568 opc, ".w\t$dst, $addr",
Johnny Chend68e1192009-12-15 17:24:14 +0000569 [(set GPR:$dst, (opnode t2addrmode_imm12:$addr))]> {
570 let Inst{31-27} = 0b11111;
571 let Inst{26-25} = 0b00;
572 let Inst{24} = signed;
573 let Inst{23} = 1;
574 let Inst{22-21} = opcod;
575 let Inst{20} = 1; // load
576 }
David Goodwin5d598aa2009-08-19 18:00:44 +0000577 def i8 : T2Ii8 <(outs GPR:$dst), (ins t2addrmode_imm8:$addr), IIC_iLoadi,
Evan Cheng699beba2009-10-27 00:08:59 +0000578 opc, "\t$dst, $addr",
Johnny Chend68e1192009-12-15 17:24:14 +0000579 [(set GPR:$dst, (opnode t2addrmode_imm8:$addr))]> {
580 let Inst{31-27} = 0b11111;
581 let Inst{26-25} = 0b00;
582 let Inst{24} = signed;
583 let Inst{23} = 0;
584 let Inst{22-21} = opcod;
585 let Inst{20} = 1; // load
586 let Inst{11} = 1;
587 // Offset: index==TRUE, wback==FALSE
588 let Inst{10} = 1; // The P bit.
589 let Inst{8} = 0; // The W bit.
590 }
David Goodwin5d598aa2009-08-19 18:00:44 +0000591 def s : T2Iso <(outs GPR:$dst), (ins t2addrmode_so_reg:$addr), IIC_iLoadr,
Evan Cheng699beba2009-10-27 00:08:59 +0000592 opc, ".w\t$dst, $addr",
Johnny Chend68e1192009-12-15 17:24:14 +0000593 [(set GPR:$dst, (opnode t2addrmode_so_reg:$addr))]> {
594 let Inst{31-27} = 0b11111;
595 let Inst{26-25} = 0b00;
596 let Inst{24} = signed;
597 let Inst{23} = 0;
598 let Inst{22-21} = opcod;
599 let Inst{20} = 1; // load
600 let Inst{11-6} = 0b000000;
601 }
David Goodwin5d598aa2009-08-19 18:00:44 +0000602 def pci : T2Ipc <(outs GPR:$dst), (ins i32imm:$addr), IIC_iLoadi,
Evan Cheng699beba2009-10-27 00:08:59 +0000603 opc, ".w\t$dst, $addr",
Evan Cheng9eda6892009-10-31 03:39:36 +0000604 [(set GPR:$dst, (opnode (ARMWrapper tconstpool:$addr)))]> {
605 let isReMaterializable = 1;
Johnny Chend68e1192009-12-15 17:24:14 +0000606 let Inst{31-27} = 0b11111;
607 let Inst{26-25} = 0b00;
608 let Inst{24} = signed;
609 let Inst{23} = ?; // add = (U == '1')
610 let Inst{22-21} = opcod;
611 let Inst{20} = 1; // load
612 let Inst{19-16} = 0b1111; // Rn
Evan Cheng9eda6892009-10-31 03:39:36 +0000613 }
Evan Chengf3c21b82009-06-30 02:15:48 +0000614}
615
David Goodwin73b8f162009-06-30 22:11:34 +0000616/// T2I_st - Defines a set of (op r, {imm12|imm8|so_reg}) store patterns.
Johnny Chend68e1192009-12-15 17:24:14 +0000617multiclass T2I_st<bits<2> opcod, string opc, PatFrag opnode> {
David Goodwin5d598aa2009-08-19 18:00:44 +0000618 def i12 : T2Ii12<(outs), (ins GPR:$src, t2addrmode_imm12:$addr), IIC_iStorei,
Evan Cheng699beba2009-10-27 00:08:59 +0000619 opc, ".w\t$src, $addr",
Johnny Chend68e1192009-12-15 17:24:14 +0000620 [(opnode GPR:$src, t2addrmode_imm12:$addr)]> {
621 let Inst{31-27} = 0b11111;
622 let Inst{26-23} = 0b0001;
623 let Inst{22-21} = opcod;
624 let Inst{20} = 0; // !load
625 }
David Goodwin5d598aa2009-08-19 18:00:44 +0000626 def i8 : T2Ii8 <(outs), (ins GPR:$src, t2addrmode_imm8:$addr), IIC_iStorei,
Evan Cheng699beba2009-10-27 00:08:59 +0000627 opc, "\t$src, $addr",
Johnny Chend68e1192009-12-15 17:24:14 +0000628 [(opnode GPR:$src, t2addrmode_imm8:$addr)]> {
629 let Inst{31-27} = 0b11111;
630 let Inst{26-23} = 0b0000;
631 let Inst{22-21} = opcod;
632 let Inst{20} = 0; // !load
633 let Inst{11} = 1;
634 // Offset: index==TRUE, wback==FALSE
635 let Inst{10} = 1; // The P bit.
636 let Inst{8} = 0; // The W bit.
637 }
David Goodwin5d598aa2009-08-19 18:00:44 +0000638 def s : T2Iso <(outs), (ins GPR:$src, t2addrmode_so_reg:$addr), IIC_iStorer,
Evan Cheng699beba2009-10-27 00:08:59 +0000639 opc, ".w\t$src, $addr",
Johnny Chend68e1192009-12-15 17:24:14 +0000640 [(opnode GPR:$src, t2addrmode_so_reg:$addr)]> {
641 let Inst{31-27} = 0b11111;
642 let Inst{26-23} = 0b0000;
643 let Inst{22-21} = opcod;
644 let Inst{20} = 0; // !load
645 let Inst{11-6} = 0b000000;
646 }
David Goodwin73b8f162009-06-30 22:11:34 +0000647}
648
Evan Chengd27c9fc2009-07-03 01:43:10 +0000649/// T2I_unary_rrot - A unary operation with two forms: one whose operand is a
650/// register and one whose operand is a register rotated by 8/16/24.
Johnny Chend68e1192009-12-15 17:24:14 +0000651multiclass T2I_unary_rrot<bits<3> opcod, string opc, PatFrag opnode> {
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000652 def r : T2I<(outs rGPR:$dst), (ins rGPR:$src), IIC_iUNAr,
Evan Cheng699beba2009-10-27 00:08:59 +0000653 opc, ".w\t$dst, $src",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000654 [(set rGPR:$dst, (opnode rGPR:$src))]> {
Johnny Chend68e1192009-12-15 17:24:14 +0000655 let Inst{31-27} = 0b11111;
656 let Inst{26-23} = 0b0100;
657 let Inst{22-20} = opcod;
658 let Inst{19-16} = 0b1111; // Rn
659 let Inst{15-12} = 0b1111;
660 let Inst{7} = 1;
661 let Inst{5-4} = 0b00; // rotate
662 }
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000663 def r_rot : T2I<(outs rGPR:$dst), (ins rGPR:$src, i32imm:$rot), IIC_iUNAsi,
Evan Cheng699beba2009-10-27 00:08:59 +0000664 opc, ".w\t$dst, $src, ror $rot",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000665 [(set rGPR:$dst, (opnode (rotr rGPR:$src, rot_imm:$rot)))]> {
Johnny Chend68e1192009-12-15 17:24:14 +0000666 let Inst{31-27} = 0b11111;
667 let Inst{26-23} = 0b0100;
668 let Inst{22-20} = opcod;
669 let Inst{19-16} = 0b1111; // Rn
670 let Inst{15-12} = 0b1111;
671 let Inst{7} = 1;
672 let Inst{5-4} = {?,?}; // rotate
673 }
Evan Chengd27c9fc2009-07-03 01:43:10 +0000674}
675
Eli Friedman761fa7a2010-06-24 18:20:04 +0000676// UXTB16 - Requres T2ExtractPack, does not need the .w qualifier.
677multiclass T2I_unary_rrot_uxtb16<bits<3> opcod, string opc, PatFrag opnode> {
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000678 def r : T2I<(outs rGPR:$dst), (ins rGPR:$src), IIC_iUNAr,
Johnny Chen267124c2010-03-04 22:24:41 +0000679 opc, "\t$dst, $src",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000680 [(set rGPR:$dst, (opnode rGPR:$src))]>,
Jim Grosbach29402132010-05-05 23:44:43 +0000681 Requires<[HasT2ExtractPack]> {
Johnny Chen267124c2010-03-04 22:24:41 +0000682 let Inst{31-27} = 0b11111;
683 let Inst{26-23} = 0b0100;
684 let Inst{22-20} = opcod;
685 let Inst{19-16} = 0b1111; // Rn
686 let Inst{15-12} = 0b1111;
687 let Inst{7} = 1;
688 let Inst{5-4} = 0b00; // rotate
689 }
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000690 def r_rot : T2I<(outs rGPR:$dst), (ins rGPR:$src, i32imm:$rot), IIC_iUNAsi,
Johnny Chen267124c2010-03-04 22:24:41 +0000691 opc, "\t$dst, $src, ror $rot",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000692 [(set rGPR:$dst, (opnode (rotr rGPR:$src, rot_imm:$rot)))]>,
Jim Grosbach29402132010-05-05 23:44:43 +0000693 Requires<[HasT2ExtractPack]> {
Johnny Chen267124c2010-03-04 22:24:41 +0000694 let Inst{31-27} = 0b11111;
695 let Inst{26-23} = 0b0100;
696 let Inst{22-20} = opcod;
697 let Inst{19-16} = 0b1111; // Rn
698 let Inst{15-12} = 0b1111;
699 let Inst{7} = 1;
700 let Inst{5-4} = {?,?}; // rotate
701 }
702}
703
Eli Friedman761fa7a2010-06-24 18:20:04 +0000704// SXTB16 - Requres T2ExtractPack, does not need the .w qualifier, no pattern
705// supported yet.
706multiclass T2I_unary_rrot_sxtb16<bits<3> opcod, string opc> {
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000707 def r : T2I<(outs rGPR:$dst), (ins rGPR:$src), IIC_iUNAr,
Johnny Chen93042d12010-03-02 18:14:57 +0000708 opc, "\t$dst, $src", []> {
709 let Inst{31-27} = 0b11111;
710 let Inst{26-23} = 0b0100;
711 let Inst{22-20} = opcod;
712 let Inst{19-16} = 0b1111; // Rn
713 let Inst{15-12} = 0b1111;
714 let Inst{7} = 1;
715 let Inst{5-4} = 0b00; // rotate
716 }
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000717 def r_rot : T2I<(outs rGPR:$dst), (ins rGPR:$src, i32imm:$rot), IIC_iUNAsi,
Johnny Chen93042d12010-03-02 18:14:57 +0000718 opc, "\t$dst, $src, ror $rot", []> {
719 let Inst{31-27} = 0b11111;
720 let Inst{26-23} = 0b0100;
721 let Inst{22-20} = opcod;
722 let Inst{19-16} = 0b1111; // Rn
723 let Inst{15-12} = 0b1111;
724 let Inst{7} = 1;
725 let Inst{5-4} = {?,?}; // rotate
726 }
727}
728
Evan Chengd27c9fc2009-07-03 01:43:10 +0000729/// T2I_bin_rrot - A binary operation with two forms: one whose operand is a
730/// register and one whose operand is a register rotated by 8/16/24.
Johnny Chend68e1192009-12-15 17:24:14 +0000731multiclass T2I_bin_rrot<bits<3> opcod, string opc, PatFrag opnode> {
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000732 def rr : T2I<(outs rGPR:$dst), (ins rGPR:$LHS, rGPR:$RHS), IIC_iALUr,
Evan Cheng699beba2009-10-27 00:08:59 +0000733 opc, "\t$dst, $LHS, $RHS",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000734 [(set rGPR:$dst, (opnode rGPR:$LHS, rGPR:$RHS))]>,
Jim Grosbach29402132010-05-05 23:44:43 +0000735 Requires<[HasT2ExtractPack]> {
Johnny Chend68e1192009-12-15 17:24:14 +0000736 let Inst{31-27} = 0b11111;
737 let Inst{26-23} = 0b0100;
738 let Inst{22-20} = opcod;
739 let Inst{15-12} = 0b1111;
740 let Inst{7} = 1;
741 let Inst{5-4} = 0b00; // rotate
742 }
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000743 def rr_rot : T2I<(outs rGPR:$dst), (ins rGPR:$LHS, rGPR:$RHS, i32imm:$rot),
Evan Cheng699beba2009-10-27 00:08:59 +0000744 IIC_iALUsr, opc, "\t$dst, $LHS, $RHS, ror $rot",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000745 [(set rGPR:$dst, (opnode rGPR:$LHS,
746 (rotr rGPR:$RHS, rot_imm:$rot)))]>,
Jim Grosbach29402132010-05-05 23:44:43 +0000747 Requires<[HasT2ExtractPack]> {
Johnny Chend68e1192009-12-15 17:24:14 +0000748 let Inst{31-27} = 0b11111;
749 let Inst{26-23} = 0b0100;
750 let Inst{22-20} = opcod;
751 let Inst{15-12} = 0b1111;
752 let Inst{7} = 1;
753 let Inst{5-4} = {?,?}; // rotate
754 }
Evan Chengd27c9fc2009-07-03 01:43:10 +0000755}
756
Johnny Chen93042d12010-03-02 18:14:57 +0000757// DO variant - disassembly only, no pattern
758
759multiclass T2I_bin_rrot_DO<bits<3> opcod, string opc> {
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000760 def rr : T2I<(outs rGPR:$dst), (ins rGPR:$LHS, rGPR:$RHS), IIC_iALUr,
Johnny Chen93042d12010-03-02 18:14:57 +0000761 opc, "\t$dst, $LHS, $RHS", []> {
762 let Inst{31-27} = 0b11111;
763 let Inst{26-23} = 0b0100;
764 let Inst{22-20} = opcod;
765 let Inst{15-12} = 0b1111;
766 let Inst{7} = 1;
767 let Inst{5-4} = 0b00; // rotate
768 }
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000769 def rr_rot : T2I<(outs rGPR:$dst), (ins rGPR:$LHS, rGPR:$RHS, i32imm:$rot),
Johnny Chen93042d12010-03-02 18:14:57 +0000770 IIC_iALUsr, opc, "\t$dst, $LHS, $RHS, ror $rot", []> {
771 let Inst{31-27} = 0b11111;
772 let Inst{26-23} = 0b0100;
773 let Inst{22-20} = opcod;
774 let Inst{15-12} = 0b1111;
775 let Inst{7} = 1;
776 let Inst{5-4} = {?,?}; // rotate
777 }
778}
779
Anton Korobeynikov52237112009-06-17 18:13:58 +0000780//===----------------------------------------------------------------------===//
Evan Cheng9cb9e672009-06-27 02:26:13 +0000781// Instructions
782//===----------------------------------------------------------------------===//
783
784//===----------------------------------------------------------------------===//
Evan Chenga09b9ca2009-06-24 23:47:58 +0000785// Miscellaneous Instructions.
786//
787
Evan Chenga09b9ca2009-06-24 23:47:58 +0000788// LEApcrel - Load a pc-relative address into a register without offending the
789// assembler.
Evan Chengea420b22010-05-19 01:52:25 +0000790let neverHasSideEffects = 1 in {
Evan Cheng9085f982010-05-19 07:28:01 +0000791let isReMaterializable = 1 in
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000792def t2LEApcrel : T2XI<(outs rGPR:$dst), (ins i32imm:$label, pred:$p), IIC_iALUi,
Daniel Dunbar9db683b2010-08-11 04:46:10 +0000793 "adr${p}.w\t$dst, #$label", []> {
Johnny Chend68e1192009-12-15 17:24:14 +0000794 let Inst{31-27} = 0b11110;
795 let Inst{25-24} = 0b10;
796 // Inst{23:21} = '11' (add = FALSE) or '00' (add = TRUE)
797 let Inst{22} = 0;
798 let Inst{20} = 0;
799 let Inst{19-16} = 0b1111; // Rn
800 let Inst{15} = 0;
801}
Jim Grosbacha967d112010-06-21 21:27:27 +0000802} // neverHasSideEffects
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000803def t2LEApcrelJT : T2XI<(outs rGPR:$dst),
Bob Wilson4f38b382009-08-21 21:58:55 +0000804 (ins i32imm:$label, nohash_imm:$id, pred:$p), IIC_iALUi,
Daniel Dunbar9db683b2010-08-11 04:46:10 +0000805 "adr${p}.w\t$dst, #${label}_${id}", []> {
Johnny Chend68e1192009-12-15 17:24:14 +0000806 let Inst{31-27} = 0b11110;
807 let Inst{25-24} = 0b10;
808 // Inst{23:21} = '11' (add = FALSE) or '00' (add = TRUE)
809 let Inst{22} = 0;
810 let Inst{20} = 0;
811 let Inst{19-16} = 0b1111; // Rn
812 let Inst{15} = 0;
813}
Evan Chenga09b9ca2009-06-24 23:47:58 +0000814
Evan Cheng86198642009-08-07 00:34:42 +0000815// ADD r, sp, {so_imm|i12}
David Goodwin5d598aa2009-08-19 18:00:44 +0000816def t2ADDrSPi : T2sI<(outs GPR:$dst), (ins GPR:$sp, t2_so_imm:$imm),
Johnny Chend68e1192009-12-15 17:24:14 +0000817 IIC_iALUi, "add", ".w\t$dst, $sp, $imm", []> {
818 let Inst{31-27} = 0b11110;
819 let Inst{25} = 0;
820 let Inst{24-21} = 0b1000;
821 let Inst{20} = ?; // The S bit.
822 let Inst{19-16} = 0b1101; // Rn = sp
823 let Inst{15} = 0;
824}
Jim Grosbach64171712010-02-16 21:07:46 +0000825def t2ADDrSPi12 : T2I<(outs GPR:$dst), (ins GPR:$sp, imm0_4095:$imm),
Johnny Chend68e1192009-12-15 17:24:14 +0000826 IIC_iALUi, "addw", "\t$dst, $sp, $imm", []> {
827 let Inst{31-27} = 0b11110;
828 let Inst{25} = 1;
829 let Inst{24-21} = 0b0000;
830 let Inst{20} = 0; // The S bit.
831 let Inst{19-16} = 0b1101; // Rn = sp
832 let Inst{15} = 0;
833}
Evan Cheng86198642009-08-07 00:34:42 +0000834
835// ADD r, sp, so_reg
David Goodwin5d598aa2009-08-19 18:00:44 +0000836def t2ADDrSPs : T2sI<(outs GPR:$dst), (ins GPR:$sp, t2_so_reg:$rhs),
Johnny Chend68e1192009-12-15 17:24:14 +0000837 IIC_iALUsi, "add", ".w\t$dst, $sp, $rhs", []> {
838 let Inst{31-27} = 0b11101;
839 let Inst{26-25} = 0b01;
840 let Inst{24-21} = 0b1000;
841 let Inst{20} = ?; // The S bit.
842 let Inst{19-16} = 0b1101; // Rn = sp
843 let Inst{15} = 0;
844}
Evan Cheng86198642009-08-07 00:34:42 +0000845
846// SUB r, sp, {so_imm|i12}
David Goodwin5d598aa2009-08-19 18:00:44 +0000847def t2SUBrSPi : T2sI<(outs GPR:$dst), (ins GPR:$sp, t2_so_imm:$imm),
Johnny Chend68e1192009-12-15 17:24:14 +0000848 IIC_iALUi, "sub", ".w\t$dst, $sp, $imm", []> {
849 let Inst{31-27} = 0b11110;
850 let Inst{25} = 0;
851 let Inst{24-21} = 0b1101;
852 let Inst{20} = ?; // The S bit.
853 let Inst{19-16} = 0b1101; // Rn = sp
854 let Inst{15} = 0;
855}
David Goodwin5d598aa2009-08-19 18:00:44 +0000856def t2SUBrSPi12 : T2I<(outs GPR:$dst), (ins GPR:$sp, imm0_4095:$imm),
Johnny Chend68e1192009-12-15 17:24:14 +0000857 IIC_iALUi, "subw", "\t$dst, $sp, $imm", []> {
858 let Inst{31-27} = 0b11110;
859 let Inst{25} = 1;
860 let Inst{24-21} = 0b0101;
861 let Inst{20} = 0; // The S bit.
862 let Inst{19-16} = 0b1101; // Rn = sp
863 let Inst{15} = 0;
864}
Evan Cheng86198642009-08-07 00:34:42 +0000865
866// SUB r, sp, so_reg
David Goodwin5d598aa2009-08-19 18:00:44 +0000867def t2SUBrSPs : T2sI<(outs GPR:$dst), (ins GPR:$sp, t2_so_reg:$rhs),
868 IIC_iALUsi,
Johnny Chend68e1192009-12-15 17:24:14 +0000869 "sub", "\t$dst, $sp, $rhs", []> {
870 let Inst{31-27} = 0b11101;
871 let Inst{26-25} = 0b01;
872 let Inst{24-21} = 0b1101;
873 let Inst{20} = ?; // The S bit.
874 let Inst{19-16} = 0b1101; // Rn = sp
875 let Inst{15} = 0;
876}
Evan Cheng86198642009-08-07 00:34:42 +0000877
Jim Grosbachb1dc3932010-05-05 20:44:35 +0000878// Signed and unsigned division on v7-M
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000879def t2SDIV : T2I<(outs rGPR:$dst), (ins rGPR:$a, rGPR:$b), IIC_iALUi,
Jim Grosbachb1dc3932010-05-05 20:44:35 +0000880 "sdiv", "\t$dst, $a, $b",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000881 [(set rGPR:$dst, (sdiv rGPR:$a, rGPR:$b))]>,
Jim Grosbach29402132010-05-05 23:44:43 +0000882 Requires<[HasDivide]> {
Johnny Chen93042d12010-03-02 18:14:57 +0000883 let Inst{31-27} = 0b11111;
884 let Inst{26-21} = 0b011100;
885 let Inst{20} = 0b1;
886 let Inst{15-12} = 0b1111;
887 let Inst{7-4} = 0b1111;
888}
889
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000890def t2UDIV : T2I<(outs rGPR:$dst), (ins rGPR:$a, rGPR:$b), IIC_iALUi,
Jim Grosbachb1dc3932010-05-05 20:44:35 +0000891 "udiv", "\t$dst, $a, $b",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000892 [(set rGPR:$dst, (udiv rGPR:$a, rGPR:$b))]>,
Jim Grosbach29402132010-05-05 23:44:43 +0000893 Requires<[HasDivide]> {
Johnny Chen93042d12010-03-02 18:14:57 +0000894 let Inst{31-27} = 0b11111;
895 let Inst{26-21} = 0b011101;
896 let Inst{20} = 0b1;
897 let Inst{15-12} = 0b1111;
898 let Inst{7-4} = 0b1111;
899}
900
Evan Chenga09b9ca2009-06-24 23:47:58 +0000901//===----------------------------------------------------------------------===//
Evan Cheng9cb9e672009-06-27 02:26:13 +0000902// Load / store Instructions.
903//
904
Evan Cheng055b0312009-06-29 07:51:04 +0000905// Load
Dan Gohmanbc9d98b2010-02-27 23:47:46 +0000906let canFoldAsLoad = 1, isReMaterializable = 1 in
Johnny Chend68e1192009-12-15 17:24:14 +0000907defm t2LDR : T2I_ld<0, 0b10, "ldr", UnOpFrag<(load node:$Src)>>;
Evan Cheng055b0312009-06-29 07:51:04 +0000908
Evan Chengf3c21b82009-06-30 02:15:48 +0000909// Loads with zero extension
Johnny Chend68e1192009-12-15 17:24:14 +0000910defm t2LDRH : T2I_ld<0, 0b01, "ldrh", UnOpFrag<(zextloadi16 node:$Src)>>;
911defm t2LDRB : T2I_ld<0, 0b00, "ldrb", UnOpFrag<(zextloadi8 node:$Src)>>;
Evan Cheng055b0312009-06-29 07:51:04 +0000912
Evan Chengf3c21b82009-06-30 02:15:48 +0000913// Loads with sign extension
Johnny Chend68e1192009-12-15 17:24:14 +0000914defm t2LDRSH : T2I_ld<1, 0b01, "ldrsh", UnOpFrag<(sextloadi16 node:$Src)>>;
915defm t2LDRSB : T2I_ld<1, 0b00, "ldrsb", UnOpFrag<(sextloadi8 node:$Src)>>;
Evan Cheng055b0312009-06-29 07:51:04 +0000916
Evan Cheng5fd1c9b2010-05-19 06:07:03 +0000917let mayLoad = 1, neverHasSideEffects = 1, hasExtraDefRegAllocReq = 1 in {
Evan Chengf3c21b82009-06-30 02:15:48 +0000918// Load doubleword
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000919def t2LDRDi8 : T2Ii8s4<1, 0, 1, (outs rGPR:$dst1, rGPR:$dst2),
Evan Chenge298ab22009-09-27 09:46:04 +0000920 (ins t2addrmode_imm8s4:$addr),
Johnny Chen83142992010-01-05 22:37:28 +0000921 IIC_iLoadi, "ldrd", "\t$dst1, $addr", []>;
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000922def t2LDRDpci : T2Ii8s4<1, 0, 1, (outs rGPR:$dst1, rGPR:$dst2),
Evan Chenge298ab22009-09-27 09:46:04 +0000923 (ins i32imm:$addr), IIC_iLoadi,
Johnny Chen83142992010-01-05 22:37:28 +0000924 "ldrd", "\t$dst1, $addr", []> {
Johnny Chend68e1192009-12-15 17:24:14 +0000925 let Inst{19-16} = 0b1111; // Rn
926}
Evan Cheng5fd1c9b2010-05-19 06:07:03 +0000927} // mayLoad = 1, neverHasSideEffects = 1, hasExtraDefRegAllocReq = 1
Evan Chengf3c21b82009-06-30 02:15:48 +0000928
929// zextload i1 -> zextload i8
930def : T2Pat<(zextloadi1 t2addrmode_imm12:$addr),
931 (t2LDRBi12 t2addrmode_imm12:$addr)>;
932def : T2Pat<(zextloadi1 t2addrmode_imm8:$addr),
933 (t2LDRBi8 t2addrmode_imm8:$addr)>;
934def : T2Pat<(zextloadi1 t2addrmode_so_reg:$addr),
935 (t2LDRBs t2addrmode_so_reg:$addr)>;
936def : T2Pat<(zextloadi1 (ARMWrapper tconstpool:$addr)),
937 (t2LDRBpci tconstpool:$addr)>;
938
939// extload -> zextload
940// FIXME: Reduce the number of patterns by legalizing extload to zextload
941// earlier?
942def : T2Pat<(extloadi1 t2addrmode_imm12:$addr),
943 (t2LDRBi12 t2addrmode_imm12:$addr)>;
944def : T2Pat<(extloadi1 t2addrmode_imm8:$addr),
945 (t2LDRBi8 t2addrmode_imm8:$addr)>;
946def : T2Pat<(extloadi1 t2addrmode_so_reg:$addr),
947 (t2LDRBs t2addrmode_so_reg:$addr)>;
948def : T2Pat<(extloadi1 (ARMWrapper tconstpool:$addr)),
949 (t2LDRBpci tconstpool:$addr)>;
950
951def : T2Pat<(extloadi8 t2addrmode_imm12:$addr),
952 (t2LDRBi12 t2addrmode_imm12:$addr)>;
953def : T2Pat<(extloadi8 t2addrmode_imm8:$addr),
954 (t2LDRBi8 t2addrmode_imm8:$addr)>;
955def : T2Pat<(extloadi8 t2addrmode_so_reg:$addr),
956 (t2LDRBs t2addrmode_so_reg:$addr)>;
957def : T2Pat<(extloadi8 (ARMWrapper tconstpool:$addr)),
958 (t2LDRBpci tconstpool:$addr)>;
959
960def : T2Pat<(extloadi16 t2addrmode_imm12:$addr),
961 (t2LDRHi12 t2addrmode_imm12:$addr)>;
962def : T2Pat<(extloadi16 t2addrmode_imm8:$addr),
963 (t2LDRHi8 t2addrmode_imm8:$addr)>;
964def : T2Pat<(extloadi16 t2addrmode_so_reg:$addr),
965 (t2LDRHs t2addrmode_so_reg:$addr)>;
966def : T2Pat<(extloadi16 (ARMWrapper tconstpool:$addr)),
967 (t2LDRHpci tconstpool:$addr)>;
Evan Cheng055b0312009-06-29 07:51:04 +0000968
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000969// FIXME: The destination register of the loads and stores can't be PC, but
970// can be SP. We need another regclass (similar to rGPR) to represent
971// that. Not a pressing issue since these are selected manually,
972// not via pattern.
973
Evan Chenge88d5ce2009-07-02 07:28:31 +0000974// Indexed loads
Evan Cheng5fd1c9b2010-05-19 06:07:03 +0000975let mayLoad = 1, neverHasSideEffects = 1 in {
Johnny Chend68e1192009-12-15 17:24:14 +0000976def t2LDR_PRE : T2Iidxldst<0, 0b10, 1, 1, (outs GPR:$dst, GPR:$base_wb),
Evan Chenge88d5ce2009-07-02 07:28:31 +0000977 (ins t2addrmode_imm8:$addr),
David Goodwin5d598aa2009-08-19 18:00:44 +0000978 AddrModeT2_i8, IndexModePre, IIC_iLoadiu,
Evan Cheng699beba2009-10-27 00:08:59 +0000979 "ldr", "\t$dst, $addr!", "$addr.base = $base_wb",
Evan Chenge88d5ce2009-07-02 07:28:31 +0000980 []>;
981
Johnny Chend68e1192009-12-15 17:24:14 +0000982def t2LDR_POST : T2Iidxldst<0, 0b10, 1, 0, (outs GPR:$dst, GPR:$base_wb),
Evan Chenge88d5ce2009-07-02 07:28:31 +0000983 (ins GPR:$base, t2am_imm8_offset:$offset),
David Goodwin5d598aa2009-08-19 18:00:44 +0000984 AddrModeT2_i8, IndexModePost, IIC_iLoadiu,
Evan Cheng699beba2009-10-27 00:08:59 +0000985 "ldr", "\t$dst, [$base], $offset", "$base = $base_wb",
Evan Chenge88d5ce2009-07-02 07:28:31 +0000986 []>;
987
Johnny Chend68e1192009-12-15 17:24:14 +0000988def t2LDRB_PRE : T2Iidxldst<0, 0b00, 1, 1, (outs GPR:$dst, GPR:$base_wb),
Evan Chenge88d5ce2009-07-02 07:28:31 +0000989 (ins t2addrmode_imm8:$addr),
David Goodwin5d598aa2009-08-19 18:00:44 +0000990 AddrModeT2_i8, IndexModePre, IIC_iLoadiu,
Evan Cheng699beba2009-10-27 00:08:59 +0000991 "ldrb", "\t$dst, $addr!", "$addr.base = $base_wb",
Evan Chenge88d5ce2009-07-02 07:28:31 +0000992 []>;
Johnny Chend68e1192009-12-15 17:24:14 +0000993def t2LDRB_POST : T2Iidxldst<0, 0b00, 1, 0, (outs GPR:$dst, GPR:$base_wb),
Evan Chenge88d5ce2009-07-02 07:28:31 +0000994 (ins GPR:$base, t2am_imm8_offset:$offset),
David Goodwin5d598aa2009-08-19 18:00:44 +0000995 AddrModeT2_i8, IndexModePost, IIC_iLoadiu,
Evan Cheng699beba2009-10-27 00:08:59 +0000996 "ldrb", "\t$dst, [$base], $offset", "$base = $base_wb",
Evan Chenge88d5ce2009-07-02 07:28:31 +0000997 []>;
998
Johnny Chend68e1192009-12-15 17:24:14 +0000999def t2LDRH_PRE : T2Iidxldst<0, 0b01, 1, 1, (outs GPR:$dst, GPR:$base_wb),
Evan Chenge88d5ce2009-07-02 07:28:31 +00001000 (ins t2addrmode_imm8:$addr),
David Goodwin5d598aa2009-08-19 18:00:44 +00001001 AddrModeT2_i8, IndexModePre, IIC_iLoadiu,
Evan Cheng699beba2009-10-27 00:08:59 +00001002 "ldrh", "\t$dst, $addr!", "$addr.base = $base_wb",
Evan Chenge88d5ce2009-07-02 07:28:31 +00001003 []>;
Johnny Chend68e1192009-12-15 17:24:14 +00001004def t2LDRH_POST : T2Iidxldst<0, 0b01, 1, 0, (outs GPR:$dst, GPR:$base_wb),
Evan Chenge88d5ce2009-07-02 07:28:31 +00001005 (ins GPR:$base, t2am_imm8_offset:$offset),
David Goodwin5d598aa2009-08-19 18:00:44 +00001006 AddrModeT2_i8, IndexModePost, IIC_iLoadiu,
Evan Cheng699beba2009-10-27 00:08:59 +00001007 "ldrh", "\t$dst, [$base], $offset", "$base = $base_wb",
Evan Chenge88d5ce2009-07-02 07:28:31 +00001008 []>;
1009
Johnny Chend68e1192009-12-15 17:24:14 +00001010def t2LDRSB_PRE : T2Iidxldst<1, 0b00, 1, 1, (outs GPR:$dst, GPR:$base_wb),
Evan Cheng4fbb9962009-07-02 23:16:11 +00001011 (ins t2addrmode_imm8:$addr),
David Goodwin5d598aa2009-08-19 18:00:44 +00001012 AddrModeT2_i8, IndexModePre, IIC_iLoadiu,
Evan Cheng699beba2009-10-27 00:08:59 +00001013 "ldrsb", "\t$dst, $addr!", "$addr.base = $base_wb",
Evan Cheng4fbb9962009-07-02 23:16:11 +00001014 []>;
Johnny Chend68e1192009-12-15 17:24:14 +00001015def t2LDRSB_POST : T2Iidxldst<1, 0b00, 1, 0, (outs GPR:$dst, GPR:$base_wb),
Evan Cheng4fbb9962009-07-02 23:16:11 +00001016 (ins GPR:$base, t2am_imm8_offset:$offset),
David Goodwin5d598aa2009-08-19 18:00:44 +00001017 AddrModeT2_i8, IndexModePost, IIC_iLoadiu,
Evan Cheng699beba2009-10-27 00:08:59 +00001018 "ldrsb", "\t$dst, [$base], $offset", "$base = $base_wb",
Evan Cheng4fbb9962009-07-02 23:16:11 +00001019 []>;
1020
Johnny Chend68e1192009-12-15 17:24:14 +00001021def t2LDRSH_PRE : T2Iidxldst<1, 0b01, 1, 1, (outs GPR:$dst, GPR:$base_wb),
Evan Cheng4fbb9962009-07-02 23:16:11 +00001022 (ins t2addrmode_imm8:$addr),
David Goodwin5d598aa2009-08-19 18:00:44 +00001023 AddrModeT2_i8, IndexModePre, IIC_iLoadiu,
Evan Cheng699beba2009-10-27 00:08:59 +00001024 "ldrsh", "\t$dst, $addr!", "$addr.base = $base_wb",
Evan Cheng4fbb9962009-07-02 23:16:11 +00001025 []>;
Johnny Chend68e1192009-12-15 17:24:14 +00001026def t2LDRSH_POST : T2Iidxldst<1, 0b01, 1, 0, (outs GPR:$dst, GPR:$base_wb),
Evan Cheng4fbb9962009-07-02 23:16:11 +00001027 (ins GPR:$base, t2am_imm8_offset:$offset),
David Goodwin5d598aa2009-08-19 18:00:44 +00001028 AddrModeT2_i8, IndexModePost, IIC_iLoadiu,
Evan Cheng699beba2009-10-27 00:08:59 +00001029 "ldrsh", "\t$dst, [$base], $offset", "$base = $base_wb",
Evan Cheng4fbb9962009-07-02 23:16:11 +00001030 []>;
Evan Cheng5fd1c9b2010-05-19 06:07:03 +00001031} // mayLoad = 1, neverHasSideEffects = 1
Evan Cheng4fbb9962009-07-02 23:16:11 +00001032
Johnny Chene54a3ef2010-03-03 18:45:36 +00001033// LDRT, LDRBT, LDRHT, LDRSBT, LDRSHT all have offset mode (PUW=0b110) and are
1034// for disassembly only.
1035// Ref: A8.6.57 LDR (immediate, Thumb) Encoding T4
1036class T2IldT<bit signed, bits<2> type, string opc>
1037 : T2Ii8<(outs GPR:$dst), (ins t2addrmode_imm8:$addr), IIC_iLoadi, opc,
1038 "\t$dst, $addr", []> {
1039 let Inst{31-27} = 0b11111;
1040 let Inst{26-25} = 0b00;
1041 let Inst{24} = signed;
1042 let Inst{23} = 0;
1043 let Inst{22-21} = type;
1044 let Inst{20} = 1; // load
1045 let Inst{11} = 1;
1046 let Inst{10-8} = 0b110; // PUW.
1047}
1048
1049def t2LDRT : T2IldT<0, 0b10, "ldrt">;
1050def t2LDRBT : T2IldT<0, 0b00, "ldrbt">;
1051def t2LDRHT : T2IldT<0, 0b01, "ldrht">;
1052def t2LDRSBT : T2IldT<1, 0b00, "ldrsbt">;
1053def t2LDRSHT : T2IldT<1, 0b01, "ldrsht">;
1054
David Goodwin73b8f162009-06-30 22:11:34 +00001055// Store
Jim Grosbach80dc1162010-02-16 21:23:02 +00001056defm t2STR :T2I_st<0b10,"str", BinOpFrag<(store node:$LHS, node:$RHS)>>;
1057defm t2STRB:T2I_st<0b00,"strb",BinOpFrag<(truncstorei8 node:$LHS, node:$RHS)>>;
1058defm t2STRH:T2I_st<0b01,"strh",BinOpFrag<(truncstorei16 node:$LHS, node:$RHS)>>;
David Goodwin73b8f162009-06-30 22:11:34 +00001059
David Goodwin6647cea2009-06-30 22:50:01 +00001060// Store doubleword
Evan Cheng5fd1c9b2010-05-19 06:07:03 +00001061let mayLoad = 1, neverHasSideEffects = 1, hasExtraSrcRegAllocReq = 1 in
Johnny Chend68e1192009-12-15 17:24:14 +00001062def t2STRDi8 : T2Ii8s4<1, 0, 0, (outs),
Evan Chenge298ab22009-09-27 09:46:04 +00001063 (ins GPR:$src1, GPR:$src2, t2addrmode_imm8s4:$addr),
Johnny Chen83142992010-01-05 22:37:28 +00001064 IIC_iStorer, "strd", "\t$src1, $addr", []>;
David Goodwin6647cea2009-06-30 22:50:01 +00001065
Evan Cheng6d94f112009-07-03 00:06:39 +00001066// Indexed stores
Johnny Chend68e1192009-12-15 17:24:14 +00001067def t2STR_PRE : T2Iidxldst<0, 0b10, 0, 1, (outs GPR:$base_wb),
Evan Cheng6d94f112009-07-03 00:06:39 +00001068 (ins GPR:$src, GPR:$base, t2am_imm8_offset:$offset),
David Goodwin5d598aa2009-08-19 18:00:44 +00001069 AddrModeT2_i8, IndexModePre, IIC_iStoreiu,
Evan Cheng699beba2009-10-27 00:08:59 +00001070 "str", "\t$src, [$base, $offset]!", "$base = $base_wb",
Evan Cheng6d94f112009-07-03 00:06:39 +00001071 [(set GPR:$base_wb,
1072 (pre_store GPR:$src, GPR:$base, t2am_imm8_offset:$offset))]>;
1073
Johnny Chend68e1192009-12-15 17:24:14 +00001074def t2STR_POST : T2Iidxldst<0, 0b10, 0, 0, (outs GPR:$base_wb),
Evan Cheng6d94f112009-07-03 00:06:39 +00001075 (ins GPR:$src, GPR:$base, t2am_imm8_offset:$offset),
David Goodwin5d598aa2009-08-19 18:00:44 +00001076 AddrModeT2_i8, IndexModePost, IIC_iStoreiu,
Evan Cheng699beba2009-10-27 00:08:59 +00001077 "str", "\t$src, [$base], $offset", "$base = $base_wb",
Evan Cheng6d94f112009-07-03 00:06:39 +00001078 [(set GPR:$base_wb,
Jim Grosbach6935efc2009-11-24 00:20:27 +00001079 (post_store GPR:$src, GPR:$base, t2am_imm8_offset:$offset))]>;
Evan Cheng6d94f112009-07-03 00:06:39 +00001080
Johnny Chend68e1192009-12-15 17:24:14 +00001081def t2STRH_PRE : T2Iidxldst<0, 0b01, 0, 1, (outs GPR:$base_wb),
Evan Cheng6d94f112009-07-03 00:06:39 +00001082 (ins GPR:$src, GPR:$base, t2am_imm8_offset:$offset),
David Goodwin5d598aa2009-08-19 18:00:44 +00001083 AddrModeT2_i8, IndexModePre, IIC_iStoreiu,
Evan Cheng699beba2009-10-27 00:08:59 +00001084 "strh", "\t$src, [$base, $offset]!", "$base = $base_wb",
Evan Cheng6d94f112009-07-03 00:06:39 +00001085 [(set GPR:$base_wb,
1086 (pre_truncsti16 GPR:$src, GPR:$base, t2am_imm8_offset:$offset))]>;
1087
Johnny Chend68e1192009-12-15 17:24:14 +00001088def t2STRH_POST : T2Iidxldst<0, 0b01, 0, 0, (outs GPR:$base_wb),
Evan Cheng6d94f112009-07-03 00:06:39 +00001089 (ins GPR:$src, GPR:$base, t2am_imm8_offset:$offset),
David Goodwin5d598aa2009-08-19 18:00:44 +00001090 AddrModeT2_i8, IndexModePost, IIC_iStoreiu,
Evan Cheng699beba2009-10-27 00:08:59 +00001091 "strh", "\t$src, [$base], $offset", "$base = $base_wb",
Evan Cheng6d94f112009-07-03 00:06:39 +00001092 [(set GPR:$base_wb,
1093 (post_truncsti16 GPR:$src, GPR:$base, t2am_imm8_offset:$offset))]>;
1094
Johnny Chend68e1192009-12-15 17:24:14 +00001095def t2STRB_PRE : T2Iidxldst<0, 0b00, 0, 1, (outs GPR:$base_wb),
Evan Cheng6d94f112009-07-03 00:06:39 +00001096 (ins GPR:$src, GPR:$base, t2am_imm8_offset:$offset),
David Goodwin5d598aa2009-08-19 18:00:44 +00001097 AddrModeT2_i8, IndexModePre, IIC_iStoreiu,
Evan Cheng699beba2009-10-27 00:08:59 +00001098 "strb", "\t$src, [$base, $offset]!", "$base = $base_wb",
Evan Cheng6d94f112009-07-03 00:06:39 +00001099 [(set GPR:$base_wb,
1100 (pre_truncsti8 GPR:$src, GPR:$base, t2am_imm8_offset:$offset))]>;
1101
Johnny Chend68e1192009-12-15 17:24:14 +00001102def t2STRB_POST : T2Iidxldst<0, 0b00, 0, 0, (outs GPR:$base_wb),
Evan Cheng6d94f112009-07-03 00:06:39 +00001103 (ins GPR:$src, GPR:$base, t2am_imm8_offset:$offset),
David Goodwin5d598aa2009-08-19 18:00:44 +00001104 AddrModeT2_i8, IndexModePost, IIC_iStoreiu,
Evan Cheng699beba2009-10-27 00:08:59 +00001105 "strb", "\t$src, [$base], $offset", "$base = $base_wb",
Evan Cheng6d94f112009-07-03 00:06:39 +00001106 [(set GPR:$base_wb,
1107 (post_truncsti8 GPR:$src, GPR:$base, t2am_imm8_offset:$offset))]>;
1108
Johnny Chene54a3ef2010-03-03 18:45:36 +00001109// STRT, STRBT, STRHT all have offset mode (PUW=0b110) and are for disassembly
1110// only.
1111// Ref: A8.6.193 STR (immediate, Thumb) Encoding T4
1112class T2IstT<bits<2> type, string opc>
1113 : T2Ii8<(outs GPR:$src), (ins t2addrmode_imm8:$addr), IIC_iStorei, opc,
1114 "\t$src, $addr", []> {
1115 let Inst{31-27} = 0b11111;
1116 let Inst{26-25} = 0b00;
1117 let Inst{24} = 0; // not signed
1118 let Inst{23} = 0;
1119 let Inst{22-21} = type;
1120 let Inst{20} = 0; // store
1121 let Inst{11} = 1;
1122 let Inst{10-8} = 0b110; // PUW
1123}
1124
1125def t2STRT : T2IstT<0b10, "strt">;
1126def t2STRBT : T2IstT<0b00, "strbt">;
1127def t2STRHT : T2IstT<0b01, "strht">;
David Goodwind1fa1202009-07-01 00:01:13 +00001128
Johnny Chenae1757b2010-03-11 01:13:36 +00001129// ldrd / strd pre / post variants
1130// For disassembly only.
1131
1132def t2LDRD_PRE : T2Ii8s4<1, 1, 1, (outs GPR:$dst1, GPR:$dst2),
1133 (ins GPR:$base, t2am_imm8s4_offset:$imm), NoItinerary,
1134 "ldrd", "\t$dst1, $dst2, [$base, $imm]!", []>;
1135
1136def t2LDRD_POST : T2Ii8s4<0, 1, 1, (outs GPR:$dst1, GPR:$dst2),
1137 (ins GPR:$base, t2am_imm8s4_offset:$imm), NoItinerary,
1138 "ldrd", "\t$dst1, $dst2, [$base], $imm", []>;
1139
1140def t2STRD_PRE : T2Ii8s4<1, 1, 0, (outs),
1141 (ins GPR:$src1, GPR:$src2, GPR:$base, t2am_imm8s4_offset:$imm),
1142 NoItinerary, "strd", "\t$src1, $src2, [$base, $imm]!", []>;
1143
1144def t2STRD_POST : T2Ii8s4<0, 1, 0, (outs),
1145 (ins GPR:$src1, GPR:$src2, GPR:$base, t2am_imm8s4_offset:$imm),
1146 NoItinerary, "strd", "\t$src1, $src2, [$base], $imm", []>;
Evan Cheng2889cce2009-07-03 00:18:36 +00001147
Johnny Chen0635fc52010-03-04 17:40:44 +00001148// T2Ipl (Preload Data/Instruction) signals the memory system of possible future
1149// data/instruction access. These are for disassembly only.
Johnny Chendd0f3cf2010-03-10 18:59:38 +00001150//
1151// A8.6.117, A8.6.118. Different instructions are generated for #0 and #-0.
1152// The neg_zero operand translates -0 to -1, -1 to -2, ..., etc.
Johnny Chen0635fc52010-03-04 17:40:44 +00001153multiclass T2Ipl<bit instr, bit write, string opc> {
1154
Johnny Chendd0f3cf2010-03-10 18:59:38 +00001155 def i12 : T2I<(outs), (ins GPR:$base, i32imm:$imm), IIC_iLoadi, opc,
1156 "\t[$base, $imm]", []> {
Johnny Chen0635fc52010-03-04 17:40:44 +00001157 let Inst{31-25} = 0b1111100;
1158 let Inst{24} = instr;
1159 let Inst{23} = 1; // U = 1
1160 let Inst{22} = 0;
1161 let Inst{21} = write;
1162 let Inst{20} = 1;
1163 let Inst{15-12} = 0b1111;
1164 }
1165
Johnny Chendd0f3cf2010-03-10 18:59:38 +00001166 def i8 : T2I<(outs), (ins GPR:$base, neg_zero:$imm), IIC_iLoadi, opc,
1167 "\t[$base, $imm]", []> {
Johnny Chen0635fc52010-03-04 17:40:44 +00001168 let Inst{31-25} = 0b1111100;
1169 let Inst{24} = instr;
1170 let Inst{23} = 0; // U = 0
1171 let Inst{22} = 0;
1172 let Inst{21} = write;
1173 let Inst{20} = 1;
1174 let Inst{15-12} = 0b1111;
1175 let Inst{11-8} = 0b1100;
1176 }
1177
Johnny Chendd0f3cf2010-03-10 18:59:38 +00001178 def pci : T2I<(outs), (ins GPR:$base, neg_zero:$imm), IIC_iLoadi, opc,
1179 "\t[pc, $imm]", []> {
Johnny Chen0635fc52010-03-04 17:40:44 +00001180 let Inst{31-25} = 0b1111100;
1181 let Inst{24} = instr;
1182 let Inst{23} = ?; // add = (U == 1)
1183 let Inst{22} = 0;
1184 let Inst{21} = write;
1185 let Inst{20} = 1;
1186 let Inst{19-16} = 0b1111; // Rn = 0b1111
1187 let Inst{15-12} = 0b1111;
1188 }
1189
1190 def r : T2I<(outs), (ins GPR:$base, GPR:$a), IIC_iLoadi, opc,
1191 "\t[$base, $a]", []> {
1192 let Inst{31-25} = 0b1111100;
1193 let Inst{24} = instr;
1194 let Inst{23} = 0; // add = TRUE for T1
1195 let Inst{22} = 0;
1196 let Inst{21} = write;
1197 let Inst{20} = 1;
1198 let Inst{15-12} = 0b1111;
1199 let Inst{11-6} = 0000000;
1200 let Inst{5-4} = 0b00; // no shift is applied
1201 }
1202
1203 def s : T2I<(outs), (ins GPR:$base, GPR:$a, i32imm:$shamt), IIC_iLoadi, opc,
1204 "\t[$base, $a, lsl $shamt]", []> {
1205 let Inst{31-25} = 0b1111100;
1206 let Inst{24} = instr;
1207 let Inst{23} = 0; // add = TRUE for T1
1208 let Inst{22} = 0;
1209 let Inst{21} = write;
1210 let Inst{20} = 1;
1211 let Inst{15-12} = 0b1111;
1212 let Inst{11-6} = 0000000;
1213 }
1214}
1215
1216defm t2PLD : T2Ipl<0, 0, "pld">;
1217defm t2PLDW : T2Ipl<0, 1, "pldw">;
1218defm t2PLI : T2Ipl<1, 0, "pli">;
1219
Evan Cheng2889cce2009-07-03 00:18:36 +00001220//===----------------------------------------------------------------------===//
1221// Load / store multiple Instructions.
1222//
1223
Evan Cheng5fd1c9b2010-05-19 06:07:03 +00001224let mayLoad = 1, neverHasSideEffects = 1, hasExtraDefRegAllocReq = 1 in {
Bob Wilson815baeb2010-03-13 01:08:20 +00001225def t2LDM : T2XI<(outs), (ins addrmode4:$addr, pred:$p,
1226 reglist:$dsts, variable_ops), IIC_iLoadm,
1227 "ldm${addr:submode}${p}${addr:wide}\t$addr, $dsts", []> {
Johnny Chend68e1192009-12-15 17:24:14 +00001228 let Inst{31-27} = 0b11101;
1229 let Inst{26-25} = 0b00;
1230 let Inst{24-23} = {?, ?}; // IA: '01', DB: '10'
1231 let Inst{22} = 0;
Bob Wilson815baeb2010-03-13 01:08:20 +00001232 let Inst{21} = 0; // The W bit.
Johnny Chend68e1192009-12-15 17:24:14 +00001233 let Inst{20} = 1; // Load
1234}
Evan Cheng2889cce2009-07-03 00:18:36 +00001235
Bob Wilson815baeb2010-03-13 01:08:20 +00001236def t2LDM_UPD : T2XIt<(outs GPR:$wb), (ins addrmode4:$addr, pred:$p,
1237 reglist:$dsts, variable_ops), IIC_iLoadm,
Bob Wilsonab346052010-03-16 17:46:45 +00001238 "ldm${addr:submode}${p}${addr:wide}\t$addr!, $dsts",
Bob Wilson815baeb2010-03-13 01:08:20 +00001239 "$addr.addr = $wb", []> {
Johnny Chend68e1192009-12-15 17:24:14 +00001240 let Inst{31-27} = 0b11101;
1241 let Inst{26-25} = 0b00;
1242 let Inst{24-23} = {?, ?}; // IA: '01', DB: '10'
1243 let Inst{22} = 0;
Bob Wilson815baeb2010-03-13 01:08:20 +00001244 let Inst{21} = 1; // The W bit.
1245 let Inst{20} = 1; // Load
1246}
Evan Cheng5fd1c9b2010-05-19 06:07:03 +00001247} // mayLoad, neverHasSideEffects, hasExtraDefRegAllocReq
Bob Wilson815baeb2010-03-13 01:08:20 +00001248
Evan Cheng5fd1c9b2010-05-19 06:07:03 +00001249let mayStore = 1, neverHasSideEffects = 1, hasExtraSrcRegAllocReq = 1 in {
Bob Wilson815baeb2010-03-13 01:08:20 +00001250def t2STM : T2XI<(outs), (ins addrmode4:$addr, pred:$p,
1251 reglist:$srcs, variable_ops), IIC_iStorem,
1252 "stm${addr:submode}${p}${addr:wide}\t$addr, $srcs", []> {
1253 let Inst{31-27} = 0b11101;
1254 let Inst{26-25} = 0b00;
1255 let Inst{24-23} = {?, ?}; // IA: '01', DB: '10'
1256 let Inst{22} = 0;
1257 let Inst{21} = 0; // The W bit.
Johnny Chend68e1192009-12-15 17:24:14 +00001258 let Inst{20} = 0; // Store
1259}
Evan Cheng2889cce2009-07-03 00:18:36 +00001260
Bob Wilson815baeb2010-03-13 01:08:20 +00001261def t2STM_UPD : T2XIt<(outs GPR:$wb), (ins addrmode4:$addr, pred:$p,
1262 reglist:$srcs, variable_ops),
1263 IIC_iStorem,
Bob Wilsonab346052010-03-16 17:46:45 +00001264 "stm${addr:submode}${p}${addr:wide}\t$addr!, $srcs",
Bob Wilson815baeb2010-03-13 01:08:20 +00001265 "$addr.addr = $wb", []> {
1266 let Inst{31-27} = 0b11101;
1267 let Inst{26-25} = 0b00;
1268 let Inst{24-23} = {?, ?}; // IA: '01', DB: '10'
1269 let Inst{22} = 0;
1270 let Inst{21} = 1; // The W bit.
1271 let Inst{20} = 0; // Store
1272}
Evan Cheng5fd1c9b2010-05-19 06:07:03 +00001273} // mayStore, neverHasSideEffects, hasExtraSrcRegAllocReq
Bob Wilson815baeb2010-03-13 01:08:20 +00001274
Evan Cheng9cb9e672009-06-27 02:26:13 +00001275//===----------------------------------------------------------------------===//
Anton Korobeynikov52237112009-06-17 18:13:58 +00001276// Move Instructions.
1277//
Anton Korobeynikov52237112009-06-17 18:13:58 +00001278
Evan Chengf49810c2009-06-23 17:48:47 +00001279let neverHasSideEffects = 1 in
David Goodwin5d598aa2009-08-19 18:00:44 +00001280def t2MOVr : T2sI<(outs GPR:$dst), (ins GPR:$src), IIC_iMOVr,
Johnny Chend68e1192009-12-15 17:24:14 +00001281 "mov", ".w\t$dst, $src", []> {
1282 let Inst{31-27} = 0b11101;
1283 let Inst{26-25} = 0b01;
1284 let Inst{24-21} = 0b0010;
1285 let Inst{20} = ?; // The S bit.
1286 let Inst{19-16} = 0b1111; // Rn
1287 let Inst{14-12} = 0b000;
1288 let Inst{7-4} = 0b0000;
1289}
Evan Chengf49810c2009-06-23 17:48:47 +00001290
Evan Cheng5adb66a2009-09-28 09:14:39 +00001291// AddedComplexity to ensure isel tries t2MOVi before t2MOVi16.
1292let isReMaterializable = 1, isAsCheapAsAMove = 1, AddedComplexity = 1 in
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001293def t2MOVi : T2sI<(outs rGPR:$dst), (ins t2_so_imm:$src), IIC_iMOVi,
Evan Cheng699beba2009-10-27 00:08:59 +00001294 "mov", ".w\t$dst, $src",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001295 [(set rGPR:$dst, t2_so_imm:$src)]> {
Johnny Chend68e1192009-12-15 17:24:14 +00001296 let Inst{31-27} = 0b11110;
1297 let Inst{25} = 0;
1298 let Inst{24-21} = 0b0010;
1299 let Inst{20} = ?; // The S bit.
1300 let Inst{19-16} = 0b1111; // Rn
1301 let Inst{15} = 0;
1302}
David Goodwin83b35932009-06-26 16:10:07 +00001303
1304let isReMaterializable = 1, isAsCheapAsAMove = 1 in
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001305def t2MOVi16 : T2I<(outs rGPR:$dst), (ins i32imm:$src), IIC_iMOVi,
Evan Cheng699beba2009-10-27 00:08:59 +00001306 "movw", "\t$dst, $src",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001307 [(set rGPR:$dst, imm0_65535:$src)]> {
Johnny Chend68e1192009-12-15 17:24:14 +00001308 let Inst{31-27} = 0b11110;
1309 let Inst{25} = 1;
1310 let Inst{24-21} = 0b0010;
1311 let Inst{20} = 0; // The S bit.
1312 let Inst{15} = 0;
1313}
Evan Chengf49810c2009-06-23 17:48:47 +00001314
Evan Cheng3850a6a2009-06-23 05:23:49 +00001315let Constraints = "$src = $dst" in
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001316def t2MOVTi16 : T2I<(outs rGPR:$dst), (ins rGPR:$src, i32imm:$imm), IIC_iMOVi,
Evan Cheng699beba2009-10-27 00:08:59 +00001317 "movt", "\t$dst, $imm",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001318 [(set rGPR:$dst,
1319 (or (and rGPR:$src, 0xffff), lo16AllZero:$imm))]> {
Johnny Chend68e1192009-12-15 17:24:14 +00001320 let Inst{31-27} = 0b11110;
1321 let Inst{25} = 1;
1322 let Inst{24-21} = 0b0110;
1323 let Inst{20} = 0; // The S bit.
1324 let Inst{15} = 0;
1325}
Anton Korobeynikov52237112009-06-17 18:13:58 +00001326
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001327def : T2Pat<(or rGPR:$src, 0xffff0000), (t2MOVTi16 rGPR:$src, 0xffff)>;
Evan Cheng20956592009-10-21 08:15:52 +00001328
Anton Korobeynikov52237112009-06-17 18:13:58 +00001329//===----------------------------------------------------------------------===//
Evan Chengd27c9fc2009-07-03 01:43:10 +00001330// Extend Instructions.
1331//
1332
1333// Sign extenders
1334
Johnny Chend68e1192009-12-15 17:24:14 +00001335defm t2SXTB : T2I_unary_rrot<0b100, "sxtb",
1336 UnOpFrag<(sext_inreg node:$Src, i8)>>;
1337defm t2SXTH : T2I_unary_rrot<0b000, "sxth",
1338 UnOpFrag<(sext_inreg node:$Src, i16)>>;
Eli Friedman761fa7a2010-06-24 18:20:04 +00001339defm t2SXTB16 : T2I_unary_rrot_sxtb16<0b010, "sxtb16">;
Evan Chengd27c9fc2009-07-03 01:43:10 +00001340
Johnny Chend68e1192009-12-15 17:24:14 +00001341defm t2SXTAB : T2I_bin_rrot<0b100, "sxtab",
Evan Chengd27c9fc2009-07-03 01:43:10 +00001342 BinOpFrag<(add node:$LHS, (sext_inreg node:$RHS, i8))>>;
Johnny Chend68e1192009-12-15 17:24:14 +00001343defm t2SXTAH : T2I_bin_rrot<0b000, "sxtah",
Evan Chengd27c9fc2009-07-03 01:43:10 +00001344 BinOpFrag<(add node:$LHS, (sext_inreg node:$RHS,i16))>>;
Johnny Chen93042d12010-03-02 18:14:57 +00001345defm t2SXTAB16 : T2I_bin_rrot_DO<0b010, "sxtab16">;
Evan Chengd27c9fc2009-07-03 01:43:10 +00001346
Johnny Chen93042d12010-03-02 18:14:57 +00001347// TODO: SXT(A){B|H}16 - done for disassembly only
Evan Chengd27c9fc2009-07-03 01:43:10 +00001348
1349// Zero extenders
1350
1351let AddedComplexity = 16 in {
Johnny Chend68e1192009-12-15 17:24:14 +00001352defm t2UXTB : T2I_unary_rrot<0b101, "uxtb",
1353 UnOpFrag<(and node:$Src, 0x000000FF)>>;
1354defm t2UXTH : T2I_unary_rrot<0b001, "uxth",
1355 UnOpFrag<(and node:$Src, 0x0000FFFF)>>;
Eli Friedman761fa7a2010-06-24 18:20:04 +00001356defm t2UXTB16 : T2I_unary_rrot_uxtb16<0b011, "uxtb16",
Johnny Chend68e1192009-12-15 17:24:14 +00001357 UnOpFrag<(and node:$Src, 0x00FF00FF)>>;
Evan Chengd27c9fc2009-07-03 01:43:10 +00001358
Jim Grosbach79464942010-07-28 23:17:45 +00001359// FIXME: This pattern incorrectly assumes the shl operator is a rotate.
1360// The transformation should probably be done as a combiner action
1361// instead so we can include a check for masking back in the upper
1362// eight bits of the source into the lower eight bits of the result.
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001363//def : T2Pat<(and (shl rGPR:$Src, (i32 8)), 0xFF00FF),
1364// (t2UXTB16r_rot rGPR:$Src, 24)>, Requires<[HasT2ExtractPack]>;
1365def : T2Pat<(and (srl rGPR:$Src, (i32 8)), 0xFF00FF),
1366 (t2UXTB16r_rot rGPR:$Src, 8)>, Requires<[HasT2ExtractPack]>;
Evan Chengd27c9fc2009-07-03 01:43:10 +00001367
Johnny Chend68e1192009-12-15 17:24:14 +00001368defm t2UXTAB : T2I_bin_rrot<0b101, "uxtab",
Jim Grosbach6935efc2009-11-24 00:20:27 +00001369 BinOpFrag<(add node:$LHS, (and node:$RHS, 0x00FF))>>;
Johnny Chend68e1192009-12-15 17:24:14 +00001370defm t2UXTAH : T2I_bin_rrot<0b001, "uxtah",
Jim Grosbach6935efc2009-11-24 00:20:27 +00001371 BinOpFrag<(add node:$LHS, (and node:$RHS, 0xFFFF))>>;
Johnny Chen93042d12010-03-02 18:14:57 +00001372defm t2UXTAB16 : T2I_bin_rrot_DO<0b011, "uxtab16">;
Evan Chengd27c9fc2009-07-03 01:43:10 +00001373}
1374
1375//===----------------------------------------------------------------------===//
Anton Korobeynikov52237112009-06-17 18:13:58 +00001376// Arithmetic Instructions.
1377//
Anton Korobeynikov52237112009-06-17 18:13:58 +00001378
Johnny Chend68e1192009-12-15 17:24:14 +00001379defm t2ADD : T2I_bin_ii12rs<0b000, "add",
1380 BinOpFrag<(add node:$LHS, node:$RHS)>, 1>;
1381defm t2SUB : T2I_bin_ii12rs<0b101, "sub",
1382 BinOpFrag<(sub node:$LHS, node:$RHS)>>;
Anton Korobeynikov52237112009-06-17 18:13:58 +00001383
Evan Chengf49810c2009-06-23 17:48:47 +00001384// ADD and SUB with 's' bit set. No 12-bit immediate (T4) variants.
Johnny Chend68e1192009-12-15 17:24:14 +00001385defm t2ADDS : T2I_bin_s_irs <0b1000, "add",
1386 BinOpFrag<(addc node:$LHS, node:$RHS)>, 1>;
1387defm t2SUBS : T2I_bin_s_irs <0b1101, "sub",
1388 BinOpFrag<(subc node:$LHS, node:$RHS)>>;
Anton Korobeynikov52237112009-06-17 18:13:58 +00001389
Johnny Chend68e1192009-12-15 17:24:14 +00001390defm t2ADC : T2I_adde_sube_irs<0b1010, "adc",
Jim Grosbach39be8fc2010-02-16 20:42:29 +00001391 BinOpFrag<(adde_dead_carry node:$LHS, node:$RHS)>, 1>;
Johnny Chend68e1192009-12-15 17:24:14 +00001392defm t2SBC : T2I_adde_sube_irs<0b1011, "sbc",
Jim Grosbach39be8fc2010-02-16 20:42:29 +00001393 BinOpFrag<(sube_dead_carry node:$LHS, node:$RHS)>>;
Johnny Chenb5031ad2010-03-02 19:38:59 +00001394defm t2ADCS : T2I_adde_sube_s_irs<0b1010, "adc",
Jim Grosbach39be8fc2010-02-16 20:42:29 +00001395 BinOpFrag<(adde_live_carry node:$LHS, node:$RHS)>, 1>;
Johnny Chenb5031ad2010-03-02 19:38:59 +00001396defm t2SBCS : T2I_adde_sube_s_irs<0b1011, "sbc",
Jim Grosbach39be8fc2010-02-16 20:42:29 +00001397 BinOpFrag<(sube_live_carry node:$LHS, node:$RHS)>>;
Evan Chengf49810c2009-06-23 17:48:47 +00001398
David Goodwin752aa7d2009-07-27 16:39:05 +00001399// RSB
Bob Wilson20d8e4e2010-08-13 23:24:25 +00001400defm t2RSB : T2I_rbin_irs <0b1110, "rsb",
Johnny Chend68e1192009-12-15 17:24:14 +00001401 BinOpFrag<(sub node:$LHS, node:$RHS)>>;
1402defm t2RSBS : T2I_rbin_s_is <0b1110, "rsb",
1403 BinOpFrag<(subc node:$LHS, node:$RHS)>>;
Evan Chengf49810c2009-06-23 17:48:47 +00001404
1405// (sub X, imm) gets canonicalized to (add X, -imm). Match this form.
Jim Grosbach502e0aa2010-07-14 17:45:16 +00001406// The assume-no-carry-in form uses the negation of the input since add/sub
1407// assume opposite meanings of the carry flag (i.e., carry == !borrow).
1408// See the definition of AddWithCarry() in the ARM ARM A2.2.1 for the gory
1409// details.
1410// The AddedComplexity preferences the first variant over the others since
1411// it can be shrunk to a 16-bit wide encoding, while the others cannot.
Evan Chengfa2ea1a2009-08-04 01:41:15 +00001412let AddedComplexity = 1 in
Jim Grosbach502e0aa2010-07-14 17:45:16 +00001413def : T2Pat<(add GPR:$src, imm0_255_neg:$imm),
1414 (t2SUBri GPR:$src, imm0_255_neg:$imm)>;
1415def : T2Pat<(add GPR:$src, t2_so_imm_neg:$imm),
1416 (t2SUBri GPR:$src, t2_so_imm_neg:$imm)>;
1417def : T2Pat<(add GPR:$src, imm0_4095_neg:$imm),
1418 (t2SUBri12 GPR:$src, imm0_4095_neg:$imm)>;
1419let AddedComplexity = 1 in
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001420def : T2Pat<(addc rGPR:$src, imm0_255_neg:$imm),
1421 (t2SUBSri rGPR:$src, imm0_255_neg:$imm)>;
1422def : T2Pat<(addc rGPR:$src, t2_so_imm_neg:$imm),
1423 (t2SUBSri rGPR:$src, t2_so_imm_neg:$imm)>;
Jim Grosbach502e0aa2010-07-14 17:45:16 +00001424// The with-carry-in form matches bitwise not instead of the negation.
1425// Effectively, the inverse interpretation of the carry flag already accounts
1426// for part of the negation.
1427let AddedComplexity = 1 in
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001428def : T2Pat<(adde rGPR:$src, imm0_255_not:$imm),
1429 (t2SBCSri rGPR:$src, imm0_255_not:$imm)>;
1430def : T2Pat<(adde rGPR:$src, t2_so_imm_not:$imm),
1431 (t2SBCSri rGPR:$src, t2_so_imm_not:$imm)>;
Anton Korobeynikov52237112009-06-17 18:13:58 +00001432
Johnny Chen93042d12010-03-02 18:14:57 +00001433// Select Bytes -- for disassembly only
1434
1435def t2SEL : T2I<(outs GPR:$dst), (ins GPR:$a, GPR:$b), NoItinerary, "sel",
1436 "\t$dst, $a, $b", []> {
1437 let Inst{31-27} = 0b11111;
1438 let Inst{26-24} = 0b010;
1439 let Inst{23} = 0b1;
1440 let Inst{22-20} = 0b010;
1441 let Inst{15-12} = 0b1111;
1442 let Inst{7} = 0b1;
1443 let Inst{6-4} = 0b000;
1444}
1445
Johnny Chenadc77332010-02-26 22:04:29 +00001446// A6.3.13, A6.3.14, A6.3.15 Parallel addition and subtraction (signed/unsigned)
1447// And Miscellaneous operations -- for disassembly only
Nate Begeman692433b2010-07-29 17:56:55 +00001448class T2I_pam<bits<3> op22_20, bits<4> op7_4, string opc,
1449 list<dag> pat = [/* For disassembly only; pattern left blank */]>
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001450 : T2I<(outs rGPR:$dst), (ins rGPR:$a, rGPR:$b), NoItinerary, opc,
Nate Begeman692433b2010-07-29 17:56:55 +00001451 "\t$dst, $a, $b", pat> {
Johnny Chenadc77332010-02-26 22:04:29 +00001452 let Inst{31-27} = 0b11111;
1453 let Inst{26-23} = 0b0101;
1454 let Inst{22-20} = op22_20;
1455 let Inst{15-12} = 0b1111;
1456 let Inst{7-4} = op7_4;
1457}
1458
1459// Saturating add/subtract -- for disassembly only
1460
Nate Begeman692433b2010-07-29 17:56:55 +00001461def t2QADD : T2I_pam<0b000, 0b1000, "qadd",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001462 [(set rGPR:$dst, (int_arm_qadd rGPR:$a, rGPR:$b))]>;
Johnny Chenadc77332010-02-26 22:04:29 +00001463def t2QADD16 : T2I_pam<0b001, 0b0001, "qadd16">;
1464def t2QADD8 : T2I_pam<0b000, 0b0001, "qadd8">;
1465def t2QASX : T2I_pam<0b010, 0b0001, "qasx">;
1466def t2QDADD : T2I_pam<0b000, 0b1001, "qdadd">;
1467def t2QDSUB : T2I_pam<0b000, 0b1011, "qdsub">;
1468def t2QSAX : T2I_pam<0b110, 0b0001, "qsax">;
Nate Begeman692433b2010-07-29 17:56:55 +00001469def t2QSUB : T2I_pam<0b000, 0b1010, "qsub",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001470 [(set rGPR:$dst, (int_arm_qsub rGPR:$a, rGPR:$b))]>;
Johnny Chenadc77332010-02-26 22:04:29 +00001471def t2QSUB16 : T2I_pam<0b101, 0b0001, "qsub16">;
1472def t2QSUB8 : T2I_pam<0b100, 0b0001, "qsub8">;
1473def t2UQADD16 : T2I_pam<0b001, 0b0101, "uqadd16">;
1474def t2UQADD8 : T2I_pam<0b000, 0b0101, "uqadd8">;
1475def t2UQASX : T2I_pam<0b010, 0b0101, "uqasx">;
1476def t2UQSAX : T2I_pam<0b110, 0b0101, "uqsax">;
1477def t2UQSUB16 : T2I_pam<0b101, 0b0101, "uqsub16">;
1478def t2UQSUB8 : T2I_pam<0b100, 0b0101, "uqsub8">;
1479
1480// Signed/Unsigned add/subtract -- for disassembly only
1481
1482def t2SASX : T2I_pam<0b010, 0b0000, "sasx">;
1483def t2SADD16 : T2I_pam<0b001, 0b0000, "sadd16">;
1484def t2SADD8 : T2I_pam<0b000, 0b0000, "sadd8">;
1485def t2SSAX : T2I_pam<0b110, 0b0000, "ssax">;
1486def t2SSUB16 : T2I_pam<0b101, 0b0000, "ssub16">;
1487def t2SSUB8 : T2I_pam<0b100, 0b0000, "ssub8">;
1488def t2UASX : T2I_pam<0b010, 0b0100, "uasx">;
1489def t2UADD16 : T2I_pam<0b001, 0b0100, "uadd16">;
1490def t2UADD8 : T2I_pam<0b000, 0b0100, "uadd8">;
1491def t2USAX : T2I_pam<0b110, 0b0100, "usax">;
1492def t2USUB16 : T2I_pam<0b101, 0b0100, "usub16">;
1493def t2USUB8 : T2I_pam<0b100, 0b0100, "usub8">;
1494
1495// Signed/Unsigned halving add/subtract -- for disassembly only
1496
1497def t2SHASX : T2I_pam<0b010, 0b0010, "shasx">;
1498def t2SHADD16 : T2I_pam<0b001, 0b0010, "shadd16">;
1499def t2SHADD8 : T2I_pam<0b000, 0b0010, "shadd8">;
1500def t2SHSAX : T2I_pam<0b110, 0b0010, "shsax">;
1501def t2SHSUB16 : T2I_pam<0b101, 0b0010, "shsub16">;
1502def t2SHSUB8 : T2I_pam<0b100, 0b0010, "shsub8">;
1503def t2UHASX : T2I_pam<0b010, 0b0110, "uhasx">;
1504def t2UHADD16 : T2I_pam<0b001, 0b0110, "uhadd16">;
1505def t2UHADD8 : T2I_pam<0b000, 0b0110, "uhadd8">;
1506def t2UHSAX : T2I_pam<0b110, 0b0110, "uhsax">;
1507def t2UHSUB16 : T2I_pam<0b101, 0b0110, "uhsub16">;
1508def t2UHSUB8 : T2I_pam<0b100, 0b0110, "uhsub8">;
1509
1510// Unsigned Sum of Absolute Differences [and Accumulate] -- for disassembly only
1511
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001512def t2USAD8 : T2I_mac<0, 0b111, 0b0000, (outs rGPR:$dst),
1513 (ins rGPR:$a, rGPR:$b),
Johnny Chenadc77332010-02-26 22:04:29 +00001514 NoItinerary, "usad8", "\t$dst, $a, $b", []> {
1515 let Inst{15-12} = 0b1111;
1516}
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001517def t2USADA8 : T2I_mac<0, 0b111, 0b0000, (outs rGPR:$dst),
1518 (ins rGPR:$a, rGPR:$b, rGPR:$acc), NoItinerary, "usada8",
Johnny Chenadc77332010-02-26 22:04:29 +00001519 "\t$dst, $a, $b, $acc", []>;
1520
1521// Signed/Unsigned saturate -- for disassembly only
1522
Bob Wilson22f5dc72010-08-16 18:27:34 +00001523def t2SSAT: T2I<(outs rGPR:$dst), (ins i32imm:$bit_pos, rGPR:$a, shift_imm:$sh),
Bob Wilson38aa2872010-08-13 21:48:10 +00001524 NoItinerary, "ssat", "\t$dst, $bit_pos, $a$sh",
1525 [/* For disassembly only; pattern left blank */]> {
Johnny Chenadc77332010-02-26 22:04:29 +00001526 let Inst{31-27} = 0b11110;
1527 let Inst{25-22} = 0b1100;
1528 let Inst{20} = 0;
1529 let Inst{15} = 0;
Johnny Chenadc77332010-02-26 22:04:29 +00001530}
1531
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001532def t2SSAT16: T2I<(outs rGPR:$dst), (ins i32imm:$bit_pos, rGPR:$a), NoItinerary,
Johnny Chenadc77332010-02-26 22:04:29 +00001533 "ssat16", "\t$dst, $bit_pos, $a",
1534 [/* For disassembly only; pattern left blank */]> {
1535 let Inst{31-27} = 0b11110;
1536 let Inst{25-22} = 0b1100;
1537 let Inst{20} = 0;
1538 let Inst{15} = 0;
1539 let Inst{21} = 1; // sh = '1'
1540 let Inst{14-12} = 0b000; // imm3 = '000'
1541 let Inst{7-6} = 0b00; // imm2 = '00'
1542}
1543
Bob Wilson22f5dc72010-08-16 18:27:34 +00001544def t2USAT: T2I<(outs rGPR:$dst), (ins i32imm:$bit_pos, rGPR:$a, shift_imm:$sh),
Bob Wilson38aa2872010-08-13 21:48:10 +00001545 NoItinerary, "usat", "\t$dst, $bit_pos, $a$sh",
1546 [/* For disassembly only; pattern left blank */]> {
Johnny Chenadc77332010-02-26 22:04:29 +00001547 let Inst{31-27} = 0b11110;
1548 let Inst{25-22} = 0b1110;
1549 let Inst{20} = 0;
1550 let Inst{15} = 0;
Johnny Chenadc77332010-02-26 22:04:29 +00001551}
1552
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001553def t2USAT16: T2I<(outs rGPR:$dst), (ins i32imm:$bit_pos, rGPR:$a), NoItinerary,
Johnny Chenadc77332010-02-26 22:04:29 +00001554 "usat16", "\t$dst, $bit_pos, $a",
1555 [/* For disassembly only; pattern left blank */]> {
1556 let Inst{31-27} = 0b11110;
1557 let Inst{25-22} = 0b1110;
1558 let Inst{20} = 0;
1559 let Inst{15} = 0;
1560 let Inst{21} = 1; // sh = '1'
1561 let Inst{14-12} = 0b000; // imm3 = '000'
1562 let Inst{7-6} = 0b00; // imm2 = '00'
1563}
Anton Korobeynikov52237112009-06-17 18:13:58 +00001564
Bob Wilson38aa2872010-08-13 21:48:10 +00001565def : T2Pat<(int_arm_ssat GPR:$a, imm:$pos), (t2SSAT imm:$pos, GPR:$a, 0)>;
1566def : T2Pat<(int_arm_usat GPR:$a, imm:$pos), (t2USAT imm:$pos, GPR:$a, 0)>;
Nate Begeman0e0a20e2010-07-29 22:48:09 +00001567
Evan Chengf49810c2009-06-23 17:48:47 +00001568//===----------------------------------------------------------------------===//
Evan Chenga67efd12009-06-23 19:39:13 +00001569// Shift and rotate Instructions.
1570//
1571
Johnny Chend68e1192009-12-15 17:24:14 +00001572defm t2LSL : T2I_sh_ir<0b00, "lsl", BinOpFrag<(shl node:$LHS, node:$RHS)>>;
1573defm t2LSR : T2I_sh_ir<0b01, "lsr", BinOpFrag<(srl node:$LHS, node:$RHS)>>;
1574defm t2ASR : T2I_sh_ir<0b10, "asr", BinOpFrag<(sra node:$LHS, node:$RHS)>>;
1575defm t2ROR : T2I_sh_ir<0b11, "ror", BinOpFrag<(rotr node:$LHS, node:$RHS)>>;
Evan Chenga67efd12009-06-23 19:39:13 +00001576
David Goodwinca01a8d2009-09-01 18:32:09 +00001577let Uses = [CPSR] in {
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001578def t2MOVrx : T2sI<(outs rGPR:$dst), (ins rGPR:$src), IIC_iMOVsi,
Evan Cheng699beba2009-10-27 00:08:59 +00001579 "rrx", "\t$dst, $src",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001580 [(set rGPR:$dst, (ARMrrx rGPR:$src))]> {
Johnny Chend68e1192009-12-15 17:24:14 +00001581 let Inst{31-27} = 0b11101;
1582 let Inst{26-25} = 0b01;
1583 let Inst{24-21} = 0b0010;
1584 let Inst{20} = ?; // The S bit.
1585 let Inst{19-16} = 0b1111; // Rn
1586 let Inst{14-12} = 0b000;
1587 let Inst{7-4} = 0b0011;
1588}
David Goodwinca01a8d2009-09-01 18:32:09 +00001589}
Evan Chenga67efd12009-06-23 19:39:13 +00001590
David Goodwin3583df72009-07-28 17:06:49 +00001591let Defs = [CPSR] in {
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001592def t2MOVsrl_flag : T2I<(outs rGPR:$dst), (ins rGPR:$src), IIC_iMOVsi,
Bob Wilsona85df802010-05-25 04:51:47 +00001593 "lsrs", ".w\t$dst, $src, #1",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001594 [(set rGPR:$dst, (ARMsrl_flag rGPR:$src))]> {
Johnny Chend68e1192009-12-15 17:24:14 +00001595 let Inst{31-27} = 0b11101;
1596 let Inst{26-25} = 0b01;
1597 let Inst{24-21} = 0b0010;
1598 let Inst{20} = 1; // The S bit.
1599 let Inst{19-16} = 0b1111; // Rn
1600 let Inst{5-4} = 0b01; // Shift type.
1601 // Shift amount = Inst{14-12:7-6} = 1.
1602 let Inst{14-12} = 0b000;
1603 let Inst{7-6} = 0b01;
1604}
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001605def t2MOVsra_flag : T2I<(outs rGPR:$dst), (ins rGPR:$src), IIC_iMOVsi,
Bob Wilsona85df802010-05-25 04:51:47 +00001606 "asrs", ".w\t$dst, $src, #1",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001607 [(set rGPR:$dst, (ARMsra_flag rGPR:$src))]> {
Johnny Chend68e1192009-12-15 17:24:14 +00001608 let Inst{31-27} = 0b11101;
1609 let Inst{26-25} = 0b01;
1610 let Inst{24-21} = 0b0010;
1611 let Inst{20} = 1; // The S bit.
1612 let Inst{19-16} = 0b1111; // Rn
1613 let Inst{5-4} = 0b10; // Shift type.
1614 // Shift amount = Inst{14-12:7-6} = 1.
1615 let Inst{14-12} = 0b000;
1616 let Inst{7-6} = 0b01;
1617}
David Goodwin3583df72009-07-28 17:06:49 +00001618}
1619
Evan Chenga67efd12009-06-23 19:39:13 +00001620//===----------------------------------------------------------------------===//
Evan Chengf49810c2009-06-23 17:48:47 +00001621// Bitwise Instructions.
1622//
Anton Korobeynikov52237112009-06-17 18:13:58 +00001623
Johnny Chend68e1192009-12-15 17:24:14 +00001624defm t2AND : T2I_bin_w_irs<0b0000, "and",
1625 BinOpFrag<(and node:$LHS, node:$RHS)>, 1>;
1626defm t2ORR : T2I_bin_w_irs<0b0010, "orr",
1627 BinOpFrag<(or node:$LHS, node:$RHS)>, 1>;
1628defm t2EOR : T2I_bin_w_irs<0b0100, "eor",
1629 BinOpFrag<(xor node:$LHS, node:$RHS)>, 1>;
Evan Chengf49810c2009-06-23 17:48:47 +00001630
Johnny Chend68e1192009-12-15 17:24:14 +00001631defm t2BIC : T2I_bin_w_irs<0b0001, "bic",
1632 BinOpFrag<(and node:$LHS, (not node:$RHS))>>;
Evan Chengf49810c2009-06-23 17:48:47 +00001633
Evan Chengf49810c2009-06-23 17:48:47 +00001634let Constraints = "$src = $dst" in
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001635def t2BFC : T2I<(outs rGPR:$dst), (ins rGPR:$src, bf_inv_mask_imm:$imm),
David Goodwin2f54a2f2009-11-02 17:28:36 +00001636 IIC_iUNAsi, "bfc", "\t$dst, $imm",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001637 [(set rGPR:$dst, (and rGPR:$src, bf_inv_mask_imm:$imm))]> {
Johnny Chend68e1192009-12-15 17:24:14 +00001638 let Inst{31-27} = 0b11110;
1639 let Inst{25} = 1;
1640 let Inst{24-20} = 0b10110;
1641 let Inst{19-16} = 0b1111; // Rn
1642 let Inst{15} = 0;
1643}
Evan Chengf49810c2009-06-23 17:48:47 +00001644
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001645def t2SBFX: T2I<(outs rGPR:$dst), (ins rGPR:$src, imm0_31:$lsb, imm0_31:$width),
Johnny Chend68e1192009-12-15 17:24:14 +00001646 IIC_iALUi, "sbfx", "\t$dst, $src, $lsb, $width", []> {
1647 let Inst{31-27} = 0b11110;
1648 let Inst{25} = 1;
1649 let Inst{24-20} = 0b10100;
1650 let Inst{15} = 0;
1651}
Sandeep Patel47eedaa2009-10-13 18:59:48 +00001652
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001653def t2UBFX: T2I<(outs rGPR:$dst), (ins rGPR:$src, imm0_31:$lsb, imm0_31:$width),
Johnny Chend68e1192009-12-15 17:24:14 +00001654 IIC_iALUi, "ubfx", "\t$dst, $src, $lsb, $width", []> {
1655 let Inst{31-27} = 0b11110;
1656 let Inst{25} = 1;
1657 let Inst{24-20} = 0b11100;
1658 let Inst{15} = 0;
1659}
Sandeep Patel47eedaa2009-10-13 18:59:48 +00001660
Johnny Chen9474d552010-02-02 19:31:58 +00001661// A8.6.18 BFI - Bitfield insert (Encoding T1)
Jim Grosbach469bbdb2010-07-16 23:05:05 +00001662let Constraints = "$src = $dst" in
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001663def t2BFI : T2I<(outs rGPR:$dst),
1664 (ins rGPR:$src, rGPR:$val, bf_inv_mask_imm:$imm),
Jim Grosbach469bbdb2010-07-16 23:05:05 +00001665 IIC_iALUi, "bfi", "\t$dst, $val, $imm",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001666 [(set rGPR:$dst, (ARMbfi rGPR:$src, rGPR:$val,
Jim Grosbach469bbdb2010-07-16 23:05:05 +00001667 bf_inv_mask_imm:$imm))]> {
Johnny Chen9474d552010-02-02 19:31:58 +00001668 let Inst{31-27} = 0b11110;
1669 let Inst{25} = 1;
1670 let Inst{24-20} = 0b10110;
1671 let Inst{15} = 0;
1672}
Evan Chengf49810c2009-06-23 17:48:47 +00001673
Johnny Chend68e1192009-12-15 17:24:14 +00001674defm t2ORN : T2I_bin_irs<0b0011, "orn", BinOpFrag<(or node:$LHS,
1675 (not node:$RHS))>>;
Evan Cheng36a0aeb2009-07-06 22:23:46 +00001676
1677// Prefer over of t2EORri ra, rb, -1 because mvn has 16-bit version
1678let AddedComplexity = 1 in
Johnny Chend68e1192009-12-15 17:24:14 +00001679defm t2MVN : T2I_un_irs <0b0011, "mvn", UnOpFrag<(not node:$Src)>, 1, 1>;
Evan Cheng36a0aeb2009-07-06 22:23:46 +00001680
1681
Jim Grosbachf084a5e2010-07-20 16:07:04 +00001682let AddedComplexity = 1 in
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001683def : T2Pat<(and rGPR:$src, t2_so_imm_not:$imm),
1684 (t2BICri rGPR:$src, t2_so_imm_not:$imm)>;
Evan Cheng36a0aeb2009-07-06 22:23:46 +00001685
Evan Cheng25f7cfc2009-08-01 06:13:52 +00001686// FIXME: Disable this pattern on Darwin to workaround an assembler bug.
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001687def : T2Pat<(or rGPR:$src, t2_so_imm_not:$imm),
1688 (t2ORNri rGPR:$src, t2_so_imm_not:$imm)>,
Evan Chengea253b92009-08-12 01:56:42 +00001689 Requires<[IsThumb2]>;
Evan Cheng36a0aeb2009-07-06 22:23:46 +00001690
1691def : T2Pat<(t2_so_imm_not:$src),
1692 (t2MVNi t2_so_imm_not:$src)>;
1693
Evan Chengf49810c2009-06-23 17:48:47 +00001694//===----------------------------------------------------------------------===//
1695// Multiply Instructions.
1696//
Evan Cheng8de898a2009-06-26 00:19:44 +00001697let isCommutable = 1 in
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001698def t2MUL: T2I<(outs rGPR:$dst), (ins rGPR:$a, rGPR:$b), IIC_iMUL32,
Evan Cheng699beba2009-10-27 00:08:59 +00001699 "mul", "\t$dst, $a, $b",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001700 [(set rGPR:$dst, (mul rGPR:$a, rGPR:$b))]> {
Johnny Chend68e1192009-12-15 17:24:14 +00001701 let Inst{31-27} = 0b11111;
1702 let Inst{26-23} = 0b0110;
1703 let Inst{22-20} = 0b000;
1704 let Inst{15-12} = 0b1111; // Ra = 0b1111 (no accumulate)
1705 let Inst{7-4} = 0b0000; // Multiply
1706}
Evan Chengf49810c2009-06-23 17:48:47 +00001707
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001708def t2MLA: T2I<(outs rGPR:$dst), (ins rGPR:$a, rGPR:$b, rGPR:$c), IIC_iMAC32,
Evan Cheng699beba2009-10-27 00:08:59 +00001709 "mla", "\t$dst, $a, $b, $c",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001710 [(set rGPR:$dst, (add (mul rGPR:$a, rGPR:$b), rGPR:$c))]> {
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} = {?, ?, ?, ?}; // Ra
1715 let Inst{7-4} = 0b0000; // Multiply
1716}
Evan Chengf49810c2009-06-23 17:48:47 +00001717
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001718def t2MLS: T2I<(outs rGPR:$dst), (ins rGPR:$a, rGPR:$b, rGPR:$c), IIC_iMAC32,
Evan Cheng699beba2009-10-27 00:08:59 +00001719 "mls", "\t$dst, $a, $b, $c",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001720 [(set rGPR:$dst, (sub rGPR:$c, (mul rGPR:$a, rGPR:$b)))]> {
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} = 0b0001; // Multiply and Subtract
1726}
Evan Chengf49810c2009-06-23 17:48:47 +00001727
Evan Cheng5b9fcd12009-07-07 01:17:28 +00001728// Extra precision multiplies with low / high results
1729let neverHasSideEffects = 1 in {
1730let isCommutable = 1 in {
Jim Grosbachc5ed0132010-08-17 18:39:16 +00001731def t2SMULL : T2I<(outs rGPR:$ldst, rGPR:$hdst),
1732 (ins rGPR:$a, rGPR:$b), IIC_iMUL64,
Johnny Chend68e1192009-12-15 17:24:14 +00001733 "smull", "\t$ldst, $hdst, $a, $b", []> {
1734 let Inst{31-27} = 0b11111;
1735 let Inst{26-23} = 0b0111;
1736 let Inst{22-20} = 0b000;
1737 let Inst{7-4} = 0b0000;
1738}
Evan Cheng5b9fcd12009-07-07 01:17:28 +00001739
Jim Grosbachc5ed0132010-08-17 18:39:16 +00001740def t2UMULL : T2I<(outs rGPR:$ldst, rGPR:$hdst),
1741 (ins rGPR:$a, rGPR:$b), IIC_iMUL64,
Johnny Chend68e1192009-12-15 17:24:14 +00001742 "umull", "\t$ldst, $hdst, $a, $b", []> {
1743 let Inst{31-27} = 0b11111;
1744 let Inst{26-23} = 0b0111;
1745 let Inst{22-20} = 0b010;
1746 let Inst{7-4} = 0b0000;
Evan Cheng5b9fcd12009-07-07 01:17:28 +00001747}
Johnny Chend68e1192009-12-15 17:24:14 +00001748} // isCommutable
Evan Cheng5b9fcd12009-07-07 01:17:28 +00001749
1750// Multiply + accumulate
Jim Grosbachc5ed0132010-08-17 18:39:16 +00001751def t2SMLAL : T2I<(outs rGPR:$ldst, rGPR:$hdst),
1752 (ins rGPR:$a, rGPR:$b), IIC_iMAC64,
Johnny Chend68e1192009-12-15 17:24:14 +00001753 "smlal", "\t$ldst, $hdst, $a, $b", []>{
1754 let Inst{31-27} = 0b11111;
1755 let Inst{26-23} = 0b0111;
1756 let Inst{22-20} = 0b100;
1757 let Inst{7-4} = 0b0000;
1758}
Evan Cheng5b9fcd12009-07-07 01:17:28 +00001759
Jim Grosbachc5ed0132010-08-17 18:39:16 +00001760def t2UMLAL : T2I<(outs rGPR:$ldst, rGPR:$hdst),
1761 (ins rGPR:$a, rGPR:$b), IIC_iMAC64,
Johnny Chend68e1192009-12-15 17:24:14 +00001762 "umlal", "\t$ldst, $hdst, $a, $b", []>{
1763 let Inst{31-27} = 0b11111;
1764 let Inst{26-23} = 0b0111;
1765 let Inst{22-20} = 0b110;
1766 let Inst{7-4} = 0b0000;
1767}
Evan Cheng5b9fcd12009-07-07 01:17:28 +00001768
Jim Grosbachc5ed0132010-08-17 18:39:16 +00001769def t2UMAAL : T2I<(outs rGPR:$ldst, rGPR:$hdst),
1770 (ins rGPR:$a, rGPR:$b), IIC_iMAC64,
Johnny Chend68e1192009-12-15 17:24:14 +00001771 "umaal", "\t$ldst, $hdst, $a, $b", []>{
1772 let Inst{31-27} = 0b11111;
1773 let Inst{26-23} = 0b0111;
1774 let Inst{22-20} = 0b110;
1775 let Inst{7-4} = 0b0110;
1776}
Evan Cheng5b9fcd12009-07-07 01:17:28 +00001777} // neverHasSideEffects
1778
Johnny Chen93042d12010-03-02 18:14:57 +00001779// Rounding variants of the below included for disassembly only
1780
Evan Cheng5b9fcd12009-07-07 01:17:28 +00001781// Most significant word multiply
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001782def t2SMMUL : T2I<(outs rGPR:$dst), (ins rGPR:$a, rGPR:$b), IIC_iMUL32,
Evan Cheng699beba2009-10-27 00:08:59 +00001783 "smmul", "\t$dst, $a, $b",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001784 [(set rGPR:$dst, (mulhs rGPR:$a, rGPR:$b))]> {
Johnny Chend68e1192009-12-15 17:24:14 +00001785 let Inst{31-27} = 0b11111;
1786 let Inst{26-23} = 0b0110;
1787 let Inst{22-20} = 0b101;
1788 let Inst{15-12} = 0b1111; // Ra = 0b1111 (no accumulate)
1789 let Inst{7-4} = 0b0000; // No Rounding (Inst{4} = 0)
1790}
Evan Cheng5b9fcd12009-07-07 01:17:28 +00001791
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001792def t2SMMULR : T2I<(outs rGPR:$dst), (ins rGPR:$a, rGPR:$b), IIC_iMUL32,
Johnny Chen93042d12010-03-02 18:14:57 +00001793 "smmulr", "\t$dst, $a, $b", []> {
1794 let Inst{31-27} = 0b11111;
1795 let Inst{26-23} = 0b0110;
1796 let Inst{22-20} = 0b101;
1797 let Inst{15-12} = 0b1111; // Ra = 0b1111 (no accumulate)
1798 let Inst{7-4} = 0b0001; // Rounding (Inst{4} = 1)
1799}
1800
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001801def t2SMMLA : T2I<(outs rGPR:$dst), (ins rGPR:$a, rGPR:$b, rGPR:$c), IIC_iMAC32,
Evan Cheng699beba2009-10-27 00:08:59 +00001802 "smmla", "\t$dst, $a, $b, $c",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001803 [(set rGPR:$dst, (add (mulhs rGPR:$a, rGPR:$b), rGPR:$c))]> {
Johnny Chend68e1192009-12-15 17:24:14 +00001804 let Inst{31-27} = 0b11111;
1805 let Inst{26-23} = 0b0110;
1806 let Inst{22-20} = 0b101;
1807 let Inst{15-12} = {?, ?, ?, ?}; // Ra
1808 let Inst{7-4} = 0b0000; // No Rounding (Inst{4} = 0)
1809}
Evan Cheng5b9fcd12009-07-07 01:17:28 +00001810
Jim Grosbachc5ed0132010-08-17 18:39:16 +00001811def t2SMMLAR: T2I<(outs rGPR:$dst), (ins rGPR:$a, rGPR:$b, rGPR:$c), IIC_iMAC32,
Johnny Chen93042d12010-03-02 18:14:57 +00001812 "smmlar", "\t$dst, $a, $b, $c", []> {
1813 let Inst{31-27} = 0b11111;
1814 let Inst{26-23} = 0b0110;
1815 let Inst{22-20} = 0b101;
1816 let Inst{15-12} = {?, ?, ?, ?}; // Ra
1817 let Inst{7-4} = 0b0001; // Rounding (Inst{4} = 1)
1818}
Evan Cheng5b9fcd12009-07-07 01:17:28 +00001819
Jim Grosbachc5ed0132010-08-17 18:39:16 +00001820def t2SMMLS: T2I <(outs rGPR:$dst), (ins rGPR:$a, rGPR:$b, rGPR:$c), IIC_iMAC32,
Evan Cheng699beba2009-10-27 00:08:59 +00001821 "smmls", "\t$dst, $a, $b, $c",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001822 [(set rGPR:$dst, (sub rGPR:$c, (mulhs rGPR:$a, rGPR:$b)))]> {
Johnny Chend68e1192009-12-15 17:24:14 +00001823 let Inst{31-27} = 0b11111;
1824 let Inst{26-23} = 0b0110;
1825 let Inst{22-20} = 0b110;
1826 let Inst{15-12} = {?, ?, ?, ?}; // Ra
1827 let Inst{7-4} = 0b0000; // No Rounding (Inst{4} = 0)
1828}
Evan Cheng5b9fcd12009-07-07 01:17:28 +00001829
Jim Grosbachc5ed0132010-08-17 18:39:16 +00001830def t2SMMLSR:T2I <(outs rGPR:$dst), (ins rGPR:$a, rGPR:$b, rGPR:$c), IIC_iMAC32,
Johnny Chen93042d12010-03-02 18:14:57 +00001831 "smmlsr", "\t$dst, $a, $b, $c", []> {
1832 let Inst{31-27} = 0b11111;
1833 let Inst{26-23} = 0b0110;
1834 let Inst{22-20} = 0b110;
1835 let Inst{15-12} = {?, ?, ?, ?}; // Ra
1836 let Inst{7-4} = 0b0001; // Rounding (Inst{4} = 1)
1837}
1838
Evan Cheng5b9fcd12009-07-07 01:17:28 +00001839multiclass T2I_smul<string opc, PatFrag opnode> {
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001840 def BB : T2I<(outs rGPR:$dst), (ins rGPR:$a, rGPR:$b), IIC_iMUL32,
Evan Cheng699beba2009-10-27 00:08:59 +00001841 !strconcat(opc, "bb"), "\t$dst, $a, $b",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001842 [(set rGPR:$dst, (opnode (sext_inreg rGPR:$a, i16),
1843 (sext_inreg rGPR:$b, i16)))]> {
Johnny Chend68e1192009-12-15 17:24:14 +00001844 let Inst{31-27} = 0b11111;
1845 let Inst{26-23} = 0b0110;
1846 let Inst{22-20} = 0b001;
1847 let Inst{15-12} = 0b1111; // Ra = 0b1111 (no accumulate)
1848 let Inst{7-6} = 0b00;
1849 let Inst{5-4} = 0b00;
1850 }
Evan Cheng5b9fcd12009-07-07 01:17:28 +00001851
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001852 def BT : T2I<(outs rGPR:$dst), (ins rGPR:$a, rGPR:$b), IIC_iMUL32,
Evan Cheng699beba2009-10-27 00:08:59 +00001853 !strconcat(opc, "bt"), "\t$dst, $a, $b",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001854 [(set rGPR:$dst, (opnode (sext_inreg rGPR:$a, i16),
1855 (sra rGPR:$b, (i32 16))))]> {
Johnny Chend68e1192009-12-15 17:24:14 +00001856 let Inst{31-27} = 0b11111;
1857 let Inst{26-23} = 0b0110;
1858 let Inst{22-20} = 0b001;
1859 let Inst{15-12} = 0b1111; // Ra = 0b1111 (no accumulate)
1860 let Inst{7-6} = 0b00;
1861 let Inst{5-4} = 0b01;
1862 }
Evan Cheng5b9fcd12009-07-07 01:17:28 +00001863
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001864 def TB : T2I<(outs rGPR:$dst), (ins rGPR:$a, rGPR:$b), IIC_iMUL32,
Evan Cheng699beba2009-10-27 00:08:59 +00001865 !strconcat(opc, "tb"), "\t$dst, $a, $b",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001866 [(set rGPR:$dst, (opnode (sra rGPR:$a, (i32 16)),
1867 (sext_inreg rGPR:$b, i16)))]> {
Johnny Chend68e1192009-12-15 17:24:14 +00001868 let Inst{31-27} = 0b11111;
1869 let Inst{26-23} = 0b0110;
1870 let Inst{22-20} = 0b001;
1871 let Inst{15-12} = 0b1111; // Ra = 0b1111 (no accumulate)
1872 let Inst{7-6} = 0b00;
1873 let Inst{5-4} = 0b10;
1874 }
Evan Cheng5b9fcd12009-07-07 01:17:28 +00001875
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001876 def TT : T2I<(outs rGPR:$dst), (ins rGPR:$a, rGPR:$b), IIC_iMUL32,
Evan Cheng699beba2009-10-27 00:08:59 +00001877 !strconcat(opc, "tt"), "\t$dst, $a, $b",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001878 [(set rGPR:$dst, (opnode (sra rGPR:$a, (i32 16)),
1879 (sra rGPR:$b, (i32 16))))]> {
Johnny Chend68e1192009-12-15 17:24:14 +00001880 let Inst{31-27} = 0b11111;
1881 let Inst{26-23} = 0b0110;
1882 let Inst{22-20} = 0b001;
1883 let Inst{15-12} = 0b1111; // Ra = 0b1111 (no accumulate)
1884 let Inst{7-6} = 0b00;
1885 let Inst{5-4} = 0b11;
1886 }
Evan Cheng5b9fcd12009-07-07 01:17:28 +00001887
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001888 def WB : T2I<(outs rGPR:$dst), (ins rGPR:$a, rGPR:$b), IIC_iMUL16,
Evan Cheng699beba2009-10-27 00:08:59 +00001889 !strconcat(opc, "wb"), "\t$dst, $a, $b",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001890 [(set rGPR:$dst, (sra (opnode rGPR:$a,
1891 (sext_inreg rGPR:$b, i16)), (i32 16)))]> {
Johnny Chend68e1192009-12-15 17:24:14 +00001892 let Inst{31-27} = 0b11111;
1893 let Inst{26-23} = 0b0110;
1894 let Inst{22-20} = 0b011;
1895 let Inst{15-12} = 0b1111; // Ra = 0b1111 (no accumulate)
1896 let Inst{7-6} = 0b00;
1897 let Inst{5-4} = 0b00;
1898 }
Evan Cheng5b9fcd12009-07-07 01:17:28 +00001899
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001900 def WT : T2I<(outs rGPR:$dst), (ins rGPR:$a, rGPR:$b), IIC_iMUL16,
Evan Cheng699beba2009-10-27 00:08:59 +00001901 !strconcat(opc, "wt"), "\t$dst, $a, $b",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001902 [(set rGPR:$dst, (sra (opnode rGPR:$a,
1903 (sra rGPR:$b, (i32 16))), (i32 16)))]> {
Johnny Chend68e1192009-12-15 17:24:14 +00001904 let Inst{31-27} = 0b11111;
1905 let Inst{26-23} = 0b0110;
1906 let Inst{22-20} = 0b011;
1907 let Inst{15-12} = 0b1111; // Ra = 0b1111 (no accumulate)
1908 let Inst{7-6} = 0b00;
1909 let Inst{5-4} = 0b01;
1910 }
Evan Cheng5b9fcd12009-07-07 01:17:28 +00001911}
1912
1913
1914multiclass T2I_smla<string opc, PatFrag opnode> {
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001915 def BB : T2I<(outs rGPR:$dst), (ins rGPR:$a, rGPR:$b, rGPR:$acc), IIC_iMAC16,
Evan Cheng699beba2009-10-27 00:08:59 +00001916 !strconcat(opc, "bb"), "\t$dst, $a, $b, $acc",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001917 [(set rGPR:$dst, (add rGPR:$acc,
1918 (opnode (sext_inreg rGPR:$a, i16),
1919 (sext_inreg rGPR:$b, i16))))]> {
Johnny Chend68e1192009-12-15 17:24:14 +00001920 let Inst{31-27} = 0b11111;
1921 let Inst{26-23} = 0b0110;
1922 let Inst{22-20} = 0b001;
1923 let Inst{15-12} = {?, ?, ?, ?}; // Ra
1924 let Inst{7-6} = 0b00;
1925 let Inst{5-4} = 0b00;
1926 }
Evan Cheng5b9fcd12009-07-07 01:17:28 +00001927
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001928 def BT : T2I<(outs rGPR:$dst), (ins rGPR:$a, rGPR:$b, rGPR:$acc), IIC_iMAC16,
Evan Cheng699beba2009-10-27 00:08:59 +00001929 !strconcat(opc, "bt"), "\t$dst, $a, $b, $acc",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001930 [(set rGPR:$dst, (add rGPR:$acc, (opnode (sext_inreg rGPR:$a, i16),
Jim Grosbachc5ed0132010-08-17 18:39:16 +00001931 (sra rGPR:$b, (i32 16)))))]> {
Johnny Chend68e1192009-12-15 17:24:14 +00001932 let Inst{31-27} = 0b11111;
1933 let Inst{26-23} = 0b0110;
1934 let Inst{22-20} = 0b001;
1935 let Inst{15-12} = {?, ?, ?, ?}; // Ra
1936 let Inst{7-6} = 0b00;
1937 let Inst{5-4} = 0b01;
1938 }
Evan Cheng5b9fcd12009-07-07 01:17:28 +00001939
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001940 def TB : T2I<(outs rGPR:$dst), (ins rGPR:$a, rGPR:$b, rGPR:$acc), IIC_iMAC16,
Evan Cheng699beba2009-10-27 00:08:59 +00001941 !strconcat(opc, "tb"), "\t$dst, $a, $b, $acc",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001942 [(set rGPR:$dst, (add rGPR:$acc, (opnode (sra rGPR:$a, (i32 16)),
Jim Grosbachc5ed0132010-08-17 18:39:16 +00001943 (sext_inreg rGPR:$b, i16))))]> {
Johnny Chend68e1192009-12-15 17:24:14 +00001944 let Inst{31-27} = 0b11111;
1945 let Inst{26-23} = 0b0110;
1946 let Inst{22-20} = 0b001;
1947 let Inst{15-12} = {?, ?, ?, ?}; // Ra
1948 let Inst{7-6} = 0b00;
1949 let Inst{5-4} = 0b10;
1950 }
Evan Cheng5b9fcd12009-07-07 01:17:28 +00001951
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001952 def TT : T2I<(outs rGPR:$dst), (ins rGPR:$a, rGPR:$b, rGPR:$acc), IIC_iMAC16,
Evan Cheng699beba2009-10-27 00:08:59 +00001953 !strconcat(opc, "tt"), "\t$dst, $a, $b, $acc",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001954 [(set rGPR:$dst, (add rGPR:$acc, (opnode (sra rGPR:$a, (i32 16)),
Jim Grosbachc5ed0132010-08-17 18:39:16 +00001955 (sra rGPR:$b, (i32 16)))))]> {
Johnny Chend68e1192009-12-15 17:24:14 +00001956 let Inst{31-27} = 0b11111;
1957 let Inst{26-23} = 0b0110;
1958 let Inst{22-20} = 0b001;
1959 let Inst{15-12} = {?, ?, ?, ?}; // Ra
1960 let Inst{7-6} = 0b00;
1961 let Inst{5-4} = 0b11;
1962 }
Evan Cheng5b9fcd12009-07-07 01:17:28 +00001963
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001964 def WB : T2I<(outs rGPR:$dst), (ins rGPR:$a, rGPR:$b, rGPR:$acc), IIC_iMAC16,
Evan Cheng699beba2009-10-27 00:08:59 +00001965 !strconcat(opc, "wb"), "\t$dst, $a, $b, $acc",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001966 [(set rGPR:$dst, (add rGPR:$acc, (sra (opnode rGPR:$a,
Jim Grosbachc5ed0132010-08-17 18:39:16 +00001967 (sext_inreg rGPR:$b, i16)), (i32 16))))]> {
Johnny Chend68e1192009-12-15 17:24:14 +00001968 let Inst{31-27} = 0b11111;
1969 let Inst{26-23} = 0b0110;
1970 let Inst{22-20} = 0b011;
1971 let Inst{15-12} = {?, ?, ?, ?}; // Ra
1972 let Inst{7-6} = 0b00;
1973 let Inst{5-4} = 0b00;
1974 }
Evan Cheng5b9fcd12009-07-07 01:17:28 +00001975
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001976 def WT : T2I<(outs rGPR:$dst), (ins rGPR:$a, rGPR:$b, rGPR:$acc), IIC_iMAC16,
Evan Cheng699beba2009-10-27 00:08:59 +00001977 !strconcat(opc, "wt"), "\t$dst, $a, $b, $acc",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001978 [(set rGPR:$dst, (add rGPR:$acc, (sra (opnode rGPR:$a,
Jim Grosbachc5ed0132010-08-17 18:39:16 +00001979 (sra rGPR:$b, (i32 16))), (i32 16))))]> {
Johnny Chend68e1192009-12-15 17:24:14 +00001980 let Inst{31-27} = 0b11111;
1981 let Inst{26-23} = 0b0110;
1982 let Inst{22-20} = 0b011;
1983 let Inst{15-12} = {?, ?, ?, ?}; // Ra
1984 let Inst{7-6} = 0b00;
1985 let Inst{5-4} = 0b01;
1986 }
Evan Cheng5b9fcd12009-07-07 01:17:28 +00001987}
1988
1989defm t2SMUL : T2I_smul<"smul", BinOpFrag<(mul node:$LHS, node:$RHS)>>;
1990defm t2SMLA : T2I_smla<"smla", BinOpFrag<(mul node:$LHS, node:$RHS)>>;
1991
Johnny Chenadc77332010-02-26 22:04:29 +00001992// Halfword multiple accumulate long: SMLAL<x><y> -- for disassembly only
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001993def t2SMLALBB : T2I_mac<1, 0b100, 0b1000, (outs rGPR:$ldst,rGPR:$hdst),
Jim Grosbachc5ed0132010-08-17 18:39:16 +00001994 (ins rGPR:$a,rGPR:$b), IIC_iMAC64, "smlalbb", "\t$ldst, $hdst, $a, $b",
Johnny Chenadc77332010-02-26 22:04:29 +00001995 [/* For disassembly only; pattern left blank */]>;
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001996def t2SMLALBT : T2I_mac<1, 0b100, 0b1001, (outs rGPR:$ldst,rGPR:$hdst),
Jim Grosbachc5ed0132010-08-17 18:39:16 +00001997 (ins rGPR:$a,rGPR:$b), IIC_iMAC64, "smlalbt", "\t$ldst, $hdst, $a, $b",
Johnny Chenadc77332010-02-26 22:04:29 +00001998 [/* For disassembly only; pattern left blank */]>;
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001999def t2SMLALTB : T2I_mac<1, 0b100, 0b1010, (outs rGPR:$ldst,rGPR:$hdst),
Jim Grosbachc5ed0132010-08-17 18:39:16 +00002000 (ins rGPR:$a,rGPR:$b), IIC_iMAC64, "smlaltb", "\t$ldst, $hdst, $a, $b",
Johnny Chenadc77332010-02-26 22:04:29 +00002001 [/* For disassembly only; pattern left blank */]>;
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002002def t2SMLALTT : T2I_mac<1, 0b100, 0b1011, (outs rGPR:$ldst,rGPR:$hdst),
Jim Grosbachc5ed0132010-08-17 18:39:16 +00002003 (ins rGPR:$a,rGPR:$b), IIC_iMAC64, "smlaltt", "\t$ldst, $hdst, $a, $b",
Johnny Chenadc77332010-02-26 22:04:29 +00002004 [/* For disassembly only; pattern left blank */]>;
Evan Cheng5b9fcd12009-07-07 01:17:28 +00002005
Johnny Chenadc77332010-02-26 22:04:29 +00002006// Dual halfword multiple: SMUAD, SMUSD, SMLAD, SMLSD, SMLALD, SMLSLD
2007// These are for disassembly only.
2008
Jim Grosbachc5ed0132010-08-17 18:39:16 +00002009def t2SMUAD: T2I_mac<0, 0b010, 0b0000, (outs rGPR:$dst), (ins rGPR:$a, rGPR:$b),
2010 IIC_iMAC32, "smuad", "\t$dst, $a, $b", []> {
Johnny Chenadc77332010-02-26 22:04:29 +00002011 let Inst{15-12} = 0b1111;
2012}
Jim Grosbachc5ed0132010-08-17 18:39:16 +00002013def t2SMUADX:T2I_mac<0, 0b010, 0b0001, (outs rGPR:$dst), (ins rGPR:$a, rGPR:$b),
2014 IIC_iMAC32, "smuadx", "\t$dst, $a, $b", []> {
Johnny Chenadc77332010-02-26 22:04:29 +00002015 let Inst{15-12} = 0b1111;
2016}
Jim Grosbachc5ed0132010-08-17 18:39:16 +00002017def t2SMUSD: T2I_mac<0, 0b100, 0b0000, (outs rGPR:$dst), (ins rGPR:$a, rGPR:$b),
2018 IIC_iMAC32, "smusd", "\t$dst, $a, $b", []> {
Johnny Chenadc77332010-02-26 22:04:29 +00002019 let Inst{15-12} = 0b1111;
2020}
Jim Grosbachc5ed0132010-08-17 18:39:16 +00002021def t2SMUSDX:T2I_mac<0, 0b100, 0b0001, (outs rGPR:$dst), (ins rGPR:$a, rGPR:$b),
2022 IIC_iMAC32, "smusdx", "\t$dst, $a, $b", []> {
Johnny Chenadc77332010-02-26 22:04:29 +00002023 let Inst{15-12} = 0b1111;
2024}
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002025def t2SMLAD : T2I_mac<0, 0b010, 0b0000, (outs rGPR:$dst),
2026 (ins rGPR:$a, rGPR:$b, rGPR:$acc), IIC_iMAC32, "smlad",
Johnny Chenadc77332010-02-26 22:04:29 +00002027 "\t$dst, $a, $b, $acc", []>;
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002028def t2SMLADX : T2I_mac<0, 0b010, 0b0001, (outs rGPR:$dst),
2029 (ins rGPR:$a, rGPR:$b, rGPR:$acc), IIC_iMAC32, "smladx",
Johnny Chenadc77332010-02-26 22:04:29 +00002030 "\t$dst, $a, $b, $acc", []>;
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002031def t2SMLSD : T2I_mac<0, 0b100, 0b0000, (outs rGPR:$dst),
2032 (ins rGPR:$a, rGPR:$b, rGPR:$acc), IIC_iMAC32, "smlsd",
Johnny Chenadc77332010-02-26 22:04:29 +00002033 "\t$dst, $a, $b, $acc", []>;
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002034def t2SMLSDX : T2I_mac<0, 0b100, 0b0001, (outs rGPR:$dst),
2035 (ins rGPR:$a, rGPR:$b, rGPR:$acc), IIC_iMAC32, "smlsdx",
Johnny Chenadc77332010-02-26 22:04:29 +00002036 "\t$dst, $a, $b, $acc", []>;
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002037def t2SMLALD : T2I_mac<1, 0b100, 0b1100, (outs rGPR:$ldst,rGPR:$hdst),
2038 (ins rGPR:$a,rGPR:$b), IIC_iMAC64, "smlald",
Johnny Chenadc77332010-02-26 22:04:29 +00002039 "\t$ldst, $hdst, $a, $b", []>;
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002040def t2SMLALDX : T2I_mac<1, 0b100, 0b1101, (outs rGPR:$ldst,rGPR:$hdst),
2041 (ins rGPR:$a,rGPR:$b), IIC_iMAC64, "smlaldx",
Johnny Chenadc77332010-02-26 22:04:29 +00002042 "\t$ldst, $hdst, $a, $b", []>;
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002043def t2SMLSLD : T2I_mac<1, 0b101, 0b1100, (outs rGPR:$ldst,rGPR:$hdst),
2044 (ins rGPR:$a,rGPR:$b), IIC_iMAC64, "smlsld",
Johnny Chenadc77332010-02-26 22:04:29 +00002045 "\t$ldst, $hdst, $a, $b", []>;
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002046def t2SMLSLDX : T2I_mac<1, 0b101, 0b1101, (outs rGPR:$ldst,rGPR:$hdst),
2047 (ins rGPR:$a,rGPR:$b), IIC_iMAC64, "smlsldx",
Johnny Chenadc77332010-02-26 22:04:29 +00002048 "\t$ldst, $hdst, $a, $b", []>;
Evan Chengf49810c2009-06-23 17:48:47 +00002049
2050//===----------------------------------------------------------------------===//
2051// Misc. Arithmetic Instructions.
2052//
2053
Jim Grosbach80dc1162010-02-16 21:23:02 +00002054class T2I_misc<bits<2> op1, bits<2> op2, dag oops, dag iops,
2055 InstrItinClass itin, string opc, string asm, list<dag> pattern>
Johnny Chend68e1192009-12-15 17:24:14 +00002056 : T2I<oops, iops, itin, opc, asm, pattern> {
2057 let Inst{31-27} = 0b11111;
2058 let Inst{26-22} = 0b01010;
2059 let Inst{21-20} = op1;
2060 let Inst{15-12} = 0b1111;
2061 let Inst{7-6} = 0b10;
2062 let Inst{5-4} = op2;
2063}
Evan Chengf49810c2009-06-23 17:48:47 +00002064
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002065def t2CLZ : T2I_misc<0b11, 0b00, (outs rGPR:$dst), (ins rGPR:$src), IIC_iUNAr,
2066 "clz", "\t$dst, $src", [(set rGPR:$dst, (ctlz rGPR:$src))]>;
Evan Chengf49810c2009-06-23 17:48:47 +00002067
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002068def t2RBIT : T2I_misc<0b01, 0b10, (outs rGPR:$dst), (ins rGPR:$src), IIC_iUNAr,
Evan Chengf609bb82010-01-19 00:44:15 +00002069 "rbit", "\t$dst, $src",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002070 [(set rGPR:$dst, (ARMrbit rGPR:$src))]>;
Jim Grosbach3482c802010-01-18 19:58:49 +00002071
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002072def t2REV : T2I_misc<0b01, 0b00, (outs rGPR:$dst), (ins rGPR:$src), IIC_iUNAr,
Jim Grosbachc5ed0132010-08-17 18:39:16 +00002073 "rev", ".w\t$dst, $src", [(set rGPR:$dst, (bswap rGPR:$src))]>;
Johnny Chend68e1192009-12-15 17:24:14 +00002074
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002075def t2REV16 : T2I_misc<0b01, 0b01, (outs rGPR:$dst), (ins rGPR:$src), IIC_iUNAr,
Johnny Chend68e1192009-12-15 17:24:14 +00002076 "rev16", ".w\t$dst, $src",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002077 [(set rGPR:$dst,
2078 (or (and (srl rGPR:$src, (i32 8)), 0xFF),
2079 (or (and (shl rGPR:$src, (i32 8)), 0xFF00),
2080 (or (and (srl rGPR:$src, (i32 8)), 0xFF0000),
Jim Grosbachc5ed0132010-08-17 18:39:16 +00002081 (and (shl rGPR:$src, (i32 8)), 0xFF000000)))))]>;
Evan Chengf49810c2009-06-23 17:48:47 +00002082
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002083def t2REVSH : T2I_misc<0b01, 0b11, (outs rGPR:$dst), (ins rGPR:$src), IIC_iUNAr,
Johnny Chend68e1192009-12-15 17:24:14 +00002084 "revsh", ".w\t$dst, $src",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002085 [(set rGPR:$dst,
Evan Chengf49810c2009-06-23 17:48:47 +00002086 (sext_inreg
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002087 (or (srl (and rGPR:$src, 0xFF00), (i32 8)),
2088 (shl rGPR:$src, (i32 8))), i16))]>;
Evan Chengf49810c2009-06-23 17:48:47 +00002089
Bob Wilsonf955f292010-08-17 17:23:19 +00002090def t2PKHBT : T2I<(outs rGPR:$dst), (ins rGPR:$src1, rGPR:$src2, shift_imm:$sh),
2091 IIC_iALUsi, "pkhbt", "\t$dst, $src1, $src2$sh",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002092 [(set rGPR:$dst, (or (and rGPR:$src1, 0xFFFF),
Bob Wilsonf955f292010-08-17 17:23:19 +00002093 (and (shl rGPR:$src2, lsl_amt:$sh),
Jim Grosbachb1dc3932010-05-05 20:44:35 +00002094 0xFFFF0000)))]>,
Jim Grosbach29402132010-05-05 23:44:43 +00002095 Requires<[HasT2ExtractPack]> {
Johnny Chend68e1192009-12-15 17:24:14 +00002096 let Inst{31-27} = 0b11101;
2097 let Inst{26-25} = 0b01;
2098 let Inst{24-20} = 0b01100;
2099 let Inst{5} = 0; // BT form
2100 let Inst{4} = 0;
2101}
Evan Cheng40289b02009-07-07 05:35:52 +00002102
2103// Alternate cases for PKHBT where identities eliminate some nodes.
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002104def : T2Pat<(or (and rGPR:$src1, 0xFFFF), (and rGPR:$src2, 0xFFFF0000)),
2105 (t2PKHBT rGPR:$src1, rGPR:$src2, 0)>,
Jim Grosbach29402132010-05-05 23:44:43 +00002106 Requires<[HasT2ExtractPack]>;
Bob Wilsonf955f292010-08-17 17:23:19 +00002107def : T2Pat<(or (and rGPR:$src1, 0xFFFF), (shl rGPR:$src2, imm16_31:$sh)),
2108 (t2PKHBT rGPR:$src1, rGPR:$src2, (lsl_shift_imm imm16_31:$sh))>,
Jim Grosbach29402132010-05-05 23:44:43 +00002109 Requires<[HasT2ExtractPack]>;
Evan Cheng40289b02009-07-07 05:35:52 +00002110
Bob Wilsondc66eda2010-08-16 22:26:55 +00002111// Note: Shifts of 1-15 bits will be transformed to srl instead of sra and
2112// will match the pattern below.
Bob Wilsonf955f292010-08-17 17:23:19 +00002113def t2PKHTB : T2I<(outs rGPR:$dst), (ins rGPR:$src1, rGPR:$src2, shift_imm:$sh),
2114 IIC_iALUsi, "pkhtb", "\t$dst, $src1, $src2$sh",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002115 [(set rGPR:$dst, (or (and rGPR:$src1, 0xFFFF0000),
Bob Wilsonf955f292010-08-17 17:23:19 +00002116 (and (sra rGPR:$src2, asr_amt:$sh),
2117 0xFFFF)))]>,
Jim Grosbach29402132010-05-05 23:44:43 +00002118 Requires<[HasT2ExtractPack]> {
Johnny Chend68e1192009-12-15 17:24:14 +00002119 let Inst{31-27} = 0b11101;
2120 let Inst{26-25} = 0b01;
2121 let Inst{24-20} = 0b01100;
2122 let Inst{5} = 1; // TB form
2123 let Inst{4} = 0;
2124}
Evan Cheng40289b02009-07-07 05:35:52 +00002125
2126// Alternate cases for PKHTB where identities eliminate some nodes. Note that
2127// a shift amount of 0 is *not legal* here, it is PKHBT instead.
Bob Wilsondc66eda2010-08-16 22:26:55 +00002128def : T2Pat<(or (and rGPR:$src1, 0xFFFF0000), (srl rGPR:$src2, imm16_31:$sh)),
Bob Wilsonf955f292010-08-17 17:23:19 +00002129 (t2PKHTB rGPR:$src1, rGPR:$src2, (asr_shift_imm imm16_31:$sh))>,
Jim Grosbach29402132010-05-05 23:44:43 +00002130 Requires<[HasT2ExtractPack]>;
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002131def : T2Pat<(or (and rGPR:$src1, 0xFFFF0000),
Bob Wilsonf955f292010-08-17 17:23:19 +00002132 (and (srl rGPR:$src2, imm1_15:$sh), 0xFFFF)),
2133 (t2PKHTB rGPR:$src1, rGPR:$src2, (asr_shift_imm imm1_15:$sh))>,
Jim Grosbach29402132010-05-05 23:44:43 +00002134 Requires<[HasT2ExtractPack]>;
Evan Chengf49810c2009-06-23 17:48:47 +00002135
2136//===----------------------------------------------------------------------===//
2137// Comparison Instructions...
2138//
Johnny Chend68e1192009-12-15 17:24:14 +00002139defm t2CMP : T2I_cmp_irs<0b1101, "cmp",
2140 BinOpFrag<(ARMcmp node:$LHS, node:$RHS)>>;
2141defm t2CMPz : T2I_cmp_irs<0b1101, "cmp",
2142 BinOpFrag<(ARMcmpZ node:$LHS, node:$RHS)>>;
Evan Chengf49810c2009-06-23 17:48:47 +00002143
Dan Gohman4b7dff92010-08-26 15:50:25 +00002144//FIXME: Disable CMN, as CCodes are backwards from compare expectations
2145// Compare-to-zero still works out, just not the relationals
Jim Grosbachd5d2bae2010-01-22 00:08:13 +00002146//defm t2CMN : T2I_cmp_irs<0b1000, "cmn",
2147// BinOpFrag<(ARMcmp node:$LHS,(ineg node:$RHS))>>;
Dan Gohman4b7dff92010-08-26 15:50:25 +00002148defm t2CMNz : T2I_cmp_irs<0b1000, "cmn",
2149 BinOpFrag<(ARMcmpZ node:$LHS,(ineg node:$RHS))>>;
2150
Jim Grosbachd5d2bae2010-01-22 00:08:13 +00002151//def : T2Pat<(ARMcmp GPR:$src, t2_so_imm_neg:$imm),
2152// (t2CMNri GPR:$src, t2_so_imm_neg:$imm)>;
Dan Gohman4b7dff92010-08-26 15:50:25 +00002153
2154def : T2Pat<(ARMcmpZ GPR:$src, t2_so_imm_neg:$imm),
2155 (t2CMNzri GPR:$src, t2_so_imm_neg:$imm)>;
Evan Chengf49810c2009-06-23 17:48:47 +00002156
Johnny Chend68e1192009-12-15 17:24:14 +00002157defm t2TST : T2I_cmp_irs<0b0000, "tst",
2158 BinOpFrag<(ARMcmpZ (and node:$LHS, node:$RHS), 0)>>;
2159defm t2TEQ : T2I_cmp_irs<0b0100, "teq",
2160 BinOpFrag<(ARMcmpZ (xor node:$LHS, node:$RHS), 0)>>;
Evan Chengf49810c2009-06-23 17:48:47 +00002161
Evan Chenge253c952009-07-07 20:39:03 +00002162// Conditional moves
2163// FIXME: should be able to write a pattern for ARMcmov, but can't use
Jim Grosbach64171712010-02-16 21:07:46 +00002164// a two-value operand where a dag node expects two operands. :(
Evan Chengea420b22010-05-19 01:52:25 +00002165let neverHasSideEffects = 1 in {
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002166def t2MOVCCr : T2I<(outs rGPR:$dst), (ins rGPR:$false, rGPR:$true), IIC_iCMOVr,
Evan Cheng699beba2009-10-27 00:08:59 +00002167 "mov", ".w\t$dst, $true",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002168 [/*(set rGPR:$dst, (ARMcmov rGPR:$false, rGPR:$true, imm:$cc, CCR:$ccr))*/]>,
Johnny Chend68e1192009-12-15 17:24:14 +00002169 RegConstraint<"$false = $dst"> {
2170 let Inst{31-27} = 0b11101;
2171 let Inst{26-25} = 0b01;
2172 let Inst{24-21} = 0b0010;
2173 let Inst{20} = 0; // The S bit.
2174 let Inst{19-16} = 0b1111; // Rn
2175 let Inst{14-12} = 0b000;
2176 let Inst{7-4} = 0b0000;
2177}
Evan Chenge253c952009-07-07 20:39:03 +00002178
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002179def t2MOVCCi : T2I<(outs rGPR:$dst), (ins rGPR:$false, t2_so_imm:$true),
Evan Cheng699beba2009-10-27 00:08:59 +00002180 IIC_iCMOVi, "mov", ".w\t$dst, $true",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002181[/*(set rGPR:$dst,(ARMcmov rGPR:$false,t2_so_imm:$true, imm:$cc, CCR:$ccr))*/]>,
Johnny Chend68e1192009-12-15 17:24:14 +00002182 RegConstraint<"$false = $dst"> {
2183 let Inst{31-27} = 0b11110;
2184 let Inst{25} = 0;
2185 let Inst{24-21} = 0b0010;
2186 let Inst{20} = 0; // The S bit.
2187 let Inst{19-16} = 0b1111; // Rn
2188 let Inst{15} = 0;
2189}
Evan Chengf49810c2009-06-23 17:48:47 +00002190
Johnny Chend68e1192009-12-15 17:24:14 +00002191class T2I_movcc_sh<bits<2> opcod, dag oops, dag iops, InstrItinClass itin,
2192 string opc, string asm, list<dag> pattern>
2193 : T2I<oops, iops, itin, opc, asm, pattern> {
2194 let Inst{31-27} = 0b11101;
2195 let Inst{26-25} = 0b01;
2196 let Inst{24-21} = 0b0010;
2197 let Inst{20} = 0; // The S bit.
2198 let Inst{19-16} = 0b1111; // Rn
2199 let Inst{5-4} = opcod; // Shift type.
2200}
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002201def t2MOVCClsl : T2I_movcc_sh<0b00, (outs rGPR:$dst),
2202 (ins rGPR:$false, rGPR:$true, i32imm:$rhs),
Johnny Chend68e1192009-12-15 17:24:14 +00002203 IIC_iCMOVsi, "lsl", ".w\t$dst, $true, $rhs", []>,
2204 RegConstraint<"$false = $dst">;
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002205def t2MOVCClsr : T2I_movcc_sh<0b01, (outs rGPR:$dst),
2206 (ins rGPR:$false, rGPR:$true, i32imm:$rhs),
Johnny Chend68e1192009-12-15 17:24:14 +00002207 IIC_iCMOVsi, "lsr", ".w\t$dst, $true, $rhs", []>,
2208 RegConstraint<"$false = $dst">;
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002209def t2MOVCCasr : T2I_movcc_sh<0b10, (outs rGPR:$dst),
2210 (ins rGPR:$false, rGPR:$true, i32imm:$rhs),
Johnny Chend68e1192009-12-15 17:24:14 +00002211 IIC_iCMOVsi, "asr", ".w\t$dst, $true, $rhs", []>,
2212 RegConstraint<"$false = $dst">;
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002213def t2MOVCCror : T2I_movcc_sh<0b11, (outs rGPR:$dst),
2214 (ins rGPR:$false, rGPR:$true, i32imm:$rhs),
Johnny Chend68e1192009-12-15 17:24:14 +00002215 IIC_iCMOVsi, "ror", ".w\t$dst, $true, $rhs", []>,
2216 RegConstraint<"$false = $dst">;
Evan Chengea420b22010-05-19 01:52:25 +00002217} // neverHasSideEffects
Evan Cheng13f8b362009-08-01 01:43:45 +00002218
David Goodwin5e47a9a2009-06-30 18:04:13 +00002219//===----------------------------------------------------------------------===//
Jim Grosbachc219e4d2009-12-14 18:56:47 +00002220// Atomic operations intrinsics
2221//
2222
2223// memory barriers protect the atomic sequences
2224let hasSideEffects = 1 in {
Evan Cheng11db0682010-08-11 06:22:01 +00002225def t2DMBsy : AInoP<(outs), (ins), ThumbFrm, NoItinerary, "dmb", "",
Evan Chengee349872010-08-11 06:36:31 +00002226 [(ARMMemBarrier)]>, Requires<[IsThumb, HasDB]> {
Johnny Chend68e1192009-12-15 17:24:14 +00002227 let Inst{31-4} = 0xF3BF8F5;
Jim Grosbachc219e4d2009-12-14 18:56:47 +00002228 // FIXME: add support for options other than a full system DMB
Johnny Chend68e1192009-12-15 17:24:14 +00002229 let Inst{3-0} = 0b1111;
Jim Grosbachc219e4d2009-12-14 18:56:47 +00002230}
2231
Evan Cheng11db0682010-08-11 06:22:01 +00002232def t2DSBsy : AInoP<(outs), (ins), ThumbFrm, NoItinerary, "dsb", "",
Evan Chengee349872010-08-11 06:36:31 +00002233 [(ARMSyncBarrier)]>, Requires<[IsThumb, HasDB]> {
Johnny Chend68e1192009-12-15 17:24:14 +00002234 let Inst{31-4} = 0xF3BF8F4;
Jim Grosbachc219e4d2009-12-14 18:56:47 +00002235 // FIXME: add support for options other than a full system DSB
Johnny Chend68e1192009-12-15 17:24:14 +00002236 let Inst{3-0} = 0b1111;
Jim Grosbachc219e4d2009-12-14 18:56:47 +00002237}
2238}
2239
Johnny Chena4339822010-03-03 00:16:28 +00002240// Helper class for multiclass T2MemB -- for disassembly only
2241class T2I_memb<string opc, string asm>
2242 : T2I<(outs), (ins), NoItinerary, opc, asm,
2243 [/* For disassembly only; pattern left blank */]>,
2244 Requires<[IsThumb2, HasV7]> {
2245 let Inst{31-20} = 0xf3b;
2246 let Inst{15-14} = 0b10;
2247 let Inst{12} = 0;
2248}
2249
2250multiclass T2MemB<bits<4> op7_4, string opc> {
2251
2252 def st : T2I_memb<opc, "\tst"> {
2253 let Inst{7-4} = op7_4;
2254 let Inst{3-0} = 0b1110;
2255 }
2256
2257 def ish : T2I_memb<opc, "\tish"> {
2258 let Inst{7-4} = op7_4;
2259 let Inst{3-0} = 0b1011;
2260 }
2261
2262 def ishst : T2I_memb<opc, "\tishst"> {
2263 let Inst{7-4} = op7_4;
2264 let Inst{3-0} = 0b1010;
2265 }
2266
2267 def nsh : T2I_memb<opc, "\tnsh"> {
2268 let Inst{7-4} = op7_4;
2269 let Inst{3-0} = 0b0111;
2270 }
2271
2272 def nshst : T2I_memb<opc, "\tnshst"> {
2273 let Inst{7-4} = op7_4;
2274 let Inst{3-0} = 0b0110;
2275 }
2276
2277 def osh : T2I_memb<opc, "\tosh"> {
2278 let Inst{7-4} = op7_4;
2279 let Inst{3-0} = 0b0011;
2280 }
2281
2282 def oshst : T2I_memb<opc, "\toshst"> {
2283 let Inst{7-4} = op7_4;
2284 let Inst{3-0} = 0b0010;
2285 }
2286}
2287
2288// These DMB variants are for disassembly only.
2289defm t2DMB : T2MemB<0b0101, "dmb">;
2290
2291// These DSB variants are for disassembly only.
2292defm t2DSB : T2MemB<0b0100, "dsb">;
2293
2294// ISB has only full system option -- for disassembly only
2295def t2ISBsy : T2I_memb<"isb", ""> {
2296 let Inst{7-4} = 0b0110;
2297 let Inst{3-0} = 0b1111;
2298}
2299
Johnny Chend68e1192009-12-15 17:24:14 +00002300class T2I_ldrex<bits<2> opcod, dag oops, dag iops, AddrMode am, SizeFlagVal sz,
2301 InstrItinClass itin, string opc, string asm, string cstr,
2302 list<dag> pattern, bits<4> rt2 = 0b1111>
2303 : Thumb2I<oops, iops, am, sz, itin, opc, asm, cstr, pattern> {
2304 let Inst{31-27} = 0b11101;
2305 let Inst{26-20} = 0b0001101;
2306 let Inst{11-8} = rt2;
2307 let Inst{7-6} = 0b01;
2308 let Inst{5-4} = opcod;
2309 let Inst{3-0} = 0b1111;
2310}
2311class T2I_strex<bits<2> opcod, dag oops, dag iops, AddrMode am, SizeFlagVal sz,
2312 InstrItinClass itin, string opc, string asm, string cstr,
2313 list<dag> pattern, bits<4> rt2 = 0b1111>
2314 : Thumb2I<oops, iops, am, sz, itin, opc, asm, cstr, pattern> {
2315 let Inst{31-27} = 0b11101;
2316 let Inst{26-20} = 0b0001100;
2317 let Inst{11-8} = rt2;
2318 let Inst{7-6} = 0b01;
2319 let Inst{5-4} = opcod;
2320}
2321
Jim Grosbachc219e4d2009-12-14 18:56:47 +00002322let mayLoad = 1 in {
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002323def t2LDREXB : T2I_ldrex<0b00, (outs rGPR:$dest), (ins rGPR:$ptr), AddrModeNone,
Johnny Chend68e1192009-12-15 17:24:14 +00002324 Size4Bytes, NoItinerary, "ldrexb", "\t$dest, [$ptr]",
2325 "", []>;
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002326def t2LDREXH : T2I_ldrex<0b01, (outs rGPR:$dest), (ins rGPR:$ptr), AddrModeNone,
Johnny Chend68e1192009-12-15 17:24:14 +00002327 Size4Bytes, NoItinerary, "ldrexh", "\t$dest, [$ptr]",
2328 "", []>;
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002329def t2LDREX : Thumb2I<(outs rGPR:$dest), (ins rGPR:$ptr), AddrModeNone,
Johnny Chend68e1192009-12-15 17:24:14 +00002330 Size4Bytes, NoItinerary,
2331 "ldrex", "\t$dest, [$ptr]", "",
2332 []> {
2333 let Inst{31-27} = 0b11101;
2334 let Inst{26-20} = 0b0000101;
2335 let Inst{11-8} = 0b1111;
2336 let Inst{7-0} = 0b00000000; // imm8 = 0
2337}
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002338def t2LDREXD : T2I_ldrex<0b11, (outs rGPR:$dest, rGPR:$dest2), (ins rGPR:$ptr),
Johnny Chend68e1192009-12-15 17:24:14 +00002339 AddrModeNone, Size4Bytes, NoItinerary,
2340 "ldrexd", "\t$dest, $dest2, [$ptr]", "",
2341 [], {?, ?, ?, ?}>;
Jim Grosbachc219e4d2009-12-14 18:56:47 +00002342}
2343
Jim Grosbach587b0722009-12-16 19:44:06 +00002344let mayStore = 1, Constraints = "@earlyclobber $success" in {
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002345def t2STREXB : T2I_strex<0b00, (outs rGPR:$success), (ins rGPR:$src, rGPR:$ptr),
Johnny Chend68e1192009-12-15 17:24:14 +00002346 AddrModeNone, Size4Bytes, NoItinerary,
2347 "strexb", "\t$success, $src, [$ptr]", "", []>;
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002348def t2STREXH : T2I_strex<0b01, (outs rGPR:$success), (ins rGPR:$src, rGPR:$ptr),
Johnny Chend68e1192009-12-15 17:24:14 +00002349 AddrModeNone, Size4Bytes, NoItinerary,
2350 "strexh", "\t$success, $src, [$ptr]", "", []>;
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002351def t2STREX : Thumb2I<(outs rGPR:$success), (ins rGPR:$src, rGPR:$ptr),
Johnny Chend68e1192009-12-15 17:24:14 +00002352 AddrModeNone, Size4Bytes, NoItinerary,
2353 "strex", "\t$success, $src, [$ptr]", "",
2354 []> {
2355 let Inst{31-27} = 0b11101;
2356 let Inst{26-20} = 0b0000100;
2357 let Inst{7-0} = 0b00000000; // imm8 = 0
2358}
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002359def t2STREXD : T2I_strex<0b11, (outs rGPR:$success),
2360 (ins rGPR:$src, rGPR:$src2, rGPR:$ptr),
Johnny Chend68e1192009-12-15 17:24:14 +00002361 AddrModeNone, Size4Bytes, NoItinerary,
2362 "strexd", "\t$success, $src, $src2, [$ptr]", "", [],
2363 {?, ?, ?, ?}>;
Jim Grosbachc219e4d2009-12-14 18:56:47 +00002364}
2365
Johnny Chen10a77e12010-03-02 22:11:06 +00002366// Clear-Exclusive is for disassembly only.
2367def t2CLREX : T2I<(outs), (ins), NoItinerary, "clrex", "",
2368 [/* For disassembly only; pattern left blank */]>,
2369 Requires<[IsARM, HasV7]> {
2370 let Inst{31-20} = 0xf3b;
2371 let Inst{15-14} = 0b10;
2372 let Inst{12} = 0;
2373 let Inst{7-4} = 0b0010;
2374}
2375
Jim Grosbachc219e4d2009-12-14 18:56:47 +00002376//===----------------------------------------------------------------------===//
David Goodwin334c2642009-07-08 16:09:28 +00002377// TLS Instructions
2378//
2379
2380// __aeabi_read_tp preserves the registers r1-r3.
2381let isCall = 1,
2382 Defs = [R0, R12, LR, CPSR] in {
David Goodwin8b7d7ad2009-08-06 16:52:47 +00002383 def t2TPsoft : T2XI<(outs), (ins), IIC_Br,
Evan Cheng699beba2009-10-27 00:08:59 +00002384 "bl\t__aeabi_read_tp",
Johnny Chend68e1192009-12-15 17:24:14 +00002385 [(set R0, ARMthread_pointer)]> {
2386 let Inst{31-27} = 0b11110;
2387 let Inst{15-14} = 0b11;
2388 let Inst{12} = 1;
2389 }
David Goodwin334c2642009-07-08 16:09:28 +00002390}
2391
2392//===----------------------------------------------------------------------===//
Jim Grosbach5aa16842009-08-11 19:42:21 +00002393// SJLJ Exception handling intrinsics
Jim Grosbach1add6592009-08-13 15:11:43 +00002394// eh_sjlj_setjmp() is an instruction sequence to store the return
Jim Grosbach5aa16842009-08-11 19:42:21 +00002395// address and save #0 in R0 for the non-longjmp case.
2396// Since by its nature we may be coming from some other function to get
2397// here, and we're using the stack frame for the containing function to
2398// save/restore registers, we can't keep anything live in regs across
2399// the eh_sjlj_setjmp(), else it will almost certainly have been tromped upon
2400// when we get here from a longjmp(). We force everthing out of registers
2401// except for our own input by listing the relevant registers in Defs. By
2402// doing so, we also cause the prologue/epilogue code to actively preserve
2403// all of the callee-saved resgisters, which is exactly what we want.
Jim Grosbach0798edd2010-05-27 23:49:24 +00002404// $val is a scratch register for our use.
Jim Grosbacha87ded22010-02-08 23:22:00 +00002405let Defs =
Jim Grosbachf35d2162009-08-13 16:59:44 +00002406 [ R0, R1, R2, R3, R4, R5, R6, R7, R8, R9, R10, R11, R12, LR, D0,
2407 D1, D2, D3, D4, D5, D6, D7, D8, D9, D10, D11, D12, D13, D14, D15,
Jim Grosbach5aa16842009-08-11 19:42:21 +00002408 D16, D17, D18, D19, D20, D21, D22, D23, D24, D25, D26, D27, D28, D29, D30,
Jim Grosbach5caeff52010-05-28 17:37:40 +00002409 D31 ], hasSideEffects = 1, isBarrier = 1 in {
Jim Grosbach9f134b52010-08-26 17:02:47 +00002410 def t2Int_eh_sjlj_setjmp : Thumb2XI<(outs), (ins tGPR:$src, tGPR:$val),
Jim Grosbach5aa16842009-08-11 19:42:21 +00002411 AddrModeNone, SizeSpecial, NoItinerary,
Jim Grosbachc9792a32010-05-28 17:51:20 +00002412 "mov\t$val, pc\t${:comment} begin eh.setjmp\n\t"
2413 "adds\t$val, #7\n\t"
2414 "str\t$val, [$src, #4]\n\t"
2415 "movs\tr0, #0\n\t"
2416 "b\t1f\n\t"
2417 "movs\tr0, #1\t${:comment} end eh.setjmp\n\t"
Jim Grosbach8db5cce2009-08-13 15:12:16 +00002418 "1:", "",
Jim Grosbach9f134b52010-08-26 17:02:47 +00002419 [(set R0, (ARMeh_sjlj_setjmp tGPR:$src, tGPR:$val))]>,
Bob Wilsonec80e262010-04-09 20:41:18 +00002420 Requires<[IsThumb2, HasVFP2]>;
Jim Grosbach5aa16842009-08-11 19:42:21 +00002421}
2422
Bob Wilsonec80e262010-04-09 20:41:18 +00002423let Defs =
Jim Grosbach5caeff52010-05-28 17:37:40 +00002424 [ R0, R1, R2, R3, R4, R5, R6, R7, R8, R9, R10, R11, R12, LR ],
2425 hasSideEffects = 1, isBarrier = 1 in {
Jim Grosbach9f134b52010-08-26 17:02:47 +00002426 def t2Int_eh_sjlj_setjmp_nofp : Thumb2XI<(outs), (ins tGPR:$src, tGPR:$val),
Bob Wilsonec80e262010-04-09 20:41:18 +00002427 AddrModeNone, SizeSpecial, NoItinerary,
Jim Grosbachc9792a32010-05-28 17:51:20 +00002428 "mov\t$val, pc\t${:comment} begin eh.setjmp\n\t"
2429 "adds\t$val, #7\n\t"
2430 "str\t$val, [$src, #4]\n\t"
2431 "movs\tr0, #0\n\t"
2432 "b\t1f\n\t"
2433 "movs\tr0, #1\t${:comment} end eh.setjmp\n\t"
Bob Wilsonec80e262010-04-09 20:41:18 +00002434 "1:", "",
Jim Grosbach9f134b52010-08-26 17:02:47 +00002435 [(set R0, (ARMeh_sjlj_setjmp tGPR:$src, tGPR:$val))]>,
Bob Wilsonec80e262010-04-09 20:41:18 +00002436 Requires<[IsThumb2, NoVFP]>;
2437}
Jim Grosbach5aa16842009-08-11 19:42:21 +00002438
2439
2440//===----------------------------------------------------------------------===//
David Goodwin5e47a9a2009-06-30 18:04:13 +00002441// Control-Flow Instructions
2442//
2443
Evan Chengc50a1cb2009-07-09 22:58:39 +00002444// FIXME: remove when we have a way to marking a MI with these properties.
2445// FIXME: $dst1 should be a def. But the extra ops must be in the end of the
2446// operand list.
2447// FIXME: Should pc be an implicit operand like PICADD, etc?
Evan Cheng0d92f5f2009-10-01 08:22:27 +00002448let isReturn = 1, isTerminator = 1, isBarrier = 1, mayLoad = 1,
2449 hasExtraDefRegAllocReq = 1 in
Bob Wilson815baeb2010-03-13 01:08:20 +00002450 def t2LDM_RET : T2XIt<(outs GPR:$wb), (ins addrmode4:$addr, pred:$p,
2451 reglist:$dsts, variable_ops), IIC_Br,
Bob Wilsonfed76ff2010-07-14 16:02:13 +00002452 "ldm${addr:submode}${p}${addr:wide}\t$addr!, $dsts",
Bob Wilson815baeb2010-03-13 01:08:20 +00002453 "$addr.addr = $wb", []> {
Johnny Chend68e1192009-12-15 17:24:14 +00002454 let Inst{31-27} = 0b11101;
2455 let Inst{26-25} = 0b00;
2456 let Inst{24-23} = {?, ?}; // IA: '01', DB: '10'
2457 let Inst{22} = 0;
Bob Wilson815baeb2010-03-13 01:08:20 +00002458 let Inst{21} = 1; // The W bit.
Johnny Chend68e1192009-12-15 17:24:14 +00002459 let Inst{20} = 1; // Load
2460}
Evan Chengc50a1cb2009-07-09 22:58:39 +00002461
David Goodwin5e47a9a2009-06-30 18:04:13 +00002462let isBranch = 1, isTerminator = 1, isBarrier = 1 in {
2463let isPredicable = 1 in
David Goodwin8b7d7ad2009-08-06 16:52:47 +00002464def t2B : T2XI<(outs), (ins brtarget:$target), IIC_Br,
Evan Cheng699beba2009-10-27 00:08:59 +00002465 "b.w\t$target",
Johnny Chend68e1192009-12-15 17:24:14 +00002466 [(br bb:$target)]> {
2467 let Inst{31-27} = 0b11110;
2468 let Inst{15-14} = 0b10;
2469 let Inst{12} = 1;
2470}
David Goodwin5e47a9a2009-06-30 18:04:13 +00002471
Evan Cheng5657c012009-07-29 02:18:14 +00002472let isNotDuplicable = 1, isIndirectBranch = 1 in {
Evan Cheng66ac5312009-07-25 00:33:29 +00002473def t2BR_JT :
Evan Cheng5657c012009-07-29 02:18:14 +00002474 T2JTI<(outs),
2475 (ins GPR:$target, GPR:$index, jt2block_operand:$jt, i32imm:$id),
Bob Wilsond4d188e2010-07-31 06:28:10 +00002476 IIC_Br, "mov\tpc, $target$jt",
Johnny Chend68e1192009-12-15 17:24:14 +00002477 [(ARMbr2jt GPR:$target, GPR:$index, tjumptable:$jt, imm:$id)]> {
2478 let Inst{31-27} = 0b11101;
2479 let Inst{26-20} = 0b0100100;
2480 let Inst{19-16} = 0b1111;
2481 let Inst{14-12} = 0b000;
2482 let Inst{11-8} = 0b1111; // Rd = pc
2483 let Inst{7-4} = 0b0000;
2484}
Evan Cheng5657c012009-07-29 02:18:14 +00002485
Evan Cheng25f7cfc2009-08-01 06:13:52 +00002486// FIXME: Add a non-pc based case that can be predicated.
Evan Cheng5657c012009-07-29 02:18:14 +00002487def t2TBB :
Evan Cheng25f7cfc2009-08-01 06:13:52 +00002488 T2JTI<(outs),
Evan Cheng5657c012009-07-29 02:18:14 +00002489 (ins tb_addrmode:$index, jt2block_operand:$jt, i32imm:$id),
Bob Wilsond4d188e2010-07-31 06:28:10 +00002490 IIC_Br, "tbb\t$index$jt", []> {
Johnny Chend68e1192009-12-15 17:24:14 +00002491 let Inst{31-27} = 0b11101;
2492 let Inst{26-20} = 0b0001101;
2493 let Inst{19-16} = 0b1111; // Rn = pc (table follows this instruction)
2494 let Inst{15-8} = 0b11110000;
2495 let Inst{7-4} = 0b0000; // B form
2496}
Evan Cheng5657c012009-07-29 02:18:14 +00002497
2498def t2TBH :
Evan Cheng25f7cfc2009-08-01 06:13:52 +00002499 T2JTI<(outs),
Evan Cheng5657c012009-07-29 02:18:14 +00002500 (ins tb_addrmode:$index, jt2block_operand:$jt, i32imm:$id),
Bob Wilsond4d188e2010-07-31 06:28:10 +00002501 IIC_Br, "tbh\t$index$jt", []> {
Johnny Chend68e1192009-12-15 17:24:14 +00002502 let Inst{31-27} = 0b11101;
2503 let Inst{26-20} = 0b0001101;
2504 let Inst{19-16} = 0b1111; // Rn = pc (table follows this instruction)
2505 let Inst{15-8} = 0b11110000;
2506 let Inst{7-4} = 0b0001; // H form
2507}
Johnny Chen93042d12010-03-02 18:14:57 +00002508
2509// Generic versions of the above two instructions, for disassembly only
2510
2511def t2TBBgen : T2I<(outs), (ins GPR:$a, GPR:$b), IIC_Br,
2512 "tbb", "\t[$a, $b]", []>{
2513 let Inst{31-27} = 0b11101;
2514 let Inst{26-20} = 0b0001101;
2515 let Inst{15-8} = 0b11110000;
2516 let Inst{7-4} = 0b0000; // B form
2517}
2518
2519def t2TBHgen : T2I<(outs), (ins GPR:$a, GPR:$b), IIC_Br,
2520 "tbh", "\t[$a, $b, lsl #1]", []> {
2521 let Inst{31-27} = 0b11101;
2522 let Inst{26-20} = 0b0001101;
2523 let Inst{15-8} = 0b11110000;
2524 let Inst{7-4} = 0b0001; // H form
2525}
Evan Cheng5657c012009-07-29 02:18:14 +00002526} // isNotDuplicable, isIndirectBranch
2527
David Goodwinc9a59b52009-06-30 19:50:22 +00002528} // isBranch, isTerminator, isBarrier
David Goodwin5e47a9a2009-06-30 18:04:13 +00002529
2530// FIXME: should be able to write a pattern for ARMBrcond, but can't use
2531// a two-value operand where a dag node expects two operands. :(
2532let isBranch = 1, isTerminator = 1 in
David Goodwin8b7d7ad2009-08-06 16:52:47 +00002533def t2Bcc : T2I<(outs), (ins brtarget:$target), IIC_Br,
Evan Cheng699beba2009-10-27 00:08:59 +00002534 "b", ".w\t$target",
Johnny Chend68e1192009-12-15 17:24:14 +00002535 [/*(ARMbrcond bb:$target, imm:$cc)*/]> {
2536 let Inst{31-27} = 0b11110;
2537 let Inst{15-14} = 0b10;
2538 let Inst{12} = 0;
2539}
Evan Chengf49810c2009-06-23 17:48:47 +00002540
Evan Cheng06e16582009-07-10 01:54:42 +00002541
2542// IT block
Evan Cheng86050dc2010-06-18 23:09:54 +00002543let Defs = [ITSTATE] in
Evan Cheng06e16582009-07-10 01:54:42 +00002544def t2IT : Thumb2XI<(outs), (ins it_pred:$cc, it_mask:$mask),
David Goodwin5d598aa2009-08-19 18:00:44 +00002545 AddrModeNone, Size2Bytes, IIC_iALUx,
Johnny Chend68e1192009-12-15 17:24:14 +00002546 "it$mask\t$cc", "", []> {
2547 // 16-bit instruction.
Johnny Chenbbc71b22009-12-16 02:32:54 +00002548 let Inst{31-16} = 0x0000;
Johnny Chend68e1192009-12-15 17:24:14 +00002549 let Inst{15-8} = 0b10111111;
2550}
Evan Cheng06e16582009-07-10 01:54:42 +00002551
Johnny Chence6275f2010-02-25 19:05:29 +00002552// Branch and Exchange Jazelle -- for disassembly only
2553// Rm = Inst{19-16}
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002554def t2BXJ : T2I<(outs), (ins rGPR:$func), NoItinerary, "bxj", "\t$func",
Johnny Chence6275f2010-02-25 19:05:29 +00002555 [/* For disassembly only; pattern left blank */]> {
2556 let Inst{31-27} = 0b11110;
2557 let Inst{26} = 0;
2558 let Inst{25-20} = 0b111100;
2559 let Inst{15-14} = 0b10;
2560 let Inst{12} = 0;
2561}
2562
Johnny Chen93042d12010-03-02 18:14:57 +00002563// Change Processor State is a system instruction -- for disassembly only.
2564// The singleton $opt operand contains the following information:
2565// opt{4-0} = mode from Inst{4-0}
2566// opt{5} = changemode from Inst{17}
2567// opt{8-6} = AIF from Inst{8-6}
2568// opt{10-9} = imod from Inst{19-18} with 0b10 as enable and 0b11 as disable
Johnny Chendd0f3cf2010-03-10 18:59:38 +00002569def t2CPS : T2XI<(outs),(ins cps_opt:$opt), NoItinerary, "cps$opt",
Johnny Chen93042d12010-03-02 18:14:57 +00002570 [/* For disassembly only; pattern left blank */]> {
2571 let Inst{31-27} = 0b11110;
2572 let Inst{26} = 0;
2573 let Inst{25-20} = 0b111010;
2574 let Inst{15-14} = 0b10;
2575 let Inst{12} = 0;
2576}
2577
Johnny Chen0f7866e2010-03-03 02:09:43 +00002578// A6.3.4 Branches and miscellaneous control
2579// Table A6-14 Change Processor State, and hint instructions
2580// Helper class for disassembly only.
2581class T2I_hint<bits<8> op7_0, string opc, string asm>
2582 : T2I<(outs), (ins), NoItinerary, opc, asm,
2583 [/* For disassembly only; pattern left blank */]> {
2584 let Inst{31-20} = 0xf3a;
2585 let Inst{15-14} = 0b10;
2586 let Inst{12} = 0;
2587 let Inst{10-8} = 0b000;
2588 let Inst{7-0} = op7_0;
2589}
2590
2591def t2NOP : T2I_hint<0b00000000, "nop", ".w">;
2592def t2YIELD : T2I_hint<0b00000001, "yield", ".w">;
2593def t2WFE : T2I_hint<0b00000010, "wfe", ".w">;
2594def t2WFI : T2I_hint<0b00000011, "wfi", ".w">;
2595def t2SEV : T2I_hint<0b00000100, "sev", ".w">;
2596
2597def t2DBG : T2I<(outs),(ins i32imm:$opt), NoItinerary, "dbg", "\t$opt",
2598 [/* For disassembly only; pattern left blank */]> {
2599 let Inst{31-20} = 0xf3a;
2600 let Inst{15-14} = 0b10;
2601 let Inst{12} = 0;
2602 let Inst{10-8} = 0b000;
2603 let Inst{7-4} = 0b1111;
2604}
2605
Johnny Chen6341c5a2010-02-25 20:25:24 +00002606// Secure Monitor Call is a system instruction -- for disassembly only
2607// Option = Inst{19-16}
2608def t2SMC : T2I<(outs), (ins i32imm:$opt), NoItinerary, "smc", "\t$opt",
2609 [/* For disassembly only; pattern left blank */]> {
2610 let Inst{31-27} = 0b11110;
2611 let Inst{26-20} = 0b1111111;
2612 let Inst{15-12} = 0b1000;
2613}
2614
2615// Store Return State is a system instruction -- for disassembly only
2616def t2SRSDBW : T2I<(outs),(ins i32imm:$mode),NoItinerary,"srsdb","\tsp!, $mode",
2617 [/* For disassembly only; pattern left blank */]> {
2618 let Inst{31-27} = 0b11101;
2619 let Inst{26-20} = 0b0000010; // W = 1
2620}
2621
2622def t2SRSDB : T2I<(outs),(ins i32imm:$mode),NoItinerary,"srsdb","\tsp, $mode",
2623 [/* For disassembly only; pattern left blank */]> {
2624 let Inst{31-27} = 0b11101;
2625 let Inst{26-20} = 0b0000000; // W = 0
2626}
2627
2628def t2SRSIAW : T2I<(outs),(ins i32imm:$mode),NoItinerary,"srsia","\tsp!, $mode",
2629 [/* For disassembly only; pattern left blank */]> {
2630 let Inst{31-27} = 0b11101;
2631 let Inst{26-20} = 0b0011010; // W = 1
2632}
2633
2634def t2SRSIA : T2I<(outs), (ins i32imm:$mode),NoItinerary,"srsia","\tsp, $mode",
2635 [/* For disassembly only; pattern left blank */]> {
2636 let Inst{31-27} = 0b11101;
2637 let Inst{26-20} = 0b0011000; // W = 0
2638}
2639
2640// Return From Exception is a system instruction -- for disassembly only
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002641def t2RFEDBW : T2I<(outs), (ins rGPR:$base), NoItinerary, "rfedb", "\t$base!",
Johnny Chen6341c5a2010-02-25 20:25:24 +00002642 [/* For disassembly only; pattern left blank */]> {
2643 let Inst{31-27} = 0b11101;
2644 let Inst{26-20} = 0b0000011; // W = 1
2645}
2646
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002647def t2RFEDB : T2I<(outs), (ins rGPR:$base), NoItinerary, "rfeab", "\t$base",
Johnny Chen6341c5a2010-02-25 20:25:24 +00002648 [/* For disassembly only; pattern left blank */]> {
2649 let Inst{31-27} = 0b11101;
2650 let Inst{26-20} = 0b0000001; // W = 0
2651}
2652
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002653def t2RFEIAW : T2I<(outs), (ins rGPR:$base), NoItinerary, "rfeia", "\t$base!",
Johnny Chen6341c5a2010-02-25 20:25:24 +00002654 [/* For disassembly only; pattern left blank */]> {
2655 let Inst{31-27} = 0b11101;
2656 let Inst{26-20} = 0b0011011; // W = 1
2657}
2658
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002659def t2RFEIA : T2I<(outs), (ins rGPR:$base), NoItinerary, "rfeia", "\t$base",
Johnny Chen6341c5a2010-02-25 20:25:24 +00002660 [/* For disassembly only; pattern left blank */]> {
2661 let Inst{31-27} = 0b11101;
2662 let Inst{26-20} = 0b0011001; // W = 0
2663}
2664
Evan Chengf49810c2009-06-23 17:48:47 +00002665//===----------------------------------------------------------------------===//
2666// Non-Instruction Patterns
2667//
2668
Jim Grosbach65b7f3a2009-10-21 20:44:34 +00002669// Two piece so_imms.
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002670def : T2Pat<(or rGPR:$LHS, t2_so_imm2part:$RHS),
2671 (t2ORRri (t2ORRri rGPR:$LHS, (t2_so_imm2part_1 imm:$RHS)),
Jim Grosbach65b7f3a2009-10-21 20:44:34 +00002672 (t2_so_imm2part_2 imm:$RHS))>;
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002673def : T2Pat<(xor rGPR:$LHS, t2_so_imm2part:$RHS),
2674 (t2EORri (t2EORri rGPR:$LHS, (t2_so_imm2part_1 imm:$RHS)),
Jim Grosbach65b7f3a2009-10-21 20:44:34 +00002675 (t2_so_imm2part_2 imm:$RHS))>;
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002676def : T2Pat<(add rGPR:$LHS, t2_so_imm2part:$RHS),
2677 (t2ADDri (t2ADDri rGPR:$LHS, (t2_so_imm2part_1 imm:$RHS)),
Jim Grosbach65b7f3a2009-10-21 20:44:34 +00002678 (t2_so_imm2part_2 imm:$RHS))>;
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002679def : T2Pat<(add rGPR:$LHS, t2_so_neg_imm2part:$RHS),
2680 (t2SUBri (t2SUBri rGPR:$LHS, (t2_so_neg_imm2part_1 imm:$RHS)),
Jim Grosbach15e6ef82009-11-23 20:35:53 +00002681 (t2_so_neg_imm2part_2 imm:$RHS))>;
Jim Grosbach65b7f3a2009-10-21 20:44:34 +00002682
Evan Cheng5adb66a2009-09-28 09:14:39 +00002683// 32-bit immediate using movw + movt.
2684// This is a single pseudo instruction to make it re-materializable. Remove
2685// when we can do generalized remat.
2686let isReMaterializable = 1 in
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002687def t2MOVi32imm : T2Ix2<(outs rGPR:$dst), (ins i32imm:$src), IIC_iMOVi,
Evan Cheng699beba2009-10-27 00:08:59 +00002688 "movw", "\t$dst, ${src:lo16}\n\tmovt${p}\t$dst, ${src:hi16}",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002689 [(set rGPR:$dst, (i32 imm:$src))]>;
Evan Chengb9803a82009-11-06 23:52:48 +00002690
Anton Korobeynikov5cdc3a92009-11-24 00:44:37 +00002691// ConstantPool, GlobalAddress, and JumpTable
2692def : T2Pat<(ARMWrapper tglobaladdr :$dst), (t2LEApcrel tglobaladdr :$dst)>,
2693 Requires<[IsThumb2, DontUseMovt]>;
2694def : T2Pat<(ARMWrapper tconstpool :$dst), (t2LEApcrel tconstpool :$dst)>;
2695def : T2Pat<(ARMWrapper tglobaladdr :$dst), (t2MOVi32imm tglobaladdr :$dst)>,
2696 Requires<[IsThumb2, UseMovt]>;
2697
2698def : T2Pat<(ARMWrapperJT tjumptable:$dst, imm:$id),
2699 (t2LEApcrelJT tjumptable:$dst, imm:$id)>;
2700
Evan Chengb9803a82009-11-06 23:52:48 +00002701// Pseudo instruction that combines ldr from constpool and add pc. This should
2702// be expanded into two instructions late to allow if-conversion and
2703// scheduling.
Dan Gohmanbc9d98b2010-02-27 23:47:46 +00002704let canFoldAsLoad = 1, isReMaterializable = 1 in
Evan Chengb9803a82009-11-06 23:52:48 +00002705def t2LDRpci_pic : PseudoInst<(outs GPR:$dst), (ins i32imm:$addr, pclabel:$cp),
Jim Grosbach18f30e62010-06-02 21:53:11 +00002706 NoItinerary,
2707 "${:comment} ldr.w\t$dst, $addr\n$cp:\n\tadd\t$dst, pc",
Evan Chengb9803a82009-11-06 23:52:48 +00002708 [(set GPR:$dst, (ARMpic_add (load (ARMWrapper tconstpool:$addr)),
2709 imm:$cp))]>,
2710 Requires<[IsThumb2]>;
Johnny Chen23336552010-02-25 18:46:43 +00002711
2712//===----------------------------------------------------------------------===//
2713// Move between special register and ARM core register -- for disassembly only
2714//
2715
2716// Rd = Instr{11-8}
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002717def t2MRS : T2I<(outs rGPR:$dst), (ins), NoItinerary, "mrs", "\t$dst, cpsr",
Johnny Chen23336552010-02-25 18:46:43 +00002718 [/* For disassembly only; pattern left blank */]> {
2719 let Inst{31-27} = 0b11110;
2720 let Inst{26} = 0;
2721 let Inst{25-21} = 0b11111;
2722 let Inst{20} = 0; // The R bit.
2723 let Inst{15-14} = 0b10;
2724 let Inst{12} = 0;
2725}
2726
2727// Rd = Instr{11-8}
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002728def t2MRSsys : T2I<(outs rGPR:$dst), (ins), NoItinerary, "mrs", "\t$dst, spsr",
Johnny Chen23336552010-02-25 18:46:43 +00002729 [/* For disassembly only; pattern left blank */]> {
2730 let Inst{31-27} = 0b11110;
2731 let Inst{26} = 0;
2732 let Inst{25-21} = 0b11111;
2733 let Inst{20} = 1; // The R bit.
2734 let Inst{15-14} = 0b10;
2735 let Inst{12} = 0;
2736}
2737
Johnny Chen23336552010-02-25 18:46:43 +00002738// Rn = Inst{19-16}
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002739def t2MSR : T2I<(outs), (ins rGPR:$src, msr_mask:$mask), NoItinerary, "msr",
Johnny Chendd0f3cf2010-03-10 18:59:38 +00002740 "\tcpsr$mask, $src",
Johnny Chen23336552010-02-25 18:46:43 +00002741 [/* For disassembly only; pattern left blank */]> {
2742 let Inst{31-27} = 0b11110;
2743 let Inst{26} = 0;
2744 let Inst{25-21} = 0b11100;
2745 let Inst{20} = 0; // The R bit.
2746 let Inst{15-14} = 0b10;
2747 let Inst{12} = 0;
2748}
2749
Johnny Chen23336552010-02-25 18:46:43 +00002750// Rn = Inst{19-16}
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002751def t2MSRsys : T2I<(outs), (ins rGPR:$src, msr_mask:$mask), NoItinerary, "msr",
Johnny Chendd0f3cf2010-03-10 18:59:38 +00002752 "\tspsr$mask, $src",
Johnny Chen23336552010-02-25 18:46:43 +00002753 [/* For disassembly only; pattern left blank */]> {
2754 let Inst{31-27} = 0b11110;
2755 let Inst{26} = 0;
2756 let Inst{25-21} = 0b11100;
2757 let Inst{20} = 1; // The R bit.
2758 let Inst{15-14} = 0b10;
2759 let Inst{12} = 0;
2760}