blob: 996014f09f6f1f1d7854e91deedf9ef5d44111ad [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].
Evan Chengf49810c2009-06-23 17:48:47 +000054def t2_so_imm : Operand<i32>,
55 PatLeaf<(imm), [{
Jim Grosbach64171712010-02-16 21:07:46 +000056 return ARM_AM::getT2SOImmVal((uint32_t)N->getZExtValue()) != -1;
Evan Chenge7cbe412009-07-08 21:03:57 +000057}]>;
Anton Korobeynikov52237112009-06-17 18:13:58 +000058
Jim Grosbach64171712010-02-16 21:07:46 +000059// t2_so_imm_not - Match an immediate that is a complement
Evan Chengf49810c2009-06-23 17:48:47 +000060// of a t2_so_imm.
61def t2_so_imm_not : Operand<i32>,
62 PatLeaf<(imm), [{
Evan Chenge7cbe412009-07-08 21:03:57 +000063 return ARM_AM::getT2SOImmVal(~((uint32_t)N->getZExtValue())) != -1;
64}], t2_so_imm_not_XFORM>;
Evan Chengf49810c2009-06-23 17:48:47 +000065
66// t2_so_imm_neg - Match an immediate that is a negation of a t2_so_imm.
67def t2_so_imm_neg : Operand<i32>,
68 PatLeaf<(imm), [{
Evan Chenge7cbe412009-07-08 21:03:57 +000069 return ARM_AM::getT2SOImmVal(-((int)N->getZExtValue())) != -1;
70}], t2_so_imm_neg_XFORM>;
Evan Chengf49810c2009-06-23 17:48:47 +000071
Jim Grosbach65b7f3a2009-10-21 20:44:34 +000072// Break t2_so_imm's up into two pieces. This handles immediates with up to 16
73// bits set in them. This uses t2_so_imm2part to match and t2_so_imm2part_[12]
74// to get the first/second pieces.
75def t2_so_imm2part : Operand<i32>,
76 PatLeaf<(imm), [{
77 return ARM_AM::isT2SOImmTwoPartVal((unsigned)N->getZExtValue());
78 }]> {
79}
80
81def t2_so_imm2part_1 : SDNodeXForm<imm, [{
82 unsigned V = ARM_AM::getT2SOImmTwoPartFirst((unsigned)N->getZExtValue());
83 return CurDAG->getTargetConstant(V, MVT::i32);
84}]>;
85
86def t2_so_imm2part_2 : SDNodeXForm<imm, [{
87 unsigned V = ARM_AM::getT2SOImmTwoPartSecond((unsigned)N->getZExtValue());
88 return CurDAG->getTargetConstant(V, MVT::i32);
89}]>;
90
Jim Grosbach15e6ef82009-11-23 20:35:53 +000091def t2_so_neg_imm2part : Operand<i32>, PatLeaf<(imm), [{
92 return ARM_AM::isT2SOImmTwoPartVal(-(int)N->getZExtValue());
93 }]> {
94}
95
96def t2_so_neg_imm2part_1 : SDNodeXForm<imm, [{
97 unsigned V = ARM_AM::getT2SOImmTwoPartFirst(-(int)N->getZExtValue());
98 return CurDAG->getTargetConstant(V, MVT::i32);
99}]>;
100
101def t2_so_neg_imm2part_2 : SDNodeXForm<imm, [{
102 unsigned V = ARM_AM::getT2SOImmTwoPartSecond(-(int)N->getZExtValue());
103 return CurDAG->getTargetConstant(V, MVT::i32);
104}]>;
105
Evan Chenga67efd12009-06-23 19:39:13 +0000106/// imm1_31 predicate - True if the 32-bit immediate is in the range [1,31].
107def imm1_31 : PatLeaf<(i32 imm), [{
108 return (int32_t)N->getZExtValue() >= 1 && (int32_t)N->getZExtValue() < 32;
109}]>;
110
Evan Chengf49810c2009-06-23 17:48:47 +0000111/// imm0_4095 predicate - True if the 32-bit immediate is in the range [0.4095].
Evan Cheng86198642009-08-07 00:34:42 +0000112def imm0_4095 : Operand<i32>,
113 PatLeaf<(i32 imm), [{
Evan Chengf49810c2009-06-23 17:48:47 +0000114 return (uint32_t)N->getZExtValue() < 4096;
115}]>;
Anton Korobeynikov52237112009-06-17 18:13:58 +0000116
Jim Grosbach64171712010-02-16 21:07:46 +0000117def imm0_4095_neg : PatLeaf<(i32 imm), [{
118 return (uint32_t)(-N->getZExtValue()) < 4096;
119}], imm_neg_XFORM>;
Anton Korobeynikov52237112009-06-17 18:13:58 +0000120
Evan Chengfa2ea1a2009-08-04 01:41:15 +0000121def imm0_255_neg : PatLeaf<(i32 imm), [{
122 return (uint32_t)(-N->getZExtValue()) < 255;
Jim Grosbach64171712010-02-16 21:07:46 +0000123}], imm_neg_XFORM>;
Evan Chengfa2ea1a2009-08-04 01:41:15 +0000124
Jim Grosbach502e0aa2010-07-14 17:45:16 +0000125def imm0_255_not : PatLeaf<(i32 imm), [{
126 return (uint32_t)(~N->getZExtValue()) < 255;
127}], imm_comp_XFORM>;
128
Evan Cheng055b0312009-06-29 07:51:04 +0000129// Define Thumb2 specific addressing modes.
130
131// t2addrmode_imm12 := reg + imm12
132def t2addrmode_imm12 : Operand<i32>,
133 ComplexPattern<i32, 2, "SelectT2AddrModeImm12", []> {
134 let PrintMethod = "printT2AddrModeImm12Operand";
135 let MIOperandInfo = (ops GPR:$base, i32imm:$offsimm);
136}
137
Johnny Chen0635fc52010-03-04 17:40:44 +0000138// t2addrmode_imm8 := reg +/- imm8
Evan Cheng055b0312009-06-29 07:51:04 +0000139def t2addrmode_imm8 : Operand<i32>,
140 ComplexPattern<i32, 2, "SelectT2AddrModeImm8", []> {
141 let PrintMethod = "printT2AddrModeImm8Operand";
142 let MIOperandInfo = (ops GPR:$base, i32imm:$offsimm);
143}
144
Evan Cheng6d94f112009-07-03 00:06:39 +0000145def t2am_imm8_offset : Operand<i32>,
146 ComplexPattern<i32, 1, "SelectT2AddrModeImm8Offset", []>{
Evan Chenge88d5ce2009-07-02 07:28:31 +0000147 let PrintMethod = "printT2AddrModeImm8OffsetOperand";
148}
149
Evan Cheng5c874172009-07-09 22:21:59 +0000150// t2addrmode_imm8s4 := reg +/- (imm8 << 2)
David Goodwin6647cea2009-06-30 22:50:01 +0000151def t2addrmode_imm8s4 : Operand<i32>,
152 ComplexPattern<i32, 2, "SelectT2AddrModeImm8s4", []> {
Evan Cheng5c874172009-07-09 22:21:59 +0000153 let PrintMethod = "printT2AddrModeImm8s4Operand";
David Goodwin6647cea2009-06-30 22:50:01 +0000154 let MIOperandInfo = (ops GPR:$base, i32imm:$offsimm);
155}
156
Johnny Chenae1757b2010-03-11 01:13:36 +0000157def t2am_imm8s4_offset : Operand<i32> {
158 let PrintMethod = "printT2AddrModeImm8s4OffsetOperand";
159}
160
Evan Chengcba962d2009-07-09 20:40:44 +0000161// t2addrmode_so_reg := reg + (reg << imm2)
Evan Cheng055b0312009-06-29 07:51:04 +0000162def t2addrmode_so_reg : Operand<i32>,
163 ComplexPattern<i32, 3, "SelectT2AddrModeSoReg", []> {
164 let PrintMethod = "printT2AddrModeSoRegOperand";
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000165 let MIOperandInfo = (ops GPR:$base, rGPR:$offsreg, i32imm:$offsimm);
Evan Cheng055b0312009-06-29 07:51:04 +0000166}
167
168
Anton Korobeynikov52237112009-06-17 18:13:58 +0000169//===----------------------------------------------------------------------===//
Evan Cheng9cb9e672009-06-27 02:26:13 +0000170// Multiclass helpers...
Anton Korobeynikov52237112009-06-17 18:13:58 +0000171//
172
Evan Chenga67efd12009-06-23 19:39:13 +0000173/// T2I_un_irs - Defines a set of (op reg, {so_imm|r|so_reg}) patterns for a
Evan Cheng0aa1d8c2009-06-25 02:08:06 +0000174/// unary operation that produces a value. These are predicable and can be
175/// changed to modify CPSR.
Johnny Chend68e1192009-12-15 17:24:14 +0000176multiclass T2I_un_irs<bits<4> opcod, string opc, PatFrag opnode,
177 bit Cheap = 0, bit ReMat = 0> {
Evan Chenga67efd12009-06-23 19:39:13 +0000178 // shifted imm
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000179 def i : T2sI<(outs rGPR:$dst), (ins t2_so_imm:$src), IIC_iMOVi,
Evan Cheng699beba2009-10-27 00:08:59 +0000180 opc, "\t$dst, $src",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000181 [(set rGPR:$dst, (opnode t2_so_imm:$src))]> {
Evan Chenga67efd12009-06-23 19:39:13 +0000182 let isAsCheapAsAMove = Cheap;
183 let isReMaterializable = ReMat;
Johnny Chend68e1192009-12-15 17:24:14 +0000184 let Inst{31-27} = 0b11110;
185 let Inst{25} = 0;
186 let Inst{24-21} = opcod;
187 let Inst{20} = ?; // The S bit.
188 let Inst{19-16} = 0b1111; // Rn
189 let Inst{15} = 0;
Evan Chenga67efd12009-06-23 19:39:13 +0000190 }
191 // register
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000192 def r : T2sI<(outs rGPR:$dst), (ins rGPR:$src), IIC_iMOVr,
Bob Wilsonc21763f2010-05-24 22:41:19 +0000193 opc, ".w\t$dst, $src",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000194 [(set rGPR:$dst, (opnode rGPR:$src))]> {
Johnny Chend68e1192009-12-15 17:24:14 +0000195 let Inst{31-27} = 0b11101;
196 let Inst{26-25} = 0b01;
197 let Inst{24-21} = opcod;
198 let Inst{20} = ?; // The S bit.
199 let Inst{19-16} = 0b1111; // Rn
200 let Inst{14-12} = 0b000; // imm3
201 let Inst{7-6} = 0b00; // imm2
202 let Inst{5-4} = 0b00; // type
203 }
Evan Chenga67efd12009-06-23 19:39:13 +0000204 // shifted register
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000205 def s : T2sI<(outs rGPR:$dst), (ins t2_so_reg:$src), IIC_iMOVsi,
Bob Wilsonc21763f2010-05-24 22:41:19 +0000206 opc, ".w\t$dst, $src",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000207 [(set rGPR:$dst, (opnode t2_so_reg:$src))]> {
Johnny Chend68e1192009-12-15 17:24:14 +0000208 let Inst{31-27} = 0b11101;
209 let Inst{26-25} = 0b01;
210 let Inst{24-21} = opcod;
211 let Inst{20} = ?; // The S bit.
212 let Inst{19-16} = 0b1111; // Rn
213 }
Evan Chenga67efd12009-06-23 19:39:13 +0000214}
215
216/// T2I_bin_irs - Defines a set of (op reg, {so_imm|r|so_reg}) patterns for a
Bob Wilson4876bdb2010-05-25 04:43:08 +0000217/// binary operation that produces a value. These are predicable and can be
Evan Cheng0aa1d8c2009-06-25 02:08:06 +0000218/// changed to modify CPSR.
Jim Grosbach64171712010-02-16 21:07:46 +0000219multiclass T2I_bin_irs<bits<4> opcod, string opc, PatFrag opnode,
David Goodwin1f096272009-07-27 23:34:12 +0000220 bit Commutable = 0, string wide =""> {
Anton Korobeynikov52237112009-06-17 18:13:58 +0000221 // shifted imm
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000222 def ri : T2sI<(outs rGPR:$dst), (ins rGPR:$lhs, t2_so_imm:$rhs), IIC_iALUi,
Evan Cheng699beba2009-10-27 00:08:59 +0000223 opc, "\t$dst, $lhs, $rhs",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000224 [(set rGPR:$dst, (opnode rGPR:$lhs, t2_so_imm:$rhs))]> {
Johnny Chend68e1192009-12-15 17:24:14 +0000225 let Inst{31-27} = 0b11110;
226 let Inst{25} = 0;
227 let Inst{24-21} = opcod;
228 let Inst{20} = ?; // The S bit.
229 let Inst{15} = 0;
230 }
Evan Chenga67efd12009-06-23 19:39:13 +0000231 // register
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000232 def rr : T2sI<(outs rGPR:$dst), (ins rGPR:$lhs, rGPR:$rhs), IIC_iALUr,
Evan Cheng699beba2009-10-27 00:08:59 +0000233 opc, !strconcat(wide, "\t$dst, $lhs, $rhs"),
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000234 [(set rGPR:$dst, (opnode rGPR:$lhs, rGPR:$rhs))]> {
Evan Cheng8de898a2009-06-26 00:19:44 +0000235 let isCommutable = Commutable;
Johnny Chend68e1192009-12-15 17:24:14 +0000236 let Inst{31-27} = 0b11101;
237 let Inst{26-25} = 0b01;
238 let Inst{24-21} = opcod;
239 let Inst{20} = ?; // The S bit.
240 let Inst{14-12} = 0b000; // imm3
241 let Inst{7-6} = 0b00; // imm2
242 let Inst{5-4} = 0b00; // type
Evan Cheng8de898a2009-06-26 00:19:44 +0000243 }
Anton Korobeynikov52237112009-06-17 18:13:58 +0000244 // shifted register
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000245 def rs : T2sI<(outs rGPR:$dst), (ins rGPR:$lhs, t2_so_reg:$rhs), IIC_iALUsi,
Evan Cheng699beba2009-10-27 00:08:59 +0000246 opc, !strconcat(wide, "\t$dst, $lhs, $rhs"),
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000247 [(set rGPR:$dst, (opnode rGPR:$lhs, t2_so_reg:$rhs))]> {
Johnny Chend68e1192009-12-15 17:24:14 +0000248 let Inst{31-27} = 0b11101;
249 let Inst{26-25} = 0b01;
250 let Inst{24-21} = opcod;
251 let Inst{20} = ?; // The S bit.
252 }
Anton Korobeynikov52237112009-06-17 18:13:58 +0000253}
254
David Goodwin1f096272009-07-27 23:34:12 +0000255/// T2I_bin_w_irs - Same as T2I_bin_irs except these operations need
256// the ".w" prefix to indicate that they are wide.
Johnny Chend68e1192009-12-15 17:24:14 +0000257multiclass T2I_bin_w_irs<bits<4> opcod, string opc, PatFrag opnode,
258 bit Commutable = 0> :
259 T2I_bin_irs<opcod, opc, opnode, Commutable, ".w">;
David Goodwin1f096272009-07-27 23:34:12 +0000260
Evan Cheng1e249e32009-06-25 20:59:23 +0000261/// T2I_rbin_is - Same as T2I_bin_irs except the order of operands are
Bob Wilson20d8e4e2010-08-13 23:24:25 +0000262/// reversed. The 'rr' form is only defined for the disassembler; for codegen
263/// it is equivalent to the T2I_bin_irs counterpart.
264multiclass T2I_rbin_irs<bits<4> opcod, string opc, PatFrag opnode> {
Evan Chengf49810c2009-06-23 17:48:47 +0000265 // shifted imm
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000266 def ri : T2sI<(outs rGPR:$dst), (ins rGPR:$rhs, t2_so_imm:$lhs), IIC_iALUi,
Bob Wilson4876bdb2010-05-25 04:43:08 +0000267 opc, ".w\t$dst, $rhs, $lhs",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000268 [(set rGPR:$dst, (opnode t2_so_imm:$lhs, rGPR:$rhs))]> {
Johnny Chend68e1192009-12-15 17:24:14 +0000269 let Inst{31-27} = 0b11110;
270 let Inst{25} = 0;
271 let Inst{24-21} = opcod;
Bob Wilson4876bdb2010-05-25 04:43:08 +0000272 let Inst{20} = ?; // The S bit.
Johnny Chend68e1192009-12-15 17:24:14 +0000273 let Inst{15} = 0;
274 }
Bob Wilson20d8e4e2010-08-13 23:24:25 +0000275 // register
276 def rr : T2sI<(outs rGPR:$dst), (ins rGPR:$rhs, rGPR:$lhs), IIC_iALUr,
277 opc, "\t$dst, $rhs, $lhs",
Bob Wilson136e4912010-08-14 03:18:29 +0000278 [/* For disassembly only; pattern left blank */]> {
Bob Wilson20d8e4e2010-08-13 23:24:25 +0000279 let Inst{31-27} = 0b11101;
280 let Inst{26-25} = 0b01;
281 let Inst{24-21} = opcod;
282 let Inst{20} = ?; // The S bit.
283 let Inst{14-12} = 0b000; // imm3
284 let Inst{7-6} = 0b00; // imm2
285 let Inst{5-4} = 0b00; // type
286 }
Evan Chengf49810c2009-06-23 17:48:47 +0000287 // shifted register
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000288 def rs : T2sI<(outs rGPR:$dst), (ins rGPR:$rhs, t2_so_reg:$lhs), IIC_iALUsi,
Bob Wilson4876bdb2010-05-25 04:43:08 +0000289 opc, "\t$dst, $rhs, $lhs",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000290 [(set rGPR:$dst, (opnode t2_so_reg:$lhs, rGPR:$rhs))]> {
Johnny Chend68e1192009-12-15 17:24:14 +0000291 let Inst{31-27} = 0b11101;
292 let Inst{26-25} = 0b01;
293 let Inst{24-21} = opcod;
Bob Wilson4876bdb2010-05-25 04:43:08 +0000294 let Inst{20} = ?; // The S bit.
Johnny Chend68e1192009-12-15 17:24:14 +0000295 }
Evan Chengf49810c2009-06-23 17:48:47 +0000296}
297
Evan Chenga67efd12009-06-23 19:39:13 +0000298/// T2I_bin_s_irs - Similar to T2I_bin_irs except it sets the 's' bit so the
Anton Korobeynikov52237112009-06-17 18:13:58 +0000299/// instruction modifies the CPSR register.
300let Defs = [CPSR] in {
Johnny Chend68e1192009-12-15 17:24:14 +0000301multiclass T2I_bin_s_irs<bits<4> opcod, string opc, PatFrag opnode,
302 bit Commutable = 0> {
Anton Korobeynikov52237112009-06-17 18:13:58 +0000303 // shifted imm
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000304 def ri : T2I<(outs rGPR:$dst), (ins GPR:$lhs, t2_so_imm:$rhs), IIC_iALUi,
Evan Cheng699beba2009-10-27 00:08:59 +0000305 !strconcat(opc, "s"), ".w\t$dst, $lhs, $rhs",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000306 [(set rGPR:$dst, (opnode GPR:$lhs, t2_so_imm:$rhs))]> {
Johnny Chend68e1192009-12-15 17:24:14 +0000307 let Inst{31-27} = 0b11110;
308 let Inst{25} = 0;
309 let Inst{24-21} = opcod;
310 let Inst{20} = 1; // The S bit.
311 let Inst{15} = 0;
312 }
Evan Chenga67efd12009-06-23 19:39:13 +0000313 // register
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000314 def rr : T2I<(outs rGPR:$dst), (ins GPR:$lhs, rGPR:$rhs), IIC_iALUr,
Evan Cheng699beba2009-10-27 00:08:59 +0000315 !strconcat(opc, "s"), ".w\t$dst, $lhs, $rhs",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000316 [(set rGPR:$dst, (opnode GPR:$lhs, rGPR:$rhs))]> {
Evan Cheng8de898a2009-06-26 00:19:44 +0000317 let isCommutable = Commutable;
Johnny Chend68e1192009-12-15 17:24:14 +0000318 let Inst{31-27} = 0b11101;
319 let Inst{26-25} = 0b01;
320 let Inst{24-21} = opcod;
321 let Inst{20} = 1; // The S bit.
322 let Inst{14-12} = 0b000; // imm3
323 let Inst{7-6} = 0b00; // imm2
324 let Inst{5-4} = 0b00; // type
Evan Cheng8de898a2009-06-26 00:19:44 +0000325 }
Anton Korobeynikov52237112009-06-17 18:13:58 +0000326 // shifted register
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000327 def rs : T2I<(outs rGPR:$dst), (ins GPR:$lhs, t2_so_reg:$rhs), IIC_iALUsi,
Evan Cheng699beba2009-10-27 00:08:59 +0000328 !strconcat(opc, "s"), ".w\t$dst, $lhs, $rhs",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000329 [(set rGPR:$dst, (opnode GPR:$lhs, t2_so_reg:$rhs))]> {
Johnny Chend68e1192009-12-15 17:24:14 +0000330 let Inst{31-27} = 0b11101;
331 let Inst{26-25} = 0b01;
332 let Inst{24-21} = opcod;
333 let Inst{20} = 1; // The S bit.
334 }
Anton Korobeynikov52237112009-06-17 18:13:58 +0000335}
336}
337
Evan Chenga67efd12009-06-23 19:39:13 +0000338/// T2I_bin_ii12rs - Defines a set of (op reg, {so_imm|imm0_4095|r|so_reg})
339/// patterns for a binary operation that produces a value.
Johnny Chend68e1192009-12-15 17:24:14 +0000340multiclass T2I_bin_ii12rs<bits<3> op23_21, string opc, PatFrag opnode,
341 bit Commutable = 0> {
Evan Chengf49810c2009-06-23 17:48:47 +0000342 // shifted imm
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000343 def ri : T2sI<(outs rGPR:$dst), (ins GPR:$lhs, t2_so_imm:$rhs), IIC_iALUi,
Evan Cheng699beba2009-10-27 00:08:59 +0000344 opc, ".w\t$dst, $lhs, $rhs",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000345 [(set rGPR:$dst, (opnode GPR:$lhs, t2_so_imm:$rhs))]> {
Johnny Chend68e1192009-12-15 17:24:14 +0000346 let Inst{31-27} = 0b11110;
347 let Inst{25} = 0;
348 let Inst{24} = 1;
349 let Inst{23-21} = op23_21;
350 let Inst{20} = 0; // The S bit.
351 let Inst{15} = 0;
352 }
Evan Chengf49810c2009-06-23 17:48:47 +0000353 // 12-bit imm
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000354 def ri12 : T2I<(outs rGPR:$dst), (ins GPR:$lhs, imm0_4095:$rhs), IIC_iALUi,
Bob Wilsonf5fd4992010-03-08 22:56:15 +0000355 !strconcat(opc, "w"), "\t$dst, $lhs, $rhs",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000356 [(set rGPR:$dst, (opnode GPR:$lhs, imm0_4095:$rhs))]> {
Johnny Chend68e1192009-12-15 17:24:14 +0000357 let Inst{31-27} = 0b11110;
358 let Inst{25} = 1;
359 let Inst{24} = 0;
360 let Inst{23-21} = op23_21;
361 let Inst{20} = 0; // The S bit.
362 let Inst{15} = 0;
363 }
Evan Chenga67efd12009-06-23 19:39:13 +0000364 // register
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000365 def rr : T2sI<(outs rGPR:$dst), (ins GPR:$lhs, rGPR:$rhs), IIC_iALUr,
Evan Cheng699beba2009-10-27 00:08:59 +0000366 opc, ".w\t$dst, $lhs, $rhs",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000367 [(set rGPR:$dst, (opnode GPR:$lhs, rGPR:$rhs))]> {
Evan Cheng8de898a2009-06-26 00:19:44 +0000368 let isCommutable = Commutable;
Johnny Chend68e1192009-12-15 17:24:14 +0000369 let Inst{31-27} = 0b11101;
370 let Inst{26-25} = 0b01;
371 let Inst{24} = 1;
372 let Inst{23-21} = op23_21;
373 let Inst{20} = 0; // The S bit.
374 let Inst{14-12} = 0b000; // imm3
375 let Inst{7-6} = 0b00; // imm2
376 let Inst{5-4} = 0b00; // type
Evan Cheng8de898a2009-06-26 00:19:44 +0000377 }
Evan Chengf49810c2009-06-23 17:48:47 +0000378 // shifted register
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000379 def rs : T2sI<(outs rGPR:$dst), (ins GPR:$lhs, t2_so_reg:$rhs), IIC_iALUsi,
Evan Cheng699beba2009-10-27 00:08:59 +0000380 opc, ".w\t$dst, $lhs, $rhs",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000381 [(set rGPR:$dst, (opnode GPR:$lhs, t2_so_reg:$rhs))]> {
Johnny Chend68e1192009-12-15 17:24:14 +0000382 let Inst{31-27} = 0b11101;
Johnny Chend68e1192009-12-15 17:24:14 +0000383 let Inst{26-25} = 0b01;
Johnny Chend248ffb2010-01-08 17:41:33 +0000384 let Inst{24} = 1;
Johnny Chend68e1192009-12-15 17:24:14 +0000385 let Inst{23-21} = op23_21;
386 let Inst{20} = 0; // The S bit.
387 }
Evan Chengf49810c2009-06-23 17:48:47 +0000388}
389
Jim Grosbach6935efc2009-11-24 00:20:27 +0000390/// T2I_adde_sube_irs - Defines a set of (op reg, {so_imm|r|so_reg}) patterns
Jim Grosbach39be8fc2010-02-16 20:42:29 +0000391/// for a binary operation that produces a value and use the carry
Jim Grosbach6935efc2009-11-24 00:20:27 +0000392/// bit. It's not predicable.
Evan Cheng62674222009-06-25 23:34:10 +0000393let Uses = [CPSR] in {
Jim Grosbach80dc1162010-02-16 21:23:02 +0000394multiclass T2I_adde_sube_irs<bits<4> opcod, string opc, PatFrag opnode,
395 bit Commutable = 0> {
Anton Korobeynikov52237112009-06-17 18:13:58 +0000396 // shifted imm
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000397 def ri : T2sI<(outs rGPR:$dst), (ins rGPR:$lhs, t2_so_imm:$rhs), IIC_iALUi,
Evan Cheng699beba2009-10-27 00:08:59 +0000398 opc, "\t$dst, $lhs, $rhs",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000399 [(set rGPR:$dst, (opnode rGPR:$lhs, t2_so_imm:$rhs))]>,
Jim Grosbach39be8fc2010-02-16 20:42:29 +0000400 Requires<[IsThumb2]> {
Johnny Chend68e1192009-12-15 17:24:14 +0000401 let Inst{31-27} = 0b11110;
402 let Inst{25} = 0;
403 let Inst{24-21} = opcod;
404 let Inst{20} = 0; // The S bit.
405 let Inst{15} = 0;
406 }
Evan Chenga67efd12009-06-23 19:39:13 +0000407 // register
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000408 def rr : T2sI<(outs rGPR:$dst), (ins rGPR:$lhs, rGPR:$rhs), IIC_iALUr,
Evan Cheng699beba2009-10-27 00:08:59 +0000409 opc, ".w\t$dst, $lhs, $rhs",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000410 [(set rGPR:$dst, (opnode rGPR:$lhs, rGPR:$rhs))]>,
Jim Grosbach39be8fc2010-02-16 20:42:29 +0000411 Requires<[IsThumb2]> {
Evan Cheng8de898a2009-06-26 00:19:44 +0000412 let isCommutable = Commutable;
Johnny Chend68e1192009-12-15 17:24:14 +0000413 let Inst{31-27} = 0b11101;
414 let Inst{26-25} = 0b01;
415 let Inst{24-21} = opcod;
416 let Inst{20} = 0; // The S bit.
417 let Inst{14-12} = 0b000; // imm3
418 let Inst{7-6} = 0b00; // imm2
419 let Inst{5-4} = 0b00; // type
Evan Cheng8de898a2009-06-26 00:19:44 +0000420 }
Anton Korobeynikov52237112009-06-17 18:13:58 +0000421 // shifted register
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000422 def rs : T2sI<(outs rGPR:$dst), (ins rGPR:$lhs, t2_so_reg:$rhs), IIC_iALUsi,
Evan Cheng699beba2009-10-27 00:08:59 +0000423 opc, ".w\t$dst, $lhs, $rhs",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000424 [(set rGPR:$dst, (opnode rGPR:$lhs, t2_so_reg:$rhs))]>,
Jim Grosbach39be8fc2010-02-16 20:42:29 +0000425 Requires<[IsThumb2]> {
Johnny Chend68e1192009-12-15 17:24:14 +0000426 let Inst{31-27} = 0b11101;
427 let Inst{26-25} = 0b01;
428 let Inst{24-21} = opcod;
429 let Inst{20} = 0; // The S bit.
430 }
Jim Grosbach39be8fc2010-02-16 20:42:29 +0000431}
432
433// Carry setting variants
434let Defs = [CPSR] in {
Jim Grosbach80dc1162010-02-16 21:23:02 +0000435multiclass T2I_adde_sube_s_irs<bits<4> opcod, string opc, PatFrag opnode,
436 bit Commutable = 0> {
Evan Cheng62674222009-06-25 23:34:10 +0000437 // shifted imm
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000438 def ri : T2sI<(outs rGPR:$dst), (ins rGPR:$lhs, t2_so_imm:$rhs), IIC_iALUi,
Johnny Chenb5031ad2010-03-02 19:38:59 +0000439 opc, "\t$dst, $lhs, $rhs",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000440 [(set rGPR:$dst, (opnode rGPR:$lhs, t2_so_imm:$rhs))]>,
Johnny Chenb5031ad2010-03-02 19:38:59 +0000441 Requires<[IsThumb2]> {
Johnny Chend68e1192009-12-15 17:24:14 +0000442 let Inst{31-27} = 0b11110;
443 let Inst{25} = 0;
444 let Inst{24-21} = opcod;
445 let Inst{20} = 1; // The S bit.
446 let Inst{15} = 0;
447 }
Evan Cheng62674222009-06-25 23:34:10 +0000448 // register
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000449 def rr : T2sI<(outs rGPR:$dst), (ins rGPR:$lhs, rGPR:$rhs), IIC_iALUr,
Johnny Chenb5031ad2010-03-02 19:38:59 +0000450 opc, ".w\t$dst, $lhs, $rhs",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000451 [(set rGPR:$dst, (opnode rGPR:$lhs, rGPR:$rhs))]>,
Johnny Chenb5031ad2010-03-02 19:38:59 +0000452 Requires<[IsThumb2]> {
Johnny Chend68e1192009-12-15 17:24:14 +0000453 let isCommutable = Commutable;
454 let Inst{31-27} = 0b11101;
455 let Inst{26-25} = 0b01;
456 let Inst{24-21} = opcod;
457 let Inst{20} = 1; // The S bit.
458 let Inst{14-12} = 0b000; // imm3
459 let Inst{7-6} = 0b00; // imm2
460 let Inst{5-4} = 0b00; // type
Evan Cheng8de898a2009-06-26 00:19:44 +0000461 }
Evan Cheng62674222009-06-25 23:34:10 +0000462 // shifted register
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000463 def rs : T2sI<(outs rGPR:$dst), (ins rGPR:$lhs, t2_so_reg:$rhs), IIC_iALUsi,
Johnny Chenb5031ad2010-03-02 19:38:59 +0000464 opc, ".w\t$dst, $lhs, $rhs",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000465 [(set rGPR:$dst, (opnode rGPR:$lhs, t2_so_reg:$rhs))]>,
Johnny Chenb5031ad2010-03-02 19:38:59 +0000466 Requires<[IsThumb2]> {
Johnny Chend68e1192009-12-15 17:24:14 +0000467 let Inst{31-27} = 0b11101;
468 let Inst{26-25} = 0b01;
469 let Inst{24-21} = opcod;
470 let Inst{20} = 1; // The S bit.
Evan Cheng8de898a2009-06-26 00:19:44 +0000471 }
Evan Chengf49810c2009-06-23 17:48:47 +0000472}
473}
Jim Grosbach39be8fc2010-02-16 20:42:29 +0000474}
Evan Chengf49810c2009-06-23 17:48:47 +0000475
Bob Wilson20d8e4e2010-08-13 23:24:25 +0000476/// T2I_rbin_s_is - Same as T2I_rbin_irs except sets 's' bit and the register
477/// version is not needed since this is only for codegen.
Evan Cheng1e249e32009-06-25 20:59:23 +0000478let Defs = [CPSR] in {
Johnny Chend68e1192009-12-15 17:24:14 +0000479multiclass T2I_rbin_s_is<bits<4> opcod, string opc, PatFrag opnode> {
Evan Chengf49810c2009-06-23 17:48:47 +0000480 // shifted imm
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000481 def ri : T2I<(outs rGPR:$dst), (ins rGPR:$rhs, t2_so_imm:$lhs), IIC_iALUi,
Bob Wilson4876bdb2010-05-25 04:43:08 +0000482 !strconcat(opc, "s"), ".w\t$dst, $rhs, $lhs",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000483 [(set rGPR:$dst, (opnode t2_so_imm:$lhs, rGPR:$rhs))]> {
Johnny Chend68e1192009-12-15 17:24:14 +0000484 let Inst{31-27} = 0b11110;
485 let Inst{25} = 0;
486 let Inst{24-21} = opcod;
487 let Inst{20} = 1; // The S bit.
488 let Inst{15} = 0;
489 }
Evan Chengf49810c2009-06-23 17:48:47 +0000490 // shifted register
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000491 def rs : T2I<(outs rGPR:$dst), (ins rGPR:$rhs, t2_so_reg:$lhs), IIC_iALUsi,
Bob Wilson4876bdb2010-05-25 04:43:08 +0000492 !strconcat(opc, "s"), "\t$dst, $rhs, $lhs",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000493 [(set rGPR:$dst, (opnode t2_so_reg:$lhs, rGPR:$rhs))]> {
Johnny Chend68e1192009-12-15 17:24:14 +0000494 let Inst{31-27} = 0b11101;
495 let Inst{26-25} = 0b01;
496 let Inst{24-21} = opcod;
497 let Inst{20} = 1; // The S bit.
498 }
Evan Chengf49810c2009-06-23 17:48:47 +0000499}
500}
501
Evan Chenga67efd12009-06-23 19:39:13 +0000502/// T2I_sh_ir - Defines a set of (op reg, {so_imm|r}) patterns for a shift /
503// rotate operation that produces a value.
Johnny Chend68e1192009-12-15 17:24:14 +0000504multiclass T2I_sh_ir<bits<2> opcod, string opc, PatFrag opnode> {
Evan Chenga67efd12009-06-23 19:39:13 +0000505 // 5-bit imm
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000506 def ri : T2sI<(outs rGPR:$dst), (ins rGPR:$lhs, i32imm:$rhs), IIC_iMOVsi,
Evan Cheng699beba2009-10-27 00:08:59 +0000507 opc, ".w\t$dst, $lhs, $rhs",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000508 [(set rGPR:$dst, (opnode rGPR:$lhs, imm1_31:$rhs))]> {
Johnny Chend68e1192009-12-15 17:24:14 +0000509 let Inst{31-27} = 0b11101;
510 let Inst{26-21} = 0b010010;
511 let Inst{19-16} = 0b1111; // Rn
512 let Inst{5-4} = opcod;
513 }
Evan Chenga67efd12009-06-23 19:39:13 +0000514 // register
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000515 def rr : T2sI<(outs rGPR:$dst), (ins rGPR:$lhs, rGPR:$rhs), IIC_iMOVsr,
Evan Cheng699beba2009-10-27 00:08:59 +0000516 opc, ".w\t$dst, $lhs, $rhs",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000517 [(set rGPR:$dst, (opnode rGPR:$lhs, rGPR:$rhs))]> {
Johnny Chend68e1192009-12-15 17:24:14 +0000518 let Inst{31-27} = 0b11111;
519 let Inst{26-23} = 0b0100;
520 let Inst{22-21} = opcod;
521 let Inst{15-12} = 0b1111;
522 let Inst{7-4} = 0b0000;
523 }
Evan Chenga67efd12009-06-23 19:39:13 +0000524}
Evan Chengf49810c2009-06-23 17:48:47 +0000525
Johnny Chend68e1192009-12-15 17:24:14 +0000526/// T2I_cmp_irs - Defines a set of (op r, {so_imm|r|so_reg}) cmp / test
Evan Chenga67efd12009-06-23 19:39:13 +0000527/// patterns. Similar to T2I_bin_irs except the instruction does not produce
Evan Chengf49810c2009-06-23 17:48:47 +0000528/// a explicit result, only implicitly set CPSR.
David Goodwinc27a4542009-07-20 22:13:31 +0000529let Defs = [CPSR] in {
Johnny Chend68e1192009-12-15 17:24:14 +0000530multiclass T2I_cmp_irs<bits<4> opcod, string opc, PatFrag opnode> {
Evan Chengf49810c2009-06-23 17:48:47 +0000531 // shifted imm
David Goodwin5d598aa2009-08-19 18:00:44 +0000532 def ri : T2I<(outs), (ins GPR:$lhs, t2_so_imm:$rhs), IIC_iCMPi,
Evan Cheng699beba2009-10-27 00:08:59 +0000533 opc, ".w\t$lhs, $rhs",
Johnny Chend68e1192009-12-15 17:24:14 +0000534 [(opnode GPR:$lhs, t2_so_imm:$rhs)]> {
535 let Inst{31-27} = 0b11110;
536 let Inst{25} = 0;
537 let Inst{24-21} = opcod;
538 let Inst{20} = 1; // The S bit.
539 let Inst{15} = 0;
540 let Inst{11-8} = 0b1111; // Rd
541 }
Evan Chenga67efd12009-06-23 19:39:13 +0000542 // register
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000543 def rr : T2I<(outs), (ins GPR:$lhs, rGPR:$rhs), IIC_iCMPr,
Evan Cheng699beba2009-10-27 00:08:59 +0000544 opc, ".w\t$lhs, $rhs",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000545 [(opnode GPR:$lhs, rGPR:$rhs)]> {
Johnny Chend68e1192009-12-15 17:24:14 +0000546 let Inst{31-27} = 0b11101;
547 let Inst{26-25} = 0b01;
548 let Inst{24-21} = opcod;
549 let Inst{20} = 1; // The S bit.
550 let Inst{14-12} = 0b000; // imm3
551 let Inst{11-8} = 0b1111; // Rd
552 let Inst{7-6} = 0b00; // imm2
553 let Inst{5-4} = 0b00; // type
554 }
Evan Chengf49810c2009-06-23 17:48:47 +0000555 // shifted register
David Goodwin5d598aa2009-08-19 18:00:44 +0000556 def rs : T2I<(outs), (ins GPR:$lhs, t2_so_reg:$rhs), IIC_iCMPsi,
Evan Cheng699beba2009-10-27 00:08:59 +0000557 opc, ".w\t$lhs, $rhs",
Johnny Chend68e1192009-12-15 17:24:14 +0000558 [(opnode GPR:$lhs, t2_so_reg:$rhs)]> {
559 let Inst{31-27} = 0b11101;
560 let Inst{26-25} = 0b01;
561 let Inst{24-21} = opcod;
562 let Inst{20} = 1; // The S bit.
563 let Inst{11-8} = 0b1111; // Rd
564 }
Anton Korobeynikov52237112009-06-17 18:13:58 +0000565}
566}
567
Evan Chengf3c21b82009-06-30 02:15:48 +0000568/// T2I_ld - Defines a set of (op r, {imm12|imm8|so_reg}) load patterns.
Johnny Chend68e1192009-12-15 17:24:14 +0000569multiclass T2I_ld<bit signed, bits<2> opcod, string opc, PatFrag opnode> {
David Goodwin5d598aa2009-08-19 18:00:44 +0000570 def i12 : T2Ii12<(outs GPR:$dst), (ins t2addrmode_imm12:$addr), IIC_iLoadi,
Evan Cheng699beba2009-10-27 00:08:59 +0000571 opc, ".w\t$dst, $addr",
Johnny Chend68e1192009-12-15 17:24:14 +0000572 [(set GPR:$dst, (opnode t2addrmode_imm12:$addr))]> {
573 let Inst{31-27} = 0b11111;
574 let Inst{26-25} = 0b00;
575 let Inst{24} = signed;
576 let Inst{23} = 1;
577 let Inst{22-21} = opcod;
578 let Inst{20} = 1; // load
579 }
David Goodwin5d598aa2009-08-19 18:00:44 +0000580 def i8 : T2Ii8 <(outs GPR:$dst), (ins t2addrmode_imm8:$addr), IIC_iLoadi,
Evan Cheng699beba2009-10-27 00:08:59 +0000581 opc, "\t$dst, $addr",
Johnny Chend68e1192009-12-15 17:24:14 +0000582 [(set GPR:$dst, (opnode t2addrmode_imm8:$addr))]> {
583 let Inst{31-27} = 0b11111;
584 let Inst{26-25} = 0b00;
585 let Inst{24} = signed;
586 let Inst{23} = 0;
587 let Inst{22-21} = opcod;
588 let Inst{20} = 1; // load
589 let Inst{11} = 1;
590 // Offset: index==TRUE, wback==FALSE
591 let Inst{10} = 1; // The P bit.
592 let Inst{8} = 0; // The W bit.
593 }
David Goodwin5d598aa2009-08-19 18:00:44 +0000594 def s : T2Iso <(outs GPR:$dst), (ins t2addrmode_so_reg:$addr), IIC_iLoadr,
Evan Cheng699beba2009-10-27 00:08:59 +0000595 opc, ".w\t$dst, $addr",
Johnny Chend68e1192009-12-15 17:24:14 +0000596 [(set GPR:$dst, (opnode t2addrmode_so_reg:$addr))]> {
597 let Inst{31-27} = 0b11111;
598 let Inst{26-25} = 0b00;
599 let Inst{24} = signed;
600 let Inst{23} = 0;
601 let Inst{22-21} = opcod;
602 let Inst{20} = 1; // load
603 let Inst{11-6} = 0b000000;
604 }
David Goodwin5d598aa2009-08-19 18:00:44 +0000605 def pci : T2Ipc <(outs GPR:$dst), (ins i32imm:$addr), IIC_iLoadi,
Evan Cheng699beba2009-10-27 00:08:59 +0000606 opc, ".w\t$dst, $addr",
Evan Cheng9eda6892009-10-31 03:39:36 +0000607 [(set GPR:$dst, (opnode (ARMWrapper tconstpool:$addr)))]> {
608 let isReMaterializable = 1;
Johnny Chend68e1192009-12-15 17:24:14 +0000609 let Inst{31-27} = 0b11111;
610 let Inst{26-25} = 0b00;
611 let Inst{24} = signed;
612 let Inst{23} = ?; // add = (U == '1')
613 let Inst{22-21} = opcod;
614 let Inst{20} = 1; // load
615 let Inst{19-16} = 0b1111; // Rn
Evan Cheng9eda6892009-10-31 03:39:36 +0000616 }
Evan Chengf3c21b82009-06-30 02:15:48 +0000617}
618
David Goodwin73b8f162009-06-30 22:11:34 +0000619/// T2I_st - Defines a set of (op r, {imm12|imm8|so_reg}) store patterns.
Johnny Chend68e1192009-12-15 17:24:14 +0000620multiclass T2I_st<bits<2> opcod, string opc, PatFrag opnode> {
David Goodwin5d598aa2009-08-19 18:00:44 +0000621 def i12 : T2Ii12<(outs), (ins GPR:$src, t2addrmode_imm12:$addr), IIC_iStorei,
Evan Cheng699beba2009-10-27 00:08:59 +0000622 opc, ".w\t$src, $addr",
Johnny Chend68e1192009-12-15 17:24:14 +0000623 [(opnode GPR:$src, t2addrmode_imm12:$addr)]> {
624 let Inst{31-27} = 0b11111;
625 let Inst{26-23} = 0b0001;
626 let Inst{22-21} = opcod;
627 let Inst{20} = 0; // !load
628 }
David Goodwin5d598aa2009-08-19 18:00:44 +0000629 def i8 : T2Ii8 <(outs), (ins GPR:$src, t2addrmode_imm8:$addr), IIC_iStorei,
Evan Cheng699beba2009-10-27 00:08:59 +0000630 opc, "\t$src, $addr",
Johnny Chend68e1192009-12-15 17:24:14 +0000631 [(opnode GPR:$src, t2addrmode_imm8:$addr)]> {
632 let Inst{31-27} = 0b11111;
633 let Inst{26-23} = 0b0000;
634 let Inst{22-21} = opcod;
635 let Inst{20} = 0; // !load
636 let Inst{11} = 1;
637 // Offset: index==TRUE, wback==FALSE
638 let Inst{10} = 1; // The P bit.
639 let Inst{8} = 0; // The W bit.
640 }
David Goodwin5d598aa2009-08-19 18:00:44 +0000641 def s : T2Iso <(outs), (ins GPR:$src, t2addrmode_so_reg:$addr), IIC_iStorer,
Evan Cheng699beba2009-10-27 00:08:59 +0000642 opc, ".w\t$src, $addr",
Johnny Chend68e1192009-12-15 17:24:14 +0000643 [(opnode GPR:$src, t2addrmode_so_reg:$addr)]> {
644 let Inst{31-27} = 0b11111;
645 let Inst{26-23} = 0b0000;
646 let Inst{22-21} = opcod;
647 let Inst{20} = 0; // !load
648 let Inst{11-6} = 0b000000;
649 }
David Goodwin73b8f162009-06-30 22:11:34 +0000650}
651
Evan Chengd27c9fc2009-07-03 01:43:10 +0000652/// T2I_unary_rrot - A unary operation with two forms: one whose operand is a
653/// register and one whose operand is a register rotated by 8/16/24.
Johnny Chend68e1192009-12-15 17:24:14 +0000654multiclass T2I_unary_rrot<bits<3> opcod, string opc, PatFrag opnode> {
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000655 def r : T2I<(outs rGPR:$dst), (ins rGPR:$src), IIC_iUNAr,
Evan Cheng699beba2009-10-27 00:08:59 +0000656 opc, ".w\t$dst, $src",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000657 [(set rGPR:$dst, (opnode rGPR:$src))]> {
Johnny Chend68e1192009-12-15 17:24:14 +0000658 let Inst{31-27} = 0b11111;
659 let Inst{26-23} = 0b0100;
660 let Inst{22-20} = opcod;
661 let Inst{19-16} = 0b1111; // Rn
662 let Inst{15-12} = 0b1111;
663 let Inst{7} = 1;
664 let Inst{5-4} = 0b00; // rotate
665 }
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000666 def r_rot : T2I<(outs rGPR:$dst), (ins rGPR:$src, i32imm:$rot), IIC_iUNAsi,
Evan Cheng699beba2009-10-27 00:08:59 +0000667 opc, ".w\t$dst, $src, ror $rot",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000668 [(set rGPR:$dst, (opnode (rotr rGPR:$src, rot_imm:$rot)))]> {
Johnny Chend68e1192009-12-15 17:24:14 +0000669 let Inst{31-27} = 0b11111;
670 let Inst{26-23} = 0b0100;
671 let Inst{22-20} = opcod;
672 let Inst{19-16} = 0b1111; // Rn
673 let Inst{15-12} = 0b1111;
674 let Inst{7} = 1;
675 let Inst{5-4} = {?,?}; // rotate
676 }
Evan Chengd27c9fc2009-07-03 01:43:10 +0000677}
678
Eli Friedman761fa7a2010-06-24 18:20:04 +0000679// UXTB16 - Requres T2ExtractPack, does not need the .w qualifier.
680multiclass T2I_unary_rrot_uxtb16<bits<3> opcod, string opc, PatFrag opnode> {
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000681 def r : T2I<(outs rGPR:$dst), (ins rGPR:$src), IIC_iUNAr,
Johnny Chen267124c2010-03-04 22:24:41 +0000682 opc, "\t$dst, $src",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000683 [(set rGPR:$dst, (opnode rGPR:$src))]>,
Jim Grosbach29402132010-05-05 23:44:43 +0000684 Requires<[HasT2ExtractPack]> {
Johnny Chen267124c2010-03-04 22:24:41 +0000685 let Inst{31-27} = 0b11111;
686 let Inst{26-23} = 0b0100;
687 let Inst{22-20} = opcod;
688 let Inst{19-16} = 0b1111; // Rn
689 let Inst{15-12} = 0b1111;
690 let Inst{7} = 1;
691 let Inst{5-4} = 0b00; // rotate
692 }
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000693 def r_rot : T2I<(outs rGPR:$dst), (ins rGPR:$src, i32imm:$rot), IIC_iUNAsi,
Johnny Chen267124c2010-03-04 22:24:41 +0000694 opc, "\t$dst, $src, ror $rot",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000695 [(set rGPR:$dst, (opnode (rotr rGPR:$src, rot_imm:$rot)))]>,
Jim Grosbach29402132010-05-05 23:44:43 +0000696 Requires<[HasT2ExtractPack]> {
Johnny Chen267124c2010-03-04 22:24:41 +0000697 let Inst{31-27} = 0b11111;
698 let Inst{26-23} = 0b0100;
699 let Inst{22-20} = opcod;
700 let Inst{19-16} = 0b1111; // Rn
701 let Inst{15-12} = 0b1111;
702 let Inst{7} = 1;
703 let Inst{5-4} = {?,?}; // rotate
704 }
705}
706
Eli Friedman761fa7a2010-06-24 18:20:04 +0000707// SXTB16 - Requres T2ExtractPack, does not need the .w qualifier, no pattern
708// supported yet.
709multiclass T2I_unary_rrot_sxtb16<bits<3> opcod, string opc> {
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000710 def r : T2I<(outs rGPR:$dst), (ins rGPR:$src), IIC_iUNAr,
Johnny Chen93042d12010-03-02 18:14:57 +0000711 opc, "\t$dst, $src", []> {
712 let Inst{31-27} = 0b11111;
713 let Inst{26-23} = 0b0100;
714 let Inst{22-20} = opcod;
715 let Inst{19-16} = 0b1111; // Rn
716 let Inst{15-12} = 0b1111;
717 let Inst{7} = 1;
718 let Inst{5-4} = 0b00; // rotate
719 }
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000720 def r_rot : T2I<(outs rGPR:$dst), (ins rGPR:$src, i32imm:$rot), IIC_iUNAsi,
Johnny Chen93042d12010-03-02 18:14:57 +0000721 opc, "\t$dst, $src, ror $rot", []> {
722 let Inst{31-27} = 0b11111;
723 let Inst{26-23} = 0b0100;
724 let Inst{22-20} = opcod;
725 let Inst{19-16} = 0b1111; // Rn
726 let Inst{15-12} = 0b1111;
727 let Inst{7} = 1;
728 let Inst{5-4} = {?,?}; // rotate
729 }
730}
731
Evan Chengd27c9fc2009-07-03 01:43:10 +0000732/// T2I_bin_rrot - A binary operation with two forms: one whose operand is a
733/// register and one whose operand is a register rotated by 8/16/24.
Johnny Chend68e1192009-12-15 17:24:14 +0000734multiclass T2I_bin_rrot<bits<3> opcod, string opc, PatFrag opnode> {
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000735 def rr : T2I<(outs rGPR:$dst), (ins rGPR:$LHS, rGPR:$RHS), IIC_iALUr,
Evan Cheng699beba2009-10-27 00:08:59 +0000736 opc, "\t$dst, $LHS, $RHS",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000737 [(set rGPR:$dst, (opnode rGPR:$LHS, rGPR:$RHS))]>,
Jim Grosbach29402132010-05-05 23:44:43 +0000738 Requires<[HasT2ExtractPack]> {
Johnny Chend68e1192009-12-15 17:24:14 +0000739 let Inst{31-27} = 0b11111;
740 let Inst{26-23} = 0b0100;
741 let Inst{22-20} = opcod;
742 let Inst{15-12} = 0b1111;
743 let Inst{7} = 1;
744 let Inst{5-4} = 0b00; // rotate
745 }
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000746 def rr_rot : T2I<(outs rGPR:$dst), (ins rGPR:$LHS, rGPR:$RHS, i32imm:$rot),
Evan Cheng699beba2009-10-27 00:08:59 +0000747 IIC_iALUsr, opc, "\t$dst, $LHS, $RHS, ror $rot",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000748 [(set rGPR:$dst, (opnode rGPR:$LHS,
749 (rotr rGPR:$RHS, rot_imm:$rot)))]>,
Jim Grosbach29402132010-05-05 23:44:43 +0000750 Requires<[HasT2ExtractPack]> {
Johnny Chend68e1192009-12-15 17:24:14 +0000751 let Inst{31-27} = 0b11111;
752 let Inst{26-23} = 0b0100;
753 let Inst{22-20} = opcod;
754 let Inst{15-12} = 0b1111;
755 let Inst{7} = 1;
756 let Inst{5-4} = {?,?}; // rotate
757 }
Evan Chengd27c9fc2009-07-03 01:43:10 +0000758}
759
Johnny Chen93042d12010-03-02 18:14:57 +0000760// DO variant - disassembly only, no pattern
761
762multiclass T2I_bin_rrot_DO<bits<3> opcod, string opc> {
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000763 def rr : T2I<(outs rGPR:$dst), (ins rGPR:$LHS, rGPR:$RHS), IIC_iALUr,
Johnny Chen93042d12010-03-02 18:14:57 +0000764 opc, "\t$dst, $LHS, $RHS", []> {
765 let Inst{31-27} = 0b11111;
766 let Inst{26-23} = 0b0100;
767 let Inst{22-20} = opcod;
768 let Inst{15-12} = 0b1111;
769 let Inst{7} = 1;
770 let Inst{5-4} = 0b00; // rotate
771 }
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000772 def rr_rot : T2I<(outs rGPR:$dst), (ins rGPR:$LHS, rGPR:$RHS, i32imm:$rot),
Johnny Chen93042d12010-03-02 18:14:57 +0000773 IIC_iALUsr, opc, "\t$dst, $LHS, $RHS, ror $rot", []> {
774 let Inst{31-27} = 0b11111;
775 let Inst{26-23} = 0b0100;
776 let Inst{22-20} = opcod;
777 let Inst{15-12} = 0b1111;
778 let Inst{7} = 1;
779 let Inst{5-4} = {?,?}; // rotate
780 }
781}
782
Anton Korobeynikov52237112009-06-17 18:13:58 +0000783//===----------------------------------------------------------------------===//
Evan Cheng9cb9e672009-06-27 02:26:13 +0000784// Instructions
785//===----------------------------------------------------------------------===//
786
787//===----------------------------------------------------------------------===//
Evan Chenga09b9ca2009-06-24 23:47:58 +0000788// Miscellaneous Instructions.
789//
790
Evan Chenga09b9ca2009-06-24 23:47:58 +0000791// LEApcrel - Load a pc-relative address into a register without offending the
792// assembler.
Evan Chengea420b22010-05-19 01:52:25 +0000793let neverHasSideEffects = 1 in {
Evan Cheng9085f982010-05-19 07:28:01 +0000794let isReMaterializable = 1 in
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000795def t2LEApcrel : T2XI<(outs rGPR:$dst), (ins i32imm:$label, pred:$p), IIC_iALUi,
Daniel Dunbar9db683b2010-08-11 04:46:10 +0000796 "adr${p}.w\t$dst, #$label", []> {
Johnny Chend68e1192009-12-15 17:24:14 +0000797 let Inst{31-27} = 0b11110;
798 let Inst{25-24} = 0b10;
799 // Inst{23:21} = '11' (add = FALSE) or '00' (add = TRUE)
800 let Inst{22} = 0;
801 let Inst{20} = 0;
802 let Inst{19-16} = 0b1111; // Rn
803 let Inst{15} = 0;
804}
Jim Grosbacha967d112010-06-21 21:27:27 +0000805} // neverHasSideEffects
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000806def t2LEApcrelJT : T2XI<(outs rGPR:$dst),
Bob Wilson4f38b382009-08-21 21:58:55 +0000807 (ins i32imm:$label, nohash_imm:$id, pred:$p), IIC_iALUi,
Daniel Dunbar9db683b2010-08-11 04:46:10 +0000808 "adr${p}.w\t$dst, #${label}_${id}", []> {
Johnny Chend68e1192009-12-15 17:24:14 +0000809 let Inst{31-27} = 0b11110;
810 let Inst{25-24} = 0b10;
811 // Inst{23:21} = '11' (add = FALSE) or '00' (add = TRUE)
812 let Inst{22} = 0;
813 let Inst{20} = 0;
814 let Inst{19-16} = 0b1111; // Rn
815 let Inst{15} = 0;
816}
Evan Chenga09b9ca2009-06-24 23:47:58 +0000817
Evan Cheng86198642009-08-07 00:34:42 +0000818// ADD r, sp, {so_imm|i12}
David Goodwin5d598aa2009-08-19 18:00:44 +0000819def t2ADDrSPi : T2sI<(outs GPR:$dst), (ins GPR:$sp, t2_so_imm:$imm),
Johnny Chend68e1192009-12-15 17:24:14 +0000820 IIC_iALUi, "add", ".w\t$dst, $sp, $imm", []> {
821 let Inst{31-27} = 0b11110;
822 let Inst{25} = 0;
823 let Inst{24-21} = 0b1000;
824 let Inst{20} = ?; // The S bit.
825 let Inst{19-16} = 0b1101; // Rn = sp
826 let Inst{15} = 0;
827}
Jim Grosbach64171712010-02-16 21:07:46 +0000828def t2ADDrSPi12 : T2I<(outs GPR:$dst), (ins GPR:$sp, imm0_4095:$imm),
Johnny Chend68e1192009-12-15 17:24:14 +0000829 IIC_iALUi, "addw", "\t$dst, $sp, $imm", []> {
830 let Inst{31-27} = 0b11110;
831 let Inst{25} = 1;
832 let Inst{24-21} = 0b0000;
833 let Inst{20} = 0; // The S bit.
834 let Inst{19-16} = 0b1101; // Rn = sp
835 let Inst{15} = 0;
836}
Evan Cheng86198642009-08-07 00:34:42 +0000837
838// ADD r, sp, so_reg
David Goodwin5d598aa2009-08-19 18:00:44 +0000839def t2ADDrSPs : T2sI<(outs GPR:$dst), (ins GPR:$sp, t2_so_reg:$rhs),
Johnny Chend68e1192009-12-15 17:24:14 +0000840 IIC_iALUsi, "add", ".w\t$dst, $sp, $rhs", []> {
841 let Inst{31-27} = 0b11101;
842 let Inst{26-25} = 0b01;
843 let Inst{24-21} = 0b1000;
844 let Inst{20} = ?; // The S bit.
845 let Inst{19-16} = 0b1101; // Rn = sp
846 let Inst{15} = 0;
847}
Evan Cheng86198642009-08-07 00:34:42 +0000848
849// SUB r, sp, {so_imm|i12}
David Goodwin5d598aa2009-08-19 18:00:44 +0000850def t2SUBrSPi : T2sI<(outs GPR:$dst), (ins GPR:$sp, t2_so_imm:$imm),
Johnny Chend68e1192009-12-15 17:24:14 +0000851 IIC_iALUi, "sub", ".w\t$dst, $sp, $imm", []> {
852 let Inst{31-27} = 0b11110;
853 let Inst{25} = 0;
854 let Inst{24-21} = 0b1101;
855 let Inst{20} = ?; // The S bit.
856 let Inst{19-16} = 0b1101; // Rn = sp
857 let Inst{15} = 0;
858}
David Goodwin5d598aa2009-08-19 18:00:44 +0000859def t2SUBrSPi12 : T2I<(outs GPR:$dst), (ins GPR:$sp, imm0_4095:$imm),
Johnny Chend68e1192009-12-15 17:24:14 +0000860 IIC_iALUi, "subw", "\t$dst, $sp, $imm", []> {
861 let Inst{31-27} = 0b11110;
862 let Inst{25} = 1;
863 let Inst{24-21} = 0b0101;
864 let Inst{20} = 0; // The S bit.
865 let Inst{19-16} = 0b1101; // Rn = sp
866 let Inst{15} = 0;
867}
Evan Cheng86198642009-08-07 00:34:42 +0000868
869// SUB r, sp, so_reg
David Goodwin5d598aa2009-08-19 18:00:44 +0000870def t2SUBrSPs : T2sI<(outs GPR:$dst), (ins GPR:$sp, t2_so_reg:$rhs),
871 IIC_iALUsi,
Johnny Chend68e1192009-12-15 17:24:14 +0000872 "sub", "\t$dst, $sp, $rhs", []> {
873 let Inst{31-27} = 0b11101;
874 let Inst{26-25} = 0b01;
875 let Inst{24-21} = 0b1101;
876 let Inst{20} = ?; // The S bit.
877 let Inst{19-16} = 0b1101; // Rn = sp
878 let Inst{15} = 0;
879}
Evan Cheng86198642009-08-07 00:34:42 +0000880
Jim Grosbachb1dc3932010-05-05 20:44:35 +0000881// Signed and unsigned division on v7-M
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000882def t2SDIV : T2I<(outs rGPR:$dst), (ins rGPR:$a, rGPR:$b), IIC_iALUi,
Jim Grosbachb1dc3932010-05-05 20:44:35 +0000883 "sdiv", "\t$dst, $a, $b",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000884 [(set rGPR:$dst, (sdiv rGPR:$a, rGPR:$b))]>,
Jim Grosbach29402132010-05-05 23:44:43 +0000885 Requires<[HasDivide]> {
Johnny Chen93042d12010-03-02 18:14:57 +0000886 let Inst{31-27} = 0b11111;
887 let Inst{26-21} = 0b011100;
888 let Inst{20} = 0b1;
889 let Inst{15-12} = 0b1111;
890 let Inst{7-4} = 0b1111;
891}
892
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000893def t2UDIV : T2I<(outs rGPR:$dst), (ins rGPR:$a, rGPR:$b), IIC_iALUi,
Jim Grosbachb1dc3932010-05-05 20:44:35 +0000894 "udiv", "\t$dst, $a, $b",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000895 [(set rGPR:$dst, (udiv rGPR:$a, rGPR:$b))]>,
Jim Grosbach29402132010-05-05 23:44:43 +0000896 Requires<[HasDivide]> {
Johnny Chen93042d12010-03-02 18:14:57 +0000897 let Inst{31-27} = 0b11111;
898 let Inst{26-21} = 0b011101;
899 let Inst{20} = 0b1;
900 let Inst{15-12} = 0b1111;
901 let Inst{7-4} = 0b1111;
902}
903
Evan Chenga09b9ca2009-06-24 23:47:58 +0000904//===----------------------------------------------------------------------===//
Evan Cheng9cb9e672009-06-27 02:26:13 +0000905// Load / store Instructions.
906//
907
Evan Cheng055b0312009-06-29 07:51:04 +0000908// Load
Dan Gohmanbc9d98b2010-02-27 23:47:46 +0000909let canFoldAsLoad = 1, isReMaterializable = 1 in
Johnny Chend68e1192009-12-15 17:24:14 +0000910defm t2LDR : T2I_ld<0, 0b10, "ldr", UnOpFrag<(load node:$Src)>>;
Evan Cheng055b0312009-06-29 07:51:04 +0000911
Evan Chengf3c21b82009-06-30 02:15:48 +0000912// Loads with zero extension
Johnny Chend68e1192009-12-15 17:24:14 +0000913defm t2LDRH : T2I_ld<0, 0b01, "ldrh", UnOpFrag<(zextloadi16 node:$Src)>>;
914defm t2LDRB : T2I_ld<0, 0b00, "ldrb", UnOpFrag<(zextloadi8 node:$Src)>>;
Evan Cheng055b0312009-06-29 07:51:04 +0000915
Evan Chengf3c21b82009-06-30 02:15:48 +0000916// Loads with sign extension
Johnny Chend68e1192009-12-15 17:24:14 +0000917defm t2LDRSH : T2I_ld<1, 0b01, "ldrsh", UnOpFrag<(sextloadi16 node:$Src)>>;
918defm t2LDRSB : T2I_ld<1, 0b00, "ldrsb", UnOpFrag<(sextloadi8 node:$Src)>>;
Evan Cheng055b0312009-06-29 07:51:04 +0000919
Evan Cheng5fd1c9b2010-05-19 06:07:03 +0000920let mayLoad = 1, neverHasSideEffects = 1, hasExtraDefRegAllocReq = 1 in {
Evan Chengf3c21b82009-06-30 02:15:48 +0000921// Load doubleword
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000922def t2LDRDi8 : T2Ii8s4<1, 0, 1, (outs rGPR:$dst1, rGPR:$dst2),
Evan Chenge298ab22009-09-27 09:46:04 +0000923 (ins t2addrmode_imm8s4:$addr),
Johnny Chen83142992010-01-05 22:37:28 +0000924 IIC_iLoadi, "ldrd", "\t$dst1, $addr", []>;
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000925def t2LDRDpci : T2Ii8s4<1, 0, 1, (outs rGPR:$dst1, rGPR:$dst2),
Evan Chenge298ab22009-09-27 09:46:04 +0000926 (ins i32imm:$addr), IIC_iLoadi,
Johnny Chen83142992010-01-05 22:37:28 +0000927 "ldrd", "\t$dst1, $addr", []> {
Johnny Chend68e1192009-12-15 17:24:14 +0000928 let Inst{19-16} = 0b1111; // Rn
929}
Evan Cheng5fd1c9b2010-05-19 06:07:03 +0000930} // mayLoad = 1, neverHasSideEffects = 1, hasExtraDefRegAllocReq = 1
Evan Chengf3c21b82009-06-30 02:15:48 +0000931
932// zextload i1 -> zextload i8
933def : T2Pat<(zextloadi1 t2addrmode_imm12:$addr),
934 (t2LDRBi12 t2addrmode_imm12:$addr)>;
935def : T2Pat<(zextloadi1 t2addrmode_imm8:$addr),
936 (t2LDRBi8 t2addrmode_imm8:$addr)>;
937def : T2Pat<(zextloadi1 t2addrmode_so_reg:$addr),
938 (t2LDRBs t2addrmode_so_reg:$addr)>;
939def : T2Pat<(zextloadi1 (ARMWrapper tconstpool:$addr)),
940 (t2LDRBpci tconstpool:$addr)>;
941
942// extload -> zextload
943// FIXME: Reduce the number of patterns by legalizing extload to zextload
944// earlier?
945def : T2Pat<(extloadi1 t2addrmode_imm12:$addr),
946 (t2LDRBi12 t2addrmode_imm12:$addr)>;
947def : T2Pat<(extloadi1 t2addrmode_imm8:$addr),
948 (t2LDRBi8 t2addrmode_imm8:$addr)>;
949def : T2Pat<(extloadi1 t2addrmode_so_reg:$addr),
950 (t2LDRBs t2addrmode_so_reg:$addr)>;
951def : T2Pat<(extloadi1 (ARMWrapper tconstpool:$addr)),
952 (t2LDRBpci tconstpool:$addr)>;
953
954def : T2Pat<(extloadi8 t2addrmode_imm12:$addr),
955 (t2LDRBi12 t2addrmode_imm12:$addr)>;
956def : T2Pat<(extloadi8 t2addrmode_imm8:$addr),
957 (t2LDRBi8 t2addrmode_imm8:$addr)>;
958def : T2Pat<(extloadi8 t2addrmode_so_reg:$addr),
959 (t2LDRBs t2addrmode_so_reg:$addr)>;
960def : T2Pat<(extloadi8 (ARMWrapper tconstpool:$addr)),
961 (t2LDRBpci tconstpool:$addr)>;
962
963def : T2Pat<(extloadi16 t2addrmode_imm12:$addr),
964 (t2LDRHi12 t2addrmode_imm12:$addr)>;
965def : T2Pat<(extloadi16 t2addrmode_imm8:$addr),
966 (t2LDRHi8 t2addrmode_imm8:$addr)>;
967def : T2Pat<(extloadi16 t2addrmode_so_reg:$addr),
968 (t2LDRHs t2addrmode_so_reg:$addr)>;
969def : T2Pat<(extloadi16 (ARMWrapper tconstpool:$addr)),
970 (t2LDRHpci tconstpool:$addr)>;
Evan Cheng055b0312009-06-29 07:51:04 +0000971
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000972// FIXME: The destination register of the loads and stores can't be PC, but
973// can be SP. We need another regclass (similar to rGPR) to represent
974// that. Not a pressing issue since these are selected manually,
975// not via pattern.
976
Evan Chenge88d5ce2009-07-02 07:28:31 +0000977// Indexed loads
Evan Cheng5fd1c9b2010-05-19 06:07:03 +0000978let mayLoad = 1, neverHasSideEffects = 1 in {
Johnny Chend68e1192009-12-15 17:24:14 +0000979def t2LDR_PRE : T2Iidxldst<0, 0b10, 1, 1, (outs GPR:$dst, GPR:$base_wb),
Evan Chenge88d5ce2009-07-02 07:28:31 +0000980 (ins t2addrmode_imm8:$addr),
David Goodwin5d598aa2009-08-19 18:00:44 +0000981 AddrModeT2_i8, IndexModePre, IIC_iLoadiu,
Evan Cheng699beba2009-10-27 00:08:59 +0000982 "ldr", "\t$dst, $addr!", "$addr.base = $base_wb",
Evan Chenge88d5ce2009-07-02 07:28:31 +0000983 []>;
984
Johnny Chend68e1192009-12-15 17:24:14 +0000985def t2LDR_POST : T2Iidxldst<0, 0b10, 1, 0, (outs GPR:$dst, GPR:$base_wb),
Evan Chenge88d5ce2009-07-02 07:28:31 +0000986 (ins GPR:$base, t2am_imm8_offset:$offset),
David Goodwin5d598aa2009-08-19 18:00:44 +0000987 AddrModeT2_i8, IndexModePost, IIC_iLoadiu,
Evan Cheng699beba2009-10-27 00:08:59 +0000988 "ldr", "\t$dst, [$base], $offset", "$base = $base_wb",
Evan Chenge88d5ce2009-07-02 07:28:31 +0000989 []>;
990
Johnny Chend68e1192009-12-15 17:24:14 +0000991def t2LDRB_PRE : T2Iidxldst<0, 0b00, 1, 1, (outs GPR:$dst, GPR:$base_wb),
Evan Chenge88d5ce2009-07-02 07:28:31 +0000992 (ins t2addrmode_imm8:$addr),
David Goodwin5d598aa2009-08-19 18:00:44 +0000993 AddrModeT2_i8, IndexModePre, IIC_iLoadiu,
Evan Cheng699beba2009-10-27 00:08:59 +0000994 "ldrb", "\t$dst, $addr!", "$addr.base = $base_wb",
Evan Chenge88d5ce2009-07-02 07:28:31 +0000995 []>;
Johnny Chend68e1192009-12-15 17:24:14 +0000996def t2LDRB_POST : T2Iidxldst<0, 0b00, 1, 0, (outs GPR:$dst, GPR:$base_wb),
Evan Chenge88d5ce2009-07-02 07:28:31 +0000997 (ins GPR:$base, t2am_imm8_offset:$offset),
David Goodwin5d598aa2009-08-19 18:00:44 +0000998 AddrModeT2_i8, IndexModePost, IIC_iLoadiu,
Evan Cheng699beba2009-10-27 00:08:59 +0000999 "ldrb", "\t$dst, [$base], $offset", "$base = $base_wb",
Evan Chenge88d5ce2009-07-02 07:28:31 +00001000 []>;
1001
Johnny Chend68e1192009-12-15 17:24:14 +00001002def t2LDRH_PRE : T2Iidxldst<0, 0b01, 1, 1, (outs GPR:$dst, GPR:$base_wb),
Evan Chenge88d5ce2009-07-02 07:28:31 +00001003 (ins t2addrmode_imm8:$addr),
David Goodwin5d598aa2009-08-19 18:00:44 +00001004 AddrModeT2_i8, IndexModePre, IIC_iLoadiu,
Evan Cheng699beba2009-10-27 00:08:59 +00001005 "ldrh", "\t$dst, $addr!", "$addr.base = $base_wb",
Evan Chenge88d5ce2009-07-02 07:28:31 +00001006 []>;
Johnny Chend68e1192009-12-15 17:24:14 +00001007def t2LDRH_POST : T2Iidxldst<0, 0b01, 1, 0, (outs GPR:$dst, GPR:$base_wb),
Evan Chenge88d5ce2009-07-02 07:28:31 +00001008 (ins GPR:$base, t2am_imm8_offset:$offset),
David Goodwin5d598aa2009-08-19 18:00:44 +00001009 AddrModeT2_i8, IndexModePost, IIC_iLoadiu,
Evan Cheng699beba2009-10-27 00:08:59 +00001010 "ldrh", "\t$dst, [$base], $offset", "$base = $base_wb",
Evan Chenge88d5ce2009-07-02 07:28:31 +00001011 []>;
1012
Johnny Chend68e1192009-12-15 17:24:14 +00001013def t2LDRSB_PRE : T2Iidxldst<1, 0b00, 1, 1, (outs GPR:$dst, GPR:$base_wb),
Evan Cheng4fbb9962009-07-02 23:16:11 +00001014 (ins t2addrmode_imm8:$addr),
David Goodwin5d598aa2009-08-19 18:00:44 +00001015 AddrModeT2_i8, IndexModePre, IIC_iLoadiu,
Evan Cheng699beba2009-10-27 00:08:59 +00001016 "ldrsb", "\t$dst, $addr!", "$addr.base = $base_wb",
Evan Cheng4fbb9962009-07-02 23:16:11 +00001017 []>;
Johnny Chend68e1192009-12-15 17:24:14 +00001018def t2LDRSB_POST : T2Iidxldst<1, 0b00, 1, 0, (outs GPR:$dst, GPR:$base_wb),
Evan Cheng4fbb9962009-07-02 23:16:11 +00001019 (ins GPR:$base, t2am_imm8_offset:$offset),
David Goodwin5d598aa2009-08-19 18:00:44 +00001020 AddrModeT2_i8, IndexModePost, IIC_iLoadiu,
Evan Cheng699beba2009-10-27 00:08:59 +00001021 "ldrsb", "\t$dst, [$base], $offset", "$base = $base_wb",
Evan Cheng4fbb9962009-07-02 23:16:11 +00001022 []>;
1023
Johnny Chend68e1192009-12-15 17:24:14 +00001024def t2LDRSH_PRE : T2Iidxldst<1, 0b01, 1, 1, (outs GPR:$dst, GPR:$base_wb),
Evan Cheng4fbb9962009-07-02 23:16:11 +00001025 (ins t2addrmode_imm8:$addr),
David Goodwin5d598aa2009-08-19 18:00:44 +00001026 AddrModeT2_i8, IndexModePre, IIC_iLoadiu,
Evan Cheng699beba2009-10-27 00:08:59 +00001027 "ldrsh", "\t$dst, $addr!", "$addr.base = $base_wb",
Evan Cheng4fbb9962009-07-02 23:16:11 +00001028 []>;
Johnny Chend68e1192009-12-15 17:24:14 +00001029def t2LDRSH_POST : T2Iidxldst<1, 0b01, 1, 0, (outs GPR:$dst, GPR:$base_wb),
Evan Cheng4fbb9962009-07-02 23:16:11 +00001030 (ins GPR:$base, t2am_imm8_offset:$offset),
David Goodwin5d598aa2009-08-19 18:00:44 +00001031 AddrModeT2_i8, IndexModePost, IIC_iLoadiu,
Evan Cheng699beba2009-10-27 00:08:59 +00001032 "ldrsh", "\t$dst, [$base], $offset", "$base = $base_wb",
Evan Cheng4fbb9962009-07-02 23:16:11 +00001033 []>;
Evan Cheng5fd1c9b2010-05-19 06:07:03 +00001034} // mayLoad = 1, neverHasSideEffects = 1
Evan Cheng4fbb9962009-07-02 23:16:11 +00001035
Johnny Chene54a3ef2010-03-03 18:45:36 +00001036// LDRT, LDRBT, LDRHT, LDRSBT, LDRSHT all have offset mode (PUW=0b110) and are
1037// for disassembly only.
1038// Ref: A8.6.57 LDR (immediate, Thumb) Encoding T4
1039class T2IldT<bit signed, bits<2> type, string opc>
1040 : T2Ii8<(outs GPR:$dst), (ins t2addrmode_imm8:$addr), IIC_iLoadi, opc,
1041 "\t$dst, $addr", []> {
1042 let Inst{31-27} = 0b11111;
1043 let Inst{26-25} = 0b00;
1044 let Inst{24} = signed;
1045 let Inst{23} = 0;
1046 let Inst{22-21} = type;
1047 let Inst{20} = 1; // load
1048 let Inst{11} = 1;
1049 let Inst{10-8} = 0b110; // PUW.
1050}
1051
1052def t2LDRT : T2IldT<0, 0b10, "ldrt">;
1053def t2LDRBT : T2IldT<0, 0b00, "ldrbt">;
1054def t2LDRHT : T2IldT<0, 0b01, "ldrht">;
1055def t2LDRSBT : T2IldT<1, 0b00, "ldrsbt">;
1056def t2LDRSHT : T2IldT<1, 0b01, "ldrsht">;
1057
David Goodwin73b8f162009-06-30 22:11:34 +00001058// Store
Jim Grosbach80dc1162010-02-16 21:23:02 +00001059defm t2STR :T2I_st<0b10,"str", BinOpFrag<(store node:$LHS, node:$RHS)>>;
1060defm t2STRB:T2I_st<0b00,"strb",BinOpFrag<(truncstorei8 node:$LHS, node:$RHS)>>;
1061defm t2STRH:T2I_st<0b01,"strh",BinOpFrag<(truncstorei16 node:$LHS, node:$RHS)>>;
David Goodwin73b8f162009-06-30 22:11:34 +00001062
David Goodwin6647cea2009-06-30 22:50:01 +00001063// Store doubleword
Evan Cheng5fd1c9b2010-05-19 06:07:03 +00001064let mayLoad = 1, neverHasSideEffects = 1, hasExtraSrcRegAllocReq = 1 in
Johnny Chend68e1192009-12-15 17:24:14 +00001065def t2STRDi8 : T2Ii8s4<1, 0, 0, (outs),
Evan Chenge298ab22009-09-27 09:46:04 +00001066 (ins GPR:$src1, GPR:$src2, t2addrmode_imm8s4:$addr),
Johnny Chen83142992010-01-05 22:37:28 +00001067 IIC_iStorer, "strd", "\t$src1, $addr", []>;
David Goodwin6647cea2009-06-30 22:50:01 +00001068
Evan Cheng6d94f112009-07-03 00:06:39 +00001069// Indexed stores
Johnny Chend68e1192009-12-15 17:24:14 +00001070def t2STR_PRE : T2Iidxldst<0, 0b10, 0, 1, (outs GPR:$base_wb),
Evan Cheng6d94f112009-07-03 00:06:39 +00001071 (ins GPR:$src, GPR:$base, t2am_imm8_offset:$offset),
David Goodwin5d598aa2009-08-19 18:00:44 +00001072 AddrModeT2_i8, IndexModePre, IIC_iStoreiu,
Evan Cheng699beba2009-10-27 00:08:59 +00001073 "str", "\t$src, [$base, $offset]!", "$base = $base_wb",
Evan Cheng6d94f112009-07-03 00:06:39 +00001074 [(set GPR:$base_wb,
1075 (pre_store GPR:$src, GPR:$base, t2am_imm8_offset:$offset))]>;
1076
Johnny Chend68e1192009-12-15 17:24:14 +00001077def t2STR_POST : T2Iidxldst<0, 0b10, 0, 0, (outs GPR:$base_wb),
Evan Cheng6d94f112009-07-03 00:06:39 +00001078 (ins GPR:$src, GPR:$base, t2am_imm8_offset:$offset),
David Goodwin5d598aa2009-08-19 18:00:44 +00001079 AddrModeT2_i8, IndexModePost, IIC_iStoreiu,
Evan Cheng699beba2009-10-27 00:08:59 +00001080 "str", "\t$src, [$base], $offset", "$base = $base_wb",
Evan Cheng6d94f112009-07-03 00:06:39 +00001081 [(set GPR:$base_wb,
Jim Grosbach6935efc2009-11-24 00:20:27 +00001082 (post_store GPR:$src, GPR:$base, t2am_imm8_offset:$offset))]>;
Evan Cheng6d94f112009-07-03 00:06:39 +00001083
Johnny Chend68e1192009-12-15 17:24:14 +00001084def t2STRH_PRE : T2Iidxldst<0, 0b01, 0, 1, (outs GPR:$base_wb),
Evan Cheng6d94f112009-07-03 00:06:39 +00001085 (ins GPR:$src, GPR:$base, t2am_imm8_offset:$offset),
David Goodwin5d598aa2009-08-19 18:00:44 +00001086 AddrModeT2_i8, IndexModePre, IIC_iStoreiu,
Evan Cheng699beba2009-10-27 00:08:59 +00001087 "strh", "\t$src, [$base, $offset]!", "$base = $base_wb",
Evan Cheng6d94f112009-07-03 00:06:39 +00001088 [(set GPR:$base_wb,
1089 (pre_truncsti16 GPR:$src, GPR:$base, t2am_imm8_offset:$offset))]>;
1090
Johnny Chend68e1192009-12-15 17:24:14 +00001091def t2STRH_POST : T2Iidxldst<0, 0b01, 0, 0, (outs GPR:$base_wb),
Evan Cheng6d94f112009-07-03 00:06:39 +00001092 (ins GPR:$src, GPR:$base, t2am_imm8_offset:$offset),
David Goodwin5d598aa2009-08-19 18:00:44 +00001093 AddrModeT2_i8, IndexModePost, IIC_iStoreiu,
Evan Cheng699beba2009-10-27 00:08:59 +00001094 "strh", "\t$src, [$base], $offset", "$base = $base_wb",
Evan Cheng6d94f112009-07-03 00:06:39 +00001095 [(set GPR:$base_wb,
1096 (post_truncsti16 GPR:$src, GPR:$base, t2am_imm8_offset:$offset))]>;
1097
Johnny Chend68e1192009-12-15 17:24:14 +00001098def t2STRB_PRE : T2Iidxldst<0, 0b00, 0, 1, (outs GPR:$base_wb),
Evan Cheng6d94f112009-07-03 00:06:39 +00001099 (ins GPR:$src, GPR:$base, t2am_imm8_offset:$offset),
David Goodwin5d598aa2009-08-19 18:00:44 +00001100 AddrModeT2_i8, IndexModePre, IIC_iStoreiu,
Evan Cheng699beba2009-10-27 00:08:59 +00001101 "strb", "\t$src, [$base, $offset]!", "$base = $base_wb",
Evan Cheng6d94f112009-07-03 00:06:39 +00001102 [(set GPR:$base_wb,
1103 (pre_truncsti8 GPR:$src, GPR:$base, t2am_imm8_offset:$offset))]>;
1104
Johnny Chend68e1192009-12-15 17:24:14 +00001105def t2STRB_POST : T2Iidxldst<0, 0b00, 0, 0, (outs GPR:$base_wb),
Evan Cheng6d94f112009-07-03 00:06:39 +00001106 (ins GPR:$src, GPR:$base, t2am_imm8_offset:$offset),
David Goodwin5d598aa2009-08-19 18:00:44 +00001107 AddrModeT2_i8, IndexModePost, IIC_iStoreiu,
Evan Cheng699beba2009-10-27 00:08:59 +00001108 "strb", "\t$src, [$base], $offset", "$base = $base_wb",
Evan Cheng6d94f112009-07-03 00:06:39 +00001109 [(set GPR:$base_wb,
1110 (post_truncsti8 GPR:$src, GPR:$base, t2am_imm8_offset:$offset))]>;
1111
Johnny Chene54a3ef2010-03-03 18:45:36 +00001112// STRT, STRBT, STRHT all have offset mode (PUW=0b110) and are for disassembly
1113// only.
1114// Ref: A8.6.193 STR (immediate, Thumb) Encoding T4
1115class T2IstT<bits<2> type, string opc>
1116 : T2Ii8<(outs GPR:$src), (ins t2addrmode_imm8:$addr), IIC_iStorei, opc,
1117 "\t$src, $addr", []> {
1118 let Inst{31-27} = 0b11111;
1119 let Inst{26-25} = 0b00;
1120 let Inst{24} = 0; // not signed
1121 let Inst{23} = 0;
1122 let Inst{22-21} = type;
1123 let Inst{20} = 0; // store
1124 let Inst{11} = 1;
1125 let Inst{10-8} = 0b110; // PUW
1126}
1127
1128def t2STRT : T2IstT<0b10, "strt">;
1129def t2STRBT : T2IstT<0b00, "strbt">;
1130def t2STRHT : T2IstT<0b01, "strht">;
David Goodwind1fa1202009-07-01 00:01:13 +00001131
Johnny Chenae1757b2010-03-11 01:13:36 +00001132// ldrd / strd pre / post variants
1133// For disassembly only.
1134
1135def t2LDRD_PRE : T2Ii8s4<1, 1, 1, (outs GPR:$dst1, GPR:$dst2),
1136 (ins GPR:$base, t2am_imm8s4_offset:$imm), NoItinerary,
1137 "ldrd", "\t$dst1, $dst2, [$base, $imm]!", []>;
1138
1139def t2LDRD_POST : T2Ii8s4<0, 1, 1, (outs GPR:$dst1, GPR:$dst2),
1140 (ins GPR:$base, t2am_imm8s4_offset:$imm), NoItinerary,
1141 "ldrd", "\t$dst1, $dst2, [$base], $imm", []>;
1142
1143def t2STRD_PRE : T2Ii8s4<1, 1, 0, (outs),
1144 (ins GPR:$src1, GPR:$src2, GPR:$base, t2am_imm8s4_offset:$imm),
1145 NoItinerary, "strd", "\t$src1, $src2, [$base, $imm]!", []>;
1146
1147def t2STRD_POST : T2Ii8s4<0, 1, 0, (outs),
1148 (ins GPR:$src1, GPR:$src2, GPR:$base, t2am_imm8s4_offset:$imm),
1149 NoItinerary, "strd", "\t$src1, $src2, [$base], $imm", []>;
Evan Cheng2889cce2009-07-03 00:18:36 +00001150
Johnny Chen0635fc52010-03-04 17:40:44 +00001151// T2Ipl (Preload Data/Instruction) signals the memory system of possible future
1152// data/instruction access. These are for disassembly only.
Johnny Chendd0f3cf2010-03-10 18:59:38 +00001153//
1154// A8.6.117, A8.6.118. Different instructions are generated for #0 and #-0.
1155// The neg_zero operand translates -0 to -1, -1 to -2, ..., etc.
Johnny Chen0635fc52010-03-04 17:40:44 +00001156multiclass T2Ipl<bit instr, bit write, string opc> {
1157
Johnny Chendd0f3cf2010-03-10 18:59:38 +00001158 def i12 : T2I<(outs), (ins GPR:$base, i32imm:$imm), IIC_iLoadi, opc,
1159 "\t[$base, $imm]", []> {
Johnny Chen0635fc52010-03-04 17:40:44 +00001160 let Inst{31-25} = 0b1111100;
1161 let Inst{24} = instr;
1162 let Inst{23} = 1; // U = 1
1163 let Inst{22} = 0;
1164 let Inst{21} = write;
1165 let Inst{20} = 1;
1166 let Inst{15-12} = 0b1111;
1167 }
1168
Johnny Chendd0f3cf2010-03-10 18:59:38 +00001169 def i8 : T2I<(outs), (ins GPR:$base, neg_zero:$imm), IIC_iLoadi, opc,
1170 "\t[$base, $imm]", []> {
Johnny Chen0635fc52010-03-04 17:40:44 +00001171 let Inst{31-25} = 0b1111100;
1172 let Inst{24} = instr;
1173 let Inst{23} = 0; // U = 0
1174 let Inst{22} = 0;
1175 let Inst{21} = write;
1176 let Inst{20} = 1;
1177 let Inst{15-12} = 0b1111;
1178 let Inst{11-8} = 0b1100;
1179 }
1180
Johnny Chendd0f3cf2010-03-10 18:59:38 +00001181 def pci : T2I<(outs), (ins GPR:$base, neg_zero:$imm), IIC_iLoadi, opc,
1182 "\t[pc, $imm]", []> {
Johnny Chen0635fc52010-03-04 17:40:44 +00001183 let Inst{31-25} = 0b1111100;
1184 let Inst{24} = instr;
1185 let Inst{23} = ?; // add = (U == 1)
1186 let Inst{22} = 0;
1187 let Inst{21} = write;
1188 let Inst{20} = 1;
1189 let Inst{19-16} = 0b1111; // Rn = 0b1111
1190 let Inst{15-12} = 0b1111;
1191 }
1192
1193 def r : T2I<(outs), (ins GPR:$base, GPR:$a), IIC_iLoadi, opc,
1194 "\t[$base, $a]", []> {
1195 let Inst{31-25} = 0b1111100;
1196 let Inst{24} = instr;
1197 let Inst{23} = 0; // add = TRUE for T1
1198 let Inst{22} = 0;
1199 let Inst{21} = write;
1200 let Inst{20} = 1;
1201 let Inst{15-12} = 0b1111;
1202 let Inst{11-6} = 0000000;
1203 let Inst{5-4} = 0b00; // no shift is applied
1204 }
1205
1206 def s : T2I<(outs), (ins GPR:$base, GPR:$a, i32imm:$shamt), IIC_iLoadi, opc,
1207 "\t[$base, $a, lsl $shamt]", []> {
1208 let Inst{31-25} = 0b1111100;
1209 let Inst{24} = instr;
1210 let Inst{23} = 0; // add = TRUE for T1
1211 let Inst{22} = 0;
1212 let Inst{21} = write;
1213 let Inst{20} = 1;
1214 let Inst{15-12} = 0b1111;
1215 let Inst{11-6} = 0000000;
1216 }
1217}
1218
1219defm t2PLD : T2Ipl<0, 0, "pld">;
1220defm t2PLDW : T2Ipl<0, 1, "pldw">;
1221defm t2PLI : T2Ipl<1, 0, "pli">;
1222
Evan Cheng2889cce2009-07-03 00:18:36 +00001223//===----------------------------------------------------------------------===//
1224// Load / store multiple Instructions.
1225//
1226
Evan Cheng5fd1c9b2010-05-19 06:07:03 +00001227let mayLoad = 1, neverHasSideEffects = 1, hasExtraDefRegAllocReq = 1 in {
Bob Wilson815baeb2010-03-13 01:08:20 +00001228def t2LDM : T2XI<(outs), (ins addrmode4:$addr, pred:$p,
1229 reglist:$dsts, variable_ops), IIC_iLoadm,
1230 "ldm${addr:submode}${p}${addr:wide}\t$addr, $dsts", []> {
Johnny Chend68e1192009-12-15 17:24:14 +00001231 let Inst{31-27} = 0b11101;
1232 let Inst{26-25} = 0b00;
1233 let Inst{24-23} = {?, ?}; // IA: '01', DB: '10'
1234 let Inst{22} = 0;
Bob Wilson815baeb2010-03-13 01:08:20 +00001235 let Inst{21} = 0; // The W bit.
Johnny Chend68e1192009-12-15 17:24:14 +00001236 let Inst{20} = 1; // Load
1237}
Evan Cheng2889cce2009-07-03 00:18:36 +00001238
Bob Wilson815baeb2010-03-13 01:08:20 +00001239def t2LDM_UPD : T2XIt<(outs GPR:$wb), (ins addrmode4:$addr, pred:$p,
1240 reglist:$dsts, variable_ops), IIC_iLoadm,
Bob Wilsonab346052010-03-16 17:46:45 +00001241 "ldm${addr:submode}${p}${addr:wide}\t$addr!, $dsts",
Bob Wilson815baeb2010-03-13 01:08:20 +00001242 "$addr.addr = $wb", []> {
Johnny Chend68e1192009-12-15 17:24:14 +00001243 let Inst{31-27} = 0b11101;
1244 let Inst{26-25} = 0b00;
1245 let Inst{24-23} = {?, ?}; // IA: '01', DB: '10'
1246 let Inst{22} = 0;
Bob Wilson815baeb2010-03-13 01:08:20 +00001247 let Inst{21} = 1; // The W bit.
1248 let Inst{20} = 1; // Load
1249}
Evan Cheng5fd1c9b2010-05-19 06:07:03 +00001250} // mayLoad, neverHasSideEffects, hasExtraDefRegAllocReq
Bob Wilson815baeb2010-03-13 01:08:20 +00001251
Evan Cheng5fd1c9b2010-05-19 06:07:03 +00001252let mayStore = 1, neverHasSideEffects = 1, hasExtraSrcRegAllocReq = 1 in {
Bob Wilson815baeb2010-03-13 01:08:20 +00001253def t2STM : T2XI<(outs), (ins addrmode4:$addr, pred:$p,
1254 reglist:$srcs, variable_ops), IIC_iStorem,
1255 "stm${addr:submode}${p}${addr:wide}\t$addr, $srcs", []> {
1256 let Inst{31-27} = 0b11101;
1257 let Inst{26-25} = 0b00;
1258 let Inst{24-23} = {?, ?}; // IA: '01', DB: '10'
1259 let Inst{22} = 0;
1260 let Inst{21} = 0; // The W bit.
Johnny Chend68e1192009-12-15 17:24:14 +00001261 let Inst{20} = 0; // Store
1262}
Evan Cheng2889cce2009-07-03 00:18:36 +00001263
Bob Wilson815baeb2010-03-13 01:08:20 +00001264def t2STM_UPD : T2XIt<(outs GPR:$wb), (ins addrmode4:$addr, pred:$p,
1265 reglist:$srcs, variable_ops),
1266 IIC_iStorem,
Bob Wilsonab346052010-03-16 17:46:45 +00001267 "stm${addr:submode}${p}${addr:wide}\t$addr!, $srcs",
Bob Wilson815baeb2010-03-13 01:08:20 +00001268 "$addr.addr = $wb", []> {
1269 let Inst{31-27} = 0b11101;
1270 let Inst{26-25} = 0b00;
1271 let Inst{24-23} = {?, ?}; // IA: '01', DB: '10'
1272 let Inst{22} = 0;
1273 let Inst{21} = 1; // The W bit.
1274 let Inst{20} = 0; // Store
1275}
Evan Cheng5fd1c9b2010-05-19 06:07:03 +00001276} // mayStore, neverHasSideEffects, hasExtraSrcRegAllocReq
Bob Wilson815baeb2010-03-13 01:08:20 +00001277
Evan Cheng9cb9e672009-06-27 02:26:13 +00001278//===----------------------------------------------------------------------===//
Anton Korobeynikov52237112009-06-17 18:13:58 +00001279// Move Instructions.
1280//
Anton Korobeynikov52237112009-06-17 18:13:58 +00001281
Evan Chengf49810c2009-06-23 17:48:47 +00001282let neverHasSideEffects = 1 in
David Goodwin5d598aa2009-08-19 18:00:44 +00001283def t2MOVr : T2sI<(outs GPR:$dst), (ins GPR:$src), IIC_iMOVr,
Johnny Chend68e1192009-12-15 17:24:14 +00001284 "mov", ".w\t$dst, $src", []> {
1285 let Inst{31-27} = 0b11101;
1286 let Inst{26-25} = 0b01;
1287 let Inst{24-21} = 0b0010;
1288 let Inst{20} = ?; // The S bit.
1289 let Inst{19-16} = 0b1111; // Rn
1290 let Inst{14-12} = 0b000;
1291 let Inst{7-4} = 0b0000;
1292}
Evan Chengf49810c2009-06-23 17:48:47 +00001293
Evan Cheng5adb66a2009-09-28 09:14:39 +00001294// AddedComplexity to ensure isel tries t2MOVi before t2MOVi16.
1295let isReMaterializable = 1, isAsCheapAsAMove = 1, AddedComplexity = 1 in
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001296def t2MOVi : T2sI<(outs rGPR:$dst), (ins t2_so_imm:$src), IIC_iMOVi,
Evan Cheng699beba2009-10-27 00:08:59 +00001297 "mov", ".w\t$dst, $src",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001298 [(set rGPR:$dst, t2_so_imm:$src)]> {
Johnny Chend68e1192009-12-15 17:24:14 +00001299 let Inst{31-27} = 0b11110;
1300 let Inst{25} = 0;
1301 let Inst{24-21} = 0b0010;
1302 let Inst{20} = ?; // The S bit.
1303 let Inst{19-16} = 0b1111; // Rn
1304 let Inst{15} = 0;
1305}
David Goodwin83b35932009-06-26 16:10:07 +00001306
1307let isReMaterializable = 1, isAsCheapAsAMove = 1 in
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001308def t2MOVi16 : T2I<(outs rGPR:$dst), (ins i32imm:$src), IIC_iMOVi,
Evan Cheng699beba2009-10-27 00:08:59 +00001309 "movw", "\t$dst, $src",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001310 [(set rGPR:$dst, imm0_65535:$src)]> {
Johnny Chend68e1192009-12-15 17:24:14 +00001311 let Inst{31-27} = 0b11110;
1312 let Inst{25} = 1;
1313 let Inst{24-21} = 0b0010;
1314 let Inst{20} = 0; // The S bit.
1315 let Inst{15} = 0;
1316}
Evan Chengf49810c2009-06-23 17:48:47 +00001317
Evan Cheng3850a6a2009-06-23 05:23:49 +00001318let Constraints = "$src = $dst" in
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001319def t2MOVTi16 : T2I<(outs rGPR:$dst), (ins rGPR:$src, i32imm:$imm), IIC_iMOVi,
Evan Cheng699beba2009-10-27 00:08:59 +00001320 "movt", "\t$dst, $imm",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001321 [(set rGPR:$dst,
1322 (or (and rGPR:$src, 0xffff), lo16AllZero:$imm))]> {
Johnny Chend68e1192009-12-15 17:24:14 +00001323 let Inst{31-27} = 0b11110;
1324 let Inst{25} = 1;
1325 let Inst{24-21} = 0b0110;
1326 let Inst{20} = 0; // The S bit.
1327 let Inst{15} = 0;
1328}
Anton Korobeynikov52237112009-06-17 18:13:58 +00001329
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001330def : T2Pat<(or rGPR:$src, 0xffff0000), (t2MOVTi16 rGPR:$src, 0xffff)>;
Evan Cheng20956592009-10-21 08:15:52 +00001331
Anton Korobeynikov52237112009-06-17 18:13:58 +00001332//===----------------------------------------------------------------------===//
Evan Chengd27c9fc2009-07-03 01:43:10 +00001333// Extend Instructions.
1334//
1335
1336// Sign extenders
1337
Johnny Chend68e1192009-12-15 17:24:14 +00001338defm t2SXTB : T2I_unary_rrot<0b100, "sxtb",
1339 UnOpFrag<(sext_inreg node:$Src, i8)>>;
1340defm t2SXTH : T2I_unary_rrot<0b000, "sxth",
1341 UnOpFrag<(sext_inreg node:$Src, i16)>>;
Eli Friedman761fa7a2010-06-24 18:20:04 +00001342defm t2SXTB16 : T2I_unary_rrot_sxtb16<0b010, "sxtb16">;
Evan Chengd27c9fc2009-07-03 01:43:10 +00001343
Johnny Chend68e1192009-12-15 17:24:14 +00001344defm t2SXTAB : T2I_bin_rrot<0b100, "sxtab",
Evan Chengd27c9fc2009-07-03 01:43:10 +00001345 BinOpFrag<(add node:$LHS, (sext_inreg node:$RHS, i8))>>;
Johnny Chend68e1192009-12-15 17:24:14 +00001346defm t2SXTAH : T2I_bin_rrot<0b000, "sxtah",
Evan Chengd27c9fc2009-07-03 01:43:10 +00001347 BinOpFrag<(add node:$LHS, (sext_inreg node:$RHS,i16))>>;
Johnny Chen93042d12010-03-02 18:14:57 +00001348defm t2SXTAB16 : T2I_bin_rrot_DO<0b010, "sxtab16">;
Evan Chengd27c9fc2009-07-03 01:43:10 +00001349
Johnny Chen93042d12010-03-02 18:14:57 +00001350// TODO: SXT(A){B|H}16 - done for disassembly only
Evan Chengd27c9fc2009-07-03 01:43:10 +00001351
1352// Zero extenders
1353
1354let AddedComplexity = 16 in {
Johnny Chend68e1192009-12-15 17:24:14 +00001355defm t2UXTB : T2I_unary_rrot<0b101, "uxtb",
1356 UnOpFrag<(and node:$Src, 0x000000FF)>>;
1357defm t2UXTH : T2I_unary_rrot<0b001, "uxth",
1358 UnOpFrag<(and node:$Src, 0x0000FFFF)>>;
Eli Friedman761fa7a2010-06-24 18:20:04 +00001359defm t2UXTB16 : T2I_unary_rrot_uxtb16<0b011, "uxtb16",
Johnny Chend68e1192009-12-15 17:24:14 +00001360 UnOpFrag<(and node:$Src, 0x00FF00FF)>>;
Evan Chengd27c9fc2009-07-03 01:43:10 +00001361
Jim Grosbach79464942010-07-28 23:17:45 +00001362// FIXME: This pattern incorrectly assumes the shl operator is a rotate.
1363// The transformation should probably be done as a combiner action
1364// instead so we can include a check for masking back in the upper
1365// eight bits of the source into the lower eight bits of the result.
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001366//def : T2Pat<(and (shl rGPR:$Src, (i32 8)), 0xFF00FF),
1367// (t2UXTB16r_rot rGPR:$Src, 24)>, Requires<[HasT2ExtractPack]>;
1368def : T2Pat<(and (srl rGPR:$Src, (i32 8)), 0xFF00FF),
1369 (t2UXTB16r_rot rGPR:$Src, 8)>, Requires<[HasT2ExtractPack]>;
Evan Chengd27c9fc2009-07-03 01:43:10 +00001370
Johnny Chend68e1192009-12-15 17:24:14 +00001371defm t2UXTAB : T2I_bin_rrot<0b101, "uxtab",
Jim Grosbach6935efc2009-11-24 00:20:27 +00001372 BinOpFrag<(add node:$LHS, (and node:$RHS, 0x00FF))>>;
Johnny Chend68e1192009-12-15 17:24:14 +00001373defm t2UXTAH : T2I_bin_rrot<0b001, "uxtah",
Jim Grosbach6935efc2009-11-24 00:20:27 +00001374 BinOpFrag<(add node:$LHS, (and node:$RHS, 0xFFFF))>>;
Johnny Chen93042d12010-03-02 18:14:57 +00001375defm t2UXTAB16 : T2I_bin_rrot_DO<0b011, "uxtab16">;
Evan Chengd27c9fc2009-07-03 01:43:10 +00001376}
1377
1378//===----------------------------------------------------------------------===//
Anton Korobeynikov52237112009-06-17 18:13:58 +00001379// Arithmetic Instructions.
1380//
Anton Korobeynikov52237112009-06-17 18:13:58 +00001381
Johnny Chend68e1192009-12-15 17:24:14 +00001382defm t2ADD : T2I_bin_ii12rs<0b000, "add",
1383 BinOpFrag<(add node:$LHS, node:$RHS)>, 1>;
1384defm t2SUB : T2I_bin_ii12rs<0b101, "sub",
1385 BinOpFrag<(sub node:$LHS, node:$RHS)>>;
Anton Korobeynikov52237112009-06-17 18:13:58 +00001386
Evan Chengf49810c2009-06-23 17:48:47 +00001387// ADD and SUB with 's' bit set. No 12-bit immediate (T4) variants.
Johnny Chend68e1192009-12-15 17:24:14 +00001388defm t2ADDS : T2I_bin_s_irs <0b1000, "add",
1389 BinOpFrag<(addc node:$LHS, node:$RHS)>, 1>;
1390defm t2SUBS : T2I_bin_s_irs <0b1101, "sub",
1391 BinOpFrag<(subc node:$LHS, node:$RHS)>>;
Anton Korobeynikov52237112009-06-17 18:13:58 +00001392
Johnny Chend68e1192009-12-15 17:24:14 +00001393defm t2ADC : T2I_adde_sube_irs<0b1010, "adc",
Jim Grosbach39be8fc2010-02-16 20:42:29 +00001394 BinOpFrag<(adde_dead_carry node:$LHS, node:$RHS)>, 1>;
Johnny Chend68e1192009-12-15 17:24:14 +00001395defm t2SBC : T2I_adde_sube_irs<0b1011, "sbc",
Jim Grosbach39be8fc2010-02-16 20:42:29 +00001396 BinOpFrag<(sube_dead_carry node:$LHS, node:$RHS)>>;
Johnny Chenb5031ad2010-03-02 19:38:59 +00001397defm t2ADCS : T2I_adde_sube_s_irs<0b1010, "adc",
Jim Grosbach39be8fc2010-02-16 20:42:29 +00001398 BinOpFrag<(adde_live_carry node:$LHS, node:$RHS)>, 1>;
Johnny Chenb5031ad2010-03-02 19:38:59 +00001399defm t2SBCS : T2I_adde_sube_s_irs<0b1011, "sbc",
Jim Grosbach39be8fc2010-02-16 20:42:29 +00001400 BinOpFrag<(sube_live_carry node:$LHS, node:$RHS)>>;
Evan Chengf49810c2009-06-23 17:48:47 +00001401
David Goodwin752aa7d2009-07-27 16:39:05 +00001402// RSB
Bob Wilson20d8e4e2010-08-13 23:24:25 +00001403defm t2RSB : T2I_rbin_irs <0b1110, "rsb",
Johnny Chend68e1192009-12-15 17:24:14 +00001404 BinOpFrag<(sub node:$LHS, node:$RHS)>>;
1405defm t2RSBS : T2I_rbin_s_is <0b1110, "rsb",
1406 BinOpFrag<(subc node:$LHS, node:$RHS)>>;
Evan Chengf49810c2009-06-23 17:48:47 +00001407
1408// (sub X, imm) gets canonicalized to (add X, -imm). Match this form.
Jim Grosbach502e0aa2010-07-14 17:45:16 +00001409// The assume-no-carry-in form uses the negation of the input since add/sub
1410// assume opposite meanings of the carry flag (i.e., carry == !borrow).
1411// See the definition of AddWithCarry() in the ARM ARM A2.2.1 for the gory
1412// details.
1413// The AddedComplexity preferences the first variant over the others since
1414// it can be shrunk to a 16-bit wide encoding, while the others cannot.
Evan Chengfa2ea1a2009-08-04 01:41:15 +00001415let AddedComplexity = 1 in
Jim Grosbach502e0aa2010-07-14 17:45:16 +00001416def : T2Pat<(add GPR:$src, imm0_255_neg:$imm),
1417 (t2SUBri GPR:$src, imm0_255_neg:$imm)>;
1418def : T2Pat<(add GPR:$src, t2_so_imm_neg:$imm),
1419 (t2SUBri GPR:$src, t2_so_imm_neg:$imm)>;
1420def : T2Pat<(add GPR:$src, imm0_4095_neg:$imm),
1421 (t2SUBri12 GPR:$src, imm0_4095_neg:$imm)>;
1422let AddedComplexity = 1 in
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001423def : T2Pat<(addc rGPR:$src, imm0_255_neg:$imm),
1424 (t2SUBSri rGPR:$src, imm0_255_neg:$imm)>;
1425def : T2Pat<(addc rGPR:$src, t2_so_imm_neg:$imm),
1426 (t2SUBSri rGPR:$src, t2_so_imm_neg:$imm)>;
Jim Grosbach502e0aa2010-07-14 17:45:16 +00001427// The with-carry-in form matches bitwise not instead of the negation.
1428// Effectively, the inverse interpretation of the carry flag already accounts
1429// for part of the negation.
1430let AddedComplexity = 1 in
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001431def : T2Pat<(adde rGPR:$src, imm0_255_not:$imm),
1432 (t2SBCSri rGPR:$src, imm0_255_not:$imm)>;
1433def : T2Pat<(adde rGPR:$src, t2_so_imm_not:$imm),
1434 (t2SBCSri rGPR:$src, t2_so_imm_not:$imm)>;
Anton Korobeynikov52237112009-06-17 18:13:58 +00001435
Johnny Chen93042d12010-03-02 18:14:57 +00001436// Select Bytes -- for disassembly only
1437
1438def t2SEL : T2I<(outs GPR:$dst), (ins GPR:$a, GPR:$b), NoItinerary, "sel",
1439 "\t$dst, $a, $b", []> {
1440 let Inst{31-27} = 0b11111;
1441 let Inst{26-24} = 0b010;
1442 let Inst{23} = 0b1;
1443 let Inst{22-20} = 0b010;
1444 let Inst{15-12} = 0b1111;
1445 let Inst{7} = 0b1;
1446 let Inst{6-4} = 0b000;
1447}
1448
Johnny Chenadc77332010-02-26 22:04:29 +00001449// A6.3.13, A6.3.14, A6.3.15 Parallel addition and subtraction (signed/unsigned)
1450// And Miscellaneous operations -- for disassembly only
Nate Begeman692433b2010-07-29 17:56:55 +00001451class T2I_pam<bits<3> op22_20, bits<4> op7_4, string opc,
1452 list<dag> pat = [/* For disassembly only; pattern left blank */]>
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001453 : T2I<(outs rGPR:$dst), (ins rGPR:$a, rGPR:$b), NoItinerary, opc,
Nate Begeman692433b2010-07-29 17:56:55 +00001454 "\t$dst, $a, $b", pat> {
Johnny Chenadc77332010-02-26 22:04:29 +00001455 let Inst{31-27} = 0b11111;
1456 let Inst{26-23} = 0b0101;
1457 let Inst{22-20} = op22_20;
1458 let Inst{15-12} = 0b1111;
1459 let Inst{7-4} = op7_4;
1460}
1461
1462// Saturating add/subtract -- for disassembly only
1463
Nate Begeman692433b2010-07-29 17:56:55 +00001464def t2QADD : T2I_pam<0b000, 0b1000, "qadd",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001465 [(set rGPR:$dst, (int_arm_qadd rGPR:$a, rGPR:$b))]>;
Johnny Chenadc77332010-02-26 22:04:29 +00001466def t2QADD16 : T2I_pam<0b001, 0b0001, "qadd16">;
1467def t2QADD8 : T2I_pam<0b000, 0b0001, "qadd8">;
1468def t2QASX : T2I_pam<0b010, 0b0001, "qasx">;
1469def t2QDADD : T2I_pam<0b000, 0b1001, "qdadd">;
1470def t2QDSUB : T2I_pam<0b000, 0b1011, "qdsub">;
1471def t2QSAX : T2I_pam<0b110, 0b0001, "qsax">;
Nate Begeman692433b2010-07-29 17:56:55 +00001472def t2QSUB : T2I_pam<0b000, 0b1010, "qsub",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001473 [(set rGPR:$dst, (int_arm_qsub rGPR:$a, rGPR:$b))]>;
Johnny Chenadc77332010-02-26 22:04:29 +00001474def t2QSUB16 : T2I_pam<0b101, 0b0001, "qsub16">;
1475def t2QSUB8 : T2I_pam<0b100, 0b0001, "qsub8">;
1476def t2UQADD16 : T2I_pam<0b001, 0b0101, "uqadd16">;
1477def t2UQADD8 : T2I_pam<0b000, 0b0101, "uqadd8">;
1478def t2UQASX : T2I_pam<0b010, 0b0101, "uqasx">;
1479def t2UQSAX : T2I_pam<0b110, 0b0101, "uqsax">;
1480def t2UQSUB16 : T2I_pam<0b101, 0b0101, "uqsub16">;
1481def t2UQSUB8 : T2I_pam<0b100, 0b0101, "uqsub8">;
1482
1483// Signed/Unsigned add/subtract -- for disassembly only
1484
1485def t2SASX : T2I_pam<0b010, 0b0000, "sasx">;
1486def t2SADD16 : T2I_pam<0b001, 0b0000, "sadd16">;
1487def t2SADD8 : T2I_pam<0b000, 0b0000, "sadd8">;
1488def t2SSAX : T2I_pam<0b110, 0b0000, "ssax">;
1489def t2SSUB16 : T2I_pam<0b101, 0b0000, "ssub16">;
1490def t2SSUB8 : T2I_pam<0b100, 0b0000, "ssub8">;
1491def t2UASX : T2I_pam<0b010, 0b0100, "uasx">;
1492def t2UADD16 : T2I_pam<0b001, 0b0100, "uadd16">;
1493def t2UADD8 : T2I_pam<0b000, 0b0100, "uadd8">;
1494def t2USAX : T2I_pam<0b110, 0b0100, "usax">;
1495def t2USUB16 : T2I_pam<0b101, 0b0100, "usub16">;
1496def t2USUB8 : T2I_pam<0b100, 0b0100, "usub8">;
1497
1498// Signed/Unsigned halving add/subtract -- for disassembly only
1499
1500def t2SHASX : T2I_pam<0b010, 0b0010, "shasx">;
1501def t2SHADD16 : T2I_pam<0b001, 0b0010, "shadd16">;
1502def t2SHADD8 : T2I_pam<0b000, 0b0010, "shadd8">;
1503def t2SHSAX : T2I_pam<0b110, 0b0010, "shsax">;
1504def t2SHSUB16 : T2I_pam<0b101, 0b0010, "shsub16">;
1505def t2SHSUB8 : T2I_pam<0b100, 0b0010, "shsub8">;
1506def t2UHASX : T2I_pam<0b010, 0b0110, "uhasx">;
1507def t2UHADD16 : T2I_pam<0b001, 0b0110, "uhadd16">;
1508def t2UHADD8 : T2I_pam<0b000, 0b0110, "uhadd8">;
1509def t2UHSAX : T2I_pam<0b110, 0b0110, "uhsax">;
1510def t2UHSUB16 : T2I_pam<0b101, 0b0110, "uhsub16">;
1511def t2UHSUB8 : T2I_pam<0b100, 0b0110, "uhsub8">;
1512
1513// Unsigned Sum of Absolute Differences [and Accumulate] -- for disassembly only
1514
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001515def t2USAD8 : T2I_mac<0, 0b111, 0b0000, (outs rGPR:$dst),
1516 (ins rGPR:$a, rGPR:$b),
Johnny Chenadc77332010-02-26 22:04:29 +00001517 NoItinerary, "usad8", "\t$dst, $a, $b", []> {
1518 let Inst{15-12} = 0b1111;
1519}
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001520def t2USADA8 : T2I_mac<0, 0b111, 0b0000, (outs rGPR:$dst),
1521 (ins rGPR:$a, rGPR:$b, rGPR:$acc), NoItinerary, "usada8",
Johnny Chenadc77332010-02-26 22:04:29 +00001522 "\t$dst, $a, $b, $acc", []>;
1523
1524// Signed/Unsigned saturate -- for disassembly only
1525
Bob Wilson22f5dc72010-08-16 18:27:34 +00001526def t2SSAT: T2I<(outs rGPR:$dst), (ins i32imm:$bit_pos, rGPR:$a, shift_imm:$sh),
Bob Wilson38aa2872010-08-13 21:48:10 +00001527 NoItinerary, "ssat", "\t$dst, $bit_pos, $a$sh",
1528 [/* For disassembly only; pattern left blank */]> {
Johnny Chenadc77332010-02-26 22:04:29 +00001529 let Inst{31-27} = 0b11110;
1530 let Inst{25-22} = 0b1100;
1531 let Inst{20} = 0;
1532 let Inst{15} = 0;
Johnny Chenadc77332010-02-26 22:04:29 +00001533}
1534
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001535def t2SSAT16: T2I<(outs rGPR:$dst), (ins i32imm:$bit_pos, rGPR:$a), NoItinerary,
Johnny Chenadc77332010-02-26 22:04:29 +00001536 "ssat16", "\t$dst, $bit_pos, $a",
1537 [/* For disassembly only; pattern left blank */]> {
1538 let Inst{31-27} = 0b11110;
1539 let Inst{25-22} = 0b1100;
1540 let Inst{20} = 0;
1541 let Inst{15} = 0;
1542 let Inst{21} = 1; // sh = '1'
1543 let Inst{14-12} = 0b000; // imm3 = '000'
1544 let Inst{7-6} = 0b00; // imm2 = '00'
1545}
1546
Bob Wilson22f5dc72010-08-16 18:27:34 +00001547def t2USAT: T2I<(outs rGPR:$dst), (ins i32imm:$bit_pos, rGPR:$a, shift_imm:$sh),
Bob Wilson38aa2872010-08-13 21:48:10 +00001548 NoItinerary, "usat", "\t$dst, $bit_pos, $a$sh",
1549 [/* For disassembly only; pattern left blank */]> {
Johnny Chenadc77332010-02-26 22:04:29 +00001550 let Inst{31-27} = 0b11110;
1551 let Inst{25-22} = 0b1110;
1552 let Inst{20} = 0;
1553 let Inst{15} = 0;
Johnny Chenadc77332010-02-26 22:04:29 +00001554}
1555
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001556def t2USAT16: T2I<(outs rGPR:$dst), (ins i32imm:$bit_pos, rGPR:$a), NoItinerary,
Johnny Chenadc77332010-02-26 22:04:29 +00001557 "usat16", "\t$dst, $bit_pos, $a",
1558 [/* For disassembly only; pattern left blank */]> {
1559 let Inst{31-27} = 0b11110;
1560 let Inst{25-22} = 0b1110;
1561 let Inst{20} = 0;
1562 let Inst{15} = 0;
1563 let Inst{21} = 1; // sh = '1'
1564 let Inst{14-12} = 0b000; // imm3 = '000'
1565 let Inst{7-6} = 0b00; // imm2 = '00'
1566}
Anton Korobeynikov52237112009-06-17 18:13:58 +00001567
Bob Wilson38aa2872010-08-13 21:48:10 +00001568def : T2Pat<(int_arm_ssat GPR:$a, imm:$pos), (t2SSAT imm:$pos, GPR:$a, 0)>;
1569def : T2Pat<(int_arm_usat GPR:$a, imm:$pos), (t2USAT imm:$pos, GPR:$a, 0)>;
Nate Begeman0e0a20e2010-07-29 22:48:09 +00001570
Evan Chengf49810c2009-06-23 17:48:47 +00001571//===----------------------------------------------------------------------===//
Evan Chenga67efd12009-06-23 19:39:13 +00001572// Shift and rotate Instructions.
1573//
1574
Johnny Chend68e1192009-12-15 17:24:14 +00001575defm t2LSL : T2I_sh_ir<0b00, "lsl", BinOpFrag<(shl node:$LHS, node:$RHS)>>;
1576defm t2LSR : T2I_sh_ir<0b01, "lsr", BinOpFrag<(srl node:$LHS, node:$RHS)>>;
1577defm t2ASR : T2I_sh_ir<0b10, "asr", BinOpFrag<(sra node:$LHS, node:$RHS)>>;
1578defm t2ROR : T2I_sh_ir<0b11, "ror", BinOpFrag<(rotr node:$LHS, node:$RHS)>>;
Evan Chenga67efd12009-06-23 19:39:13 +00001579
David Goodwinca01a8d2009-09-01 18:32:09 +00001580let Uses = [CPSR] in {
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001581def t2MOVrx : T2sI<(outs rGPR:$dst), (ins rGPR:$src), IIC_iMOVsi,
Evan Cheng699beba2009-10-27 00:08:59 +00001582 "rrx", "\t$dst, $src",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001583 [(set rGPR:$dst, (ARMrrx rGPR:$src))]> {
Johnny Chend68e1192009-12-15 17:24:14 +00001584 let Inst{31-27} = 0b11101;
1585 let Inst{26-25} = 0b01;
1586 let Inst{24-21} = 0b0010;
1587 let Inst{20} = ?; // The S bit.
1588 let Inst{19-16} = 0b1111; // Rn
1589 let Inst{14-12} = 0b000;
1590 let Inst{7-4} = 0b0011;
1591}
David Goodwinca01a8d2009-09-01 18:32:09 +00001592}
Evan Chenga67efd12009-06-23 19:39:13 +00001593
David Goodwin3583df72009-07-28 17:06:49 +00001594let Defs = [CPSR] in {
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001595def t2MOVsrl_flag : T2I<(outs rGPR:$dst), (ins rGPR:$src), IIC_iMOVsi,
Bob Wilsona85df802010-05-25 04:51:47 +00001596 "lsrs", ".w\t$dst, $src, #1",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001597 [(set rGPR:$dst, (ARMsrl_flag rGPR:$src))]> {
Johnny Chend68e1192009-12-15 17:24:14 +00001598 let Inst{31-27} = 0b11101;
1599 let Inst{26-25} = 0b01;
1600 let Inst{24-21} = 0b0010;
1601 let Inst{20} = 1; // The S bit.
1602 let Inst{19-16} = 0b1111; // Rn
1603 let Inst{5-4} = 0b01; // Shift type.
1604 // Shift amount = Inst{14-12:7-6} = 1.
1605 let Inst{14-12} = 0b000;
1606 let Inst{7-6} = 0b01;
1607}
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001608def t2MOVsra_flag : T2I<(outs rGPR:$dst), (ins rGPR:$src), IIC_iMOVsi,
Bob Wilsona85df802010-05-25 04:51:47 +00001609 "asrs", ".w\t$dst, $src, #1",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001610 [(set rGPR:$dst, (ARMsra_flag rGPR:$src))]> {
Johnny Chend68e1192009-12-15 17:24:14 +00001611 let Inst{31-27} = 0b11101;
1612 let Inst{26-25} = 0b01;
1613 let Inst{24-21} = 0b0010;
1614 let Inst{20} = 1; // The S bit.
1615 let Inst{19-16} = 0b1111; // Rn
1616 let Inst{5-4} = 0b10; // Shift type.
1617 // Shift amount = Inst{14-12:7-6} = 1.
1618 let Inst{14-12} = 0b000;
1619 let Inst{7-6} = 0b01;
1620}
David Goodwin3583df72009-07-28 17:06:49 +00001621}
1622
Evan Chenga67efd12009-06-23 19:39:13 +00001623//===----------------------------------------------------------------------===//
Evan Chengf49810c2009-06-23 17:48:47 +00001624// Bitwise Instructions.
1625//
Anton Korobeynikov52237112009-06-17 18:13:58 +00001626
Johnny Chend68e1192009-12-15 17:24:14 +00001627defm t2AND : T2I_bin_w_irs<0b0000, "and",
1628 BinOpFrag<(and node:$LHS, node:$RHS)>, 1>;
1629defm t2ORR : T2I_bin_w_irs<0b0010, "orr",
1630 BinOpFrag<(or node:$LHS, node:$RHS)>, 1>;
1631defm t2EOR : T2I_bin_w_irs<0b0100, "eor",
1632 BinOpFrag<(xor node:$LHS, node:$RHS)>, 1>;
Evan Chengf49810c2009-06-23 17:48:47 +00001633
Johnny Chend68e1192009-12-15 17:24:14 +00001634defm t2BIC : T2I_bin_w_irs<0b0001, "bic",
1635 BinOpFrag<(and node:$LHS, (not node:$RHS))>>;
Evan Chengf49810c2009-06-23 17:48:47 +00001636
Evan Chengf49810c2009-06-23 17:48:47 +00001637let Constraints = "$src = $dst" in
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001638def t2BFC : T2I<(outs rGPR:$dst), (ins rGPR:$src, bf_inv_mask_imm:$imm),
David Goodwin2f54a2f2009-11-02 17:28:36 +00001639 IIC_iUNAsi, "bfc", "\t$dst, $imm",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001640 [(set rGPR:$dst, (and rGPR:$src, bf_inv_mask_imm:$imm))]> {
Johnny Chend68e1192009-12-15 17:24:14 +00001641 let Inst{31-27} = 0b11110;
1642 let Inst{25} = 1;
1643 let Inst{24-20} = 0b10110;
1644 let Inst{19-16} = 0b1111; // Rn
1645 let Inst{15} = 0;
1646}
Evan Chengf49810c2009-06-23 17:48:47 +00001647
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001648def t2SBFX: T2I<(outs rGPR:$dst), (ins rGPR:$src, imm0_31:$lsb, imm0_31:$width),
Johnny Chend68e1192009-12-15 17:24:14 +00001649 IIC_iALUi, "sbfx", "\t$dst, $src, $lsb, $width", []> {
1650 let Inst{31-27} = 0b11110;
1651 let Inst{25} = 1;
1652 let Inst{24-20} = 0b10100;
1653 let Inst{15} = 0;
1654}
Sandeep Patel47eedaa2009-10-13 18:59:48 +00001655
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001656def t2UBFX: T2I<(outs rGPR:$dst), (ins rGPR:$src, imm0_31:$lsb, imm0_31:$width),
Johnny Chend68e1192009-12-15 17:24:14 +00001657 IIC_iALUi, "ubfx", "\t$dst, $src, $lsb, $width", []> {
1658 let Inst{31-27} = 0b11110;
1659 let Inst{25} = 1;
1660 let Inst{24-20} = 0b11100;
1661 let Inst{15} = 0;
1662}
Sandeep Patel47eedaa2009-10-13 18:59:48 +00001663
Johnny Chen9474d552010-02-02 19:31:58 +00001664// A8.6.18 BFI - Bitfield insert (Encoding T1)
Jim Grosbach469bbdb2010-07-16 23:05:05 +00001665let Constraints = "$src = $dst" in
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001666def t2BFI : T2I<(outs rGPR:$dst),
1667 (ins rGPR:$src, rGPR:$val, bf_inv_mask_imm:$imm),
Jim Grosbach469bbdb2010-07-16 23:05:05 +00001668 IIC_iALUi, "bfi", "\t$dst, $val, $imm",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001669 [(set rGPR:$dst, (ARMbfi rGPR:$src, rGPR:$val,
Jim Grosbach469bbdb2010-07-16 23:05:05 +00001670 bf_inv_mask_imm:$imm))]> {
Johnny Chen9474d552010-02-02 19:31:58 +00001671 let Inst{31-27} = 0b11110;
1672 let Inst{25} = 1;
1673 let Inst{24-20} = 0b10110;
1674 let Inst{15} = 0;
1675}
Evan Chengf49810c2009-06-23 17:48:47 +00001676
Johnny Chend68e1192009-12-15 17:24:14 +00001677defm t2ORN : T2I_bin_irs<0b0011, "orn", BinOpFrag<(or node:$LHS,
1678 (not node:$RHS))>>;
Evan Cheng36a0aeb2009-07-06 22:23:46 +00001679
1680// Prefer over of t2EORri ra, rb, -1 because mvn has 16-bit version
1681let AddedComplexity = 1 in
Johnny Chend68e1192009-12-15 17:24:14 +00001682defm t2MVN : T2I_un_irs <0b0011, "mvn", UnOpFrag<(not node:$Src)>, 1, 1>;
Evan Cheng36a0aeb2009-07-06 22:23:46 +00001683
1684
Jim Grosbachf084a5e2010-07-20 16:07:04 +00001685let AddedComplexity = 1 in
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001686def : T2Pat<(and rGPR:$src, t2_so_imm_not:$imm),
1687 (t2BICri rGPR:$src, t2_so_imm_not:$imm)>;
Evan Cheng36a0aeb2009-07-06 22:23:46 +00001688
Evan Cheng25f7cfc2009-08-01 06:13:52 +00001689// FIXME: Disable this pattern on Darwin to workaround an assembler bug.
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001690def : T2Pat<(or rGPR:$src, t2_so_imm_not:$imm),
1691 (t2ORNri rGPR:$src, t2_so_imm_not:$imm)>,
Evan Chengea253b92009-08-12 01:56:42 +00001692 Requires<[IsThumb2]>;
Evan Cheng36a0aeb2009-07-06 22:23:46 +00001693
1694def : T2Pat<(t2_so_imm_not:$src),
1695 (t2MVNi t2_so_imm_not:$src)>;
1696
Evan Chengf49810c2009-06-23 17:48:47 +00001697//===----------------------------------------------------------------------===//
1698// Multiply Instructions.
1699//
Evan Cheng8de898a2009-06-26 00:19:44 +00001700let isCommutable = 1 in
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001701def t2MUL: T2I<(outs rGPR:$dst), (ins rGPR:$a, rGPR:$b), IIC_iMUL32,
Evan Cheng699beba2009-10-27 00:08:59 +00001702 "mul", "\t$dst, $a, $b",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001703 [(set rGPR:$dst, (mul rGPR:$a, rGPR:$b))]> {
Johnny Chend68e1192009-12-15 17:24:14 +00001704 let Inst{31-27} = 0b11111;
1705 let Inst{26-23} = 0b0110;
1706 let Inst{22-20} = 0b000;
1707 let Inst{15-12} = 0b1111; // Ra = 0b1111 (no accumulate)
1708 let Inst{7-4} = 0b0000; // Multiply
1709}
Evan Chengf49810c2009-06-23 17:48:47 +00001710
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001711def t2MLA: T2I<(outs rGPR:$dst), (ins rGPR:$a, rGPR:$b, rGPR:$c), IIC_iMAC32,
Evan Cheng699beba2009-10-27 00:08:59 +00001712 "mla", "\t$dst, $a, $b, $c",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001713 [(set rGPR:$dst, (add (mul rGPR:$a, rGPR:$b), rGPR:$c))]> {
Johnny Chend68e1192009-12-15 17:24:14 +00001714 let Inst{31-27} = 0b11111;
1715 let Inst{26-23} = 0b0110;
1716 let Inst{22-20} = 0b000;
1717 let Inst{15-12} = {?, ?, ?, ?}; // Ra
1718 let Inst{7-4} = 0b0000; // Multiply
1719}
Evan Chengf49810c2009-06-23 17:48:47 +00001720
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001721def t2MLS: T2I<(outs rGPR:$dst), (ins rGPR:$a, rGPR:$b, rGPR:$c), IIC_iMAC32,
Evan Cheng699beba2009-10-27 00:08:59 +00001722 "mls", "\t$dst, $a, $b, $c",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001723 [(set rGPR:$dst, (sub rGPR:$c, (mul rGPR:$a, rGPR:$b)))]> {
Johnny Chend68e1192009-12-15 17:24:14 +00001724 let Inst{31-27} = 0b11111;
1725 let Inst{26-23} = 0b0110;
1726 let Inst{22-20} = 0b000;
1727 let Inst{15-12} = {?, ?, ?, ?}; // Ra
1728 let Inst{7-4} = 0b0001; // Multiply and Subtract
1729}
Evan Chengf49810c2009-06-23 17:48:47 +00001730
Evan Cheng5b9fcd12009-07-07 01:17:28 +00001731// Extra precision multiplies with low / high results
1732let neverHasSideEffects = 1 in {
1733let isCommutable = 1 in {
Jim Grosbachc5ed0132010-08-17 18:39:16 +00001734def t2SMULL : T2I<(outs rGPR:$ldst, rGPR:$hdst),
1735 (ins rGPR:$a, rGPR:$b), IIC_iMUL64,
Johnny Chend68e1192009-12-15 17:24:14 +00001736 "smull", "\t$ldst, $hdst, $a, $b", []> {
1737 let Inst{31-27} = 0b11111;
1738 let Inst{26-23} = 0b0111;
1739 let Inst{22-20} = 0b000;
1740 let Inst{7-4} = 0b0000;
1741}
Evan Cheng5b9fcd12009-07-07 01:17:28 +00001742
Jim Grosbachc5ed0132010-08-17 18:39:16 +00001743def t2UMULL : T2I<(outs rGPR:$ldst, rGPR:$hdst),
1744 (ins rGPR:$a, rGPR:$b), IIC_iMUL64,
Johnny Chend68e1192009-12-15 17:24:14 +00001745 "umull", "\t$ldst, $hdst, $a, $b", []> {
1746 let Inst{31-27} = 0b11111;
1747 let Inst{26-23} = 0b0111;
1748 let Inst{22-20} = 0b010;
1749 let Inst{7-4} = 0b0000;
Evan Cheng5b9fcd12009-07-07 01:17:28 +00001750}
Johnny Chend68e1192009-12-15 17:24:14 +00001751} // isCommutable
Evan Cheng5b9fcd12009-07-07 01:17:28 +00001752
1753// Multiply + accumulate
Jim Grosbachc5ed0132010-08-17 18:39:16 +00001754def t2SMLAL : T2I<(outs rGPR:$ldst, rGPR:$hdst),
1755 (ins rGPR:$a, rGPR:$b), IIC_iMAC64,
Johnny Chend68e1192009-12-15 17:24:14 +00001756 "smlal", "\t$ldst, $hdst, $a, $b", []>{
1757 let Inst{31-27} = 0b11111;
1758 let Inst{26-23} = 0b0111;
1759 let Inst{22-20} = 0b100;
1760 let Inst{7-4} = 0b0000;
1761}
Evan Cheng5b9fcd12009-07-07 01:17:28 +00001762
Jim Grosbachc5ed0132010-08-17 18:39:16 +00001763def t2UMLAL : T2I<(outs rGPR:$ldst, rGPR:$hdst),
1764 (ins rGPR:$a, rGPR:$b), IIC_iMAC64,
Johnny Chend68e1192009-12-15 17:24:14 +00001765 "umlal", "\t$ldst, $hdst, $a, $b", []>{
1766 let Inst{31-27} = 0b11111;
1767 let Inst{26-23} = 0b0111;
1768 let Inst{22-20} = 0b110;
1769 let Inst{7-4} = 0b0000;
1770}
Evan Cheng5b9fcd12009-07-07 01:17:28 +00001771
Jim Grosbachc5ed0132010-08-17 18:39:16 +00001772def t2UMAAL : T2I<(outs rGPR:$ldst, rGPR:$hdst),
1773 (ins rGPR:$a, rGPR:$b), IIC_iMAC64,
Johnny Chend68e1192009-12-15 17:24:14 +00001774 "umaal", "\t$ldst, $hdst, $a, $b", []>{
1775 let Inst{31-27} = 0b11111;
1776 let Inst{26-23} = 0b0111;
1777 let Inst{22-20} = 0b110;
1778 let Inst{7-4} = 0b0110;
1779}
Evan Cheng5b9fcd12009-07-07 01:17:28 +00001780} // neverHasSideEffects
1781
Johnny Chen93042d12010-03-02 18:14:57 +00001782// Rounding variants of the below included for disassembly only
1783
Evan Cheng5b9fcd12009-07-07 01:17:28 +00001784// Most significant word multiply
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001785def t2SMMUL : T2I<(outs rGPR:$dst), (ins rGPR:$a, rGPR:$b), IIC_iMUL32,
Evan Cheng699beba2009-10-27 00:08:59 +00001786 "smmul", "\t$dst, $a, $b",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001787 [(set rGPR:$dst, (mulhs rGPR:$a, rGPR:$b))]> {
Johnny Chend68e1192009-12-15 17:24:14 +00001788 let Inst{31-27} = 0b11111;
1789 let Inst{26-23} = 0b0110;
1790 let Inst{22-20} = 0b101;
1791 let Inst{15-12} = 0b1111; // Ra = 0b1111 (no accumulate)
1792 let Inst{7-4} = 0b0000; // No Rounding (Inst{4} = 0)
1793}
Evan Cheng5b9fcd12009-07-07 01:17:28 +00001794
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001795def t2SMMULR : T2I<(outs rGPR:$dst), (ins rGPR:$a, rGPR:$b), IIC_iMUL32,
Johnny Chen93042d12010-03-02 18:14:57 +00001796 "smmulr", "\t$dst, $a, $b", []> {
1797 let Inst{31-27} = 0b11111;
1798 let Inst{26-23} = 0b0110;
1799 let Inst{22-20} = 0b101;
1800 let Inst{15-12} = 0b1111; // Ra = 0b1111 (no accumulate)
1801 let Inst{7-4} = 0b0001; // Rounding (Inst{4} = 1)
1802}
1803
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001804def t2SMMLA : T2I<(outs rGPR:$dst), (ins rGPR:$a, rGPR:$b, rGPR:$c), IIC_iMAC32,
Evan Cheng699beba2009-10-27 00:08:59 +00001805 "smmla", "\t$dst, $a, $b, $c",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001806 [(set rGPR:$dst, (add (mulhs rGPR:$a, rGPR:$b), rGPR:$c))]> {
Johnny Chend68e1192009-12-15 17:24:14 +00001807 let Inst{31-27} = 0b11111;
1808 let Inst{26-23} = 0b0110;
1809 let Inst{22-20} = 0b101;
1810 let Inst{15-12} = {?, ?, ?, ?}; // Ra
1811 let Inst{7-4} = 0b0000; // No Rounding (Inst{4} = 0)
1812}
Evan Cheng5b9fcd12009-07-07 01:17:28 +00001813
Jim Grosbachc5ed0132010-08-17 18:39:16 +00001814def t2SMMLAR: T2I<(outs rGPR:$dst), (ins rGPR:$a, rGPR:$b, rGPR:$c), IIC_iMAC32,
Johnny Chen93042d12010-03-02 18:14:57 +00001815 "smmlar", "\t$dst, $a, $b, $c", []> {
1816 let Inst{31-27} = 0b11111;
1817 let Inst{26-23} = 0b0110;
1818 let Inst{22-20} = 0b101;
1819 let Inst{15-12} = {?, ?, ?, ?}; // Ra
1820 let Inst{7-4} = 0b0001; // Rounding (Inst{4} = 1)
1821}
Evan Cheng5b9fcd12009-07-07 01:17:28 +00001822
Jim Grosbachc5ed0132010-08-17 18:39:16 +00001823def t2SMMLS: T2I <(outs rGPR:$dst), (ins rGPR:$a, rGPR:$b, rGPR:$c), IIC_iMAC32,
Evan Cheng699beba2009-10-27 00:08:59 +00001824 "smmls", "\t$dst, $a, $b, $c",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001825 [(set rGPR:$dst, (sub rGPR:$c, (mulhs rGPR:$a, rGPR:$b)))]> {
Johnny Chend68e1192009-12-15 17:24:14 +00001826 let Inst{31-27} = 0b11111;
1827 let Inst{26-23} = 0b0110;
1828 let Inst{22-20} = 0b110;
1829 let Inst{15-12} = {?, ?, ?, ?}; // Ra
1830 let Inst{7-4} = 0b0000; // No Rounding (Inst{4} = 0)
1831}
Evan Cheng5b9fcd12009-07-07 01:17:28 +00001832
Jim Grosbachc5ed0132010-08-17 18:39:16 +00001833def t2SMMLSR:T2I <(outs rGPR:$dst), (ins rGPR:$a, rGPR:$b, rGPR:$c), IIC_iMAC32,
Johnny Chen93042d12010-03-02 18:14:57 +00001834 "smmlsr", "\t$dst, $a, $b, $c", []> {
1835 let Inst{31-27} = 0b11111;
1836 let Inst{26-23} = 0b0110;
1837 let Inst{22-20} = 0b110;
1838 let Inst{15-12} = {?, ?, ?, ?}; // Ra
1839 let Inst{7-4} = 0b0001; // Rounding (Inst{4} = 1)
1840}
1841
Evan Cheng5b9fcd12009-07-07 01:17:28 +00001842multiclass T2I_smul<string opc, PatFrag opnode> {
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001843 def BB : T2I<(outs rGPR:$dst), (ins rGPR:$a, rGPR:$b), IIC_iMUL32,
Evan Cheng699beba2009-10-27 00:08:59 +00001844 !strconcat(opc, "bb"), "\t$dst, $a, $b",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001845 [(set rGPR:$dst, (opnode (sext_inreg rGPR:$a, i16),
1846 (sext_inreg rGPR:$b, i16)))]> {
Johnny Chend68e1192009-12-15 17:24:14 +00001847 let Inst{31-27} = 0b11111;
1848 let Inst{26-23} = 0b0110;
1849 let Inst{22-20} = 0b001;
1850 let Inst{15-12} = 0b1111; // Ra = 0b1111 (no accumulate)
1851 let Inst{7-6} = 0b00;
1852 let Inst{5-4} = 0b00;
1853 }
Evan Cheng5b9fcd12009-07-07 01:17:28 +00001854
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001855 def BT : T2I<(outs rGPR:$dst), (ins rGPR:$a, rGPR:$b), IIC_iMUL32,
Evan Cheng699beba2009-10-27 00:08:59 +00001856 !strconcat(opc, "bt"), "\t$dst, $a, $b",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001857 [(set rGPR:$dst, (opnode (sext_inreg rGPR:$a, i16),
1858 (sra rGPR:$b, (i32 16))))]> {
Johnny Chend68e1192009-12-15 17:24:14 +00001859 let Inst{31-27} = 0b11111;
1860 let Inst{26-23} = 0b0110;
1861 let Inst{22-20} = 0b001;
1862 let Inst{15-12} = 0b1111; // Ra = 0b1111 (no accumulate)
1863 let Inst{7-6} = 0b00;
1864 let Inst{5-4} = 0b01;
1865 }
Evan Cheng5b9fcd12009-07-07 01:17:28 +00001866
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001867 def TB : T2I<(outs rGPR:$dst), (ins rGPR:$a, rGPR:$b), IIC_iMUL32,
Evan Cheng699beba2009-10-27 00:08:59 +00001868 !strconcat(opc, "tb"), "\t$dst, $a, $b",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001869 [(set rGPR:$dst, (opnode (sra rGPR:$a, (i32 16)),
1870 (sext_inreg rGPR:$b, i16)))]> {
Johnny Chend68e1192009-12-15 17:24:14 +00001871 let Inst{31-27} = 0b11111;
1872 let Inst{26-23} = 0b0110;
1873 let Inst{22-20} = 0b001;
1874 let Inst{15-12} = 0b1111; // Ra = 0b1111 (no accumulate)
1875 let Inst{7-6} = 0b00;
1876 let Inst{5-4} = 0b10;
1877 }
Evan Cheng5b9fcd12009-07-07 01:17:28 +00001878
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001879 def TT : T2I<(outs rGPR:$dst), (ins rGPR:$a, rGPR:$b), IIC_iMUL32,
Evan Cheng699beba2009-10-27 00:08:59 +00001880 !strconcat(opc, "tt"), "\t$dst, $a, $b",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001881 [(set rGPR:$dst, (opnode (sra rGPR:$a, (i32 16)),
1882 (sra rGPR:$b, (i32 16))))]> {
Johnny Chend68e1192009-12-15 17:24:14 +00001883 let Inst{31-27} = 0b11111;
1884 let Inst{26-23} = 0b0110;
1885 let Inst{22-20} = 0b001;
1886 let Inst{15-12} = 0b1111; // Ra = 0b1111 (no accumulate)
1887 let Inst{7-6} = 0b00;
1888 let Inst{5-4} = 0b11;
1889 }
Evan Cheng5b9fcd12009-07-07 01:17:28 +00001890
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001891 def WB : T2I<(outs rGPR:$dst), (ins rGPR:$a, rGPR:$b), IIC_iMUL16,
Evan Cheng699beba2009-10-27 00:08:59 +00001892 !strconcat(opc, "wb"), "\t$dst, $a, $b",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001893 [(set rGPR:$dst, (sra (opnode rGPR:$a,
1894 (sext_inreg rGPR:$b, i16)), (i32 16)))]> {
Johnny Chend68e1192009-12-15 17:24:14 +00001895 let Inst{31-27} = 0b11111;
1896 let Inst{26-23} = 0b0110;
1897 let Inst{22-20} = 0b011;
1898 let Inst{15-12} = 0b1111; // Ra = 0b1111 (no accumulate)
1899 let Inst{7-6} = 0b00;
1900 let Inst{5-4} = 0b00;
1901 }
Evan Cheng5b9fcd12009-07-07 01:17:28 +00001902
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001903 def WT : T2I<(outs rGPR:$dst), (ins rGPR:$a, rGPR:$b), IIC_iMUL16,
Evan Cheng699beba2009-10-27 00:08:59 +00001904 !strconcat(opc, "wt"), "\t$dst, $a, $b",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001905 [(set rGPR:$dst, (sra (opnode rGPR:$a,
1906 (sra rGPR:$b, (i32 16))), (i32 16)))]> {
Johnny Chend68e1192009-12-15 17:24:14 +00001907 let Inst{31-27} = 0b11111;
1908 let Inst{26-23} = 0b0110;
1909 let Inst{22-20} = 0b011;
1910 let Inst{15-12} = 0b1111; // Ra = 0b1111 (no accumulate)
1911 let Inst{7-6} = 0b00;
1912 let Inst{5-4} = 0b01;
1913 }
Evan Cheng5b9fcd12009-07-07 01:17:28 +00001914}
1915
1916
1917multiclass T2I_smla<string opc, PatFrag opnode> {
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001918 def BB : T2I<(outs rGPR:$dst), (ins rGPR:$a, rGPR:$b, rGPR:$acc), IIC_iMAC16,
Evan Cheng699beba2009-10-27 00:08:59 +00001919 !strconcat(opc, "bb"), "\t$dst, $a, $b, $acc",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001920 [(set rGPR:$dst, (add rGPR:$acc,
1921 (opnode (sext_inreg rGPR:$a, i16),
1922 (sext_inreg rGPR:$b, i16))))]> {
Johnny Chend68e1192009-12-15 17:24:14 +00001923 let Inst{31-27} = 0b11111;
1924 let Inst{26-23} = 0b0110;
1925 let Inst{22-20} = 0b001;
1926 let Inst{15-12} = {?, ?, ?, ?}; // Ra
1927 let Inst{7-6} = 0b00;
1928 let Inst{5-4} = 0b00;
1929 }
Evan Cheng5b9fcd12009-07-07 01:17:28 +00001930
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001931 def BT : T2I<(outs rGPR:$dst), (ins rGPR:$a, rGPR:$b, rGPR:$acc), IIC_iMAC16,
Evan Cheng699beba2009-10-27 00:08:59 +00001932 !strconcat(opc, "bt"), "\t$dst, $a, $b, $acc",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001933 [(set rGPR:$dst, (add rGPR:$acc, (opnode (sext_inreg rGPR:$a, i16),
Jim Grosbachc5ed0132010-08-17 18:39:16 +00001934 (sra rGPR:$b, (i32 16)))))]> {
Johnny Chend68e1192009-12-15 17:24:14 +00001935 let Inst{31-27} = 0b11111;
1936 let Inst{26-23} = 0b0110;
1937 let Inst{22-20} = 0b001;
1938 let Inst{15-12} = {?, ?, ?, ?}; // Ra
1939 let Inst{7-6} = 0b00;
1940 let Inst{5-4} = 0b01;
1941 }
Evan Cheng5b9fcd12009-07-07 01:17:28 +00001942
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001943 def TB : T2I<(outs rGPR:$dst), (ins rGPR:$a, rGPR:$b, rGPR:$acc), IIC_iMAC16,
Evan Cheng699beba2009-10-27 00:08:59 +00001944 !strconcat(opc, "tb"), "\t$dst, $a, $b, $acc",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001945 [(set rGPR:$dst, (add rGPR:$acc, (opnode (sra rGPR:$a, (i32 16)),
Jim Grosbachc5ed0132010-08-17 18:39:16 +00001946 (sext_inreg rGPR:$b, i16))))]> {
Johnny Chend68e1192009-12-15 17:24:14 +00001947 let Inst{31-27} = 0b11111;
1948 let Inst{26-23} = 0b0110;
1949 let Inst{22-20} = 0b001;
1950 let Inst{15-12} = {?, ?, ?, ?}; // Ra
1951 let Inst{7-6} = 0b00;
1952 let Inst{5-4} = 0b10;
1953 }
Evan Cheng5b9fcd12009-07-07 01:17:28 +00001954
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001955 def TT : T2I<(outs rGPR:$dst), (ins rGPR:$a, rGPR:$b, rGPR:$acc), IIC_iMAC16,
Evan Cheng699beba2009-10-27 00:08:59 +00001956 !strconcat(opc, "tt"), "\t$dst, $a, $b, $acc",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001957 [(set rGPR:$dst, (add rGPR:$acc, (opnode (sra rGPR:$a, (i32 16)),
Jim Grosbachc5ed0132010-08-17 18:39:16 +00001958 (sra rGPR:$b, (i32 16)))))]> {
Johnny Chend68e1192009-12-15 17:24:14 +00001959 let Inst{31-27} = 0b11111;
1960 let Inst{26-23} = 0b0110;
1961 let Inst{22-20} = 0b001;
1962 let Inst{15-12} = {?, ?, ?, ?}; // Ra
1963 let Inst{7-6} = 0b00;
1964 let Inst{5-4} = 0b11;
1965 }
Evan Cheng5b9fcd12009-07-07 01:17:28 +00001966
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001967 def WB : T2I<(outs rGPR:$dst), (ins rGPR:$a, rGPR:$b, rGPR:$acc), IIC_iMAC16,
Evan Cheng699beba2009-10-27 00:08:59 +00001968 !strconcat(opc, "wb"), "\t$dst, $a, $b, $acc",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001969 [(set rGPR:$dst, (add rGPR:$acc, (sra (opnode rGPR:$a,
Jim Grosbachc5ed0132010-08-17 18:39:16 +00001970 (sext_inreg rGPR:$b, i16)), (i32 16))))]> {
Johnny Chend68e1192009-12-15 17:24:14 +00001971 let Inst{31-27} = 0b11111;
1972 let Inst{26-23} = 0b0110;
1973 let Inst{22-20} = 0b011;
1974 let Inst{15-12} = {?, ?, ?, ?}; // Ra
1975 let Inst{7-6} = 0b00;
1976 let Inst{5-4} = 0b00;
1977 }
Evan Cheng5b9fcd12009-07-07 01:17:28 +00001978
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001979 def WT : T2I<(outs rGPR:$dst), (ins rGPR:$a, rGPR:$b, rGPR:$acc), IIC_iMAC16,
Evan Cheng699beba2009-10-27 00:08:59 +00001980 !strconcat(opc, "wt"), "\t$dst, $a, $b, $acc",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001981 [(set rGPR:$dst, (add rGPR:$acc, (sra (opnode rGPR:$a,
Jim Grosbachc5ed0132010-08-17 18:39:16 +00001982 (sra rGPR:$b, (i32 16))), (i32 16))))]> {
Johnny Chend68e1192009-12-15 17:24:14 +00001983 let Inst{31-27} = 0b11111;
1984 let Inst{26-23} = 0b0110;
1985 let Inst{22-20} = 0b011;
1986 let Inst{15-12} = {?, ?, ?, ?}; // Ra
1987 let Inst{7-6} = 0b00;
1988 let Inst{5-4} = 0b01;
1989 }
Evan Cheng5b9fcd12009-07-07 01:17:28 +00001990}
1991
1992defm t2SMUL : T2I_smul<"smul", BinOpFrag<(mul node:$LHS, node:$RHS)>>;
1993defm t2SMLA : T2I_smla<"smla", BinOpFrag<(mul node:$LHS, node:$RHS)>>;
1994
Johnny Chenadc77332010-02-26 22:04:29 +00001995// Halfword multiple accumulate long: SMLAL<x><y> -- for disassembly only
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001996def t2SMLALBB : T2I_mac<1, 0b100, 0b1000, (outs rGPR:$ldst,rGPR:$hdst),
Jim Grosbachc5ed0132010-08-17 18:39:16 +00001997 (ins rGPR:$a,rGPR:$b), IIC_iMAC64, "smlalbb", "\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 t2SMLALBT : T2I_mac<1, 0b100, 0b1001, (outs rGPR:$ldst,rGPR:$hdst),
Jim Grosbachc5ed0132010-08-17 18:39:16 +00002000 (ins rGPR:$a,rGPR:$b), IIC_iMAC64, "smlalbt", "\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 t2SMLALTB : T2I_mac<1, 0b100, 0b1010, (outs rGPR:$ldst,rGPR:$hdst),
Jim Grosbachc5ed0132010-08-17 18:39:16 +00002003 (ins rGPR:$a,rGPR:$b), IIC_iMAC64, "smlaltb", "\t$ldst, $hdst, $a, $b",
Johnny Chenadc77332010-02-26 22:04:29 +00002004 [/* For disassembly only; pattern left blank */]>;
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002005def t2SMLALTT : T2I_mac<1, 0b100, 0b1011, (outs rGPR:$ldst,rGPR:$hdst),
Jim Grosbachc5ed0132010-08-17 18:39:16 +00002006 (ins rGPR:$a,rGPR:$b), IIC_iMAC64, "smlaltt", "\t$ldst, $hdst, $a, $b",
Johnny Chenadc77332010-02-26 22:04:29 +00002007 [/* For disassembly only; pattern left blank */]>;
Evan Cheng5b9fcd12009-07-07 01:17:28 +00002008
Johnny Chenadc77332010-02-26 22:04:29 +00002009// Dual halfword multiple: SMUAD, SMUSD, SMLAD, SMLSD, SMLALD, SMLSLD
2010// These are for disassembly only.
2011
Jim Grosbachc5ed0132010-08-17 18:39:16 +00002012def t2SMUAD: T2I_mac<0, 0b010, 0b0000, (outs rGPR:$dst), (ins rGPR:$a, rGPR:$b),
2013 IIC_iMAC32, "smuad", "\t$dst, $a, $b", []> {
Johnny Chenadc77332010-02-26 22:04:29 +00002014 let Inst{15-12} = 0b1111;
2015}
Jim Grosbachc5ed0132010-08-17 18:39:16 +00002016def t2SMUADX:T2I_mac<0, 0b010, 0b0001, (outs rGPR:$dst), (ins rGPR:$a, rGPR:$b),
2017 IIC_iMAC32, "smuadx", "\t$dst, $a, $b", []> {
Johnny Chenadc77332010-02-26 22:04:29 +00002018 let Inst{15-12} = 0b1111;
2019}
Jim Grosbachc5ed0132010-08-17 18:39:16 +00002020def t2SMUSD: T2I_mac<0, 0b100, 0b0000, (outs rGPR:$dst), (ins rGPR:$a, rGPR:$b),
2021 IIC_iMAC32, "smusd", "\t$dst, $a, $b", []> {
Johnny Chenadc77332010-02-26 22:04:29 +00002022 let Inst{15-12} = 0b1111;
2023}
Jim Grosbachc5ed0132010-08-17 18:39:16 +00002024def t2SMUSDX:T2I_mac<0, 0b100, 0b0001, (outs rGPR:$dst), (ins rGPR:$a, rGPR:$b),
2025 IIC_iMAC32, "smusdx", "\t$dst, $a, $b", []> {
Johnny Chenadc77332010-02-26 22:04:29 +00002026 let Inst{15-12} = 0b1111;
2027}
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002028def t2SMLAD : T2I_mac<0, 0b010, 0b0000, (outs rGPR:$dst),
2029 (ins rGPR:$a, rGPR:$b, rGPR:$acc), IIC_iMAC32, "smlad",
Johnny Chenadc77332010-02-26 22:04:29 +00002030 "\t$dst, $a, $b, $acc", []>;
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002031def t2SMLADX : T2I_mac<0, 0b010, 0b0001, (outs rGPR:$dst),
2032 (ins rGPR:$a, rGPR:$b, rGPR:$acc), IIC_iMAC32, "smladx",
Johnny Chenadc77332010-02-26 22:04:29 +00002033 "\t$dst, $a, $b, $acc", []>;
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002034def t2SMLSD : T2I_mac<0, 0b100, 0b0000, (outs rGPR:$dst),
2035 (ins rGPR:$a, rGPR:$b, rGPR:$acc), IIC_iMAC32, "smlsd",
Johnny Chenadc77332010-02-26 22:04:29 +00002036 "\t$dst, $a, $b, $acc", []>;
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002037def t2SMLSDX : T2I_mac<0, 0b100, 0b0001, (outs rGPR:$dst),
2038 (ins rGPR:$a, rGPR:$b, rGPR:$acc), IIC_iMAC32, "smlsdx",
Johnny Chenadc77332010-02-26 22:04:29 +00002039 "\t$dst, $a, $b, $acc", []>;
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002040def t2SMLALD : T2I_mac<1, 0b100, 0b1100, (outs rGPR:$ldst,rGPR:$hdst),
2041 (ins rGPR:$a,rGPR:$b), IIC_iMAC64, "smlald",
Johnny Chenadc77332010-02-26 22:04:29 +00002042 "\t$ldst, $hdst, $a, $b", []>;
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002043def t2SMLALDX : T2I_mac<1, 0b100, 0b1101, (outs rGPR:$ldst,rGPR:$hdst),
2044 (ins rGPR:$a,rGPR:$b), IIC_iMAC64, "smlaldx",
Johnny Chenadc77332010-02-26 22:04:29 +00002045 "\t$ldst, $hdst, $a, $b", []>;
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002046def t2SMLSLD : T2I_mac<1, 0b101, 0b1100, (outs rGPR:$ldst,rGPR:$hdst),
2047 (ins rGPR:$a,rGPR:$b), IIC_iMAC64, "smlsld",
Johnny Chenadc77332010-02-26 22:04:29 +00002048 "\t$ldst, $hdst, $a, $b", []>;
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002049def t2SMLSLDX : T2I_mac<1, 0b101, 0b1101, (outs rGPR:$ldst,rGPR:$hdst),
2050 (ins rGPR:$a,rGPR:$b), IIC_iMAC64, "smlsldx",
Johnny Chenadc77332010-02-26 22:04:29 +00002051 "\t$ldst, $hdst, $a, $b", []>;
Evan Chengf49810c2009-06-23 17:48:47 +00002052
2053//===----------------------------------------------------------------------===//
2054// Misc. Arithmetic Instructions.
2055//
2056
Jim Grosbach80dc1162010-02-16 21:23:02 +00002057class T2I_misc<bits<2> op1, bits<2> op2, dag oops, dag iops,
2058 InstrItinClass itin, string opc, string asm, list<dag> pattern>
Johnny Chend68e1192009-12-15 17:24:14 +00002059 : T2I<oops, iops, itin, opc, asm, pattern> {
2060 let Inst{31-27} = 0b11111;
2061 let Inst{26-22} = 0b01010;
2062 let Inst{21-20} = op1;
2063 let Inst{15-12} = 0b1111;
2064 let Inst{7-6} = 0b10;
2065 let Inst{5-4} = op2;
2066}
Evan Chengf49810c2009-06-23 17:48:47 +00002067
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002068def t2CLZ : T2I_misc<0b11, 0b00, (outs rGPR:$dst), (ins rGPR:$src), IIC_iUNAr,
2069 "clz", "\t$dst, $src", [(set rGPR:$dst, (ctlz rGPR:$src))]>;
Evan Chengf49810c2009-06-23 17:48:47 +00002070
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002071def t2RBIT : T2I_misc<0b01, 0b10, (outs rGPR:$dst), (ins rGPR:$src), IIC_iUNAr,
Evan Chengf609bb82010-01-19 00:44:15 +00002072 "rbit", "\t$dst, $src",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002073 [(set rGPR:$dst, (ARMrbit rGPR:$src))]>;
Jim Grosbach3482c802010-01-18 19:58:49 +00002074
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002075def t2REV : T2I_misc<0b01, 0b00, (outs rGPR:$dst), (ins rGPR:$src), IIC_iUNAr,
Jim Grosbachc5ed0132010-08-17 18:39:16 +00002076 "rev", ".w\t$dst, $src", [(set rGPR:$dst, (bswap rGPR:$src))]>;
Johnny Chend68e1192009-12-15 17:24:14 +00002077
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002078def t2REV16 : T2I_misc<0b01, 0b01, (outs rGPR:$dst), (ins rGPR:$src), IIC_iUNAr,
Johnny Chend68e1192009-12-15 17:24:14 +00002079 "rev16", ".w\t$dst, $src",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002080 [(set rGPR:$dst,
2081 (or (and (srl rGPR:$src, (i32 8)), 0xFF),
2082 (or (and (shl rGPR:$src, (i32 8)), 0xFF00),
2083 (or (and (srl rGPR:$src, (i32 8)), 0xFF0000),
Jim Grosbachc5ed0132010-08-17 18:39:16 +00002084 (and (shl rGPR:$src, (i32 8)), 0xFF000000)))))]>;
Evan Chengf49810c2009-06-23 17:48:47 +00002085
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002086def t2REVSH : T2I_misc<0b01, 0b11, (outs rGPR:$dst), (ins rGPR:$src), IIC_iUNAr,
Johnny Chend68e1192009-12-15 17:24:14 +00002087 "revsh", ".w\t$dst, $src",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002088 [(set rGPR:$dst,
Evan Chengf49810c2009-06-23 17:48:47 +00002089 (sext_inreg
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002090 (or (srl (and rGPR:$src, 0xFF00), (i32 8)),
2091 (shl rGPR:$src, (i32 8))), i16))]>;
Evan Chengf49810c2009-06-23 17:48:47 +00002092
Bob Wilsonf955f292010-08-17 17:23:19 +00002093def t2PKHBT : T2I<(outs rGPR:$dst), (ins rGPR:$src1, rGPR:$src2, shift_imm:$sh),
2094 IIC_iALUsi, "pkhbt", "\t$dst, $src1, $src2$sh",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002095 [(set rGPR:$dst, (or (and rGPR:$src1, 0xFFFF),
Bob Wilsonf955f292010-08-17 17:23:19 +00002096 (and (shl rGPR:$src2, lsl_amt:$sh),
Jim Grosbachb1dc3932010-05-05 20:44:35 +00002097 0xFFFF0000)))]>,
Jim Grosbach29402132010-05-05 23:44:43 +00002098 Requires<[HasT2ExtractPack]> {
Johnny Chend68e1192009-12-15 17:24:14 +00002099 let Inst{31-27} = 0b11101;
2100 let Inst{26-25} = 0b01;
2101 let Inst{24-20} = 0b01100;
2102 let Inst{5} = 0; // BT form
2103 let Inst{4} = 0;
2104}
Evan Cheng40289b02009-07-07 05:35:52 +00002105
2106// Alternate cases for PKHBT where identities eliminate some nodes.
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002107def : T2Pat<(or (and rGPR:$src1, 0xFFFF), (and rGPR:$src2, 0xFFFF0000)),
2108 (t2PKHBT rGPR:$src1, rGPR:$src2, 0)>,
Jim Grosbach29402132010-05-05 23:44:43 +00002109 Requires<[HasT2ExtractPack]>;
Bob Wilsonf955f292010-08-17 17:23:19 +00002110def : T2Pat<(or (and rGPR:$src1, 0xFFFF), (shl rGPR:$src2, imm16_31:$sh)),
2111 (t2PKHBT rGPR:$src1, rGPR:$src2, (lsl_shift_imm imm16_31:$sh))>,
Jim Grosbach29402132010-05-05 23:44:43 +00002112 Requires<[HasT2ExtractPack]>;
Evan Cheng40289b02009-07-07 05:35:52 +00002113
Bob Wilsondc66eda2010-08-16 22:26:55 +00002114// Note: Shifts of 1-15 bits will be transformed to srl instead of sra and
2115// will match the pattern below.
Bob Wilsonf955f292010-08-17 17:23:19 +00002116def t2PKHTB : T2I<(outs rGPR:$dst), (ins rGPR:$src1, rGPR:$src2, shift_imm:$sh),
2117 IIC_iALUsi, "pkhtb", "\t$dst, $src1, $src2$sh",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002118 [(set rGPR:$dst, (or (and rGPR:$src1, 0xFFFF0000),
Bob Wilsonf955f292010-08-17 17:23:19 +00002119 (and (sra rGPR:$src2, asr_amt:$sh),
2120 0xFFFF)))]>,
Jim Grosbach29402132010-05-05 23:44:43 +00002121 Requires<[HasT2ExtractPack]> {
Johnny Chend68e1192009-12-15 17:24:14 +00002122 let Inst{31-27} = 0b11101;
2123 let Inst{26-25} = 0b01;
2124 let Inst{24-20} = 0b01100;
2125 let Inst{5} = 1; // TB form
2126 let Inst{4} = 0;
2127}
Evan Cheng40289b02009-07-07 05:35:52 +00002128
2129// Alternate cases for PKHTB where identities eliminate some nodes. Note that
2130// a shift amount of 0 is *not legal* here, it is PKHBT instead.
Bob Wilsondc66eda2010-08-16 22:26:55 +00002131def : T2Pat<(or (and rGPR:$src1, 0xFFFF0000), (srl rGPR:$src2, imm16_31:$sh)),
Bob Wilsonf955f292010-08-17 17:23:19 +00002132 (t2PKHTB rGPR:$src1, rGPR:$src2, (asr_shift_imm imm16_31:$sh))>,
Jim Grosbach29402132010-05-05 23:44:43 +00002133 Requires<[HasT2ExtractPack]>;
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002134def : T2Pat<(or (and rGPR:$src1, 0xFFFF0000),
Bob Wilsonf955f292010-08-17 17:23:19 +00002135 (and (srl rGPR:$src2, imm1_15:$sh), 0xFFFF)),
2136 (t2PKHTB rGPR:$src1, rGPR:$src2, (asr_shift_imm imm1_15:$sh))>,
Jim Grosbach29402132010-05-05 23:44:43 +00002137 Requires<[HasT2ExtractPack]>;
Evan Chengf49810c2009-06-23 17:48:47 +00002138
2139//===----------------------------------------------------------------------===//
2140// Comparison Instructions...
2141//
Bill Wendlingc98af332010-08-08 05:04:59 +00002142let isCompare = 1 in {
Johnny Chend68e1192009-12-15 17:24:14 +00002143defm t2CMP : T2I_cmp_irs<0b1101, "cmp",
2144 BinOpFrag<(ARMcmp node:$LHS, node:$RHS)>>;
2145defm t2CMPz : T2I_cmp_irs<0b1101, "cmp",
2146 BinOpFrag<(ARMcmpZ node:$LHS, node:$RHS)>>;
Bill Wendlingc98af332010-08-08 05:04:59 +00002147}
Evan Chengf49810c2009-06-23 17:48:47 +00002148
Jim Grosbachd5d2bae2010-01-22 00:08:13 +00002149//FIXME: Disable CMN, as CCodes are backwards from compare expectations
2150// Compare-to-zero still works out, just not the relationals
2151//defm t2CMN : T2I_cmp_irs<0b1000, "cmn",
2152// BinOpFrag<(ARMcmp node:$LHS,(ineg node:$RHS))>>;
Johnny Chend68e1192009-12-15 17:24:14 +00002153defm t2CMNz : T2I_cmp_irs<0b1000, "cmn",
2154 BinOpFrag<(ARMcmpZ node:$LHS,(ineg node:$RHS))>>;
Evan Chengf49810c2009-06-23 17:48:47 +00002155
Jim Grosbachd5d2bae2010-01-22 00:08:13 +00002156//def : T2Pat<(ARMcmp GPR:$src, t2_so_imm_neg:$imm),
2157// (t2CMNri GPR:$src, t2_so_imm_neg:$imm)>;
Evan Chengf49810c2009-06-23 17:48:47 +00002158
David Goodwinc0309b42009-06-29 15:33:01 +00002159def : T2Pat<(ARMcmpZ GPR:$src, t2_so_imm_neg:$imm),
Jim Grosbachd5d2bae2010-01-22 00:08:13 +00002160 (t2CMNzri GPR:$src, t2_so_imm_neg:$imm)>;
Evan Chengf49810c2009-06-23 17:48:47 +00002161
Johnny Chend68e1192009-12-15 17:24:14 +00002162defm t2TST : T2I_cmp_irs<0b0000, "tst",
2163 BinOpFrag<(ARMcmpZ (and node:$LHS, node:$RHS), 0)>>;
2164defm t2TEQ : T2I_cmp_irs<0b0100, "teq",
2165 BinOpFrag<(ARMcmpZ (xor node:$LHS, node:$RHS), 0)>>;
Evan Chengf49810c2009-06-23 17:48:47 +00002166
Evan Chenge253c952009-07-07 20:39:03 +00002167// Conditional moves
2168// FIXME: should be able to write a pattern for ARMcmov, but can't use
Jim Grosbach64171712010-02-16 21:07:46 +00002169// a two-value operand where a dag node expects two operands. :(
Evan Chengea420b22010-05-19 01:52:25 +00002170let neverHasSideEffects = 1 in {
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002171def t2MOVCCr : T2I<(outs rGPR:$dst), (ins rGPR:$false, rGPR:$true), IIC_iCMOVr,
Evan Cheng699beba2009-10-27 00:08:59 +00002172 "mov", ".w\t$dst, $true",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002173 [/*(set rGPR:$dst, (ARMcmov rGPR:$false, rGPR:$true, imm:$cc, CCR:$ccr))*/]>,
Johnny Chend68e1192009-12-15 17:24:14 +00002174 RegConstraint<"$false = $dst"> {
2175 let Inst{31-27} = 0b11101;
2176 let Inst{26-25} = 0b01;
2177 let Inst{24-21} = 0b0010;
2178 let Inst{20} = 0; // The S bit.
2179 let Inst{19-16} = 0b1111; // Rn
2180 let Inst{14-12} = 0b000;
2181 let Inst{7-4} = 0b0000;
2182}
Evan Chenge253c952009-07-07 20:39:03 +00002183
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002184def t2MOVCCi : T2I<(outs rGPR:$dst), (ins rGPR:$false, t2_so_imm:$true),
Evan Cheng699beba2009-10-27 00:08:59 +00002185 IIC_iCMOVi, "mov", ".w\t$dst, $true",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002186[/*(set rGPR:$dst,(ARMcmov rGPR:$false,t2_so_imm:$true, imm:$cc, CCR:$ccr))*/]>,
Johnny Chend68e1192009-12-15 17:24:14 +00002187 RegConstraint<"$false = $dst"> {
2188 let Inst{31-27} = 0b11110;
2189 let Inst{25} = 0;
2190 let Inst{24-21} = 0b0010;
2191 let Inst{20} = 0; // The S bit.
2192 let Inst{19-16} = 0b1111; // Rn
2193 let Inst{15} = 0;
2194}
Evan Chengf49810c2009-06-23 17:48:47 +00002195
Johnny Chend68e1192009-12-15 17:24:14 +00002196class T2I_movcc_sh<bits<2> opcod, dag oops, dag iops, InstrItinClass itin,
2197 string opc, string asm, list<dag> pattern>
2198 : T2I<oops, iops, itin, opc, asm, pattern> {
2199 let Inst{31-27} = 0b11101;
2200 let Inst{26-25} = 0b01;
2201 let Inst{24-21} = 0b0010;
2202 let Inst{20} = 0; // The S bit.
2203 let Inst{19-16} = 0b1111; // Rn
2204 let Inst{5-4} = opcod; // Shift type.
2205}
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002206def t2MOVCClsl : T2I_movcc_sh<0b00, (outs rGPR:$dst),
2207 (ins rGPR:$false, rGPR:$true, i32imm:$rhs),
Johnny Chend68e1192009-12-15 17:24:14 +00002208 IIC_iCMOVsi, "lsl", ".w\t$dst, $true, $rhs", []>,
2209 RegConstraint<"$false = $dst">;
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002210def t2MOVCClsr : T2I_movcc_sh<0b01, (outs rGPR:$dst),
2211 (ins rGPR:$false, rGPR:$true, i32imm:$rhs),
Johnny Chend68e1192009-12-15 17:24:14 +00002212 IIC_iCMOVsi, "lsr", ".w\t$dst, $true, $rhs", []>,
2213 RegConstraint<"$false = $dst">;
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002214def t2MOVCCasr : T2I_movcc_sh<0b10, (outs rGPR:$dst),
2215 (ins rGPR:$false, rGPR:$true, i32imm:$rhs),
Johnny Chend68e1192009-12-15 17:24:14 +00002216 IIC_iCMOVsi, "asr", ".w\t$dst, $true, $rhs", []>,
2217 RegConstraint<"$false = $dst">;
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002218def t2MOVCCror : T2I_movcc_sh<0b11, (outs rGPR:$dst),
2219 (ins rGPR:$false, rGPR:$true, i32imm:$rhs),
Johnny Chend68e1192009-12-15 17:24:14 +00002220 IIC_iCMOVsi, "ror", ".w\t$dst, $true, $rhs", []>,
2221 RegConstraint<"$false = $dst">;
Evan Chengea420b22010-05-19 01:52:25 +00002222} // neverHasSideEffects
Evan Cheng13f8b362009-08-01 01:43:45 +00002223
David Goodwin5e47a9a2009-06-30 18:04:13 +00002224//===----------------------------------------------------------------------===//
Jim Grosbachc219e4d2009-12-14 18:56:47 +00002225// Atomic operations intrinsics
2226//
2227
2228// memory barriers protect the atomic sequences
2229let hasSideEffects = 1 in {
Evan Cheng11db0682010-08-11 06:22:01 +00002230def t2DMBsy : AInoP<(outs), (ins), ThumbFrm, NoItinerary, "dmb", "",
Evan Chengee349872010-08-11 06:36:31 +00002231 [(ARMMemBarrier)]>, Requires<[IsThumb, HasDB]> {
Johnny Chend68e1192009-12-15 17:24:14 +00002232 let Inst{31-4} = 0xF3BF8F5;
Jim Grosbachc219e4d2009-12-14 18:56:47 +00002233 // FIXME: add support for options other than a full system DMB
Johnny Chend68e1192009-12-15 17:24:14 +00002234 let Inst{3-0} = 0b1111;
Jim Grosbachc219e4d2009-12-14 18:56:47 +00002235}
2236
Evan Cheng11db0682010-08-11 06:22:01 +00002237def t2DSBsy : AInoP<(outs), (ins), ThumbFrm, NoItinerary, "dsb", "",
Evan Chengee349872010-08-11 06:36:31 +00002238 [(ARMSyncBarrier)]>, Requires<[IsThumb, HasDB]> {
Johnny Chend68e1192009-12-15 17:24:14 +00002239 let Inst{31-4} = 0xF3BF8F4;
Jim Grosbachc219e4d2009-12-14 18:56:47 +00002240 // FIXME: add support for options other than a full system DSB
Johnny Chend68e1192009-12-15 17:24:14 +00002241 let Inst{3-0} = 0b1111;
Jim Grosbachc219e4d2009-12-14 18:56:47 +00002242}
2243}
2244
Johnny Chena4339822010-03-03 00:16:28 +00002245// Helper class for multiclass T2MemB -- for disassembly only
2246class T2I_memb<string opc, string asm>
2247 : T2I<(outs), (ins), NoItinerary, opc, asm,
2248 [/* For disassembly only; pattern left blank */]>,
2249 Requires<[IsThumb2, HasV7]> {
2250 let Inst{31-20} = 0xf3b;
2251 let Inst{15-14} = 0b10;
2252 let Inst{12} = 0;
2253}
2254
2255multiclass T2MemB<bits<4> op7_4, string opc> {
2256
2257 def st : T2I_memb<opc, "\tst"> {
2258 let Inst{7-4} = op7_4;
2259 let Inst{3-0} = 0b1110;
2260 }
2261
2262 def ish : T2I_memb<opc, "\tish"> {
2263 let Inst{7-4} = op7_4;
2264 let Inst{3-0} = 0b1011;
2265 }
2266
2267 def ishst : T2I_memb<opc, "\tishst"> {
2268 let Inst{7-4} = op7_4;
2269 let Inst{3-0} = 0b1010;
2270 }
2271
2272 def nsh : T2I_memb<opc, "\tnsh"> {
2273 let Inst{7-4} = op7_4;
2274 let Inst{3-0} = 0b0111;
2275 }
2276
2277 def nshst : T2I_memb<opc, "\tnshst"> {
2278 let Inst{7-4} = op7_4;
2279 let Inst{3-0} = 0b0110;
2280 }
2281
2282 def osh : T2I_memb<opc, "\tosh"> {
2283 let Inst{7-4} = op7_4;
2284 let Inst{3-0} = 0b0011;
2285 }
2286
2287 def oshst : T2I_memb<opc, "\toshst"> {
2288 let Inst{7-4} = op7_4;
2289 let Inst{3-0} = 0b0010;
2290 }
2291}
2292
2293// These DMB variants are for disassembly only.
2294defm t2DMB : T2MemB<0b0101, "dmb">;
2295
2296// These DSB variants are for disassembly only.
2297defm t2DSB : T2MemB<0b0100, "dsb">;
2298
2299// ISB has only full system option -- for disassembly only
2300def t2ISBsy : T2I_memb<"isb", ""> {
2301 let Inst{7-4} = 0b0110;
2302 let Inst{3-0} = 0b1111;
2303}
2304
Johnny Chend68e1192009-12-15 17:24:14 +00002305class T2I_ldrex<bits<2> opcod, dag oops, dag iops, AddrMode am, SizeFlagVal sz,
2306 InstrItinClass itin, string opc, string asm, string cstr,
2307 list<dag> pattern, bits<4> rt2 = 0b1111>
2308 : Thumb2I<oops, iops, am, sz, itin, opc, asm, cstr, pattern> {
2309 let Inst{31-27} = 0b11101;
2310 let Inst{26-20} = 0b0001101;
2311 let Inst{11-8} = rt2;
2312 let Inst{7-6} = 0b01;
2313 let Inst{5-4} = opcod;
2314 let Inst{3-0} = 0b1111;
2315}
2316class T2I_strex<bits<2> opcod, dag oops, dag iops, AddrMode am, SizeFlagVal sz,
2317 InstrItinClass itin, string opc, string asm, string cstr,
2318 list<dag> pattern, bits<4> rt2 = 0b1111>
2319 : Thumb2I<oops, iops, am, sz, itin, opc, asm, cstr, pattern> {
2320 let Inst{31-27} = 0b11101;
2321 let Inst{26-20} = 0b0001100;
2322 let Inst{11-8} = rt2;
2323 let Inst{7-6} = 0b01;
2324 let Inst{5-4} = opcod;
2325}
2326
Jim Grosbachc219e4d2009-12-14 18:56:47 +00002327let mayLoad = 1 in {
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002328def t2LDREXB : T2I_ldrex<0b00, (outs rGPR:$dest), (ins rGPR:$ptr), AddrModeNone,
Johnny Chend68e1192009-12-15 17:24:14 +00002329 Size4Bytes, NoItinerary, "ldrexb", "\t$dest, [$ptr]",
2330 "", []>;
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002331def t2LDREXH : T2I_ldrex<0b01, (outs rGPR:$dest), (ins rGPR:$ptr), AddrModeNone,
Johnny Chend68e1192009-12-15 17:24:14 +00002332 Size4Bytes, NoItinerary, "ldrexh", "\t$dest, [$ptr]",
2333 "", []>;
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002334def t2LDREX : Thumb2I<(outs rGPR:$dest), (ins rGPR:$ptr), AddrModeNone,
Johnny Chend68e1192009-12-15 17:24:14 +00002335 Size4Bytes, NoItinerary,
2336 "ldrex", "\t$dest, [$ptr]", "",
2337 []> {
2338 let Inst{31-27} = 0b11101;
2339 let Inst{26-20} = 0b0000101;
2340 let Inst{11-8} = 0b1111;
2341 let Inst{7-0} = 0b00000000; // imm8 = 0
2342}
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002343def t2LDREXD : T2I_ldrex<0b11, (outs rGPR:$dest, rGPR:$dest2), (ins rGPR:$ptr),
Johnny Chend68e1192009-12-15 17:24:14 +00002344 AddrModeNone, Size4Bytes, NoItinerary,
2345 "ldrexd", "\t$dest, $dest2, [$ptr]", "",
2346 [], {?, ?, ?, ?}>;
Jim Grosbachc219e4d2009-12-14 18:56:47 +00002347}
2348
Jim Grosbach587b0722009-12-16 19:44:06 +00002349let mayStore = 1, Constraints = "@earlyclobber $success" in {
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002350def t2STREXB : T2I_strex<0b00, (outs rGPR:$success), (ins rGPR:$src, rGPR:$ptr),
Johnny Chend68e1192009-12-15 17:24:14 +00002351 AddrModeNone, Size4Bytes, NoItinerary,
2352 "strexb", "\t$success, $src, [$ptr]", "", []>;
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002353def t2STREXH : T2I_strex<0b01, (outs rGPR:$success), (ins rGPR:$src, rGPR:$ptr),
Johnny Chend68e1192009-12-15 17:24:14 +00002354 AddrModeNone, Size4Bytes, NoItinerary,
2355 "strexh", "\t$success, $src, [$ptr]", "", []>;
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002356def t2STREX : Thumb2I<(outs rGPR:$success), (ins rGPR:$src, rGPR:$ptr),
Johnny Chend68e1192009-12-15 17:24:14 +00002357 AddrModeNone, Size4Bytes, NoItinerary,
2358 "strex", "\t$success, $src, [$ptr]", "",
2359 []> {
2360 let Inst{31-27} = 0b11101;
2361 let Inst{26-20} = 0b0000100;
2362 let Inst{7-0} = 0b00000000; // imm8 = 0
2363}
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002364def t2STREXD : T2I_strex<0b11, (outs rGPR:$success),
2365 (ins rGPR:$src, rGPR:$src2, rGPR:$ptr),
Johnny Chend68e1192009-12-15 17:24:14 +00002366 AddrModeNone, Size4Bytes, NoItinerary,
2367 "strexd", "\t$success, $src, $src2, [$ptr]", "", [],
2368 {?, ?, ?, ?}>;
Jim Grosbachc219e4d2009-12-14 18:56:47 +00002369}
2370
Johnny Chen10a77e12010-03-02 22:11:06 +00002371// Clear-Exclusive is for disassembly only.
2372def t2CLREX : T2I<(outs), (ins), NoItinerary, "clrex", "",
2373 [/* For disassembly only; pattern left blank */]>,
2374 Requires<[IsARM, HasV7]> {
2375 let Inst{31-20} = 0xf3b;
2376 let Inst{15-14} = 0b10;
2377 let Inst{12} = 0;
2378 let Inst{7-4} = 0b0010;
2379}
2380
Jim Grosbachc219e4d2009-12-14 18:56:47 +00002381//===----------------------------------------------------------------------===//
David Goodwin334c2642009-07-08 16:09:28 +00002382// TLS Instructions
2383//
2384
2385// __aeabi_read_tp preserves the registers r1-r3.
2386let isCall = 1,
2387 Defs = [R0, R12, LR, CPSR] in {
David Goodwin8b7d7ad2009-08-06 16:52:47 +00002388 def t2TPsoft : T2XI<(outs), (ins), IIC_Br,
Evan Cheng699beba2009-10-27 00:08:59 +00002389 "bl\t__aeabi_read_tp",
Johnny Chend68e1192009-12-15 17:24:14 +00002390 [(set R0, ARMthread_pointer)]> {
2391 let Inst{31-27} = 0b11110;
2392 let Inst{15-14} = 0b11;
2393 let Inst{12} = 1;
2394 }
David Goodwin334c2642009-07-08 16:09:28 +00002395}
2396
2397//===----------------------------------------------------------------------===//
Jim Grosbach5aa16842009-08-11 19:42:21 +00002398// SJLJ Exception handling intrinsics
Jim Grosbach1add6592009-08-13 15:11:43 +00002399// eh_sjlj_setjmp() is an instruction sequence to store the return
Jim Grosbach5aa16842009-08-11 19:42:21 +00002400// address and save #0 in R0 for the non-longjmp case.
2401// Since by its nature we may be coming from some other function to get
2402// here, and we're using the stack frame for the containing function to
2403// save/restore registers, we can't keep anything live in regs across
2404// the eh_sjlj_setjmp(), else it will almost certainly have been tromped upon
2405// when we get here from a longjmp(). We force everthing out of registers
2406// except for our own input by listing the relevant registers in Defs. By
2407// doing so, we also cause the prologue/epilogue code to actively preserve
2408// all of the callee-saved resgisters, which is exactly what we want.
Jim Grosbach0798edd2010-05-27 23:49:24 +00002409// $val is a scratch register for our use.
Jim Grosbacha87ded22010-02-08 23:22:00 +00002410let Defs =
Jim Grosbachf35d2162009-08-13 16:59:44 +00002411 [ R0, R1, R2, R3, R4, R5, R6, R7, R8, R9, R10, R11, R12, LR, D0,
2412 D1, D2, D3, D4, D5, D6, D7, D8, D9, D10, D11, D12, D13, D14, D15,
Jim Grosbach5aa16842009-08-11 19:42:21 +00002413 D16, D17, D18, D19, D20, D21, D22, D23, D24, D25, D26, D27, D28, D29, D30,
Jim Grosbach5caeff52010-05-28 17:37:40 +00002414 D31 ], hasSideEffects = 1, isBarrier = 1 in {
Jim Grosbacha87ded22010-02-08 23:22:00 +00002415 def t2Int_eh_sjlj_setjmp : Thumb2XI<(outs), (ins GPR:$src, tGPR:$val),
Jim Grosbach5aa16842009-08-11 19:42:21 +00002416 AddrModeNone, SizeSpecial, NoItinerary,
Jim Grosbachc9792a32010-05-28 17:51:20 +00002417 "mov\t$val, pc\t${:comment} begin eh.setjmp\n\t"
2418 "adds\t$val, #7\n\t"
2419 "str\t$val, [$src, #4]\n\t"
2420 "movs\tr0, #0\n\t"
2421 "b\t1f\n\t"
2422 "movs\tr0, #1\t${:comment} end eh.setjmp\n\t"
Jim Grosbach8db5cce2009-08-13 15:12:16 +00002423 "1:", "",
Bob Wilsonec80e262010-04-09 20:41:18 +00002424 [(set R0, (ARMeh_sjlj_setjmp GPR:$src, tGPR:$val))]>,
2425 Requires<[IsThumb2, HasVFP2]>;
Jim Grosbach5aa16842009-08-11 19:42:21 +00002426}
2427
Bob Wilsonec80e262010-04-09 20:41:18 +00002428let Defs =
Jim Grosbach5caeff52010-05-28 17:37:40 +00002429 [ R0, R1, R2, R3, R4, R5, R6, R7, R8, R9, R10, R11, R12, LR ],
2430 hasSideEffects = 1, isBarrier = 1 in {
Bob Wilsonec80e262010-04-09 20:41:18 +00002431 def t2Int_eh_sjlj_setjmp_nofp : Thumb2XI<(outs), (ins GPR:$src, tGPR:$val),
2432 AddrModeNone, SizeSpecial, NoItinerary,
Jim Grosbachc9792a32010-05-28 17:51:20 +00002433 "mov\t$val, pc\t${:comment} begin eh.setjmp\n\t"
2434 "adds\t$val, #7\n\t"
2435 "str\t$val, [$src, #4]\n\t"
2436 "movs\tr0, #0\n\t"
2437 "b\t1f\n\t"
2438 "movs\tr0, #1\t${:comment} end eh.setjmp\n\t"
Bob Wilsonec80e262010-04-09 20:41:18 +00002439 "1:", "",
2440 [(set R0, (ARMeh_sjlj_setjmp GPR:$src, tGPR:$val))]>,
2441 Requires<[IsThumb2, NoVFP]>;
2442}
Jim Grosbach5aa16842009-08-11 19:42:21 +00002443
2444
2445//===----------------------------------------------------------------------===//
David Goodwin5e47a9a2009-06-30 18:04:13 +00002446// Control-Flow Instructions
2447//
2448
Evan Chengc50a1cb2009-07-09 22:58:39 +00002449// FIXME: remove when we have a way to marking a MI with these properties.
2450// FIXME: $dst1 should be a def. But the extra ops must be in the end of the
2451// operand list.
2452// FIXME: Should pc be an implicit operand like PICADD, etc?
Evan Cheng0d92f5f2009-10-01 08:22:27 +00002453let isReturn = 1, isTerminator = 1, isBarrier = 1, mayLoad = 1,
2454 hasExtraDefRegAllocReq = 1 in
Bob Wilson815baeb2010-03-13 01:08:20 +00002455 def t2LDM_RET : T2XIt<(outs GPR:$wb), (ins addrmode4:$addr, pred:$p,
2456 reglist:$dsts, variable_ops), IIC_Br,
Bob Wilsonfed76ff2010-07-14 16:02:13 +00002457 "ldm${addr:submode}${p}${addr:wide}\t$addr!, $dsts",
Bob Wilson815baeb2010-03-13 01:08:20 +00002458 "$addr.addr = $wb", []> {
Johnny Chend68e1192009-12-15 17:24:14 +00002459 let Inst{31-27} = 0b11101;
2460 let Inst{26-25} = 0b00;
2461 let Inst{24-23} = {?, ?}; // IA: '01', DB: '10'
2462 let Inst{22} = 0;
Bob Wilson815baeb2010-03-13 01:08:20 +00002463 let Inst{21} = 1; // The W bit.
Johnny Chend68e1192009-12-15 17:24:14 +00002464 let Inst{20} = 1; // Load
2465}
Evan Chengc50a1cb2009-07-09 22:58:39 +00002466
David Goodwin5e47a9a2009-06-30 18:04:13 +00002467let isBranch = 1, isTerminator = 1, isBarrier = 1 in {
2468let isPredicable = 1 in
David Goodwin8b7d7ad2009-08-06 16:52:47 +00002469def t2B : T2XI<(outs), (ins brtarget:$target), IIC_Br,
Evan Cheng699beba2009-10-27 00:08:59 +00002470 "b.w\t$target",
Johnny Chend68e1192009-12-15 17:24:14 +00002471 [(br bb:$target)]> {
2472 let Inst{31-27} = 0b11110;
2473 let Inst{15-14} = 0b10;
2474 let Inst{12} = 1;
2475}
David Goodwin5e47a9a2009-06-30 18:04:13 +00002476
Evan Cheng5657c012009-07-29 02:18:14 +00002477let isNotDuplicable = 1, isIndirectBranch = 1 in {
Evan Cheng66ac5312009-07-25 00:33:29 +00002478def t2BR_JT :
Evan Cheng5657c012009-07-29 02:18:14 +00002479 T2JTI<(outs),
2480 (ins GPR:$target, GPR:$index, jt2block_operand:$jt, i32imm:$id),
Bob Wilsond4d188e2010-07-31 06:28:10 +00002481 IIC_Br, "mov\tpc, $target$jt",
Johnny Chend68e1192009-12-15 17:24:14 +00002482 [(ARMbr2jt GPR:$target, GPR:$index, tjumptable:$jt, imm:$id)]> {
2483 let Inst{31-27} = 0b11101;
2484 let Inst{26-20} = 0b0100100;
2485 let Inst{19-16} = 0b1111;
2486 let Inst{14-12} = 0b000;
2487 let Inst{11-8} = 0b1111; // Rd = pc
2488 let Inst{7-4} = 0b0000;
2489}
Evan Cheng5657c012009-07-29 02:18:14 +00002490
Evan Cheng25f7cfc2009-08-01 06:13:52 +00002491// FIXME: Add a non-pc based case that can be predicated.
Evan Cheng5657c012009-07-29 02:18:14 +00002492def t2TBB :
Evan Cheng25f7cfc2009-08-01 06:13:52 +00002493 T2JTI<(outs),
Evan Cheng5657c012009-07-29 02:18:14 +00002494 (ins tb_addrmode:$index, jt2block_operand:$jt, i32imm:$id),
Bob Wilsond4d188e2010-07-31 06:28:10 +00002495 IIC_Br, "tbb\t$index$jt", []> {
Johnny Chend68e1192009-12-15 17:24:14 +00002496 let Inst{31-27} = 0b11101;
2497 let Inst{26-20} = 0b0001101;
2498 let Inst{19-16} = 0b1111; // Rn = pc (table follows this instruction)
2499 let Inst{15-8} = 0b11110000;
2500 let Inst{7-4} = 0b0000; // B form
2501}
Evan Cheng5657c012009-07-29 02:18:14 +00002502
2503def t2TBH :
Evan Cheng25f7cfc2009-08-01 06:13:52 +00002504 T2JTI<(outs),
Evan Cheng5657c012009-07-29 02:18:14 +00002505 (ins tb_addrmode:$index, jt2block_operand:$jt, i32imm:$id),
Bob Wilsond4d188e2010-07-31 06:28:10 +00002506 IIC_Br, "tbh\t$index$jt", []> {
Johnny Chend68e1192009-12-15 17:24:14 +00002507 let Inst{31-27} = 0b11101;
2508 let Inst{26-20} = 0b0001101;
2509 let Inst{19-16} = 0b1111; // Rn = pc (table follows this instruction)
2510 let Inst{15-8} = 0b11110000;
2511 let Inst{7-4} = 0b0001; // H form
2512}
Johnny Chen93042d12010-03-02 18:14:57 +00002513
2514// Generic versions of the above two instructions, for disassembly only
2515
2516def t2TBBgen : T2I<(outs), (ins GPR:$a, GPR:$b), IIC_Br,
2517 "tbb", "\t[$a, $b]", []>{
2518 let Inst{31-27} = 0b11101;
2519 let Inst{26-20} = 0b0001101;
2520 let Inst{15-8} = 0b11110000;
2521 let Inst{7-4} = 0b0000; // B form
2522}
2523
2524def t2TBHgen : T2I<(outs), (ins GPR:$a, GPR:$b), IIC_Br,
2525 "tbh", "\t[$a, $b, lsl #1]", []> {
2526 let Inst{31-27} = 0b11101;
2527 let Inst{26-20} = 0b0001101;
2528 let Inst{15-8} = 0b11110000;
2529 let Inst{7-4} = 0b0001; // H form
2530}
Evan Cheng5657c012009-07-29 02:18:14 +00002531} // isNotDuplicable, isIndirectBranch
2532
David Goodwinc9a59b52009-06-30 19:50:22 +00002533} // isBranch, isTerminator, isBarrier
David Goodwin5e47a9a2009-06-30 18:04:13 +00002534
2535// FIXME: should be able to write a pattern for ARMBrcond, but can't use
2536// a two-value operand where a dag node expects two operands. :(
2537let isBranch = 1, isTerminator = 1 in
David Goodwin8b7d7ad2009-08-06 16:52:47 +00002538def t2Bcc : T2I<(outs), (ins brtarget:$target), IIC_Br,
Evan Cheng699beba2009-10-27 00:08:59 +00002539 "b", ".w\t$target",
Johnny Chend68e1192009-12-15 17:24:14 +00002540 [/*(ARMbrcond bb:$target, imm:$cc)*/]> {
2541 let Inst{31-27} = 0b11110;
2542 let Inst{15-14} = 0b10;
2543 let Inst{12} = 0;
2544}
Evan Chengf49810c2009-06-23 17:48:47 +00002545
Evan Cheng06e16582009-07-10 01:54:42 +00002546
2547// IT block
Evan Cheng86050dc2010-06-18 23:09:54 +00002548let Defs = [ITSTATE] in
Evan Cheng06e16582009-07-10 01:54:42 +00002549def t2IT : Thumb2XI<(outs), (ins it_pred:$cc, it_mask:$mask),
David Goodwin5d598aa2009-08-19 18:00:44 +00002550 AddrModeNone, Size2Bytes, IIC_iALUx,
Johnny Chend68e1192009-12-15 17:24:14 +00002551 "it$mask\t$cc", "", []> {
2552 // 16-bit instruction.
Johnny Chenbbc71b22009-12-16 02:32:54 +00002553 let Inst{31-16} = 0x0000;
Johnny Chend68e1192009-12-15 17:24:14 +00002554 let Inst{15-8} = 0b10111111;
2555}
Evan Cheng06e16582009-07-10 01:54:42 +00002556
Johnny Chence6275f2010-02-25 19:05:29 +00002557// Branch and Exchange Jazelle -- for disassembly only
2558// Rm = Inst{19-16}
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002559def t2BXJ : T2I<(outs), (ins rGPR:$func), NoItinerary, "bxj", "\t$func",
Johnny Chence6275f2010-02-25 19:05:29 +00002560 [/* For disassembly only; pattern left blank */]> {
2561 let Inst{31-27} = 0b11110;
2562 let Inst{26} = 0;
2563 let Inst{25-20} = 0b111100;
2564 let Inst{15-14} = 0b10;
2565 let Inst{12} = 0;
2566}
2567
Johnny Chen93042d12010-03-02 18:14:57 +00002568// Change Processor State is a system instruction -- for disassembly only.
2569// The singleton $opt operand contains the following information:
2570// opt{4-0} = mode from Inst{4-0}
2571// opt{5} = changemode from Inst{17}
2572// opt{8-6} = AIF from Inst{8-6}
2573// opt{10-9} = imod from Inst{19-18} with 0b10 as enable and 0b11 as disable
Johnny Chendd0f3cf2010-03-10 18:59:38 +00002574def t2CPS : T2XI<(outs),(ins cps_opt:$opt), NoItinerary, "cps$opt",
Johnny Chen93042d12010-03-02 18:14:57 +00002575 [/* For disassembly only; pattern left blank */]> {
2576 let Inst{31-27} = 0b11110;
2577 let Inst{26} = 0;
2578 let Inst{25-20} = 0b111010;
2579 let Inst{15-14} = 0b10;
2580 let Inst{12} = 0;
2581}
2582
Johnny Chen0f7866e2010-03-03 02:09:43 +00002583// A6.3.4 Branches and miscellaneous control
2584// Table A6-14 Change Processor State, and hint instructions
2585// Helper class for disassembly only.
2586class T2I_hint<bits<8> op7_0, string opc, string asm>
2587 : T2I<(outs), (ins), NoItinerary, opc, asm,
2588 [/* For disassembly only; pattern left blank */]> {
2589 let Inst{31-20} = 0xf3a;
2590 let Inst{15-14} = 0b10;
2591 let Inst{12} = 0;
2592 let Inst{10-8} = 0b000;
2593 let Inst{7-0} = op7_0;
2594}
2595
2596def t2NOP : T2I_hint<0b00000000, "nop", ".w">;
2597def t2YIELD : T2I_hint<0b00000001, "yield", ".w">;
2598def t2WFE : T2I_hint<0b00000010, "wfe", ".w">;
2599def t2WFI : T2I_hint<0b00000011, "wfi", ".w">;
2600def t2SEV : T2I_hint<0b00000100, "sev", ".w">;
2601
2602def t2DBG : T2I<(outs),(ins i32imm:$opt), NoItinerary, "dbg", "\t$opt",
2603 [/* For disassembly only; pattern left blank */]> {
2604 let Inst{31-20} = 0xf3a;
2605 let Inst{15-14} = 0b10;
2606 let Inst{12} = 0;
2607 let Inst{10-8} = 0b000;
2608 let Inst{7-4} = 0b1111;
2609}
2610
Johnny Chen6341c5a2010-02-25 20:25:24 +00002611// Secure Monitor Call is a system instruction -- for disassembly only
2612// Option = Inst{19-16}
2613def t2SMC : T2I<(outs), (ins i32imm:$opt), NoItinerary, "smc", "\t$opt",
2614 [/* For disassembly only; pattern left blank */]> {
2615 let Inst{31-27} = 0b11110;
2616 let Inst{26-20} = 0b1111111;
2617 let Inst{15-12} = 0b1000;
2618}
2619
2620// Store Return State is a system instruction -- for disassembly only
2621def t2SRSDBW : T2I<(outs),(ins i32imm:$mode),NoItinerary,"srsdb","\tsp!, $mode",
2622 [/* For disassembly only; pattern left blank */]> {
2623 let Inst{31-27} = 0b11101;
2624 let Inst{26-20} = 0b0000010; // W = 1
2625}
2626
2627def t2SRSDB : T2I<(outs),(ins i32imm:$mode),NoItinerary,"srsdb","\tsp, $mode",
2628 [/* For disassembly only; pattern left blank */]> {
2629 let Inst{31-27} = 0b11101;
2630 let Inst{26-20} = 0b0000000; // W = 0
2631}
2632
2633def t2SRSIAW : T2I<(outs),(ins i32imm:$mode),NoItinerary,"srsia","\tsp!, $mode",
2634 [/* For disassembly only; pattern left blank */]> {
2635 let Inst{31-27} = 0b11101;
2636 let Inst{26-20} = 0b0011010; // W = 1
2637}
2638
2639def t2SRSIA : T2I<(outs), (ins i32imm:$mode),NoItinerary,"srsia","\tsp, $mode",
2640 [/* For disassembly only; pattern left blank */]> {
2641 let Inst{31-27} = 0b11101;
2642 let Inst{26-20} = 0b0011000; // W = 0
2643}
2644
2645// Return From Exception is a system instruction -- for disassembly only
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002646def t2RFEDBW : T2I<(outs), (ins rGPR:$base), NoItinerary, "rfedb", "\t$base!",
Johnny Chen6341c5a2010-02-25 20:25:24 +00002647 [/* For disassembly only; pattern left blank */]> {
2648 let Inst{31-27} = 0b11101;
2649 let Inst{26-20} = 0b0000011; // W = 1
2650}
2651
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002652def t2RFEDB : T2I<(outs), (ins rGPR:$base), NoItinerary, "rfeab", "\t$base",
Johnny Chen6341c5a2010-02-25 20:25:24 +00002653 [/* For disassembly only; pattern left blank */]> {
2654 let Inst{31-27} = 0b11101;
2655 let Inst{26-20} = 0b0000001; // W = 0
2656}
2657
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002658def t2RFEIAW : T2I<(outs), (ins rGPR:$base), NoItinerary, "rfeia", "\t$base!",
Johnny Chen6341c5a2010-02-25 20:25:24 +00002659 [/* For disassembly only; pattern left blank */]> {
2660 let Inst{31-27} = 0b11101;
2661 let Inst{26-20} = 0b0011011; // W = 1
2662}
2663
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002664def t2RFEIA : T2I<(outs), (ins rGPR:$base), NoItinerary, "rfeia", "\t$base",
Johnny Chen6341c5a2010-02-25 20:25:24 +00002665 [/* For disassembly only; pattern left blank */]> {
2666 let Inst{31-27} = 0b11101;
2667 let Inst{26-20} = 0b0011001; // W = 0
2668}
2669
Evan Chengf49810c2009-06-23 17:48:47 +00002670//===----------------------------------------------------------------------===//
2671// Non-Instruction Patterns
2672//
2673
Jim Grosbach65b7f3a2009-10-21 20:44:34 +00002674// Two piece so_imms.
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002675def : T2Pat<(or rGPR:$LHS, t2_so_imm2part:$RHS),
2676 (t2ORRri (t2ORRri rGPR:$LHS, (t2_so_imm2part_1 imm:$RHS)),
Jim Grosbach65b7f3a2009-10-21 20:44:34 +00002677 (t2_so_imm2part_2 imm:$RHS))>;
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002678def : T2Pat<(xor rGPR:$LHS, t2_so_imm2part:$RHS),
2679 (t2EORri (t2EORri rGPR:$LHS, (t2_so_imm2part_1 imm:$RHS)),
Jim Grosbach65b7f3a2009-10-21 20:44:34 +00002680 (t2_so_imm2part_2 imm:$RHS))>;
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002681def : T2Pat<(add rGPR:$LHS, t2_so_imm2part:$RHS),
2682 (t2ADDri (t2ADDri rGPR:$LHS, (t2_so_imm2part_1 imm:$RHS)),
Jim Grosbach65b7f3a2009-10-21 20:44:34 +00002683 (t2_so_imm2part_2 imm:$RHS))>;
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002684def : T2Pat<(add rGPR:$LHS, t2_so_neg_imm2part:$RHS),
2685 (t2SUBri (t2SUBri rGPR:$LHS, (t2_so_neg_imm2part_1 imm:$RHS)),
Jim Grosbach15e6ef82009-11-23 20:35:53 +00002686 (t2_so_neg_imm2part_2 imm:$RHS))>;
Jim Grosbach65b7f3a2009-10-21 20:44:34 +00002687
Evan Cheng5adb66a2009-09-28 09:14:39 +00002688// 32-bit immediate using movw + movt.
2689// This is a single pseudo instruction to make it re-materializable. Remove
2690// when we can do generalized remat.
2691let isReMaterializable = 1 in
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002692def t2MOVi32imm : T2Ix2<(outs rGPR:$dst), (ins i32imm:$src), IIC_iMOVi,
Evan Cheng699beba2009-10-27 00:08:59 +00002693 "movw", "\t$dst, ${src:lo16}\n\tmovt${p}\t$dst, ${src:hi16}",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002694 [(set rGPR:$dst, (i32 imm:$src))]>;
Evan Chengb9803a82009-11-06 23:52:48 +00002695
Anton Korobeynikov5cdc3a92009-11-24 00:44:37 +00002696// ConstantPool, GlobalAddress, and JumpTable
2697def : T2Pat<(ARMWrapper tglobaladdr :$dst), (t2LEApcrel tglobaladdr :$dst)>,
2698 Requires<[IsThumb2, DontUseMovt]>;
2699def : T2Pat<(ARMWrapper tconstpool :$dst), (t2LEApcrel tconstpool :$dst)>;
2700def : T2Pat<(ARMWrapper tglobaladdr :$dst), (t2MOVi32imm tglobaladdr :$dst)>,
2701 Requires<[IsThumb2, UseMovt]>;
2702
2703def : T2Pat<(ARMWrapperJT tjumptable:$dst, imm:$id),
2704 (t2LEApcrelJT tjumptable:$dst, imm:$id)>;
2705
Evan Chengb9803a82009-11-06 23:52:48 +00002706// Pseudo instruction that combines ldr from constpool and add pc. This should
2707// be expanded into two instructions late to allow if-conversion and
2708// scheduling.
Dan Gohmanbc9d98b2010-02-27 23:47:46 +00002709let canFoldAsLoad = 1, isReMaterializable = 1 in
Evan Chengb9803a82009-11-06 23:52:48 +00002710def t2LDRpci_pic : PseudoInst<(outs GPR:$dst), (ins i32imm:$addr, pclabel:$cp),
Jim Grosbach18f30e62010-06-02 21:53:11 +00002711 NoItinerary,
2712 "${:comment} ldr.w\t$dst, $addr\n$cp:\n\tadd\t$dst, pc",
Evan Chengb9803a82009-11-06 23:52:48 +00002713 [(set GPR:$dst, (ARMpic_add (load (ARMWrapper tconstpool:$addr)),
2714 imm:$cp))]>,
2715 Requires<[IsThumb2]>;
Johnny Chen23336552010-02-25 18:46:43 +00002716
2717//===----------------------------------------------------------------------===//
2718// Move between special register and ARM core register -- for disassembly only
2719//
2720
2721// Rd = Instr{11-8}
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002722def t2MRS : T2I<(outs rGPR:$dst), (ins), NoItinerary, "mrs", "\t$dst, cpsr",
Johnny Chen23336552010-02-25 18:46:43 +00002723 [/* For disassembly only; pattern left blank */]> {
2724 let Inst{31-27} = 0b11110;
2725 let Inst{26} = 0;
2726 let Inst{25-21} = 0b11111;
2727 let Inst{20} = 0; // The R bit.
2728 let Inst{15-14} = 0b10;
2729 let Inst{12} = 0;
2730}
2731
2732// Rd = Instr{11-8}
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002733def t2MRSsys : T2I<(outs rGPR:$dst), (ins), NoItinerary, "mrs", "\t$dst, spsr",
Johnny Chen23336552010-02-25 18:46:43 +00002734 [/* For disassembly only; pattern left blank */]> {
2735 let Inst{31-27} = 0b11110;
2736 let Inst{26} = 0;
2737 let Inst{25-21} = 0b11111;
2738 let Inst{20} = 1; // The R bit.
2739 let Inst{15-14} = 0b10;
2740 let Inst{12} = 0;
2741}
2742
Johnny Chen23336552010-02-25 18:46:43 +00002743// Rn = Inst{19-16}
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002744def t2MSR : T2I<(outs), (ins rGPR:$src, msr_mask:$mask), NoItinerary, "msr",
Johnny Chendd0f3cf2010-03-10 18:59:38 +00002745 "\tcpsr$mask, $src",
Johnny Chen23336552010-02-25 18:46:43 +00002746 [/* For disassembly only; pattern left blank */]> {
2747 let Inst{31-27} = 0b11110;
2748 let Inst{26} = 0;
2749 let Inst{25-21} = 0b11100;
2750 let Inst{20} = 0; // The R bit.
2751 let Inst{15-14} = 0b10;
2752 let Inst{12} = 0;
2753}
2754
Johnny Chen23336552010-02-25 18:46:43 +00002755// Rn = Inst{19-16}
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002756def t2MSRsys : T2I<(outs), (ins rGPR:$src, msr_mask:$mask), NoItinerary, "msr",
Johnny Chendd0f3cf2010-03-10 18:59:38 +00002757 "\tspsr$mask, $src",
Johnny Chen23336552010-02-25 18:46:43 +00002758 [/* For disassembly only; pattern left blank */]> {
2759 let Inst{31-27} = 0b11110;
2760 let Inst{26} = 0;
2761 let Inst{25-21} = 0b11100;
2762 let Inst{20} = 1; // The R bit.
2763 let Inst{15-14} = 0b10;
2764 let Inst{12} = 0;
2765}