blob: 161f50fef0c4a68ef520cd6d5ea80096804d85c2 [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
262/// reversed. It doesn't define the 'rr' form since it's handled by its
263/// T2I_bin_irs counterpart.
Johnny Chend68e1192009-12-15 17:24:14 +0000264multiclass T2I_rbin_is<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 }
Evan Chengf49810c2009-06-23 17:48:47 +0000275 // shifted register
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000276 def rs : T2sI<(outs rGPR:$dst), (ins rGPR:$rhs, t2_so_reg:$lhs), IIC_iALUsi,
Bob Wilson4876bdb2010-05-25 04:43:08 +0000277 opc, "\t$dst, $rhs, $lhs",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000278 [(set rGPR:$dst, (opnode t2_so_reg:$lhs, rGPR:$rhs))]> {
Johnny Chend68e1192009-12-15 17:24:14 +0000279 let Inst{31-27} = 0b11101;
280 let Inst{26-25} = 0b01;
281 let Inst{24-21} = opcod;
Bob Wilson4876bdb2010-05-25 04:43:08 +0000282 let Inst{20} = ?; // The S bit.
Johnny Chend68e1192009-12-15 17:24:14 +0000283 }
Evan Chengf49810c2009-06-23 17:48:47 +0000284}
285
Evan Chenga67efd12009-06-23 19:39:13 +0000286/// T2I_bin_s_irs - Similar to T2I_bin_irs except it sets the 's' bit so the
Anton Korobeynikov52237112009-06-17 18:13:58 +0000287/// instruction modifies the CPSR register.
288let Defs = [CPSR] in {
Johnny Chend68e1192009-12-15 17:24:14 +0000289multiclass T2I_bin_s_irs<bits<4> opcod, string opc, PatFrag opnode,
290 bit Commutable = 0> {
Anton Korobeynikov52237112009-06-17 18:13:58 +0000291 // shifted imm
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000292 def ri : T2I<(outs rGPR:$dst), (ins GPR:$lhs, t2_so_imm:$rhs), IIC_iALUi,
Evan Cheng699beba2009-10-27 00:08:59 +0000293 !strconcat(opc, "s"), ".w\t$dst, $lhs, $rhs",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000294 [(set rGPR:$dst, (opnode GPR:$lhs, t2_so_imm:$rhs))]> {
Johnny Chend68e1192009-12-15 17:24:14 +0000295 let Inst{31-27} = 0b11110;
296 let Inst{25} = 0;
297 let Inst{24-21} = opcod;
298 let Inst{20} = 1; // The S bit.
299 let Inst{15} = 0;
300 }
Evan Chenga67efd12009-06-23 19:39:13 +0000301 // register
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000302 def rr : T2I<(outs rGPR:$dst), (ins GPR:$lhs, rGPR:$rhs), IIC_iALUr,
Evan Cheng699beba2009-10-27 00:08:59 +0000303 !strconcat(opc, "s"), ".w\t$dst, $lhs, $rhs",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000304 [(set rGPR:$dst, (opnode GPR:$lhs, rGPR:$rhs))]> {
Evan Cheng8de898a2009-06-26 00:19:44 +0000305 let isCommutable = Commutable;
Johnny Chend68e1192009-12-15 17:24:14 +0000306 let Inst{31-27} = 0b11101;
307 let Inst{26-25} = 0b01;
308 let Inst{24-21} = opcod;
309 let Inst{20} = 1; // The S bit.
310 let Inst{14-12} = 0b000; // imm3
311 let Inst{7-6} = 0b00; // imm2
312 let Inst{5-4} = 0b00; // type
Evan Cheng8de898a2009-06-26 00:19:44 +0000313 }
Anton Korobeynikov52237112009-06-17 18:13:58 +0000314 // shifted register
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000315 def rs : T2I<(outs rGPR:$dst), (ins GPR:$lhs, t2_so_reg:$rhs), IIC_iALUsi,
Evan Cheng699beba2009-10-27 00:08:59 +0000316 !strconcat(opc, "s"), ".w\t$dst, $lhs, $rhs",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000317 [(set rGPR:$dst, (opnode GPR:$lhs, t2_so_reg:$rhs))]> {
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 }
Anton Korobeynikov52237112009-06-17 18:13:58 +0000323}
324}
325
Evan Chenga67efd12009-06-23 19:39:13 +0000326/// T2I_bin_ii12rs - Defines a set of (op reg, {so_imm|imm0_4095|r|so_reg})
327/// patterns for a binary operation that produces a value.
Johnny Chend68e1192009-12-15 17:24:14 +0000328multiclass T2I_bin_ii12rs<bits<3> op23_21, string opc, PatFrag opnode,
329 bit Commutable = 0> {
Evan Chengf49810c2009-06-23 17:48:47 +0000330 // shifted imm
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000331 def ri : T2sI<(outs rGPR:$dst), (ins GPR:$lhs, t2_so_imm:$rhs), IIC_iALUi,
Evan Cheng699beba2009-10-27 00:08:59 +0000332 opc, ".w\t$dst, $lhs, $rhs",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000333 [(set rGPR:$dst, (opnode GPR:$lhs, t2_so_imm:$rhs))]> {
Johnny Chend68e1192009-12-15 17:24:14 +0000334 let Inst{31-27} = 0b11110;
335 let Inst{25} = 0;
336 let Inst{24} = 1;
337 let Inst{23-21} = op23_21;
338 let Inst{20} = 0; // The S bit.
339 let Inst{15} = 0;
340 }
Evan Chengf49810c2009-06-23 17:48:47 +0000341 // 12-bit imm
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000342 def ri12 : T2I<(outs rGPR:$dst), (ins GPR:$lhs, imm0_4095:$rhs), IIC_iALUi,
Bob Wilsonf5fd4992010-03-08 22:56:15 +0000343 !strconcat(opc, "w"), "\t$dst, $lhs, $rhs",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000344 [(set rGPR:$dst, (opnode GPR:$lhs, imm0_4095:$rhs))]> {
Johnny Chend68e1192009-12-15 17:24:14 +0000345 let Inst{31-27} = 0b11110;
346 let Inst{25} = 1;
347 let Inst{24} = 0;
348 let Inst{23-21} = op23_21;
349 let Inst{20} = 0; // The S bit.
350 let Inst{15} = 0;
351 }
Evan Chenga67efd12009-06-23 19:39:13 +0000352 // register
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000353 def rr : T2sI<(outs rGPR:$dst), (ins GPR:$lhs, rGPR:$rhs), IIC_iALUr,
Evan Cheng699beba2009-10-27 00:08:59 +0000354 opc, ".w\t$dst, $lhs, $rhs",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000355 [(set rGPR:$dst, (opnode GPR:$lhs, rGPR:$rhs))]> {
Evan Cheng8de898a2009-06-26 00:19:44 +0000356 let isCommutable = Commutable;
Johnny Chend68e1192009-12-15 17:24:14 +0000357 let Inst{31-27} = 0b11101;
358 let Inst{26-25} = 0b01;
359 let Inst{24} = 1;
360 let Inst{23-21} = op23_21;
361 let Inst{20} = 0; // The S bit.
362 let Inst{14-12} = 0b000; // imm3
363 let Inst{7-6} = 0b00; // imm2
364 let Inst{5-4} = 0b00; // type
Evan Cheng8de898a2009-06-26 00:19:44 +0000365 }
Evan Chengf49810c2009-06-23 17:48:47 +0000366 // shifted register
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000367 def rs : T2sI<(outs rGPR:$dst), (ins GPR:$lhs, t2_so_reg:$rhs), IIC_iALUsi,
Evan Cheng699beba2009-10-27 00:08:59 +0000368 opc, ".w\t$dst, $lhs, $rhs",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000369 [(set rGPR:$dst, (opnode GPR:$lhs, t2_so_reg:$rhs))]> {
Johnny Chend68e1192009-12-15 17:24:14 +0000370 let Inst{31-27} = 0b11101;
Johnny Chend68e1192009-12-15 17:24:14 +0000371 let Inst{26-25} = 0b01;
Johnny Chend248ffb2010-01-08 17:41:33 +0000372 let Inst{24} = 1;
Johnny Chend68e1192009-12-15 17:24:14 +0000373 let Inst{23-21} = op23_21;
374 let Inst{20} = 0; // The S bit.
375 }
Evan Chengf49810c2009-06-23 17:48:47 +0000376}
377
Jim Grosbach6935efc2009-11-24 00:20:27 +0000378/// T2I_adde_sube_irs - Defines a set of (op reg, {so_imm|r|so_reg}) patterns
Jim Grosbach39be8fc2010-02-16 20:42:29 +0000379/// for a binary operation that produces a value and use the carry
Jim Grosbach6935efc2009-11-24 00:20:27 +0000380/// bit. It's not predicable.
Evan Cheng62674222009-06-25 23:34:10 +0000381let Uses = [CPSR] in {
Jim Grosbach80dc1162010-02-16 21:23:02 +0000382multiclass T2I_adde_sube_irs<bits<4> opcod, string opc, PatFrag opnode,
383 bit Commutable = 0> {
Anton Korobeynikov52237112009-06-17 18:13:58 +0000384 // shifted imm
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000385 def ri : T2sI<(outs rGPR:$dst), (ins rGPR:$lhs, t2_so_imm:$rhs), IIC_iALUi,
Evan Cheng699beba2009-10-27 00:08:59 +0000386 opc, "\t$dst, $lhs, $rhs",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000387 [(set rGPR:$dst, (opnode rGPR:$lhs, t2_so_imm:$rhs))]>,
Jim Grosbach39be8fc2010-02-16 20:42:29 +0000388 Requires<[IsThumb2]> {
Johnny Chend68e1192009-12-15 17:24:14 +0000389 let Inst{31-27} = 0b11110;
390 let Inst{25} = 0;
391 let Inst{24-21} = opcod;
392 let Inst{20} = 0; // The S bit.
393 let Inst{15} = 0;
394 }
Evan Chenga67efd12009-06-23 19:39:13 +0000395 // register
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000396 def rr : T2sI<(outs rGPR:$dst), (ins rGPR:$lhs, rGPR:$rhs), IIC_iALUr,
Evan Cheng699beba2009-10-27 00:08:59 +0000397 opc, ".w\t$dst, $lhs, $rhs",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000398 [(set rGPR:$dst, (opnode rGPR:$lhs, rGPR:$rhs))]>,
Jim Grosbach39be8fc2010-02-16 20:42:29 +0000399 Requires<[IsThumb2]> {
Evan Cheng8de898a2009-06-26 00:19:44 +0000400 let isCommutable = Commutable;
Johnny Chend68e1192009-12-15 17:24:14 +0000401 let Inst{31-27} = 0b11101;
402 let Inst{26-25} = 0b01;
403 let Inst{24-21} = opcod;
404 let Inst{20} = 0; // The S bit.
405 let Inst{14-12} = 0b000; // imm3
406 let Inst{7-6} = 0b00; // imm2
407 let Inst{5-4} = 0b00; // type
Evan Cheng8de898a2009-06-26 00:19:44 +0000408 }
Anton Korobeynikov52237112009-06-17 18:13:58 +0000409 // shifted register
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000410 def rs : T2sI<(outs rGPR:$dst), (ins rGPR:$lhs, t2_so_reg:$rhs), IIC_iALUsi,
Evan Cheng699beba2009-10-27 00:08:59 +0000411 opc, ".w\t$dst, $lhs, $rhs",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000412 [(set rGPR:$dst, (opnode rGPR:$lhs, t2_so_reg:$rhs))]>,
Jim Grosbach39be8fc2010-02-16 20:42:29 +0000413 Requires<[IsThumb2]> {
Johnny Chend68e1192009-12-15 17:24:14 +0000414 let Inst{31-27} = 0b11101;
415 let Inst{26-25} = 0b01;
416 let Inst{24-21} = opcod;
417 let Inst{20} = 0; // The S bit.
418 }
Jim Grosbach39be8fc2010-02-16 20:42:29 +0000419}
420
421// Carry setting variants
422let Defs = [CPSR] in {
Jim Grosbach80dc1162010-02-16 21:23:02 +0000423multiclass T2I_adde_sube_s_irs<bits<4> opcod, string opc, PatFrag opnode,
424 bit Commutable = 0> {
Evan Cheng62674222009-06-25 23:34:10 +0000425 // shifted imm
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000426 def ri : T2sI<(outs rGPR:$dst), (ins rGPR:$lhs, t2_so_imm:$rhs), IIC_iALUi,
Johnny Chenb5031ad2010-03-02 19:38:59 +0000427 opc, "\t$dst, $lhs, $rhs",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000428 [(set rGPR:$dst, (opnode rGPR:$lhs, t2_so_imm:$rhs))]>,
Johnny Chenb5031ad2010-03-02 19:38:59 +0000429 Requires<[IsThumb2]> {
Johnny Chend68e1192009-12-15 17:24:14 +0000430 let Inst{31-27} = 0b11110;
431 let Inst{25} = 0;
432 let Inst{24-21} = opcod;
433 let Inst{20} = 1; // The S bit.
434 let Inst{15} = 0;
435 }
Evan Cheng62674222009-06-25 23:34:10 +0000436 // register
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000437 def rr : T2sI<(outs rGPR:$dst), (ins rGPR:$lhs, rGPR:$rhs), IIC_iALUr,
Johnny Chenb5031ad2010-03-02 19:38:59 +0000438 opc, ".w\t$dst, $lhs, $rhs",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000439 [(set rGPR:$dst, (opnode rGPR:$lhs, rGPR:$rhs))]>,
Johnny Chenb5031ad2010-03-02 19:38:59 +0000440 Requires<[IsThumb2]> {
Johnny Chend68e1192009-12-15 17:24:14 +0000441 let isCommutable = Commutable;
442 let Inst{31-27} = 0b11101;
443 let Inst{26-25} = 0b01;
444 let Inst{24-21} = opcod;
445 let Inst{20} = 1; // The S bit.
446 let Inst{14-12} = 0b000; // imm3
447 let Inst{7-6} = 0b00; // imm2
448 let Inst{5-4} = 0b00; // type
Evan Cheng8de898a2009-06-26 00:19:44 +0000449 }
Evan Cheng62674222009-06-25 23:34:10 +0000450 // shifted register
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000451 def rs : T2sI<(outs rGPR:$dst), (ins rGPR:$lhs, t2_so_reg:$rhs), IIC_iALUsi,
Johnny Chenb5031ad2010-03-02 19:38:59 +0000452 opc, ".w\t$dst, $lhs, $rhs",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000453 [(set rGPR:$dst, (opnode rGPR:$lhs, t2_so_reg:$rhs))]>,
Johnny Chenb5031ad2010-03-02 19:38:59 +0000454 Requires<[IsThumb2]> {
Johnny Chend68e1192009-12-15 17:24:14 +0000455 let Inst{31-27} = 0b11101;
456 let Inst{26-25} = 0b01;
457 let Inst{24-21} = opcod;
458 let Inst{20} = 1; // The S bit.
Evan Cheng8de898a2009-06-26 00:19:44 +0000459 }
Evan Chengf49810c2009-06-23 17:48:47 +0000460}
461}
Jim Grosbach39be8fc2010-02-16 20:42:29 +0000462}
Evan Chengf49810c2009-06-23 17:48:47 +0000463
David Goodwinaf0d08d2009-07-27 16:31:55 +0000464/// T2I_rbin_s_is - Same as T2I_rbin_is except sets 's' bit.
Evan Cheng1e249e32009-06-25 20:59:23 +0000465let Defs = [CPSR] in {
Johnny Chend68e1192009-12-15 17:24:14 +0000466multiclass T2I_rbin_s_is<bits<4> opcod, string opc, PatFrag opnode> {
Evan Chengf49810c2009-06-23 17:48:47 +0000467 // shifted imm
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000468 def ri : T2I<(outs rGPR:$dst), (ins rGPR:$rhs, t2_so_imm:$lhs), IIC_iALUi,
Bob Wilson4876bdb2010-05-25 04:43:08 +0000469 !strconcat(opc, "s"), ".w\t$dst, $rhs, $lhs",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000470 [(set rGPR:$dst, (opnode t2_so_imm:$lhs, rGPR:$rhs))]> {
Johnny Chend68e1192009-12-15 17:24:14 +0000471 let Inst{31-27} = 0b11110;
472 let Inst{25} = 0;
473 let Inst{24-21} = opcod;
474 let Inst{20} = 1; // The S bit.
475 let Inst{15} = 0;
476 }
Evan Chengf49810c2009-06-23 17:48:47 +0000477 // shifted register
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000478 def rs : T2I<(outs rGPR:$dst), (ins rGPR:$rhs, t2_so_reg:$lhs), IIC_iALUsi,
Bob Wilson4876bdb2010-05-25 04:43:08 +0000479 !strconcat(opc, "s"), "\t$dst, $rhs, $lhs",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000480 [(set rGPR:$dst, (opnode t2_so_reg:$lhs, rGPR:$rhs))]> {
Johnny Chend68e1192009-12-15 17:24:14 +0000481 let Inst{31-27} = 0b11101;
482 let Inst{26-25} = 0b01;
483 let Inst{24-21} = opcod;
484 let Inst{20} = 1; // The S bit.
485 }
Evan Chengf49810c2009-06-23 17:48:47 +0000486}
487}
488
Evan Chenga67efd12009-06-23 19:39:13 +0000489/// T2I_sh_ir - Defines a set of (op reg, {so_imm|r}) patterns for a shift /
490// rotate operation that produces a value.
Johnny Chend68e1192009-12-15 17:24:14 +0000491multiclass T2I_sh_ir<bits<2> opcod, string opc, PatFrag opnode> {
Evan Chenga67efd12009-06-23 19:39:13 +0000492 // 5-bit imm
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000493 def ri : T2sI<(outs rGPR:$dst), (ins rGPR:$lhs, i32imm:$rhs), IIC_iMOVsi,
Evan Cheng699beba2009-10-27 00:08:59 +0000494 opc, ".w\t$dst, $lhs, $rhs",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000495 [(set rGPR:$dst, (opnode rGPR:$lhs, imm1_31:$rhs))]> {
Johnny Chend68e1192009-12-15 17:24:14 +0000496 let Inst{31-27} = 0b11101;
497 let Inst{26-21} = 0b010010;
498 let Inst{19-16} = 0b1111; // Rn
499 let Inst{5-4} = opcod;
500 }
Evan Chenga67efd12009-06-23 19:39:13 +0000501 // register
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000502 def rr : T2sI<(outs rGPR:$dst), (ins rGPR:$lhs, rGPR:$rhs), IIC_iMOVsr,
Evan Cheng699beba2009-10-27 00:08:59 +0000503 opc, ".w\t$dst, $lhs, $rhs",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000504 [(set rGPR:$dst, (opnode rGPR:$lhs, rGPR:$rhs))]> {
Johnny Chend68e1192009-12-15 17:24:14 +0000505 let Inst{31-27} = 0b11111;
506 let Inst{26-23} = 0b0100;
507 let Inst{22-21} = opcod;
508 let Inst{15-12} = 0b1111;
509 let Inst{7-4} = 0b0000;
510 }
Evan Chenga67efd12009-06-23 19:39:13 +0000511}
Evan Chengf49810c2009-06-23 17:48:47 +0000512
Johnny Chend68e1192009-12-15 17:24:14 +0000513/// T2I_cmp_irs - Defines a set of (op r, {so_imm|r|so_reg}) cmp / test
Evan Chenga67efd12009-06-23 19:39:13 +0000514/// patterns. Similar to T2I_bin_irs except the instruction does not produce
Evan Chengf49810c2009-06-23 17:48:47 +0000515/// a explicit result, only implicitly set CPSR.
David Goodwinc27a4542009-07-20 22:13:31 +0000516let Defs = [CPSR] in {
Johnny Chend68e1192009-12-15 17:24:14 +0000517multiclass T2I_cmp_irs<bits<4> opcod, string opc, PatFrag opnode> {
Evan Chengf49810c2009-06-23 17:48:47 +0000518 // shifted imm
David Goodwin5d598aa2009-08-19 18:00:44 +0000519 def ri : T2I<(outs), (ins GPR:$lhs, t2_so_imm:$rhs), IIC_iCMPi,
Evan Cheng699beba2009-10-27 00:08:59 +0000520 opc, ".w\t$lhs, $rhs",
Johnny Chend68e1192009-12-15 17:24:14 +0000521 [(opnode GPR:$lhs, t2_so_imm:$rhs)]> {
522 let Inst{31-27} = 0b11110;
523 let Inst{25} = 0;
524 let Inst{24-21} = opcod;
525 let Inst{20} = 1; // The S bit.
526 let Inst{15} = 0;
527 let Inst{11-8} = 0b1111; // Rd
528 }
Evan Chenga67efd12009-06-23 19:39:13 +0000529 // register
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000530 def rr : T2I<(outs), (ins GPR:$lhs, rGPR:$rhs), IIC_iCMPr,
Evan Cheng699beba2009-10-27 00:08:59 +0000531 opc, ".w\t$lhs, $rhs",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000532 [(opnode GPR:$lhs, rGPR:$rhs)]> {
Johnny Chend68e1192009-12-15 17:24:14 +0000533 let Inst{31-27} = 0b11101;
534 let Inst{26-25} = 0b01;
535 let Inst{24-21} = opcod;
536 let Inst{20} = 1; // The S bit.
537 let Inst{14-12} = 0b000; // imm3
538 let Inst{11-8} = 0b1111; // Rd
539 let Inst{7-6} = 0b00; // imm2
540 let Inst{5-4} = 0b00; // type
541 }
Evan Chengf49810c2009-06-23 17:48:47 +0000542 // shifted register
David Goodwin5d598aa2009-08-19 18:00:44 +0000543 def rs : T2I<(outs), (ins GPR:$lhs, t2_so_reg:$rhs), IIC_iCMPsi,
Evan Cheng699beba2009-10-27 00:08:59 +0000544 opc, ".w\t$lhs, $rhs",
Johnny Chend68e1192009-12-15 17:24:14 +0000545 [(opnode GPR:$lhs, t2_so_reg:$rhs)]> {
546 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{11-8} = 0b1111; // Rd
551 }
Anton Korobeynikov52237112009-06-17 18:13:58 +0000552}
553}
554
Evan Chengf3c21b82009-06-30 02:15:48 +0000555/// T2I_ld - Defines a set of (op r, {imm12|imm8|so_reg}) load patterns.
Johnny Chend68e1192009-12-15 17:24:14 +0000556multiclass T2I_ld<bit signed, bits<2> opcod, string opc, PatFrag opnode> {
David Goodwin5d598aa2009-08-19 18:00:44 +0000557 def i12 : T2Ii12<(outs GPR:$dst), (ins t2addrmode_imm12:$addr), IIC_iLoadi,
Evan Cheng699beba2009-10-27 00:08:59 +0000558 opc, ".w\t$dst, $addr",
Johnny Chend68e1192009-12-15 17:24:14 +0000559 [(set GPR:$dst, (opnode t2addrmode_imm12:$addr))]> {
560 let Inst{31-27} = 0b11111;
561 let Inst{26-25} = 0b00;
562 let Inst{24} = signed;
563 let Inst{23} = 1;
564 let Inst{22-21} = opcod;
565 let Inst{20} = 1; // load
566 }
David Goodwin5d598aa2009-08-19 18:00:44 +0000567 def i8 : T2Ii8 <(outs GPR:$dst), (ins t2addrmode_imm8:$addr), IIC_iLoadi,
Evan Cheng699beba2009-10-27 00:08:59 +0000568 opc, "\t$dst, $addr",
Johnny Chend68e1192009-12-15 17:24:14 +0000569 [(set GPR:$dst, (opnode t2addrmode_imm8:$addr))]> {
570 let Inst{31-27} = 0b11111;
571 let Inst{26-25} = 0b00;
572 let Inst{24} = signed;
573 let Inst{23} = 0;
574 let Inst{22-21} = opcod;
575 let Inst{20} = 1; // load
576 let Inst{11} = 1;
577 // Offset: index==TRUE, wback==FALSE
578 let Inst{10} = 1; // The P bit.
579 let Inst{8} = 0; // The W bit.
580 }
David Goodwin5d598aa2009-08-19 18:00:44 +0000581 def s : T2Iso <(outs GPR:$dst), (ins t2addrmode_so_reg:$addr), IIC_iLoadr,
Evan Cheng699beba2009-10-27 00:08:59 +0000582 opc, ".w\t$dst, $addr",
Johnny Chend68e1192009-12-15 17:24:14 +0000583 [(set GPR:$dst, (opnode t2addrmode_so_reg:$addr))]> {
584 let Inst{31-27} = 0b11111;
585 let Inst{26-25} = 0b00;
586 let Inst{24} = signed;
587 let Inst{23} = 0;
588 let Inst{22-21} = opcod;
589 let Inst{20} = 1; // load
590 let Inst{11-6} = 0b000000;
591 }
David Goodwin5d598aa2009-08-19 18:00:44 +0000592 def pci : T2Ipc <(outs GPR:$dst), (ins i32imm:$addr), IIC_iLoadi,
Evan Cheng699beba2009-10-27 00:08:59 +0000593 opc, ".w\t$dst, $addr",
Evan Cheng9eda6892009-10-31 03:39:36 +0000594 [(set GPR:$dst, (opnode (ARMWrapper tconstpool:$addr)))]> {
595 let isReMaterializable = 1;
Johnny Chend68e1192009-12-15 17:24:14 +0000596 let Inst{31-27} = 0b11111;
597 let Inst{26-25} = 0b00;
598 let Inst{24} = signed;
599 let Inst{23} = ?; // add = (U == '1')
600 let Inst{22-21} = opcod;
601 let Inst{20} = 1; // load
602 let Inst{19-16} = 0b1111; // Rn
Evan Cheng9eda6892009-10-31 03:39:36 +0000603 }
Evan Chengf3c21b82009-06-30 02:15:48 +0000604}
605
David Goodwin73b8f162009-06-30 22:11:34 +0000606/// T2I_st - Defines a set of (op r, {imm12|imm8|so_reg}) store patterns.
Johnny Chend68e1192009-12-15 17:24:14 +0000607multiclass T2I_st<bits<2> opcod, string opc, PatFrag opnode> {
David Goodwin5d598aa2009-08-19 18:00:44 +0000608 def i12 : T2Ii12<(outs), (ins GPR:$src, t2addrmode_imm12:$addr), IIC_iStorei,
Evan Cheng699beba2009-10-27 00:08:59 +0000609 opc, ".w\t$src, $addr",
Johnny Chend68e1192009-12-15 17:24:14 +0000610 [(opnode GPR:$src, t2addrmode_imm12:$addr)]> {
611 let Inst{31-27} = 0b11111;
612 let Inst{26-23} = 0b0001;
613 let Inst{22-21} = opcod;
614 let Inst{20} = 0; // !load
615 }
David Goodwin5d598aa2009-08-19 18:00:44 +0000616 def i8 : T2Ii8 <(outs), (ins GPR:$src, t2addrmode_imm8:$addr), IIC_iStorei,
Evan Cheng699beba2009-10-27 00:08:59 +0000617 opc, "\t$src, $addr",
Johnny Chend68e1192009-12-15 17:24:14 +0000618 [(opnode GPR:$src, t2addrmode_imm8:$addr)]> {
619 let Inst{31-27} = 0b11111;
620 let Inst{26-23} = 0b0000;
621 let Inst{22-21} = opcod;
622 let Inst{20} = 0; // !load
623 let Inst{11} = 1;
624 // Offset: index==TRUE, wback==FALSE
625 let Inst{10} = 1; // The P bit.
626 let Inst{8} = 0; // The W bit.
627 }
David Goodwin5d598aa2009-08-19 18:00:44 +0000628 def s : T2Iso <(outs), (ins GPR:$src, t2addrmode_so_reg:$addr), IIC_iStorer,
Evan Cheng699beba2009-10-27 00:08:59 +0000629 opc, ".w\t$src, $addr",
Johnny Chend68e1192009-12-15 17:24:14 +0000630 [(opnode GPR:$src, t2addrmode_so_reg:$addr)]> {
631 let Inst{31-27} = 0b11111;
632 let Inst{26-23} = 0b0000;
633 let Inst{22-21} = opcod;
634 let Inst{20} = 0; // !load
635 let Inst{11-6} = 0b000000;
636 }
David Goodwin73b8f162009-06-30 22:11:34 +0000637}
638
Evan Chengd27c9fc2009-07-03 01:43:10 +0000639/// T2I_unary_rrot - A unary operation with two forms: one whose operand is a
640/// register and one whose operand is a register rotated by 8/16/24.
Johnny Chend68e1192009-12-15 17:24:14 +0000641multiclass T2I_unary_rrot<bits<3> opcod, string opc, PatFrag opnode> {
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000642 def r : T2I<(outs rGPR:$dst), (ins rGPR:$src), IIC_iUNAr,
Evan Cheng699beba2009-10-27 00:08:59 +0000643 opc, ".w\t$dst, $src",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000644 [(set rGPR:$dst, (opnode rGPR:$src))]> {
Johnny Chend68e1192009-12-15 17:24:14 +0000645 let Inst{31-27} = 0b11111;
646 let Inst{26-23} = 0b0100;
647 let Inst{22-20} = opcod;
648 let Inst{19-16} = 0b1111; // Rn
649 let Inst{15-12} = 0b1111;
650 let Inst{7} = 1;
651 let Inst{5-4} = 0b00; // rotate
652 }
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000653 def r_rot : T2I<(outs rGPR:$dst), (ins rGPR:$src, i32imm:$rot), IIC_iUNAsi,
Evan Cheng699beba2009-10-27 00:08:59 +0000654 opc, ".w\t$dst, $src, ror $rot",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000655 [(set rGPR:$dst, (opnode (rotr rGPR:$src, rot_imm:$rot)))]> {
Johnny Chend68e1192009-12-15 17:24:14 +0000656 let Inst{31-27} = 0b11111;
657 let Inst{26-23} = 0b0100;
658 let Inst{22-20} = opcod;
659 let Inst{19-16} = 0b1111; // Rn
660 let Inst{15-12} = 0b1111;
661 let Inst{7} = 1;
662 let Inst{5-4} = {?,?}; // rotate
663 }
Evan Chengd27c9fc2009-07-03 01:43:10 +0000664}
665
Eli Friedman761fa7a2010-06-24 18:20:04 +0000666// UXTB16 - Requres T2ExtractPack, does not need the .w qualifier.
667multiclass T2I_unary_rrot_uxtb16<bits<3> opcod, string opc, PatFrag opnode> {
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000668 def r : T2I<(outs rGPR:$dst), (ins rGPR:$src), IIC_iUNAr,
Johnny Chen267124c2010-03-04 22:24:41 +0000669 opc, "\t$dst, $src",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000670 [(set rGPR:$dst, (opnode rGPR:$src))]>,
Jim Grosbach29402132010-05-05 23:44:43 +0000671 Requires<[HasT2ExtractPack]> {
Johnny Chen267124c2010-03-04 22:24:41 +0000672 let Inst{31-27} = 0b11111;
673 let Inst{26-23} = 0b0100;
674 let Inst{22-20} = opcod;
675 let Inst{19-16} = 0b1111; // Rn
676 let Inst{15-12} = 0b1111;
677 let Inst{7} = 1;
678 let Inst{5-4} = 0b00; // rotate
679 }
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000680 def r_rot : T2I<(outs rGPR:$dst), (ins rGPR:$src, i32imm:$rot), IIC_iUNAsi,
Johnny Chen267124c2010-03-04 22:24:41 +0000681 opc, "\t$dst, $src, ror $rot",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000682 [(set rGPR:$dst, (opnode (rotr rGPR:$src, rot_imm:$rot)))]>,
Jim Grosbach29402132010-05-05 23:44:43 +0000683 Requires<[HasT2ExtractPack]> {
Johnny Chen267124c2010-03-04 22:24:41 +0000684 let Inst{31-27} = 0b11111;
685 let Inst{26-23} = 0b0100;
686 let Inst{22-20} = opcod;
687 let Inst{19-16} = 0b1111; // Rn
688 let Inst{15-12} = 0b1111;
689 let Inst{7} = 1;
690 let Inst{5-4} = {?,?}; // rotate
691 }
692}
693
Eli Friedman761fa7a2010-06-24 18:20:04 +0000694// SXTB16 - Requres T2ExtractPack, does not need the .w qualifier, no pattern
695// supported yet.
696multiclass T2I_unary_rrot_sxtb16<bits<3> opcod, string opc> {
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000697 def r : T2I<(outs rGPR:$dst), (ins rGPR:$src), IIC_iUNAr,
Johnny Chen93042d12010-03-02 18:14:57 +0000698 opc, "\t$dst, $src", []> {
699 let Inst{31-27} = 0b11111;
700 let Inst{26-23} = 0b0100;
701 let Inst{22-20} = opcod;
702 let Inst{19-16} = 0b1111; // Rn
703 let Inst{15-12} = 0b1111;
704 let Inst{7} = 1;
705 let Inst{5-4} = 0b00; // rotate
706 }
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000707 def r_rot : T2I<(outs rGPR:$dst), (ins rGPR:$src, i32imm:$rot), IIC_iUNAsi,
Johnny Chen93042d12010-03-02 18:14:57 +0000708 opc, "\t$dst, $src, ror $rot", []> {
709 let Inst{31-27} = 0b11111;
710 let Inst{26-23} = 0b0100;
711 let Inst{22-20} = opcod;
712 let Inst{19-16} = 0b1111; // Rn
713 let Inst{15-12} = 0b1111;
714 let Inst{7} = 1;
715 let Inst{5-4} = {?,?}; // rotate
716 }
717}
718
Evan Chengd27c9fc2009-07-03 01:43:10 +0000719/// T2I_bin_rrot - A binary operation with two forms: one whose operand is a
720/// register and one whose operand is a register rotated by 8/16/24.
Johnny Chend68e1192009-12-15 17:24:14 +0000721multiclass T2I_bin_rrot<bits<3> opcod, string opc, PatFrag opnode> {
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000722 def rr : T2I<(outs rGPR:$dst), (ins rGPR:$LHS, rGPR:$RHS), IIC_iALUr,
Evan Cheng699beba2009-10-27 00:08:59 +0000723 opc, "\t$dst, $LHS, $RHS",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000724 [(set rGPR:$dst, (opnode rGPR:$LHS, rGPR:$RHS))]>,
Jim Grosbach29402132010-05-05 23:44:43 +0000725 Requires<[HasT2ExtractPack]> {
Johnny Chend68e1192009-12-15 17:24:14 +0000726 let Inst{31-27} = 0b11111;
727 let Inst{26-23} = 0b0100;
728 let Inst{22-20} = opcod;
729 let Inst{15-12} = 0b1111;
730 let Inst{7} = 1;
731 let Inst{5-4} = 0b00; // rotate
732 }
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000733 def rr_rot : T2I<(outs rGPR:$dst), (ins rGPR:$LHS, rGPR:$RHS, i32imm:$rot),
Evan Cheng699beba2009-10-27 00:08:59 +0000734 IIC_iALUsr, opc, "\t$dst, $LHS, $RHS, ror $rot",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000735 [(set rGPR:$dst, (opnode rGPR:$LHS,
736 (rotr rGPR:$RHS, rot_imm:$rot)))]>,
Jim Grosbach29402132010-05-05 23:44:43 +0000737 Requires<[HasT2ExtractPack]> {
Johnny Chend68e1192009-12-15 17:24:14 +0000738 let Inst{31-27} = 0b11111;
739 let Inst{26-23} = 0b0100;
740 let Inst{22-20} = opcod;
741 let Inst{15-12} = 0b1111;
742 let Inst{7} = 1;
743 let Inst{5-4} = {?,?}; // rotate
744 }
Evan Chengd27c9fc2009-07-03 01:43:10 +0000745}
746
Johnny Chen93042d12010-03-02 18:14:57 +0000747// DO variant - disassembly only, no pattern
748
749multiclass T2I_bin_rrot_DO<bits<3> opcod, string opc> {
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000750 def rr : T2I<(outs rGPR:$dst), (ins rGPR:$LHS, rGPR:$RHS), IIC_iALUr,
Johnny Chen93042d12010-03-02 18:14:57 +0000751 opc, "\t$dst, $LHS, $RHS", []> {
752 let Inst{31-27} = 0b11111;
753 let Inst{26-23} = 0b0100;
754 let Inst{22-20} = opcod;
755 let Inst{15-12} = 0b1111;
756 let Inst{7} = 1;
757 let Inst{5-4} = 0b00; // rotate
758 }
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000759 def rr_rot : T2I<(outs rGPR:$dst), (ins rGPR:$LHS, rGPR:$RHS, i32imm:$rot),
Johnny Chen93042d12010-03-02 18:14:57 +0000760 IIC_iALUsr, opc, "\t$dst, $LHS, $RHS, ror $rot", []> {
761 let Inst{31-27} = 0b11111;
762 let Inst{26-23} = 0b0100;
763 let Inst{22-20} = opcod;
764 let Inst{15-12} = 0b1111;
765 let Inst{7} = 1;
766 let Inst{5-4} = {?,?}; // rotate
767 }
768}
769
Anton Korobeynikov52237112009-06-17 18:13:58 +0000770//===----------------------------------------------------------------------===//
Evan Cheng9cb9e672009-06-27 02:26:13 +0000771// Instructions
772//===----------------------------------------------------------------------===//
773
774//===----------------------------------------------------------------------===//
Evan Chenga09b9ca2009-06-24 23:47:58 +0000775// Miscellaneous Instructions.
776//
777
Evan Chenga09b9ca2009-06-24 23:47:58 +0000778// LEApcrel - Load a pc-relative address into a register without offending the
779// assembler.
Evan Chengea420b22010-05-19 01:52:25 +0000780let neverHasSideEffects = 1 in {
Evan Cheng9085f982010-05-19 07:28:01 +0000781let isReMaterializable = 1 in
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000782def t2LEApcrel : T2XI<(outs rGPR:$dst), (ins i32imm:$label, pred:$p), IIC_iALUi,
Daniel Dunbar9db683b2010-08-11 04:46:10 +0000783 "adr${p}.w\t$dst, #$label", []> {
Johnny Chend68e1192009-12-15 17:24:14 +0000784 let Inst{31-27} = 0b11110;
785 let Inst{25-24} = 0b10;
786 // Inst{23:21} = '11' (add = FALSE) or '00' (add = TRUE)
787 let Inst{22} = 0;
788 let Inst{20} = 0;
789 let Inst{19-16} = 0b1111; // Rn
790 let Inst{15} = 0;
791}
Jim Grosbacha967d112010-06-21 21:27:27 +0000792} // neverHasSideEffects
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000793def t2LEApcrelJT : T2XI<(outs rGPR:$dst),
Bob Wilson4f38b382009-08-21 21:58:55 +0000794 (ins i32imm:$label, nohash_imm:$id, pred:$p), IIC_iALUi,
Daniel Dunbar9db683b2010-08-11 04:46:10 +0000795 "adr${p}.w\t$dst, #${label}_${id}", []> {
Johnny Chend68e1192009-12-15 17:24:14 +0000796 let Inst{31-27} = 0b11110;
797 let Inst{25-24} = 0b10;
798 // Inst{23:21} = '11' (add = FALSE) or '00' (add = TRUE)
799 let Inst{22} = 0;
800 let Inst{20} = 0;
801 let Inst{19-16} = 0b1111; // Rn
802 let Inst{15} = 0;
803}
Evan Chenga09b9ca2009-06-24 23:47:58 +0000804
Evan Cheng86198642009-08-07 00:34:42 +0000805// ADD r, sp, {so_imm|i12}
David Goodwin5d598aa2009-08-19 18:00:44 +0000806def t2ADDrSPi : T2sI<(outs GPR:$dst), (ins GPR:$sp, t2_so_imm:$imm),
Johnny Chend68e1192009-12-15 17:24:14 +0000807 IIC_iALUi, "add", ".w\t$dst, $sp, $imm", []> {
808 let Inst{31-27} = 0b11110;
809 let Inst{25} = 0;
810 let Inst{24-21} = 0b1000;
811 let Inst{20} = ?; // The S bit.
812 let Inst{19-16} = 0b1101; // Rn = sp
813 let Inst{15} = 0;
814}
Jim Grosbach64171712010-02-16 21:07:46 +0000815def t2ADDrSPi12 : T2I<(outs GPR:$dst), (ins GPR:$sp, imm0_4095:$imm),
Johnny Chend68e1192009-12-15 17:24:14 +0000816 IIC_iALUi, "addw", "\t$dst, $sp, $imm", []> {
817 let Inst{31-27} = 0b11110;
818 let Inst{25} = 1;
819 let Inst{24-21} = 0b0000;
820 let Inst{20} = 0; // The S bit.
821 let Inst{19-16} = 0b1101; // Rn = sp
822 let Inst{15} = 0;
823}
Evan Cheng86198642009-08-07 00:34:42 +0000824
825// ADD r, sp, so_reg
David Goodwin5d598aa2009-08-19 18:00:44 +0000826def t2ADDrSPs : T2sI<(outs GPR:$dst), (ins GPR:$sp, t2_so_reg:$rhs),
Johnny Chend68e1192009-12-15 17:24:14 +0000827 IIC_iALUsi, "add", ".w\t$dst, $sp, $rhs", []> {
828 let Inst{31-27} = 0b11101;
829 let Inst{26-25} = 0b01;
830 let Inst{24-21} = 0b1000;
831 let Inst{20} = ?; // The S bit.
832 let Inst{19-16} = 0b1101; // Rn = sp
833 let Inst{15} = 0;
834}
Evan Cheng86198642009-08-07 00:34:42 +0000835
836// SUB r, sp, {so_imm|i12}
David Goodwin5d598aa2009-08-19 18:00:44 +0000837def t2SUBrSPi : T2sI<(outs GPR:$dst), (ins GPR:$sp, t2_so_imm:$imm),
Johnny Chend68e1192009-12-15 17:24:14 +0000838 IIC_iALUi, "sub", ".w\t$dst, $sp, $imm", []> {
839 let Inst{31-27} = 0b11110;
840 let Inst{25} = 0;
841 let Inst{24-21} = 0b1101;
842 let Inst{20} = ?; // The S bit.
843 let Inst{19-16} = 0b1101; // Rn = sp
844 let Inst{15} = 0;
845}
David Goodwin5d598aa2009-08-19 18:00:44 +0000846def t2SUBrSPi12 : T2I<(outs GPR:$dst), (ins GPR:$sp, imm0_4095:$imm),
Johnny Chend68e1192009-12-15 17:24:14 +0000847 IIC_iALUi, "subw", "\t$dst, $sp, $imm", []> {
848 let Inst{31-27} = 0b11110;
849 let Inst{25} = 1;
850 let Inst{24-21} = 0b0101;
851 let Inst{20} = 0; // The S bit.
852 let Inst{19-16} = 0b1101; // Rn = sp
853 let Inst{15} = 0;
854}
Evan Cheng86198642009-08-07 00:34:42 +0000855
856// SUB r, sp, so_reg
David Goodwin5d598aa2009-08-19 18:00:44 +0000857def t2SUBrSPs : T2sI<(outs GPR:$dst), (ins GPR:$sp, t2_so_reg:$rhs),
858 IIC_iALUsi,
Johnny Chend68e1192009-12-15 17:24:14 +0000859 "sub", "\t$dst, $sp, $rhs", []> {
860 let Inst{31-27} = 0b11101;
861 let Inst{26-25} = 0b01;
862 let Inst{24-21} = 0b1101;
863 let Inst{20} = ?; // The S bit.
864 let Inst{19-16} = 0b1101; // Rn = sp
865 let Inst{15} = 0;
866}
Evan Cheng86198642009-08-07 00:34:42 +0000867
Jim Grosbachb1dc3932010-05-05 20:44:35 +0000868// Signed and unsigned division on v7-M
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000869def t2SDIV : T2I<(outs rGPR:$dst), (ins rGPR:$a, rGPR:$b), IIC_iALUi,
Jim Grosbachb1dc3932010-05-05 20:44:35 +0000870 "sdiv", "\t$dst, $a, $b",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000871 [(set rGPR:$dst, (sdiv rGPR:$a, rGPR:$b))]>,
Jim Grosbach29402132010-05-05 23:44:43 +0000872 Requires<[HasDivide]> {
Johnny Chen93042d12010-03-02 18:14:57 +0000873 let Inst{31-27} = 0b11111;
874 let Inst{26-21} = 0b011100;
875 let Inst{20} = 0b1;
876 let Inst{15-12} = 0b1111;
877 let Inst{7-4} = 0b1111;
878}
879
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000880def t2UDIV : T2I<(outs rGPR:$dst), (ins rGPR:$a, rGPR:$b), IIC_iALUi,
Jim Grosbachb1dc3932010-05-05 20:44:35 +0000881 "udiv", "\t$dst, $a, $b",
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000882 [(set rGPR:$dst, (udiv rGPR:$a, rGPR:$b))]>,
Jim Grosbach29402132010-05-05 23:44:43 +0000883 Requires<[HasDivide]> {
Johnny Chen93042d12010-03-02 18:14:57 +0000884 let Inst{31-27} = 0b11111;
885 let Inst{26-21} = 0b011101;
886 let Inst{20} = 0b1;
887 let Inst{15-12} = 0b1111;
888 let Inst{7-4} = 0b1111;
889}
890
Evan Chenga09b9ca2009-06-24 23:47:58 +0000891//===----------------------------------------------------------------------===//
Evan Cheng9cb9e672009-06-27 02:26:13 +0000892// Load / store Instructions.
893//
894
Evan Cheng055b0312009-06-29 07:51:04 +0000895// Load
Dan Gohmanbc9d98b2010-02-27 23:47:46 +0000896let canFoldAsLoad = 1, isReMaterializable = 1 in
Johnny Chend68e1192009-12-15 17:24:14 +0000897defm t2LDR : T2I_ld<0, 0b10, "ldr", UnOpFrag<(load node:$Src)>>;
Evan Cheng055b0312009-06-29 07:51:04 +0000898
Evan Chengf3c21b82009-06-30 02:15:48 +0000899// Loads with zero extension
Johnny Chend68e1192009-12-15 17:24:14 +0000900defm t2LDRH : T2I_ld<0, 0b01, "ldrh", UnOpFrag<(zextloadi16 node:$Src)>>;
901defm t2LDRB : T2I_ld<0, 0b00, "ldrb", UnOpFrag<(zextloadi8 node:$Src)>>;
Evan Cheng055b0312009-06-29 07:51:04 +0000902
Evan Chengf3c21b82009-06-30 02:15:48 +0000903// Loads with sign extension
Johnny Chend68e1192009-12-15 17:24:14 +0000904defm t2LDRSH : T2I_ld<1, 0b01, "ldrsh", UnOpFrag<(sextloadi16 node:$Src)>>;
905defm t2LDRSB : T2I_ld<1, 0b00, "ldrsb", UnOpFrag<(sextloadi8 node:$Src)>>;
Evan Cheng055b0312009-06-29 07:51:04 +0000906
Evan Cheng5fd1c9b2010-05-19 06:07:03 +0000907let mayLoad = 1, neverHasSideEffects = 1, hasExtraDefRegAllocReq = 1 in {
Evan Chengf3c21b82009-06-30 02:15:48 +0000908// Load doubleword
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000909def t2LDRDi8 : T2Ii8s4<1, 0, 1, (outs rGPR:$dst1, rGPR:$dst2),
Evan Chenge298ab22009-09-27 09:46:04 +0000910 (ins t2addrmode_imm8s4:$addr),
Johnny Chen83142992010-01-05 22:37:28 +0000911 IIC_iLoadi, "ldrd", "\t$dst1, $addr", []>;
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000912def t2LDRDpci : T2Ii8s4<1, 0, 1, (outs rGPR:$dst1, rGPR:$dst2),
Evan Chenge298ab22009-09-27 09:46:04 +0000913 (ins i32imm:$addr), IIC_iLoadi,
Johnny Chen83142992010-01-05 22:37:28 +0000914 "ldrd", "\t$dst1, $addr", []> {
Johnny Chend68e1192009-12-15 17:24:14 +0000915 let Inst{19-16} = 0b1111; // Rn
916}
Evan Cheng5fd1c9b2010-05-19 06:07:03 +0000917} // mayLoad = 1, neverHasSideEffects = 1, hasExtraDefRegAllocReq = 1
Evan Chengf3c21b82009-06-30 02:15:48 +0000918
919// zextload i1 -> zextload i8
920def : T2Pat<(zextloadi1 t2addrmode_imm12:$addr),
921 (t2LDRBi12 t2addrmode_imm12:$addr)>;
922def : T2Pat<(zextloadi1 t2addrmode_imm8:$addr),
923 (t2LDRBi8 t2addrmode_imm8:$addr)>;
924def : T2Pat<(zextloadi1 t2addrmode_so_reg:$addr),
925 (t2LDRBs t2addrmode_so_reg:$addr)>;
926def : T2Pat<(zextloadi1 (ARMWrapper tconstpool:$addr)),
927 (t2LDRBpci tconstpool:$addr)>;
928
929// extload -> zextload
930// FIXME: Reduce the number of patterns by legalizing extload to zextload
931// earlier?
932def : T2Pat<(extloadi1 t2addrmode_imm12:$addr),
933 (t2LDRBi12 t2addrmode_imm12:$addr)>;
934def : T2Pat<(extloadi1 t2addrmode_imm8:$addr),
935 (t2LDRBi8 t2addrmode_imm8:$addr)>;
936def : T2Pat<(extloadi1 t2addrmode_so_reg:$addr),
937 (t2LDRBs t2addrmode_so_reg:$addr)>;
938def : T2Pat<(extloadi1 (ARMWrapper tconstpool:$addr)),
939 (t2LDRBpci tconstpool:$addr)>;
940
941def : T2Pat<(extloadi8 t2addrmode_imm12:$addr),
942 (t2LDRBi12 t2addrmode_imm12:$addr)>;
943def : T2Pat<(extloadi8 t2addrmode_imm8:$addr),
944 (t2LDRBi8 t2addrmode_imm8:$addr)>;
945def : T2Pat<(extloadi8 t2addrmode_so_reg:$addr),
946 (t2LDRBs t2addrmode_so_reg:$addr)>;
947def : T2Pat<(extloadi8 (ARMWrapper tconstpool:$addr)),
948 (t2LDRBpci tconstpool:$addr)>;
949
950def : T2Pat<(extloadi16 t2addrmode_imm12:$addr),
951 (t2LDRHi12 t2addrmode_imm12:$addr)>;
952def : T2Pat<(extloadi16 t2addrmode_imm8:$addr),
953 (t2LDRHi8 t2addrmode_imm8:$addr)>;
954def : T2Pat<(extloadi16 t2addrmode_so_reg:$addr),
955 (t2LDRHs t2addrmode_so_reg:$addr)>;
956def : T2Pat<(extloadi16 (ARMWrapper tconstpool:$addr)),
957 (t2LDRHpci tconstpool:$addr)>;
Evan Cheng055b0312009-06-29 07:51:04 +0000958
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000959// FIXME: The destination register of the loads and stores can't be PC, but
960// can be SP. We need another regclass (similar to rGPR) to represent
961// that. Not a pressing issue since these are selected manually,
962// not via pattern.
963
Evan Chenge88d5ce2009-07-02 07:28:31 +0000964// Indexed loads
Evan Cheng5fd1c9b2010-05-19 06:07:03 +0000965let mayLoad = 1, neverHasSideEffects = 1 in {
Johnny Chend68e1192009-12-15 17:24:14 +0000966def t2LDR_PRE : T2Iidxldst<0, 0b10, 1, 1, (outs GPR:$dst, GPR:$base_wb),
Evan Chenge88d5ce2009-07-02 07:28:31 +0000967 (ins t2addrmode_imm8:$addr),
David Goodwin5d598aa2009-08-19 18:00:44 +0000968 AddrModeT2_i8, IndexModePre, IIC_iLoadiu,
Evan Cheng699beba2009-10-27 00:08:59 +0000969 "ldr", "\t$dst, $addr!", "$addr.base = $base_wb",
Evan Chenge88d5ce2009-07-02 07:28:31 +0000970 []>;
971
Johnny Chend68e1192009-12-15 17:24:14 +0000972def t2LDR_POST : T2Iidxldst<0, 0b10, 1, 0, (outs GPR:$dst, GPR:$base_wb),
Evan Chenge88d5ce2009-07-02 07:28:31 +0000973 (ins GPR:$base, t2am_imm8_offset:$offset),
David Goodwin5d598aa2009-08-19 18:00:44 +0000974 AddrModeT2_i8, IndexModePost, IIC_iLoadiu,
Evan Cheng699beba2009-10-27 00:08:59 +0000975 "ldr", "\t$dst, [$base], $offset", "$base = $base_wb",
Evan Chenge88d5ce2009-07-02 07:28:31 +0000976 []>;
977
Johnny Chend68e1192009-12-15 17:24:14 +0000978def t2LDRB_PRE : T2Iidxldst<0, 0b00, 1, 1, (outs GPR:$dst, GPR:$base_wb),
Evan Chenge88d5ce2009-07-02 07:28:31 +0000979 (ins t2addrmode_imm8:$addr),
David Goodwin5d598aa2009-08-19 18:00:44 +0000980 AddrModeT2_i8, IndexModePre, IIC_iLoadiu,
Evan Cheng699beba2009-10-27 00:08:59 +0000981 "ldrb", "\t$dst, $addr!", "$addr.base = $base_wb",
Evan Chenge88d5ce2009-07-02 07:28:31 +0000982 []>;
Johnny Chend68e1192009-12-15 17:24:14 +0000983def t2LDRB_POST : T2Iidxldst<0, 0b00, 1, 0, (outs GPR:$dst, GPR:$base_wb),
Evan Chenge88d5ce2009-07-02 07:28:31 +0000984 (ins GPR:$base, t2am_imm8_offset:$offset),
David Goodwin5d598aa2009-08-19 18:00:44 +0000985 AddrModeT2_i8, IndexModePost, IIC_iLoadiu,
Evan Cheng699beba2009-10-27 00:08:59 +0000986 "ldrb", "\t$dst, [$base], $offset", "$base = $base_wb",
Evan Chenge88d5ce2009-07-02 07:28:31 +0000987 []>;
988
Johnny Chend68e1192009-12-15 17:24:14 +0000989def t2LDRH_PRE : T2Iidxldst<0, 0b01, 1, 1, (outs GPR:$dst, GPR:$base_wb),
Evan Chenge88d5ce2009-07-02 07:28:31 +0000990 (ins t2addrmode_imm8:$addr),
David Goodwin5d598aa2009-08-19 18:00:44 +0000991 AddrModeT2_i8, IndexModePre, IIC_iLoadiu,
Evan Cheng699beba2009-10-27 00:08:59 +0000992 "ldrh", "\t$dst, $addr!", "$addr.base = $base_wb",
Evan Chenge88d5ce2009-07-02 07:28:31 +0000993 []>;
Johnny Chend68e1192009-12-15 17:24:14 +0000994def t2LDRH_POST : T2Iidxldst<0, 0b01, 1, 0, (outs GPR:$dst, GPR:$base_wb),
Evan Chenge88d5ce2009-07-02 07:28:31 +0000995 (ins GPR:$base, t2am_imm8_offset:$offset),
David Goodwin5d598aa2009-08-19 18:00:44 +0000996 AddrModeT2_i8, IndexModePost, IIC_iLoadiu,
Evan Cheng699beba2009-10-27 00:08:59 +0000997 "ldrh", "\t$dst, [$base], $offset", "$base = $base_wb",
Evan Chenge88d5ce2009-07-02 07:28:31 +0000998 []>;
999
Johnny Chend68e1192009-12-15 17:24:14 +00001000def t2LDRSB_PRE : T2Iidxldst<1, 0b00, 1, 1, (outs GPR:$dst, GPR:$base_wb),
Evan Cheng4fbb9962009-07-02 23:16:11 +00001001 (ins t2addrmode_imm8:$addr),
David Goodwin5d598aa2009-08-19 18:00:44 +00001002 AddrModeT2_i8, IndexModePre, IIC_iLoadiu,
Evan Cheng699beba2009-10-27 00:08:59 +00001003 "ldrsb", "\t$dst, $addr!", "$addr.base = $base_wb",
Evan Cheng4fbb9962009-07-02 23:16:11 +00001004 []>;
Johnny Chend68e1192009-12-15 17:24:14 +00001005def t2LDRSB_POST : T2Iidxldst<1, 0b00, 1, 0, (outs GPR:$dst, GPR:$base_wb),
Evan Cheng4fbb9962009-07-02 23:16:11 +00001006 (ins GPR:$base, t2am_imm8_offset:$offset),
David Goodwin5d598aa2009-08-19 18:00:44 +00001007 AddrModeT2_i8, IndexModePost, IIC_iLoadiu,
Evan Cheng699beba2009-10-27 00:08:59 +00001008 "ldrsb", "\t$dst, [$base], $offset", "$base = $base_wb",
Evan Cheng4fbb9962009-07-02 23:16:11 +00001009 []>;
1010
Johnny Chend68e1192009-12-15 17:24:14 +00001011def t2LDRSH_PRE : T2Iidxldst<1, 0b01, 1, 1, (outs GPR:$dst, GPR:$base_wb),
Evan Cheng4fbb9962009-07-02 23:16:11 +00001012 (ins t2addrmode_imm8:$addr),
David Goodwin5d598aa2009-08-19 18:00:44 +00001013 AddrModeT2_i8, IndexModePre, IIC_iLoadiu,
Evan Cheng699beba2009-10-27 00:08:59 +00001014 "ldrsh", "\t$dst, $addr!", "$addr.base = $base_wb",
Evan Cheng4fbb9962009-07-02 23:16:11 +00001015 []>;
Johnny Chend68e1192009-12-15 17:24:14 +00001016def t2LDRSH_POST : T2Iidxldst<1, 0b01, 1, 0, (outs GPR:$dst, GPR:$base_wb),
Evan Cheng4fbb9962009-07-02 23:16:11 +00001017 (ins GPR:$base, t2am_imm8_offset:$offset),
David Goodwin5d598aa2009-08-19 18:00:44 +00001018 AddrModeT2_i8, IndexModePost, IIC_iLoadiu,
Evan Cheng699beba2009-10-27 00:08:59 +00001019 "ldrsh", "\t$dst, [$base], $offset", "$base = $base_wb",
Evan Cheng4fbb9962009-07-02 23:16:11 +00001020 []>;
Evan Cheng5fd1c9b2010-05-19 06:07:03 +00001021} // mayLoad = 1, neverHasSideEffects = 1
Evan Cheng4fbb9962009-07-02 23:16:11 +00001022
Johnny Chene54a3ef2010-03-03 18:45:36 +00001023// LDRT, LDRBT, LDRHT, LDRSBT, LDRSHT all have offset mode (PUW=0b110) and are
1024// for disassembly only.
1025// Ref: A8.6.57 LDR (immediate, Thumb) Encoding T4
1026class T2IldT<bit signed, bits<2> type, string opc>
1027 : T2Ii8<(outs GPR:$dst), (ins t2addrmode_imm8:$addr), IIC_iLoadi, opc,
1028 "\t$dst, $addr", []> {
1029 let Inst{31-27} = 0b11111;
1030 let Inst{26-25} = 0b00;
1031 let Inst{24} = signed;
1032 let Inst{23} = 0;
1033 let Inst{22-21} = type;
1034 let Inst{20} = 1; // load
1035 let Inst{11} = 1;
1036 let Inst{10-8} = 0b110; // PUW.
1037}
1038
1039def t2LDRT : T2IldT<0, 0b10, "ldrt">;
1040def t2LDRBT : T2IldT<0, 0b00, "ldrbt">;
1041def t2LDRHT : T2IldT<0, 0b01, "ldrht">;
1042def t2LDRSBT : T2IldT<1, 0b00, "ldrsbt">;
1043def t2LDRSHT : T2IldT<1, 0b01, "ldrsht">;
1044
David Goodwin73b8f162009-06-30 22:11:34 +00001045// Store
Jim Grosbach80dc1162010-02-16 21:23:02 +00001046defm t2STR :T2I_st<0b10,"str", BinOpFrag<(store node:$LHS, node:$RHS)>>;
1047defm t2STRB:T2I_st<0b00,"strb",BinOpFrag<(truncstorei8 node:$LHS, node:$RHS)>>;
1048defm t2STRH:T2I_st<0b01,"strh",BinOpFrag<(truncstorei16 node:$LHS, node:$RHS)>>;
David Goodwin73b8f162009-06-30 22:11:34 +00001049
David Goodwin6647cea2009-06-30 22:50:01 +00001050// Store doubleword
Evan Cheng5fd1c9b2010-05-19 06:07:03 +00001051let mayLoad = 1, neverHasSideEffects = 1, hasExtraSrcRegAllocReq = 1 in
Johnny Chend68e1192009-12-15 17:24:14 +00001052def t2STRDi8 : T2Ii8s4<1, 0, 0, (outs),
Evan Chenge298ab22009-09-27 09:46:04 +00001053 (ins GPR:$src1, GPR:$src2, t2addrmode_imm8s4:$addr),
Johnny Chen83142992010-01-05 22:37:28 +00001054 IIC_iStorer, "strd", "\t$src1, $addr", []>;
David Goodwin6647cea2009-06-30 22:50:01 +00001055
Evan Cheng6d94f112009-07-03 00:06:39 +00001056// Indexed stores
Johnny Chend68e1192009-12-15 17:24:14 +00001057def t2STR_PRE : T2Iidxldst<0, 0b10, 0, 1, (outs GPR:$base_wb),
Evan Cheng6d94f112009-07-03 00:06:39 +00001058 (ins GPR:$src, GPR:$base, t2am_imm8_offset:$offset),
David Goodwin5d598aa2009-08-19 18:00:44 +00001059 AddrModeT2_i8, IndexModePre, IIC_iStoreiu,
Evan Cheng699beba2009-10-27 00:08:59 +00001060 "str", "\t$src, [$base, $offset]!", "$base = $base_wb",
Evan Cheng6d94f112009-07-03 00:06:39 +00001061 [(set GPR:$base_wb,
1062 (pre_store GPR:$src, GPR:$base, t2am_imm8_offset:$offset))]>;
1063
Johnny Chend68e1192009-12-15 17:24:14 +00001064def t2STR_POST : T2Iidxldst<0, 0b10, 0, 0, (outs GPR:$base_wb),
Evan Cheng6d94f112009-07-03 00:06:39 +00001065 (ins GPR:$src, GPR:$base, t2am_imm8_offset:$offset),
David Goodwin5d598aa2009-08-19 18:00:44 +00001066 AddrModeT2_i8, IndexModePost, IIC_iStoreiu,
Evan Cheng699beba2009-10-27 00:08:59 +00001067 "str", "\t$src, [$base], $offset", "$base = $base_wb",
Evan Cheng6d94f112009-07-03 00:06:39 +00001068 [(set GPR:$base_wb,
Jim Grosbach6935efc2009-11-24 00:20:27 +00001069 (post_store GPR:$src, GPR:$base, t2am_imm8_offset:$offset))]>;
Evan Cheng6d94f112009-07-03 00:06:39 +00001070
Johnny Chend68e1192009-12-15 17:24:14 +00001071def t2STRH_PRE : T2Iidxldst<0, 0b01, 0, 1, (outs GPR:$base_wb),
Evan Cheng6d94f112009-07-03 00:06:39 +00001072 (ins GPR:$src, GPR:$base, t2am_imm8_offset:$offset),
David Goodwin5d598aa2009-08-19 18:00:44 +00001073 AddrModeT2_i8, IndexModePre, IIC_iStoreiu,
Evan Cheng699beba2009-10-27 00:08:59 +00001074 "strh", "\t$src, [$base, $offset]!", "$base = $base_wb",
Evan Cheng6d94f112009-07-03 00:06:39 +00001075 [(set GPR:$base_wb,
1076 (pre_truncsti16 GPR:$src, GPR:$base, t2am_imm8_offset:$offset))]>;
1077
Johnny Chend68e1192009-12-15 17:24:14 +00001078def t2STRH_POST : T2Iidxldst<0, 0b01, 0, 0, (outs GPR:$base_wb),
Evan Cheng6d94f112009-07-03 00:06:39 +00001079 (ins GPR:$src, GPR:$base, t2am_imm8_offset:$offset),
David Goodwin5d598aa2009-08-19 18:00:44 +00001080 AddrModeT2_i8, IndexModePost, IIC_iStoreiu,
Evan Cheng699beba2009-10-27 00:08:59 +00001081 "strh", "\t$src, [$base], $offset", "$base = $base_wb",
Evan Cheng6d94f112009-07-03 00:06:39 +00001082 [(set GPR:$base_wb,
1083 (post_truncsti16 GPR:$src, GPR:$base, t2am_imm8_offset:$offset))]>;
1084
Johnny Chend68e1192009-12-15 17:24:14 +00001085def t2STRB_PRE : T2Iidxldst<0, 0b00, 0, 1, (outs GPR:$base_wb),
Evan Cheng6d94f112009-07-03 00:06:39 +00001086 (ins GPR:$src, GPR:$base, t2am_imm8_offset:$offset),
David Goodwin5d598aa2009-08-19 18:00:44 +00001087 AddrModeT2_i8, IndexModePre, IIC_iStoreiu,
Evan Cheng699beba2009-10-27 00:08:59 +00001088 "strb", "\t$src, [$base, $offset]!", "$base = $base_wb",
Evan Cheng6d94f112009-07-03 00:06:39 +00001089 [(set GPR:$base_wb,
1090 (pre_truncsti8 GPR:$src, GPR:$base, t2am_imm8_offset:$offset))]>;
1091
Johnny Chend68e1192009-12-15 17:24:14 +00001092def t2STRB_POST : T2Iidxldst<0, 0b00, 0, 0, (outs GPR:$base_wb),
Evan Cheng6d94f112009-07-03 00:06:39 +00001093 (ins GPR:$src, GPR:$base, t2am_imm8_offset:$offset),
David Goodwin5d598aa2009-08-19 18:00:44 +00001094 AddrModeT2_i8, IndexModePost, IIC_iStoreiu,
Evan Cheng699beba2009-10-27 00:08:59 +00001095 "strb", "\t$src, [$base], $offset", "$base = $base_wb",
Evan Cheng6d94f112009-07-03 00:06:39 +00001096 [(set GPR:$base_wb,
1097 (post_truncsti8 GPR:$src, GPR:$base, t2am_imm8_offset:$offset))]>;
1098
Johnny Chene54a3ef2010-03-03 18:45:36 +00001099// STRT, STRBT, STRHT all have offset mode (PUW=0b110) and are for disassembly
1100// only.
1101// Ref: A8.6.193 STR (immediate, Thumb) Encoding T4
1102class T2IstT<bits<2> type, string opc>
1103 : T2Ii8<(outs GPR:$src), (ins t2addrmode_imm8:$addr), IIC_iStorei, opc,
1104 "\t$src, $addr", []> {
1105 let Inst{31-27} = 0b11111;
1106 let Inst{26-25} = 0b00;
1107 let Inst{24} = 0; // not signed
1108 let Inst{23} = 0;
1109 let Inst{22-21} = type;
1110 let Inst{20} = 0; // store
1111 let Inst{11} = 1;
1112 let Inst{10-8} = 0b110; // PUW
1113}
1114
1115def t2STRT : T2IstT<0b10, "strt">;
1116def t2STRBT : T2IstT<0b00, "strbt">;
1117def t2STRHT : T2IstT<0b01, "strht">;
David Goodwind1fa1202009-07-01 00:01:13 +00001118
Johnny Chenae1757b2010-03-11 01:13:36 +00001119// ldrd / strd pre / post variants
1120// For disassembly only.
1121
1122def t2LDRD_PRE : T2Ii8s4<1, 1, 1, (outs GPR:$dst1, GPR:$dst2),
1123 (ins GPR:$base, t2am_imm8s4_offset:$imm), NoItinerary,
1124 "ldrd", "\t$dst1, $dst2, [$base, $imm]!", []>;
1125
1126def t2LDRD_POST : T2Ii8s4<0, 1, 1, (outs GPR:$dst1, GPR:$dst2),
1127 (ins GPR:$base, t2am_imm8s4_offset:$imm), NoItinerary,
1128 "ldrd", "\t$dst1, $dst2, [$base], $imm", []>;
1129
1130def t2STRD_PRE : T2Ii8s4<1, 1, 0, (outs),
1131 (ins GPR:$src1, GPR:$src2, GPR:$base, t2am_imm8s4_offset:$imm),
1132 NoItinerary, "strd", "\t$src1, $src2, [$base, $imm]!", []>;
1133
1134def t2STRD_POST : T2Ii8s4<0, 1, 0, (outs),
1135 (ins GPR:$src1, GPR:$src2, GPR:$base, t2am_imm8s4_offset:$imm),
1136 NoItinerary, "strd", "\t$src1, $src2, [$base], $imm", []>;
Evan Cheng2889cce2009-07-03 00:18:36 +00001137
Johnny Chen0635fc52010-03-04 17:40:44 +00001138// T2Ipl (Preload Data/Instruction) signals the memory system of possible future
1139// data/instruction access. These are for disassembly only.
Johnny Chendd0f3cf2010-03-10 18:59:38 +00001140//
1141// A8.6.117, A8.6.118. Different instructions are generated for #0 and #-0.
1142// The neg_zero operand translates -0 to -1, -1 to -2, ..., etc.
Johnny Chen0635fc52010-03-04 17:40:44 +00001143multiclass T2Ipl<bit instr, bit write, string opc> {
1144
Johnny Chendd0f3cf2010-03-10 18:59:38 +00001145 def i12 : T2I<(outs), (ins GPR:$base, i32imm:$imm), IIC_iLoadi, opc,
1146 "\t[$base, $imm]", []> {
Johnny Chen0635fc52010-03-04 17:40:44 +00001147 let Inst{31-25} = 0b1111100;
1148 let Inst{24} = instr;
1149 let Inst{23} = 1; // U = 1
1150 let Inst{22} = 0;
1151 let Inst{21} = write;
1152 let Inst{20} = 1;
1153 let Inst{15-12} = 0b1111;
1154 }
1155
Johnny Chendd0f3cf2010-03-10 18:59:38 +00001156 def i8 : T2I<(outs), (ins GPR:$base, neg_zero:$imm), IIC_iLoadi, opc,
1157 "\t[$base, $imm]", []> {
Johnny Chen0635fc52010-03-04 17:40:44 +00001158 let Inst{31-25} = 0b1111100;
1159 let Inst{24} = instr;
1160 let Inst{23} = 0; // U = 0
1161 let Inst{22} = 0;
1162 let Inst{21} = write;
1163 let Inst{20} = 1;
1164 let Inst{15-12} = 0b1111;
1165 let Inst{11-8} = 0b1100;
1166 }
1167
Johnny Chendd0f3cf2010-03-10 18:59:38 +00001168 def pci : T2I<(outs), (ins GPR:$base, neg_zero:$imm), IIC_iLoadi, opc,
1169 "\t[pc, $imm]", []> {
Johnny Chen0635fc52010-03-04 17:40:44 +00001170 let Inst{31-25} = 0b1111100;
1171 let Inst{24} = instr;
1172 let Inst{23} = ?; // add = (U == 1)
1173 let Inst{22} = 0;
1174 let Inst{21} = write;
1175 let Inst{20} = 1;
1176 let Inst{19-16} = 0b1111; // Rn = 0b1111
1177 let Inst{15-12} = 0b1111;
1178 }
1179
1180 def r : T2I<(outs), (ins GPR:$base, GPR:$a), IIC_iLoadi, opc,
1181 "\t[$base, $a]", []> {
1182 let Inst{31-25} = 0b1111100;
1183 let Inst{24} = instr;
1184 let Inst{23} = 0; // add = TRUE for T1
1185 let Inst{22} = 0;
1186 let Inst{21} = write;
1187 let Inst{20} = 1;
1188 let Inst{15-12} = 0b1111;
1189 let Inst{11-6} = 0000000;
1190 let Inst{5-4} = 0b00; // no shift is applied
1191 }
1192
1193 def s : T2I<(outs), (ins GPR:$base, GPR:$a, i32imm:$shamt), IIC_iLoadi, opc,
1194 "\t[$base, $a, lsl $shamt]", []> {
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 }
1204}
1205
1206defm t2PLD : T2Ipl<0, 0, "pld">;
1207defm t2PLDW : T2Ipl<0, 1, "pldw">;
1208defm t2PLI : T2Ipl<1, 0, "pli">;
1209
Evan Cheng2889cce2009-07-03 00:18:36 +00001210//===----------------------------------------------------------------------===//
1211// Load / store multiple Instructions.
1212//
1213
Evan Cheng5fd1c9b2010-05-19 06:07:03 +00001214let mayLoad = 1, neverHasSideEffects = 1, hasExtraDefRegAllocReq = 1 in {
Bob Wilson815baeb2010-03-13 01:08:20 +00001215def t2LDM : T2XI<(outs), (ins addrmode4:$addr, pred:$p,
1216 reglist:$dsts, variable_ops), IIC_iLoadm,
1217 "ldm${addr:submode}${p}${addr:wide}\t$addr, $dsts", []> {
Johnny Chend68e1192009-12-15 17:24:14 +00001218 let Inst{31-27} = 0b11101;
1219 let Inst{26-25} = 0b00;
1220 let Inst{24-23} = {?, ?}; // IA: '01', DB: '10'
1221 let Inst{22} = 0;
Bob Wilson815baeb2010-03-13 01:08:20 +00001222 let Inst{21} = 0; // The W bit.
Johnny Chend68e1192009-12-15 17:24:14 +00001223 let Inst{20} = 1; // Load
1224}
Evan Cheng2889cce2009-07-03 00:18:36 +00001225
Bob Wilson815baeb2010-03-13 01:08:20 +00001226def t2LDM_UPD : T2XIt<(outs GPR:$wb), (ins addrmode4:$addr, pred:$p,
1227 reglist:$dsts, variable_ops), IIC_iLoadm,
Bob Wilsonab346052010-03-16 17:46:45 +00001228 "ldm${addr:submode}${p}${addr:wide}\t$addr!, $dsts",
Bob Wilson815baeb2010-03-13 01:08:20 +00001229 "$addr.addr = $wb", []> {
Johnny Chend68e1192009-12-15 17:24:14 +00001230 let Inst{31-27} = 0b11101;
1231 let Inst{26-25} = 0b00;
1232 let Inst{24-23} = {?, ?}; // IA: '01', DB: '10'
1233 let Inst{22} = 0;
Bob Wilson815baeb2010-03-13 01:08:20 +00001234 let Inst{21} = 1; // The W bit.
1235 let Inst{20} = 1; // Load
1236}
Evan Cheng5fd1c9b2010-05-19 06:07:03 +00001237} // mayLoad, neverHasSideEffects, hasExtraDefRegAllocReq
Bob Wilson815baeb2010-03-13 01:08:20 +00001238
Evan Cheng5fd1c9b2010-05-19 06:07:03 +00001239let mayStore = 1, neverHasSideEffects = 1, hasExtraSrcRegAllocReq = 1 in {
Bob Wilson815baeb2010-03-13 01:08:20 +00001240def t2STM : T2XI<(outs), (ins addrmode4:$addr, pred:$p,
1241 reglist:$srcs, variable_ops), IIC_iStorem,
1242 "stm${addr:submode}${p}${addr:wide}\t$addr, $srcs", []> {
1243 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;
1247 let Inst{21} = 0; // The W bit.
Johnny Chend68e1192009-12-15 17:24:14 +00001248 let Inst{20} = 0; // Store
1249}
Evan Cheng2889cce2009-07-03 00:18:36 +00001250
Bob Wilson815baeb2010-03-13 01:08:20 +00001251def t2STM_UPD : T2XIt<(outs GPR:$wb), (ins addrmode4:$addr, pred:$p,
1252 reglist:$srcs, variable_ops),
1253 IIC_iStorem,
Bob Wilsonab346052010-03-16 17:46:45 +00001254 "stm${addr:submode}${p}${addr:wide}\t$addr!, $srcs",
Bob Wilson815baeb2010-03-13 01:08:20 +00001255 "$addr.addr = $wb", []> {
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} = 1; // The W bit.
1261 let Inst{20} = 0; // Store
1262}
Evan Cheng5fd1c9b2010-05-19 06:07:03 +00001263} // mayStore, neverHasSideEffects, hasExtraSrcRegAllocReq
Bob Wilson815baeb2010-03-13 01:08:20 +00001264
Evan Cheng9cb9e672009-06-27 02:26:13 +00001265//===----------------------------------------------------------------------===//
Anton Korobeynikov52237112009-06-17 18:13:58 +00001266// Move Instructions.
1267//
Anton Korobeynikov52237112009-06-17 18:13:58 +00001268
Evan Chengf49810c2009-06-23 17:48:47 +00001269let neverHasSideEffects = 1 in
David Goodwin5d598aa2009-08-19 18:00:44 +00001270def t2MOVr : T2sI<(outs GPR:$dst), (ins GPR:$src), IIC_iMOVr,
Johnny Chend68e1192009-12-15 17:24:14 +00001271 "mov", ".w\t$dst, $src", []> {
1272 let Inst{31-27} = 0b11101;
1273 let Inst{26-25} = 0b01;
1274 let Inst{24-21} = 0b0010;
1275 let Inst{20} = ?; // The S bit.
1276 let Inst{19-16} = 0b1111; // Rn
1277 let Inst{14-12} = 0b000;
1278 let Inst{7-4} = 0b0000;
1279}
Evan Chengf49810c2009-06-23 17:48:47 +00001280
Evan Cheng5adb66a2009-09-28 09:14:39 +00001281// AddedComplexity to ensure isel tries t2MOVi before t2MOVi16.
1282let isReMaterializable = 1, isAsCheapAsAMove = 1, AddedComplexity = 1 in
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001283def t2MOVi : T2sI<(outs rGPR:$dst), (ins t2_so_imm:$src), IIC_iMOVi,
Evan Cheng699beba2009-10-27 00:08:59 +00001284 "mov", ".w\t$dst, $src",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001285 [(set rGPR:$dst, t2_so_imm:$src)]> {
Johnny Chend68e1192009-12-15 17:24:14 +00001286 let Inst{31-27} = 0b11110;
1287 let Inst{25} = 0;
1288 let Inst{24-21} = 0b0010;
1289 let Inst{20} = ?; // The S bit.
1290 let Inst{19-16} = 0b1111; // Rn
1291 let Inst{15} = 0;
1292}
David Goodwin83b35932009-06-26 16:10:07 +00001293
1294let isReMaterializable = 1, isAsCheapAsAMove = 1 in
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001295def t2MOVi16 : T2I<(outs rGPR:$dst), (ins i32imm:$src), IIC_iMOVi,
Evan Cheng699beba2009-10-27 00:08:59 +00001296 "movw", "\t$dst, $src",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001297 [(set rGPR:$dst, imm0_65535:$src)]> {
Johnny Chend68e1192009-12-15 17:24:14 +00001298 let Inst{31-27} = 0b11110;
1299 let Inst{25} = 1;
1300 let Inst{24-21} = 0b0010;
1301 let Inst{20} = 0; // The S bit.
1302 let Inst{15} = 0;
1303}
Evan Chengf49810c2009-06-23 17:48:47 +00001304
Evan Cheng3850a6a2009-06-23 05:23:49 +00001305let Constraints = "$src = $dst" in
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001306def t2MOVTi16 : T2I<(outs rGPR:$dst), (ins rGPR:$src, i32imm:$imm), IIC_iMOVi,
Evan Cheng699beba2009-10-27 00:08:59 +00001307 "movt", "\t$dst, $imm",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001308 [(set rGPR:$dst,
1309 (or (and rGPR:$src, 0xffff), lo16AllZero:$imm))]> {
Johnny Chend68e1192009-12-15 17:24:14 +00001310 let Inst{31-27} = 0b11110;
1311 let Inst{25} = 1;
1312 let Inst{24-21} = 0b0110;
1313 let Inst{20} = 0; // The S bit.
1314 let Inst{15} = 0;
1315}
Anton Korobeynikov52237112009-06-17 18:13:58 +00001316
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001317def : T2Pat<(or rGPR:$src, 0xffff0000), (t2MOVTi16 rGPR:$src, 0xffff)>;
Evan Cheng20956592009-10-21 08:15:52 +00001318
Anton Korobeynikov52237112009-06-17 18:13:58 +00001319//===----------------------------------------------------------------------===//
Evan Chengd27c9fc2009-07-03 01:43:10 +00001320// Extend Instructions.
1321//
1322
1323// Sign extenders
1324
Johnny Chend68e1192009-12-15 17:24:14 +00001325defm t2SXTB : T2I_unary_rrot<0b100, "sxtb",
1326 UnOpFrag<(sext_inreg node:$Src, i8)>>;
1327defm t2SXTH : T2I_unary_rrot<0b000, "sxth",
1328 UnOpFrag<(sext_inreg node:$Src, i16)>>;
Eli Friedman761fa7a2010-06-24 18:20:04 +00001329defm t2SXTB16 : T2I_unary_rrot_sxtb16<0b010, "sxtb16">;
Evan Chengd27c9fc2009-07-03 01:43:10 +00001330
Johnny Chend68e1192009-12-15 17:24:14 +00001331defm t2SXTAB : T2I_bin_rrot<0b100, "sxtab",
Evan Chengd27c9fc2009-07-03 01:43:10 +00001332 BinOpFrag<(add node:$LHS, (sext_inreg node:$RHS, i8))>>;
Johnny Chend68e1192009-12-15 17:24:14 +00001333defm t2SXTAH : T2I_bin_rrot<0b000, "sxtah",
Evan Chengd27c9fc2009-07-03 01:43:10 +00001334 BinOpFrag<(add node:$LHS, (sext_inreg node:$RHS,i16))>>;
Johnny Chen93042d12010-03-02 18:14:57 +00001335defm t2SXTAB16 : T2I_bin_rrot_DO<0b010, "sxtab16">;
Evan Chengd27c9fc2009-07-03 01:43:10 +00001336
Johnny Chen93042d12010-03-02 18:14:57 +00001337// TODO: SXT(A){B|H}16 - done for disassembly only
Evan Chengd27c9fc2009-07-03 01:43:10 +00001338
1339// Zero extenders
1340
1341let AddedComplexity = 16 in {
Johnny Chend68e1192009-12-15 17:24:14 +00001342defm t2UXTB : T2I_unary_rrot<0b101, "uxtb",
1343 UnOpFrag<(and node:$Src, 0x000000FF)>>;
1344defm t2UXTH : T2I_unary_rrot<0b001, "uxth",
1345 UnOpFrag<(and node:$Src, 0x0000FFFF)>>;
Eli Friedman761fa7a2010-06-24 18:20:04 +00001346defm t2UXTB16 : T2I_unary_rrot_uxtb16<0b011, "uxtb16",
Johnny Chend68e1192009-12-15 17:24:14 +00001347 UnOpFrag<(and node:$Src, 0x00FF00FF)>>;
Evan Chengd27c9fc2009-07-03 01:43:10 +00001348
Jim Grosbach79464942010-07-28 23:17:45 +00001349// FIXME: This pattern incorrectly assumes the shl operator is a rotate.
1350// The transformation should probably be done as a combiner action
1351// instead so we can include a check for masking back in the upper
1352// eight bits of the source into the lower eight bits of the result.
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001353//def : T2Pat<(and (shl rGPR:$Src, (i32 8)), 0xFF00FF),
1354// (t2UXTB16r_rot rGPR:$Src, 24)>, Requires<[HasT2ExtractPack]>;
1355def : T2Pat<(and (srl rGPR:$Src, (i32 8)), 0xFF00FF),
1356 (t2UXTB16r_rot rGPR:$Src, 8)>, Requires<[HasT2ExtractPack]>;
Evan Chengd27c9fc2009-07-03 01:43:10 +00001357
Johnny Chend68e1192009-12-15 17:24:14 +00001358defm t2UXTAB : T2I_bin_rrot<0b101, "uxtab",
Jim Grosbach6935efc2009-11-24 00:20:27 +00001359 BinOpFrag<(add node:$LHS, (and node:$RHS, 0x00FF))>>;
Johnny Chend68e1192009-12-15 17:24:14 +00001360defm t2UXTAH : T2I_bin_rrot<0b001, "uxtah",
Jim Grosbach6935efc2009-11-24 00:20:27 +00001361 BinOpFrag<(add node:$LHS, (and node:$RHS, 0xFFFF))>>;
Johnny Chen93042d12010-03-02 18:14:57 +00001362defm t2UXTAB16 : T2I_bin_rrot_DO<0b011, "uxtab16">;
Evan Chengd27c9fc2009-07-03 01:43:10 +00001363}
1364
1365//===----------------------------------------------------------------------===//
Anton Korobeynikov52237112009-06-17 18:13:58 +00001366// Arithmetic Instructions.
1367//
Anton Korobeynikov52237112009-06-17 18:13:58 +00001368
Johnny Chend68e1192009-12-15 17:24:14 +00001369defm t2ADD : T2I_bin_ii12rs<0b000, "add",
1370 BinOpFrag<(add node:$LHS, node:$RHS)>, 1>;
1371defm t2SUB : T2I_bin_ii12rs<0b101, "sub",
1372 BinOpFrag<(sub node:$LHS, node:$RHS)>>;
Anton Korobeynikov52237112009-06-17 18:13:58 +00001373
Evan Chengf49810c2009-06-23 17:48:47 +00001374// ADD and SUB with 's' bit set. No 12-bit immediate (T4) variants.
Johnny Chend68e1192009-12-15 17:24:14 +00001375defm t2ADDS : T2I_bin_s_irs <0b1000, "add",
1376 BinOpFrag<(addc node:$LHS, node:$RHS)>, 1>;
1377defm t2SUBS : T2I_bin_s_irs <0b1101, "sub",
1378 BinOpFrag<(subc node:$LHS, node:$RHS)>>;
Anton Korobeynikov52237112009-06-17 18:13:58 +00001379
Johnny Chend68e1192009-12-15 17:24:14 +00001380defm t2ADC : T2I_adde_sube_irs<0b1010, "adc",
Jim Grosbach39be8fc2010-02-16 20:42:29 +00001381 BinOpFrag<(adde_dead_carry node:$LHS, node:$RHS)>, 1>;
Johnny Chend68e1192009-12-15 17:24:14 +00001382defm t2SBC : T2I_adde_sube_irs<0b1011, "sbc",
Jim Grosbach39be8fc2010-02-16 20:42:29 +00001383 BinOpFrag<(sube_dead_carry node:$LHS, node:$RHS)>>;
Johnny Chenb5031ad2010-03-02 19:38:59 +00001384defm t2ADCS : T2I_adde_sube_s_irs<0b1010, "adc",
Jim Grosbach39be8fc2010-02-16 20:42:29 +00001385 BinOpFrag<(adde_live_carry node:$LHS, node:$RHS)>, 1>;
Johnny Chenb5031ad2010-03-02 19:38:59 +00001386defm t2SBCS : T2I_adde_sube_s_irs<0b1011, "sbc",
Jim Grosbach39be8fc2010-02-16 20:42:29 +00001387 BinOpFrag<(sube_live_carry node:$LHS, node:$RHS)>>;
Evan Chengf49810c2009-06-23 17:48:47 +00001388
David Goodwin752aa7d2009-07-27 16:39:05 +00001389// RSB
Johnny Chend68e1192009-12-15 17:24:14 +00001390defm t2RSB : T2I_rbin_is <0b1110, "rsb",
1391 BinOpFrag<(sub node:$LHS, node:$RHS)>>;
1392defm t2RSBS : T2I_rbin_s_is <0b1110, "rsb",
1393 BinOpFrag<(subc node:$LHS, node:$RHS)>>;
Evan Chengf49810c2009-06-23 17:48:47 +00001394
1395// (sub X, imm) gets canonicalized to (add X, -imm). Match this form.
Jim Grosbach502e0aa2010-07-14 17:45:16 +00001396// The assume-no-carry-in form uses the negation of the input since add/sub
1397// assume opposite meanings of the carry flag (i.e., carry == !borrow).
1398// See the definition of AddWithCarry() in the ARM ARM A2.2.1 for the gory
1399// details.
1400// The AddedComplexity preferences the first variant over the others since
1401// it can be shrunk to a 16-bit wide encoding, while the others cannot.
Evan Chengfa2ea1a2009-08-04 01:41:15 +00001402let AddedComplexity = 1 in
Jim Grosbach502e0aa2010-07-14 17:45:16 +00001403def : T2Pat<(add GPR:$src, imm0_255_neg:$imm),
1404 (t2SUBri GPR:$src, imm0_255_neg:$imm)>;
1405def : T2Pat<(add GPR:$src, t2_so_imm_neg:$imm),
1406 (t2SUBri GPR:$src, t2_so_imm_neg:$imm)>;
1407def : T2Pat<(add GPR:$src, imm0_4095_neg:$imm),
1408 (t2SUBri12 GPR:$src, imm0_4095_neg:$imm)>;
1409let AddedComplexity = 1 in
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001410def : T2Pat<(addc rGPR:$src, imm0_255_neg:$imm),
1411 (t2SUBSri rGPR:$src, imm0_255_neg:$imm)>;
1412def : T2Pat<(addc rGPR:$src, t2_so_imm_neg:$imm),
1413 (t2SUBSri rGPR:$src, t2_so_imm_neg:$imm)>;
Jim Grosbach502e0aa2010-07-14 17:45:16 +00001414// The with-carry-in form matches bitwise not instead of the negation.
1415// Effectively, the inverse interpretation of the carry flag already accounts
1416// for part of the negation.
1417let AddedComplexity = 1 in
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001418def : T2Pat<(adde rGPR:$src, imm0_255_not:$imm),
1419 (t2SBCSri rGPR:$src, imm0_255_not:$imm)>;
1420def : T2Pat<(adde rGPR:$src, t2_so_imm_not:$imm),
1421 (t2SBCSri rGPR:$src, t2_so_imm_not:$imm)>;
Anton Korobeynikov52237112009-06-17 18:13:58 +00001422
Johnny Chen93042d12010-03-02 18:14:57 +00001423// Select Bytes -- for disassembly only
1424
1425def t2SEL : T2I<(outs GPR:$dst), (ins GPR:$a, GPR:$b), NoItinerary, "sel",
1426 "\t$dst, $a, $b", []> {
1427 let Inst{31-27} = 0b11111;
1428 let Inst{26-24} = 0b010;
1429 let Inst{23} = 0b1;
1430 let Inst{22-20} = 0b010;
1431 let Inst{15-12} = 0b1111;
1432 let Inst{7} = 0b1;
1433 let Inst{6-4} = 0b000;
1434}
1435
Johnny Chenadc77332010-02-26 22:04:29 +00001436// A6.3.13, A6.3.14, A6.3.15 Parallel addition and subtraction (signed/unsigned)
1437// And Miscellaneous operations -- for disassembly only
Nate Begeman692433b2010-07-29 17:56:55 +00001438class T2I_pam<bits<3> op22_20, bits<4> op7_4, string opc,
1439 list<dag> pat = [/* For disassembly only; pattern left blank */]>
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001440 : T2I<(outs rGPR:$dst), (ins rGPR:$a, rGPR:$b), NoItinerary, opc,
Nate Begeman692433b2010-07-29 17:56:55 +00001441 "\t$dst, $a, $b", pat> {
Johnny Chenadc77332010-02-26 22:04:29 +00001442 let Inst{31-27} = 0b11111;
1443 let Inst{26-23} = 0b0101;
1444 let Inst{22-20} = op22_20;
1445 let Inst{15-12} = 0b1111;
1446 let Inst{7-4} = op7_4;
1447}
1448
1449// Saturating add/subtract -- for disassembly only
1450
Nate Begeman692433b2010-07-29 17:56:55 +00001451def t2QADD : T2I_pam<0b000, 0b1000, "qadd",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001452 [(set rGPR:$dst, (int_arm_qadd rGPR:$a, rGPR:$b))]>;
Johnny Chenadc77332010-02-26 22:04:29 +00001453def t2QADD16 : T2I_pam<0b001, 0b0001, "qadd16">;
1454def t2QADD8 : T2I_pam<0b000, 0b0001, "qadd8">;
1455def t2QASX : T2I_pam<0b010, 0b0001, "qasx">;
1456def t2QDADD : T2I_pam<0b000, 0b1001, "qdadd">;
1457def t2QDSUB : T2I_pam<0b000, 0b1011, "qdsub">;
1458def t2QSAX : T2I_pam<0b110, 0b0001, "qsax">;
Nate Begeman692433b2010-07-29 17:56:55 +00001459def t2QSUB : T2I_pam<0b000, 0b1010, "qsub",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001460 [(set rGPR:$dst, (int_arm_qsub rGPR:$a, rGPR:$b))]>;
Johnny Chenadc77332010-02-26 22:04:29 +00001461def t2QSUB16 : T2I_pam<0b101, 0b0001, "qsub16">;
1462def t2QSUB8 : T2I_pam<0b100, 0b0001, "qsub8">;
1463def t2UQADD16 : T2I_pam<0b001, 0b0101, "uqadd16">;
1464def t2UQADD8 : T2I_pam<0b000, 0b0101, "uqadd8">;
1465def t2UQASX : T2I_pam<0b010, 0b0101, "uqasx">;
1466def t2UQSAX : T2I_pam<0b110, 0b0101, "uqsax">;
1467def t2UQSUB16 : T2I_pam<0b101, 0b0101, "uqsub16">;
1468def t2UQSUB8 : T2I_pam<0b100, 0b0101, "uqsub8">;
1469
1470// Signed/Unsigned add/subtract -- for disassembly only
1471
1472def t2SASX : T2I_pam<0b010, 0b0000, "sasx">;
1473def t2SADD16 : T2I_pam<0b001, 0b0000, "sadd16">;
1474def t2SADD8 : T2I_pam<0b000, 0b0000, "sadd8">;
1475def t2SSAX : T2I_pam<0b110, 0b0000, "ssax">;
1476def t2SSUB16 : T2I_pam<0b101, 0b0000, "ssub16">;
1477def t2SSUB8 : T2I_pam<0b100, 0b0000, "ssub8">;
1478def t2UASX : T2I_pam<0b010, 0b0100, "uasx">;
1479def t2UADD16 : T2I_pam<0b001, 0b0100, "uadd16">;
1480def t2UADD8 : T2I_pam<0b000, 0b0100, "uadd8">;
1481def t2USAX : T2I_pam<0b110, 0b0100, "usax">;
1482def t2USUB16 : T2I_pam<0b101, 0b0100, "usub16">;
1483def t2USUB8 : T2I_pam<0b100, 0b0100, "usub8">;
1484
1485// Signed/Unsigned halving add/subtract -- for disassembly only
1486
1487def t2SHASX : T2I_pam<0b010, 0b0010, "shasx">;
1488def t2SHADD16 : T2I_pam<0b001, 0b0010, "shadd16">;
1489def t2SHADD8 : T2I_pam<0b000, 0b0010, "shadd8">;
1490def t2SHSAX : T2I_pam<0b110, 0b0010, "shsax">;
1491def t2SHSUB16 : T2I_pam<0b101, 0b0010, "shsub16">;
1492def t2SHSUB8 : T2I_pam<0b100, 0b0010, "shsub8">;
1493def t2UHASX : T2I_pam<0b010, 0b0110, "uhasx">;
1494def t2UHADD16 : T2I_pam<0b001, 0b0110, "uhadd16">;
1495def t2UHADD8 : T2I_pam<0b000, 0b0110, "uhadd8">;
1496def t2UHSAX : T2I_pam<0b110, 0b0110, "uhsax">;
1497def t2UHSUB16 : T2I_pam<0b101, 0b0110, "uhsub16">;
1498def t2UHSUB8 : T2I_pam<0b100, 0b0110, "uhsub8">;
1499
1500// Unsigned Sum of Absolute Differences [and Accumulate] -- for disassembly only
1501
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001502def t2USAD8 : T2I_mac<0, 0b111, 0b0000, (outs rGPR:$dst),
1503 (ins rGPR:$a, rGPR:$b),
Johnny Chenadc77332010-02-26 22:04:29 +00001504 NoItinerary, "usad8", "\t$dst, $a, $b", []> {
1505 let Inst{15-12} = 0b1111;
1506}
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001507def t2USADA8 : T2I_mac<0, 0b111, 0b0000, (outs rGPR:$dst),
1508 (ins rGPR:$a, rGPR:$b, rGPR:$acc), NoItinerary, "usada8",
Johnny Chenadc77332010-02-26 22:04:29 +00001509 "\t$dst, $a, $b, $acc", []>;
1510
1511// Signed/Unsigned saturate -- for disassembly only
1512
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001513def t2SSATlsl:T2I<(outs rGPR:$dst), (ins i32imm:$bit_pos,rGPR:$a,i32imm:$shamt),
Johnny Chen93042d12010-03-02 18:14:57 +00001514 NoItinerary, "ssat", "\t$dst, $bit_pos, $a, lsl $shamt",
Johnny Chenadc77332010-02-26 22:04:29 +00001515 [/* For disassembly only; pattern left blank */]> {
1516 let Inst{31-27} = 0b11110;
1517 let Inst{25-22} = 0b1100;
1518 let Inst{20} = 0;
1519 let Inst{15} = 0;
1520 let Inst{21} = 0; // sh = '0'
1521}
1522
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001523def t2SSATasr:T2I<(outs rGPR:$dst), (ins i32imm:$bit_pos,rGPR:$a,i32imm:$shamt),
Johnny Chen93042d12010-03-02 18:14:57 +00001524 NoItinerary, "ssat", "\t$dst, $bit_pos, $a, asr $shamt",
Johnny Chenadc77332010-02-26 22:04:29 +00001525 [/* For disassembly only; pattern left blank */]> {
1526 let Inst{31-27} = 0b11110;
1527 let Inst{25-22} = 0b1100;
1528 let Inst{20} = 0;
1529 let Inst{15} = 0;
1530 let Inst{21} = 1; // sh = '1'
1531}
1532
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001533def t2SSAT16: T2I<(outs rGPR:$dst), (ins i32imm:$bit_pos, rGPR:$a), NoItinerary,
Johnny Chenadc77332010-02-26 22:04:29 +00001534 "ssat16", "\t$dst, $bit_pos, $a",
1535 [/* For disassembly only; pattern left blank */]> {
1536 let Inst{31-27} = 0b11110;
1537 let Inst{25-22} = 0b1100;
1538 let Inst{20} = 0;
1539 let Inst{15} = 0;
1540 let Inst{21} = 1; // sh = '1'
1541 let Inst{14-12} = 0b000; // imm3 = '000'
1542 let Inst{7-6} = 0b00; // imm2 = '00'
1543}
1544
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001545def t2USATlsl:T2I<(outs rGPR:$dst), (ins i32imm:$bit_pos,rGPR:$a,i32imm:$shamt),
Johnny Chen93042d12010-03-02 18:14:57 +00001546 NoItinerary, "usat", "\t$dst, $bit_pos, $a, lsl $shamt",
Johnny Chenadc77332010-02-26 22:04:29 +00001547 [/* For disassembly only; pattern left blank */]> {
1548 let Inst{31-27} = 0b11110;
1549 let Inst{25-22} = 0b1110;
1550 let Inst{20} = 0;
1551 let Inst{15} = 0;
1552 let Inst{21} = 0; // sh = '0'
1553}
1554
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001555def t2USATasr:T2I<(outs rGPR:$dst), (ins i32imm:$bit_pos,rGPR:$a,i32imm:$shamt),
Johnny Chen93042d12010-03-02 18:14:57 +00001556 NoItinerary, "usat", "\t$dst, $bit_pos, $a, asr $shamt",
Johnny Chenadc77332010-02-26 22:04:29 +00001557 [/* For disassembly only; pattern left blank */]> {
1558 let Inst{31-27} = 0b11110;
1559 let Inst{25-22} = 0b1110;
1560 let Inst{20} = 0;
1561 let Inst{15} = 0;
1562 let Inst{21} = 1; // sh = '1'
1563}
1564
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001565def t2USAT16: T2I<(outs rGPR:$dst), (ins i32imm:$bit_pos, rGPR:$a), NoItinerary,
Johnny Chenadc77332010-02-26 22:04:29 +00001566 "usat16", "\t$dst, $bit_pos, $a",
1567 [/* For disassembly only; pattern left blank */]> {
1568 let Inst{31-27} = 0b11110;
1569 let Inst{25-22} = 0b1110;
1570 let Inst{20} = 0;
1571 let Inst{15} = 0;
1572 let Inst{21} = 1; // sh = '1'
1573 let Inst{14-12} = 0b000; // imm3 = '000'
1574 let Inst{7-6} = 0b00; // imm2 = '00'
1575}
Anton Korobeynikov52237112009-06-17 18:13:58 +00001576
Nate Begeman0e0a20e2010-07-29 22:48:09 +00001577def : T2Pat<(int_arm_ssat GPR:$a, imm:$pos), (t2SSATlsl imm:$pos, GPR:$a, 0)>;
1578def : T2Pat<(int_arm_usat GPR:$a, imm:$pos), (t2USATlsl imm:$pos, GPR:$a, 0)>;
1579
Evan Chengf49810c2009-06-23 17:48:47 +00001580//===----------------------------------------------------------------------===//
Evan Chenga67efd12009-06-23 19:39:13 +00001581// Shift and rotate Instructions.
1582//
1583
Johnny Chend68e1192009-12-15 17:24:14 +00001584defm t2LSL : T2I_sh_ir<0b00, "lsl", BinOpFrag<(shl node:$LHS, node:$RHS)>>;
1585defm t2LSR : T2I_sh_ir<0b01, "lsr", BinOpFrag<(srl node:$LHS, node:$RHS)>>;
1586defm t2ASR : T2I_sh_ir<0b10, "asr", BinOpFrag<(sra node:$LHS, node:$RHS)>>;
1587defm t2ROR : T2I_sh_ir<0b11, "ror", BinOpFrag<(rotr node:$LHS, node:$RHS)>>;
Evan Chenga67efd12009-06-23 19:39:13 +00001588
David Goodwinca01a8d2009-09-01 18:32:09 +00001589let Uses = [CPSR] in {
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001590def t2MOVrx : T2sI<(outs rGPR:$dst), (ins rGPR:$src), IIC_iMOVsi,
Evan Cheng699beba2009-10-27 00:08:59 +00001591 "rrx", "\t$dst, $src",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001592 [(set rGPR:$dst, (ARMrrx rGPR:$src))]> {
Johnny Chend68e1192009-12-15 17:24:14 +00001593 let Inst{31-27} = 0b11101;
1594 let Inst{26-25} = 0b01;
1595 let Inst{24-21} = 0b0010;
1596 let Inst{20} = ?; // The S bit.
1597 let Inst{19-16} = 0b1111; // Rn
1598 let Inst{14-12} = 0b000;
1599 let Inst{7-4} = 0b0011;
1600}
David Goodwinca01a8d2009-09-01 18:32:09 +00001601}
Evan Chenga67efd12009-06-23 19:39:13 +00001602
David Goodwin3583df72009-07-28 17:06:49 +00001603let Defs = [CPSR] in {
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001604def t2MOVsrl_flag : T2I<(outs rGPR:$dst), (ins rGPR:$src), IIC_iMOVsi,
Bob Wilsona85df802010-05-25 04:51:47 +00001605 "lsrs", ".w\t$dst, $src, #1",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001606 [(set rGPR:$dst, (ARMsrl_flag rGPR:$src))]> {
Johnny Chend68e1192009-12-15 17:24:14 +00001607 let Inst{31-27} = 0b11101;
1608 let Inst{26-25} = 0b01;
1609 let Inst{24-21} = 0b0010;
1610 let Inst{20} = 1; // The S bit.
1611 let Inst{19-16} = 0b1111; // Rn
1612 let Inst{5-4} = 0b01; // Shift type.
1613 // Shift amount = Inst{14-12:7-6} = 1.
1614 let Inst{14-12} = 0b000;
1615 let Inst{7-6} = 0b01;
1616}
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001617def t2MOVsra_flag : T2I<(outs rGPR:$dst), (ins rGPR:$src), IIC_iMOVsi,
Bob Wilsona85df802010-05-25 04:51:47 +00001618 "asrs", ".w\t$dst, $src, #1",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001619 [(set rGPR:$dst, (ARMsra_flag rGPR:$src))]> {
Johnny Chend68e1192009-12-15 17:24:14 +00001620 let Inst{31-27} = 0b11101;
1621 let Inst{26-25} = 0b01;
1622 let Inst{24-21} = 0b0010;
1623 let Inst{20} = 1; // The S bit.
1624 let Inst{19-16} = 0b1111; // Rn
1625 let Inst{5-4} = 0b10; // Shift type.
1626 // Shift amount = Inst{14-12:7-6} = 1.
1627 let Inst{14-12} = 0b000;
1628 let Inst{7-6} = 0b01;
1629}
David Goodwin3583df72009-07-28 17:06:49 +00001630}
1631
Evan Chenga67efd12009-06-23 19:39:13 +00001632//===----------------------------------------------------------------------===//
Evan Chengf49810c2009-06-23 17:48:47 +00001633// Bitwise Instructions.
1634//
Anton Korobeynikov52237112009-06-17 18:13:58 +00001635
Johnny Chend68e1192009-12-15 17:24:14 +00001636defm t2AND : T2I_bin_w_irs<0b0000, "and",
1637 BinOpFrag<(and node:$LHS, node:$RHS)>, 1>;
1638defm t2ORR : T2I_bin_w_irs<0b0010, "orr",
1639 BinOpFrag<(or node:$LHS, node:$RHS)>, 1>;
1640defm t2EOR : T2I_bin_w_irs<0b0100, "eor",
1641 BinOpFrag<(xor node:$LHS, node:$RHS)>, 1>;
Evan Chengf49810c2009-06-23 17:48:47 +00001642
Johnny Chend68e1192009-12-15 17:24:14 +00001643defm t2BIC : T2I_bin_w_irs<0b0001, "bic",
1644 BinOpFrag<(and node:$LHS, (not node:$RHS))>>;
Evan Chengf49810c2009-06-23 17:48:47 +00001645
Evan Chengf49810c2009-06-23 17:48:47 +00001646let Constraints = "$src = $dst" in
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001647def t2BFC : T2I<(outs rGPR:$dst), (ins rGPR:$src, bf_inv_mask_imm:$imm),
David Goodwin2f54a2f2009-11-02 17:28:36 +00001648 IIC_iUNAsi, "bfc", "\t$dst, $imm",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001649 [(set rGPR:$dst, (and rGPR:$src, bf_inv_mask_imm:$imm))]> {
Johnny Chend68e1192009-12-15 17:24:14 +00001650 let Inst{31-27} = 0b11110;
1651 let Inst{25} = 1;
1652 let Inst{24-20} = 0b10110;
1653 let Inst{19-16} = 0b1111; // Rn
1654 let Inst{15} = 0;
1655}
Evan Chengf49810c2009-06-23 17:48:47 +00001656
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001657def t2SBFX: T2I<(outs rGPR:$dst), (ins rGPR:$src, imm0_31:$lsb, imm0_31:$width),
Johnny Chend68e1192009-12-15 17:24:14 +00001658 IIC_iALUi, "sbfx", "\t$dst, $src, $lsb, $width", []> {
1659 let Inst{31-27} = 0b11110;
1660 let Inst{25} = 1;
1661 let Inst{24-20} = 0b10100;
1662 let Inst{15} = 0;
1663}
Sandeep Patel47eedaa2009-10-13 18:59:48 +00001664
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001665def t2UBFX: T2I<(outs rGPR:$dst), (ins rGPR:$src, imm0_31:$lsb, imm0_31:$width),
Johnny Chend68e1192009-12-15 17:24:14 +00001666 IIC_iALUi, "ubfx", "\t$dst, $src, $lsb, $width", []> {
1667 let Inst{31-27} = 0b11110;
1668 let Inst{25} = 1;
1669 let Inst{24-20} = 0b11100;
1670 let Inst{15} = 0;
1671}
Sandeep Patel47eedaa2009-10-13 18:59:48 +00001672
Johnny Chen9474d552010-02-02 19:31:58 +00001673// A8.6.18 BFI - Bitfield insert (Encoding T1)
Jim Grosbach469bbdb2010-07-16 23:05:05 +00001674let Constraints = "$src = $dst" in
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001675def t2BFI : T2I<(outs rGPR:$dst),
1676 (ins rGPR:$src, rGPR:$val, bf_inv_mask_imm:$imm),
Jim Grosbach469bbdb2010-07-16 23:05:05 +00001677 IIC_iALUi, "bfi", "\t$dst, $val, $imm",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001678 [(set rGPR:$dst, (ARMbfi rGPR:$src, rGPR:$val,
Jim Grosbach469bbdb2010-07-16 23:05:05 +00001679 bf_inv_mask_imm:$imm))]> {
Johnny Chen9474d552010-02-02 19:31:58 +00001680 let Inst{31-27} = 0b11110;
1681 let Inst{25} = 1;
1682 let Inst{24-20} = 0b10110;
1683 let Inst{15} = 0;
1684}
Evan Chengf49810c2009-06-23 17:48:47 +00001685
Johnny Chend68e1192009-12-15 17:24:14 +00001686defm t2ORN : T2I_bin_irs<0b0011, "orn", BinOpFrag<(or node:$LHS,
1687 (not node:$RHS))>>;
Evan Cheng36a0aeb2009-07-06 22:23:46 +00001688
1689// Prefer over of t2EORri ra, rb, -1 because mvn has 16-bit version
1690let AddedComplexity = 1 in
Johnny Chend68e1192009-12-15 17:24:14 +00001691defm t2MVN : T2I_un_irs <0b0011, "mvn", UnOpFrag<(not node:$Src)>, 1, 1>;
Evan Cheng36a0aeb2009-07-06 22:23:46 +00001692
1693
Jim Grosbachf084a5e2010-07-20 16:07:04 +00001694let AddedComplexity = 1 in
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001695def : T2Pat<(and rGPR:$src, t2_so_imm_not:$imm),
1696 (t2BICri rGPR:$src, t2_so_imm_not:$imm)>;
Evan Cheng36a0aeb2009-07-06 22:23:46 +00001697
Evan Cheng25f7cfc2009-08-01 06:13:52 +00001698// FIXME: Disable this pattern on Darwin to workaround an assembler bug.
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001699def : T2Pat<(or rGPR:$src, t2_so_imm_not:$imm),
1700 (t2ORNri rGPR:$src, t2_so_imm_not:$imm)>,
Evan Chengea253b92009-08-12 01:56:42 +00001701 Requires<[IsThumb2]>;
Evan Cheng36a0aeb2009-07-06 22:23:46 +00001702
1703def : T2Pat<(t2_so_imm_not:$src),
1704 (t2MVNi t2_so_imm_not:$src)>;
1705
Evan Chengf49810c2009-06-23 17:48:47 +00001706//===----------------------------------------------------------------------===//
1707// Multiply Instructions.
1708//
Evan Cheng8de898a2009-06-26 00:19:44 +00001709let isCommutable = 1 in
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001710def t2MUL: T2I<(outs rGPR:$dst), (ins rGPR:$a, rGPR:$b), IIC_iMUL32,
Evan Cheng699beba2009-10-27 00:08:59 +00001711 "mul", "\t$dst, $a, $b",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001712 [(set rGPR:$dst, (mul rGPR:$a, rGPR:$b))]> {
Johnny Chend68e1192009-12-15 17:24:14 +00001713 let Inst{31-27} = 0b11111;
1714 let Inst{26-23} = 0b0110;
1715 let Inst{22-20} = 0b000;
1716 let Inst{15-12} = 0b1111; // Ra = 0b1111 (no accumulate)
1717 let Inst{7-4} = 0b0000; // Multiply
1718}
Evan Chengf49810c2009-06-23 17:48:47 +00001719
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001720def t2MLA: T2I<(outs rGPR:$dst), (ins rGPR:$a, rGPR:$b, rGPR:$c), IIC_iMAC32,
Evan Cheng699beba2009-10-27 00:08:59 +00001721 "mla", "\t$dst, $a, $b, $c",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001722 [(set rGPR:$dst, (add (mul rGPR:$a, rGPR:$b), rGPR:$c))]> {
Johnny Chend68e1192009-12-15 17:24:14 +00001723 let Inst{31-27} = 0b11111;
1724 let Inst{26-23} = 0b0110;
1725 let Inst{22-20} = 0b000;
1726 let Inst{15-12} = {?, ?, ?, ?}; // Ra
1727 let Inst{7-4} = 0b0000; // Multiply
1728}
Evan Chengf49810c2009-06-23 17:48:47 +00001729
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001730def t2MLS: T2I<(outs rGPR:$dst), (ins rGPR:$a, rGPR:$b, rGPR:$c), IIC_iMAC32,
Evan Cheng699beba2009-10-27 00:08:59 +00001731 "mls", "\t$dst, $a, $b, $c",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001732 [(set rGPR:$dst, (sub rGPR:$c, (mul rGPR:$a, rGPR:$b)))]> {
Johnny Chend68e1192009-12-15 17:24:14 +00001733 let Inst{31-27} = 0b11111;
1734 let Inst{26-23} = 0b0110;
1735 let Inst{22-20} = 0b000;
1736 let Inst{15-12} = {?, ?, ?, ?}; // Ra
1737 let Inst{7-4} = 0b0001; // Multiply and Subtract
1738}
Evan Chengf49810c2009-06-23 17:48:47 +00001739
Evan Cheng5b9fcd12009-07-07 01:17:28 +00001740// Extra precision multiplies with low / high results
1741let neverHasSideEffects = 1 in {
1742let isCommutable = 1 in {
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001743def t2SMULL : T2I<(outs rGPR:$ldst, rGPR:$hdst), (ins rGPR:$a, rGPR:$b), IIC_iMUL64,
Johnny Chend68e1192009-12-15 17:24:14 +00001744 "smull", "\t$ldst, $hdst, $a, $b", []> {
1745 let Inst{31-27} = 0b11111;
1746 let Inst{26-23} = 0b0111;
1747 let Inst{22-20} = 0b000;
1748 let Inst{7-4} = 0b0000;
1749}
Evan Cheng5b9fcd12009-07-07 01:17:28 +00001750
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001751def t2UMULL : T2I<(outs rGPR:$ldst, rGPR:$hdst), (ins rGPR:$a, rGPR:$b), IIC_iMUL64,
Johnny Chend68e1192009-12-15 17:24:14 +00001752 "umull", "\t$ldst, $hdst, $a, $b", []> {
1753 let Inst{31-27} = 0b11111;
1754 let Inst{26-23} = 0b0111;
1755 let Inst{22-20} = 0b010;
1756 let Inst{7-4} = 0b0000;
Evan Cheng5b9fcd12009-07-07 01:17:28 +00001757}
Johnny Chend68e1192009-12-15 17:24:14 +00001758} // isCommutable
Evan Cheng5b9fcd12009-07-07 01:17:28 +00001759
1760// Multiply + accumulate
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001761def t2SMLAL : T2I<(outs rGPR:$ldst, rGPR:$hdst), (ins rGPR:$a, rGPR:$b), IIC_iMAC64,
Johnny Chend68e1192009-12-15 17:24:14 +00001762 "smlal", "\t$ldst, $hdst, $a, $b", []>{
1763 let Inst{31-27} = 0b11111;
1764 let Inst{26-23} = 0b0111;
1765 let Inst{22-20} = 0b100;
1766 let Inst{7-4} = 0b0000;
1767}
Evan Cheng5b9fcd12009-07-07 01:17:28 +00001768
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001769def t2UMLAL : T2I<(outs rGPR:$ldst, rGPR:$hdst), (ins rGPR:$a, rGPR:$b), IIC_iMAC64,
Johnny Chend68e1192009-12-15 17:24:14 +00001770 "umlal", "\t$ldst, $hdst, $a, $b", []>{
1771 let Inst{31-27} = 0b11111;
1772 let Inst{26-23} = 0b0111;
1773 let Inst{22-20} = 0b110;
1774 let Inst{7-4} = 0b0000;
1775}
Evan Cheng5b9fcd12009-07-07 01:17:28 +00001776
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001777def t2UMAAL : T2I<(outs rGPR:$ldst, rGPR:$hdst), (ins rGPR:$a, rGPR:$b), IIC_iMAC64,
Johnny Chend68e1192009-12-15 17:24:14 +00001778 "umaal", "\t$ldst, $hdst, $a, $b", []>{
1779 let Inst{31-27} = 0b11111;
1780 let Inst{26-23} = 0b0111;
1781 let Inst{22-20} = 0b110;
1782 let Inst{7-4} = 0b0110;
1783}
Evan Cheng5b9fcd12009-07-07 01:17:28 +00001784} // neverHasSideEffects
1785
Johnny Chen93042d12010-03-02 18:14:57 +00001786// Rounding variants of the below included for disassembly only
1787
Evan Cheng5b9fcd12009-07-07 01:17:28 +00001788// Most significant word multiply
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001789def t2SMMUL : T2I<(outs rGPR:$dst), (ins rGPR:$a, rGPR:$b), IIC_iMUL32,
Evan Cheng699beba2009-10-27 00:08:59 +00001790 "smmul", "\t$dst, $a, $b",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001791 [(set rGPR:$dst, (mulhs rGPR:$a, rGPR:$b))]> {
Johnny Chend68e1192009-12-15 17:24:14 +00001792 let Inst{31-27} = 0b11111;
1793 let Inst{26-23} = 0b0110;
1794 let Inst{22-20} = 0b101;
1795 let Inst{15-12} = 0b1111; // Ra = 0b1111 (no accumulate)
1796 let Inst{7-4} = 0b0000; // No Rounding (Inst{4} = 0)
1797}
Evan Cheng5b9fcd12009-07-07 01:17:28 +00001798
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001799def t2SMMULR : T2I<(outs rGPR:$dst), (ins rGPR:$a, rGPR:$b), IIC_iMUL32,
Johnny Chen93042d12010-03-02 18:14:57 +00001800 "smmulr", "\t$dst, $a, $b", []> {
1801 let Inst{31-27} = 0b11111;
1802 let Inst{26-23} = 0b0110;
1803 let Inst{22-20} = 0b101;
1804 let Inst{15-12} = 0b1111; // Ra = 0b1111 (no accumulate)
1805 let Inst{7-4} = 0b0001; // Rounding (Inst{4} = 1)
1806}
1807
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001808def t2SMMLA : T2I<(outs rGPR:$dst), (ins rGPR:$a, rGPR:$b, rGPR:$c), IIC_iMAC32,
Evan Cheng699beba2009-10-27 00:08:59 +00001809 "smmla", "\t$dst, $a, $b, $c",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001810 [(set rGPR:$dst, (add (mulhs rGPR:$a, rGPR:$b), rGPR:$c))]> {
Johnny Chend68e1192009-12-15 17:24:14 +00001811 let Inst{31-27} = 0b11111;
1812 let Inst{26-23} = 0b0110;
1813 let Inst{22-20} = 0b101;
1814 let Inst{15-12} = {?, ?, ?, ?}; // Ra
1815 let Inst{7-4} = 0b0000; // No Rounding (Inst{4} = 0)
1816}
Evan Cheng5b9fcd12009-07-07 01:17:28 +00001817
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001818def t2SMMLAR : T2I<(outs rGPR:$dst), (ins rGPR:$a, rGPR:$b, rGPR:$c), IIC_iMAC32,
Johnny Chen93042d12010-03-02 18:14:57 +00001819 "smmlar", "\t$dst, $a, $b, $c", []> {
1820 let Inst{31-27} = 0b11111;
1821 let Inst{26-23} = 0b0110;
1822 let Inst{22-20} = 0b101;
1823 let Inst{15-12} = {?, ?, ?, ?}; // Ra
1824 let Inst{7-4} = 0b0001; // Rounding (Inst{4} = 1)
1825}
Evan Cheng5b9fcd12009-07-07 01:17:28 +00001826
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001827def t2SMMLS : T2I <(outs rGPR:$dst), (ins rGPR:$a, rGPR:$b, rGPR:$c), IIC_iMAC32,
Evan Cheng699beba2009-10-27 00:08:59 +00001828 "smmls", "\t$dst, $a, $b, $c",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001829 [(set rGPR:$dst, (sub rGPR:$c, (mulhs rGPR:$a, rGPR:$b)))]> {
Johnny Chend68e1192009-12-15 17:24:14 +00001830 let Inst{31-27} = 0b11111;
1831 let Inst{26-23} = 0b0110;
1832 let Inst{22-20} = 0b110;
1833 let Inst{15-12} = {?, ?, ?, ?}; // Ra
1834 let Inst{7-4} = 0b0000; // No Rounding (Inst{4} = 0)
1835}
Evan Cheng5b9fcd12009-07-07 01:17:28 +00001836
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001837def t2SMMLSR : T2I <(outs rGPR:$dst), (ins rGPR:$a, rGPR:$b, rGPR:$c), IIC_iMAC32,
Johnny Chen93042d12010-03-02 18:14:57 +00001838 "smmlsr", "\t$dst, $a, $b, $c", []> {
1839 let Inst{31-27} = 0b11111;
1840 let Inst{26-23} = 0b0110;
1841 let Inst{22-20} = 0b110;
1842 let Inst{15-12} = {?, ?, ?, ?}; // Ra
1843 let Inst{7-4} = 0b0001; // Rounding (Inst{4} = 1)
1844}
1845
Evan Cheng5b9fcd12009-07-07 01:17:28 +00001846multiclass T2I_smul<string opc, PatFrag opnode> {
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001847 def BB : T2I<(outs rGPR:$dst), (ins rGPR:$a, rGPR:$b), IIC_iMUL32,
Evan Cheng699beba2009-10-27 00:08:59 +00001848 !strconcat(opc, "bb"), "\t$dst, $a, $b",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001849 [(set rGPR:$dst, (opnode (sext_inreg rGPR:$a, i16),
1850 (sext_inreg rGPR:$b, i16)))]> {
Johnny Chend68e1192009-12-15 17:24:14 +00001851 let Inst{31-27} = 0b11111;
1852 let Inst{26-23} = 0b0110;
1853 let Inst{22-20} = 0b001;
1854 let Inst{15-12} = 0b1111; // Ra = 0b1111 (no accumulate)
1855 let Inst{7-6} = 0b00;
1856 let Inst{5-4} = 0b00;
1857 }
Evan Cheng5b9fcd12009-07-07 01:17:28 +00001858
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001859 def BT : T2I<(outs rGPR:$dst), (ins rGPR:$a, rGPR:$b), IIC_iMUL32,
Evan Cheng699beba2009-10-27 00:08:59 +00001860 !strconcat(opc, "bt"), "\t$dst, $a, $b",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001861 [(set rGPR:$dst, (opnode (sext_inreg rGPR:$a, i16),
1862 (sra rGPR:$b, (i32 16))))]> {
Johnny Chend68e1192009-12-15 17:24:14 +00001863 let Inst{31-27} = 0b11111;
1864 let Inst{26-23} = 0b0110;
1865 let Inst{22-20} = 0b001;
1866 let Inst{15-12} = 0b1111; // Ra = 0b1111 (no accumulate)
1867 let Inst{7-6} = 0b00;
1868 let Inst{5-4} = 0b01;
1869 }
Evan Cheng5b9fcd12009-07-07 01:17:28 +00001870
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001871 def TB : T2I<(outs rGPR:$dst), (ins rGPR:$a, rGPR:$b), IIC_iMUL32,
Evan Cheng699beba2009-10-27 00:08:59 +00001872 !strconcat(opc, "tb"), "\t$dst, $a, $b",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001873 [(set rGPR:$dst, (opnode (sra rGPR:$a, (i32 16)),
1874 (sext_inreg rGPR:$b, i16)))]> {
Johnny Chend68e1192009-12-15 17:24:14 +00001875 let Inst{31-27} = 0b11111;
1876 let Inst{26-23} = 0b0110;
1877 let Inst{22-20} = 0b001;
1878 let Inst{15-12} = 0b1111; // Ra = 0b1111 (no accumulate)
1879 let Inst{7-6} = 0b00;
1880 let Inst{5-4} = 0b10;
1881 }
Evan Cheng5b9fcd12009-07-07 01:17:28 +00001882
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001883 def TT : T2I<(outs rGPR:$dst), (ins rGPR:$a, rGPR:$b), IIC_iMUL32,
Evan Cheng699beba2009-10-27 00:08:59 +00001884 !strconcat(opc, "tt"), "\t$dst, $a, $b",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001885 [(set rGPR:$dst, (opnode (sra rGPR:$a, (i32 16)),
1886 (sra rGPR:$b, (i32 16))))]> {
Johnny Chend68e1192009-12-15 17:24:14 +00001887 let Inst{31-27} = 0b11111;
1888 let Inst{26-23} = 0b0110;
1889 let Inst{22-20} = 0b001;
1890 let Inst{15-12} = 0b1111; // Ra = 0b1111 (no accumulate)
1891 let Inst{7-6} = 0b00;
1892 let Inst{5-4} = 0b11;
1893 }
Evan Cheng5b9fcd12009-07-07 01:17:28 +00001894
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001895 def WB : T2I<(outs rGPR:$dst), (ins rGPR:$a, rGPR:$b), IIC_iMUL16,
Evan Cheng699beba2009-10-27 00:08:59 +00001896 !strconcat(opc, "wb"), "\t$dst, $a, $b",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001897 [(set rGPR:$dst, (sra (opnode rGPR:$a,
1898 (sext_inreg rGPR:$b, i16)), (i32 16)))]> {
Johnny Chend68e1192009-12-15 17:24:14 +00001899 let Inst{31-27} = 0b11111;
1900 let Inst{26-23} = 0b0110;
1901 let Inst{22-20} = 0b011;
1902 let Inst{15-12} = 0b1111; // Ra = 0b1111 (no accumulate)
1903 let Inst{7-6} = 0b00;
1904 let Inst{5-4} = 0b00;
1905 }
Evan Cheng5b9fcd12009-07-07 01:17:28 +00001906
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001907 def WT : T2I<(outs rGPR:$dst), (ins rGPR:$a, rGPR:$b), IIC_iMUL16,
Evan Cheng699beba2009-10-27 00:08:59 +00001908 !strconcat(opc, "wt"), "\t$dst, $a, $b",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001909 [(set rGPR:$dst, (sra (opnode rGPR:$a,
1910 (sra rGPR:$b, (i32 16))), (i32 16)))]> {
Johnny Chend68e1192009-12-15 17:24:14 +00001911 let Inst{31-27} = 0b11111;
1912 let Inst{26-23} = 0b0110;
1913 let Inst{22-20} = 0b011;
1914 let Inst{15-12} = 0b1111; // Ra = 0b1111 (no accumulate)
1915 let Inst{7-6} = 0b00;
1916 let Inst{5-4} = 0b01;
1917 }
Evan Cheng5b9fcd12009-07-07 01:17:28 +00001918}
1919
1920
1921multiclass T2I_smla<string opc, PatFrag opnode> {
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001922 def BB : T2I<(outs rGPR:$dst), (ins rGPR:$a, rGPR:$b, rGPR:$acc), IIC_iMAC16,
Evan Cheng699beba2009-10-27 00:08:59 +00001923 !strconcat(opc, "bb"), "\t$dst, $a, $b, $acc",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001924 [(set rGPR:$dst, (add rGPR:$acc,
1925 (opnode (sext_inreg rGPR:$a, i16),
1926 (sext_inreg rGPR:$b, i16))))]> {
Johnny Chend68e1192009-12-15 17:24:14 +00001927 let Inst{31-27} = 0b11111;
1928 let Inst{26-23} = 0b0110;
1929 let Inst{22-20} = 0b001;
1930 let Inst{15-12} = {?, ?, ?, ?}; // Ra
1931 let Inst{7-6} = 0b00;
1932 let Inst{5-4} = 0b00;
1933 }
Evan Cheng5b9fcd12009-07-07 01:17:28 +00001934
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001935 def BT : T2I<(outs rGPR:$dst), (ins rGPR:$a, rGPR:$b, rGPR:$acc), IIC_iMAC16,
Evan Cheng699beba2009-10-27 00:08:59 +00001936 !strconcat(opc, "bt"), "\t$dst, $a, $b, $acc",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001937 [(set rGPR:$dst, (add rGPR:$acc, (opnode (sext_inreg rGPR:$a, i16),
1938 (sra rGPR:$b, (i32 16)))))]> {
Johnny Chend68e1192009-12-15 17:24:14 +00001939 let Inst{31-27} = 0b11111;
1940 let Inst{26-23} = 0b0110;
1941 let Inst{22-20} = 0b001;
1942 let Inst{15-12} = {?, ?, ?, ?}; // Ra
1943 let Inst{7-6} = 0b00;
1944 let Inst{5-4} = 0b01;
1945 }
Evan Cheng5b9fcd12009-07-07 01:17:28 +00001946
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001947 def TB : T2I<(outs rGPR:$dst), (ins rGPR:$a, rGPR:$b, rGPR:$acc), IIC_iMAC16,
Evan Cheng699beba2009-10-27 00:08:59 +00001948 !strconcat(opc, "tb"), "\t$dst, $a, $b, $acc",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001949 [(set rGPR:$dst, (add rGPR:$acc, (opnode (sra rGPR:$a, (i32 16)),
1950 (sext_inreg rGPR:$b, i16))))]> {
Johnny Chend68e1192009-12-15 17:24:14 +00001951 let Inst{31-27} = 0b11111;
1952 let Inst{26-23} = 0b0110;
1953 let Inst{22-20} = 0b001;
1954 let Inst{15-12} = {?, ?, ?, ?}; // Ra
1955 let Inst{7-6} = 0b00;
1956 let Inst{5-4} = 0b10;
1957 }
Evan Cheng5b9fcd12009-07-07 01:17:28 +00001958
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001959 def TT : T2I<(outs rGPR:$dst), (ins rGPR:$a, rGPR:$b, rGPR:$acc), IIC_iMAC16,
Evan Cheng699beba2009-10-27 00:08:59 +00001960 !strconcat(opc, "tt"), "\t$dst, $a, $b, $acc",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001961 [(set rGPR:$dst, (add rGPR:$acc, (opnode (sra rGPR:$a, (i32 16)),
1962 (sra rGPR:$b, (i32 16)))))]> {
Johnny Chend68e1192009-12-15 17:24:14 +00001963 let Inst{31-27} = 0b11111;
1964 let Inst{26-23} = 0b0110;
1965 let Inst{22-20} = 0b001;
1966 let Inst{15-12} = {?, ?, ?, ?}; // Ra
1967 let Inst{7-6} = 0b00;
1968 let Inst{5-4} = 0b11;
1969 }
Evan Cheng5b9fcd12009-07-07 01:17:28 +00001970
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001971 def WB : T2I<(outs rGPR:$dst), (ins rGPR:$a, rGPR:$b, rGPR:$acc), IIC_iMAC16,
Evan Cheng699beba2009-10-27 00:08:59 +00001972 !strconcat(opc, "wb"), "\t$dst, $a, $b, $acc",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001973 [(set rGPR:$dst, (add rGPR:$acc, (sra (opnode rGPR:$a,
1974 (sext_inreg rGPR:$b, i16)), (i32 16))))]> {
Johnny Chend68e1192009-12-15 17:24:14 +00001975 let Inst{31-27} = 0b11111;
1976 let Inst{26-23} = 0b0110;
1977 let Inst{22-20} = 0b011;
1978 let Inst{15-12} = {?, ?, ?, ?}; // Ra
1979 let Inst{7-6} = 0b00;
1980 let Inst{5-4} = 0b00;
1981 }
Evan Cheng5b9fcd12009-07-07 01:17:28 +00001982
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001983 def WT : T2I<(outs rGPR:$dst), (ins rGPR:$a, rGPR:$b, rGPR:$acc), IIC_iMAC16,
Evan Cheng699beba2009-10-27 00:08:59 +00001984 !strconcat(opc, "wt"), "\t$dst, $a, $b, $acc",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001985 [(set rGPR:$dst, (add rGPR:$acc, (sra (opnode rGPR:$a,
1986 (sra rGPR:$b, (i32 16))), (i32 16))))]> {
Johnny Chend68e1192009-12-15 17:24:14 +00001987 let Inst{31-27} = 0b11111;
1988 let Inst{26-23} = 0b0110;
1989 let Inst{22-20} = 0b011;
1990 let Inst{15-12} = {?, ?, ?, ?}; // Ra
1991 let Inst{7-6} = 0b00;
1992 let Inst{5-4} = 0b01;
1993 }
Evan Cheng5b9fcd12009-07-07 01:17:28 +00001994}
1995
1996defm t2SMUL : T2I_smul<"smul", BinOpFrag<(mul node:$LHS, node:$RHS)>>;
1997defm t2SMLA : T2I_smla<"smla", BinOpFrag<(mul node:$LHS, node:$RHS)>>;
1998
Johnny Chenadc77332010-02-26 22:04:29 +00001999// Halfword multiple accumulate long: SMLAL<x><y> -- for disassembly only
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002000def t2SMLALBB : T2I_mac<1, 0b100, 0b1000, (outs rGPR:$ldst,rGPR:$hdst),
2001 (ins rGPR:$a,rGPR:$b), IIC_iMAC64, "smlalbb", "\t$ldst, $hdst, $a, $b",
Johnny Chenadc77332010-02-26 22:04:29 +00002002 [/* For disassembly only; pattern left blank */]>;
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002003def t2SMLALBT : T2I_mac<1, 0b100, 0b1001, (outs rGPR:$ldst,rGPR:$hdst),
2004 (ins rGPR:$a,rGPR:$b), IIC_iMAC64, "smlalbt", "\t$ldst, $hdst, $a, $b",
Johnny Chenadc77332010-02-26 22:04:29 +00002005 [/* For disassembly only; pattern left blank */]>;
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002006def t2SMLALTB : T2I_mac<1, 0b100, 0b1010, (outs rGPR:$ldst,rGPR:$hdst),
2007 (ins rGPR:$a,rGPR:$b), IIC_iMAC64, "smlaltb", "\t$ldst, $hdst, $a, $b",
Johnny Chenadc77332010-02-26 22:04:29 +00002008 [/* For disassembly only; pattern left blank */]>;
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002009def t2SMLALTT : T2I_mac<1, 0b100, 0b1011, (outs rGPR:$ldst,rGPR:$hdst),
2010 (ins rGPR:$a,rGPR:$b), IIC_iMAC64, "smlaltt", "\t$ldst, $hdst, $a, $b",
Johnny Chenadc77332010-02-26 22:04:29 +00002011 [/* For disassembly only; pattern left blank */]>;
Evan Cheng5b9fcd12009-07-07 01:17:28 +00002012
Johnny Chenadc77332010-02-26 22:04:29 +00002013// Dual halfword multiple: SMUAD, SMUSD, SMLAD, SMLSD, SMLALD, SMLSLD
2014// These are for disassembly only.
2015
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002016def t2SMUAD : T2I_mac<0, 0b010, 0b0000, (outs rGPR:$dst), (ins rGPR:$a, rGPR:$b),
Johnny Chenadc77332010-02-26 22:04:29 +00002017 IIC_iMAC32, "smuad", "\t$dst, $a, $b", []> {
2018 let Inst{15-12} = 0b1111;
2019}
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002020def t2SMUADX : T2I_mac<0, 0b010, 0b0001, (outs rGPR:$dst), (ins rGPR:$a, rGPR:$b),
Johnny Chenadc77332010-02-26 22:04:29 +00002021 IIC_iMAC32, "smuadx", "\t$dst, $a, $b", []> {
2022 let Inst{15-12} = 0b1111;
2023}
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002024def t2SMUSD : T2I_mac<0, 0b100, 0b0000, (outs rGPR:$dst), (ins rGPR:$a, rGPR:$b),
Johnny Chenadc77332010-02-26 22:04:29 +00002025 IIC_iMAC32, "smusd", "\t$dst, $a, $b", []> {
2026 let Inst{15-12} = 0b1111;
2027}
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002028def t2SMUSDX : T2I_mac<0, 0b100, 0b0001, (outs rGPR:$dst), (ins rGPR:$a, rGPR:$b),
Johnny Chenadc77332010-02-26 22:04:29 +00002029 IIC_iMAC32, "smusdx", "\t$dst, $a, $b", []> {
2030 let Inst{15-12} = 0b1111;
2031}
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002032def t2SMLAD : T2I_mac<0, 0b010, 0b0000, (outs rGPR:$dst),
2033 (ins rGPR:$a, rGPR:$b, rGPR:$acc), IIC_iMAC32, "smlad",
Johnny Chenadc77332010-02-26 22:04:29 +00002034 "\t$dst, $a, $b, $acc", []>;
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002035def t2SMLADX : T2I_mac<0, 0b010, 0b0001, (outs rGPR:$dst),
2036 (ins rGPR:$a, rGPR:$b, rGPR:$acc), IIC_iMAC32, "smladx",
Johnny Chenadc77332010-02-26 22:04:29 +00002037 "\t$dst, $a, $b, $acc", []>;
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002038def t2SMLSD : T2I_mac<0, 0b100, 0b0000, (outs rGPR:$dst),
2039 (ins rGPR:$a, rGPR:$b, rGPR:$acc), IIC_iMAC32, "smlsd",
Johnny Chenadc77332010-02-26 22:04:29 +00002040 "\t$dst, $a, $b, $acc", []>;
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002041def t2SMLSDX : T2I_mac<0, 0b100, 0b0001, (outs rGPR:$dst),
2042 (ins rGPR:$a, rGPR:$b, rGPR:$acc), IIC_iMAC32, "smlsdx",
Johnny Chenadc77332010-02-26 22:04:29 +00002043 "\t$dst, $a, $b, $acc", []>;
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002044def t2SMLALD : T2I_mac<1, 0b100, 0b1100, (outs rGPR:$ldst,rGPR:$hdst),
2045 (ins rGPR:$a,rGPR:$b), IIC_iMAC64, "smlald",
Johnny Chenadc77332010-02-26 22:04:29 +00002046 "\t$ldst, $hdst, $a, $b", []>;
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002047def t2SMLALDX : T2I_mac<1, 0b100, 0b1101, (outs rGPR:$ldst,rGPR:$hdst),
2048 (ins rGPR:$a,rGPR:$b), IIC_iMAC64, "smlaldx",
Johnny Chenadc77332010-02-26 22:04:29 +00002049 "\t$ldst, $hdst, $a, $b", []>;
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002050def t2SMLSLD : T2I_mac<1, 0b101, 0b1100, (outs rGPR:$ldst,rGPR:$hdst),
2051 (ins rGPR:$a,rGPR:$b), IIC_iMAC64, "smlsld",
Johnny Chenadc77332010-02-26 22:04:29 +00002052 "\t$ldst, $hdst, $a, $b", []>;
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002053def t2SMLSLDX : T2I_mac<1, 0b101, 0b1101, (outs rGPR:$ldst,rGPR:$hdst),
2054 (ins rGPR:$a,rGPR:$b), IIC_iMAC64, "smlsldx",
Johnny Chenadc77332010-02-26 22:04:29 +00002055 "\t$ldst, $hdst, $a, $b", []>;
Evan Chengf49810c2009-06-23 17:48:47 +00002056
2057//===----------------------------------------------------------------------===//
2058// Misc. Arithmetic Instructions.
2059//
2060
Jim Grosbach80dc1162010-02-16 21:23:02 +00002061class T2I_misc<bits<2> op1, bits<2> op2, dag oops, dag iops,
2062 InstrItinClass itin, string opc, string asm, list<dag> pattern>
Johnny Chend68e1192009-12-15 17:24:14 +00002063 : T2I<oops, iops, itin, opc, asm, pattern> {
2064 let Inst{31-27} = 0b11111;
2065 let Inst{26-22} = 0b01010;
2066 let Inst{21-20} = op1;
2067 let Inst{15-12} = 0b1111;
2068 let Inst{7-6} = 0b10;
2069 let Inst{5-4} = op2;
2070}
Evan Chengf49810c2009-06-23 17:48:47 +00002071
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002072def t2CLZ : T2I_misc<0b11, 0b00, (outs rGPR:$dst), (ins rGPR:$src), IIC_iUNAr,
2073 "clz", "\t$dst, $src", [(set rGPR:$dst, (ctlz rGPR:$src))]>;
Evan Chengf49810c2009-06-23 17:48:47 +00002074
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002075def t2RBIT : T2I_misc<0b01, 0b10, (outs rGPR:$dst), (ins rGPR:$src), IIC_iUNAr,
Evan Chengf609bb82010-01-19 00:44:15 +00002076 "rbit", "\t$dst, $src",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002077 [(set rGPR:$dst, (ARMrbit rGPR:$src))]>;
Jim Grosbach3482c802010-01-18 19:58:49 +00002078
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002079def t2REV : T2I_misc<0b01, 0b00, (outs rGPR:$dst), (ins rGPR:$src), IIC_iUNAr,
2080 "rev", ".w\t$dst, $src", [(set rGPR:$dst, (bswap rGPR:$src))]>;
Johnny Chend68e1192009-12-15 17:24:14 +00002081
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002082def t2REV16 : T2I_misc<0b01, 0b01, (outs rGPR:$dst), (ins rGPR:$src), IIC_iUNAr,
Johnny Chend68e1192009-12-15 17:24:14 +00002083 "rev16", ".w\t$dst, $src",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002084 [(set rGPR:$dst,
2085 (or (and (srl rGPR:$src, (i32 8)), 0xFF),
2086 (or (and (shl rGPR:$src, (i32 8)), 0xFF00),
2087 (or (and (srl rGPR:$src, (i32 8)), 0xFF0000),
2088 (and (shl rGPR:$src, (i32 8)), 0xFF000000)))))]>;
Evan Chengf49810c2009-06-23 17:48:47 +00002089
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002090def t2REVSH : T2I_misc<0b01, 0b11, (outs rGPR:$dst), (ins rGPR:$src), IIC_iUNAr,
Johnny Chend68e1192009-12-15 17:24:14 +00002091 "revsh", ".w\t$dst, $src",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002092 [(set rGPR:$dst,
Evan Chengf49810c2009-06-23 17:48:47 +00002093 (sext_inreg
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002094 (or (srl (and rGPR:$src, 0xFF00), (i32 8)),
2095 (shl rGPR:$src, (i32 8))), i16))]>;
Evan Chengf49810c2009-06-23 17:48:47 +00002096
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002097def t2PKHBT : T2I<(outs rGPR:$dst), (ins rGPR:$src1, rGPR:$src2, i32imm:$shamt),
Johnny Chen93042d12010-03-02 18:14:57 +00002098 IIC_iALUsi, "pkhbt", "\t$dst, $src1, $src2, lsl $shamt",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002099 [(set rGPR:$dst, (or (and rGPR:$src1, 0xFFFF),
2100 (and (shl rGPR:$src2, (i32 imm:$shamt)),
Jim Grosbachb1dc3932010-05-05 20:44:35 +00002101 0xFFFF0000)))]>,
Jim Grosbach29402132010-05-05 23:44:43 +00002102 Requires<[HasT2ExtractPack]> {
Johnny Chend68e1192009-12-15 17:24:14 +00002103 let Inst{31-27} = 0b11101;
2104 let Inst{26-25} = 0b01;
2105 let Inst{24-20} = 0b01100;
2106 let Inst{5} = 0; // BT form
2107 let Inst{4} = 0;
2108}
Evan Cheng40289b02009-07-07 05:35:52 +00002109
2110// Alternate cases for PKHBT where identities eliminate some nodes.
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002111def : T2Pat<(or (and rGPR:$src1, 0xFFFF), (and rGPR:$src2, 0xFFFF0000)),
2112 (t2PKHBT rGPR:$src1, rGPR:$src2, 0)>,
Jim Grosbach29402132010-05-05 23:44:43 +00002113 Requires<[HasT2ExtractPack]>;
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002114def : T2Pat<(or (and rGPR:$src1, 0xFFFF), (shl rGPR:$src2, imm16_31:$shamt)),
2115 (t2PKHBT rGPR:$src1, rGPR:$src2, imm16_31:$shamt)>,
Jim Grosbach29402132010-05-05 23:44:43 +00002116 Requires<[HasT2ExtractPack]>;
Evan Cheng40289b02009-07-07 05:35:52 +00002117
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002118def t2PKHTB : T2I<(outs rGPR:$dst), (ins rGPR:$src1, rGPR:$src2, i32imm:$shamt),
Johnny Chen93042d12010-03-02 18:14:57 +00002119 IIC_iALUsi, "pkhtb", "\t$dst, $src1, $src2, asr $shamt",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002120 [(set rGPR:$dst, (or (and rGPR:$src1, 0xFFFF0000),
2121 (and (sra rGPR:$src2, imm16_31:$shamt),
Jim Grosbachb1dc3932010-05-05 20:44:35 +00002122 0xFFFF)))]>,
Jim Grosbach29402132010-05-05 23:44:43 +00002123 Requires<[HasT2ExtractPack]> {
Johnny Chend68e1192009-12-15 17:24:14 +00002124 let Inst{31-27} = 0b11101;
2125 let Inst{26-25} = 0b01;
2126 let Inst{24-20} = 0b01100;
2127 let Inst{5} = 1; // TB form
2128 let Inst{4} = 0;
2129}
Evan Cheng40289b02009-07-07 05:35:52 +00002130
2131// Alternate cases for PKHTB where identities eliminate some nodes. Note that
2132// a shift amount of 0 is *not legal* here, it is PKHBT instead.
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002133def : T2Pat<(or (and rGPR:$src1, 0xFFFF0000), (srl rGPR:$src2, (i32 16))),
2134 (t2PKHTB rGPR:$src1, rGPR:$src2, 16)>,
Jim Grosbach29402132010-05-05 23:44:43 +00002135 Requires<[HasT2ExtractPack]>;
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002136def : T2Pat<(or (and rGPR:$src1, 0xFFFF0000),
2137 (and (srl rGPR:$src2, imm1_15:$shamt), 0xFFFF)),
2138 (t2PKHTB rGPR:$src1, rGPR:$src2, imm1_15:$shamt)>,
Jim Grosbach29402132010-05-05 23:44:43 +00002139 Requires<[HasT2ExtractPack]>;
Evan Chengf49810c2009-06-23 17:48:47 +00002140
2141//===----------------------------------------------------------------------===//
2142// Comparison Instructions...
2143//
Bill Wendlingc98af332010-08-08 05:04:59 +00002144let isCompare = 1 in {
Johnny Chend68e1192009-12-15 17:24:14 +00002145defm t2CMP : T2I_cmp_irs<0b1101, "cmp",
2146 BinOpFrag<(ARMcmp node:$LHS, node:$RHS)>>;
2147defm t2CMPz : T2I_cmp_irs<0b1101, "cmp",
2148 BinOpFrag<(ARMcmpZ node:$LHS, node:$RHS)>>;
Bill Wendlingc98af332010-08-08 05:04:59 +00002149}
Evan Chengf49810c2009-06-23 17:48:47 +00002150
Jim Grosbachd5d2bae2010-01-22 00:08:13 +00002151//FIXME: Disable CMN, as CCodes are backwards from compare expectations
2152// Compare-to-zero still works out, just not the relationals
2153//defm t2CMN : T2I_cmp_irs<0b1000, "cmn",
2154// BinOpFrag<(ARMcmp node:$LHS,(ineg node:$RHS))>>;
Johnny Chend68e1192009-12-15 17:24:14 +00002155defm t2CMNz : T2I_cmp_irs<0b1000, "cmn",
2156 BinOpFrag<(ARMcmpZ node:$LHS,(ineg node:$RHS))>>;
Evan Chengf49810c2009-06-23 17:48:47 +00002157
Jim Grosbachd5d2bae2010-01-22 00:08:13 +00002158//def : T2Pat<(ARMcmp GPR:$src, t2_so_imm_neg:$imm),
2159// (t2CMNri GPR:$src, t2_so_imm_neg:$imm)>;
Evan Chengf49810c2009-06-23 17:48:47 +00002160
David Goodwinc0309b42009-06-29 15:33:01 +00002161def : T2Pat<(ARMcmpZ GPR:$src, t2_so_imm_neg:$imm),
Jim Grosbachd5d2bae2010-01-22 00:08:13 +00002162 (t2CMNzri GPR:$src, t2_so_imm_neg:$imm)>;
Evan Chengf49810c2009-06-23 17:48:47 +00002163
Johnny Chend68e1192009-12-15 17:24:14 +00002164defm t2TST : T2I_cmp_irs<0b0000, "tst",
2165 BinOpFrag<(ARMcmpZ (and node:$LHS, node:$RHS), 0)>>;
2166defm t2TEQ : T2I_cmp_irs<0b0100, "teq",
2167 BinOpFrag<(ARMcmpZ (xor node:$LHS, node:$RHS), 0)>>;
Evan Chengf49810c2009-06-23 17:48:47 +00002168
Evan Chenge253c952009-07-07 20:39:03 +00002169// Conditional moves
2170// FIXME: should be able to write a pattern for ARMcmov, but can't use
Jim Grosbach64171712010-02-16 21:07:46 +00002171// a two-value operand where a dag node expects two operands. :(
Evan Chengea420b22010-05-19 01:52:25 +00002172let neverHasSideEffects = 1 in {
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002173def t2MOVCCr : T2I<(outs rGPR:$dst), (ins rGPR:$false, rGPR:$true), IIC_iCMOVr,
Evan Cheng699beba2009-10-27 00:08:59 +00002174 "mov", ".w\t$dst, $true",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002175 [/*(set rGPR:$dst, (ARMcmov rGPR:$false, rGPR:$true, imm:$cc, CCR:$ccr))*/]>,
Johnny Chend68e1192009-12-15 17:24:14 +00002176 RegConstraint<"$false = $dst"> {
2177 let Inst{31-27} = 0b11101;
2178 let Inst{26-25} = 0b01;
2179 let Inst{24-21} = 0b0010;
2180 let Inst{20} = 0; // The S bit.
2181 let Inst{19-16} = 0b1111; // Rn
2182 let Inst{14-12} = 0b000;
2183 let Inst{7-4} = 0b0000;
2184}
Evan Chenge253c952009-07-07 20:39:03 +00002185
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002186def t2MOVCCi : T2I<(outs rGPR:$dst), (ins rGPR:$false, t2_so_imm:$true),
Evan Cheng699beba2009-10-27 00:08:59 +00002187 IIC_iCMOVi, "mov", ".w\t$dst, $true",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002188[/*(set rGPR:$dst,(ARMcmov rGPR:$false,t2_so_imm:$true, imm:$cc, CCR:$ccr))*/]>,
Johnny Chend68e1192009-12-15 17:24:14 +00002189 RegConstraint<"$false = $dst"> {
2190 let Inst{31-27} = 0b11110;
2191 let Inst{25} = 0;
2192 let Inst{24-21} = 0b0010;
2193 let Inst{20} = 0; // The S bit.
2194 let Inst{19-16} = 0b1111; // Rn
2195 let Inst{15} = 0;
2196}
Evan Chengf49810c2009-06-23 17:48:47 +00002197
Johnny Chend68e1192009-12-15 17:24:14 +00002198class T2I_movcc_sh<bits<2> opcod, dag oops, dag iops, InstrItinClass itin,
2199 string opc, string asm, list<dag> pattern>
2200 : T2I<oops, iops, itin, opc, asm, pattern> {
2201 let Inst{31-27} = 0b11101;
2202 let Inst{26-25} = 0b01;
2203 let Inst{24-21} = 0b0010;
2204 let Inst{20} = 0; // The S bit.
2205 let Inst{19-16} = 0b1111; // Rn
2206 let Inst{5-4} = opcod; // Shift type.
2207}
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002208def t2MOVCClsl : T2I_movcc_sh<0b00, (outs rGPR:$dst),
2209 (ins rGPR:$false, rGPR:$true, i32imm:$rhs),
Johnny Chend68e1192009-12-15 17:24:14 +00002210 IIC_iCMOVsi, "lsl", ".w\t$dst, $true, $rhs", []>,
2211 RegConstraint<"$false = $dst">;
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002212def t2MOVCClsr : T2I_movcc_sh<0b01, (outs rGPR:$dst),
2213 (ins rGPR:$false, rGPR:$true, i32imm:$rhs),
Johnny Chend68e1192009-12-15 17:24:14 +00002214 IIC_iCMOVsi, "lsr", ".w\t$dst, $true, $rhs", []>,
2215 RegConstraint<"$false = $dst">;
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002216def t2MOVCCasr : T2I_movcc_sh<0b10, (outs rGPR:$dst),
2217 (ins rGPR:$false, rGPR:$true, i32imm:$rhs),
Johnny Chend68e1192009-12-15 17:24:14 +00002218 IIC_iCMOVsi, "asr", ".w\t$dst, $true, $rhs", []>,
2219 RegConstraint<"$false = $dst">;
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002220def t2MOVCCror : T2I_movcc_sh<0b11, (outs rGPR:$dst),
2221 (ins rGPR:$false, rGPR:$true, i32imm:$rhs),
Johnny Chend68e1192009-12-15 17:24:14 +00002222 IIC_iCMOVsi, "ror", ".w\t$dst, $true, $rhs", []>,
2223 RegConstraint<"$false = $dst">;
Evan Chengea420b22010-05-19 01:52:25 +00002224} // neverHasSideEffects
Evan Cheng13f8b362009-08-01 01:43:45 +00002225
David Goodwin5e47a9a2009-06-30 18:04:13 +00002226//===----------------------------------------------------------------------===//
Jim Grosbachc219e4d2009-12-14 18:56:47 +00002227// Atomic operations intrinsics
2228//
2229
2230// memory barriers protect the atomic sequences
2231let hasSideEffects = 1 in {
2232def t2Int_MemBarrierV7 : AInoP<(outs), (ins),
Johnny Chenc0b5dce2010-03-11 21:02:50 +00002233 ThumbFrm, NoItinerary,
Jim Grosbachc219e4d2009-12-14 18:56:47 +00002234 "dmb", "",
Jim Grosbach7c03dbd2009-12-14 21:24:16 +00002235 [(ARMMemBarrierV7)]>,
Jim Grosbacha623f5a2009-12-14 19:24:11 +00002236 Requires<[IsThumb2]> {
Johnny Chend68e1192009-12-15 17:24:14 +00002237 let Inst{31-4} = 0xF3BF8F5;
Jim Grosbachc219e4d2009-12-14 18:56:47 +00002238 // FIXME: add support for options other than a full system DMB
Johnny Chend68e1192009-12-15 17:24:14 +00002239 let Inst{3-0} = 0b1111;
Jim Grosbachc219e4d2009-12-14 18:56:47 +00002240}
2241
2242def t2Int_SyncBarrierV7 : AInoP<(outs), (ins),
Johnny Chenc0b5dce2010-03-11 21:02:50 +00002243 ThumbFrm, NoItinerary,
Jim Grosbachc219e4d2009-12-14 18:56:47 +00002244 "dsb", "",
Jim Grosbach7c03dbd2009-12-14 21:24:16 +00002245 [(ARMSyncBarrierV7)]>,
Jim Grosbacha623f5a2009-12-14 19:24:11 +00002246 Requires<[IsThumb2]> {
Johnny Chend68e1192009-12-15 17:24:14 +00002247 let Inst{31-4} = 0xF3BF8F4;
Jim Grosbachc219e4d2009-12-14 18:56:47 +00002248 // FIXME: add support for options other than a full system DSB
Johnny Chend68e1192009-12-15 17:24:14 +00002249 let Inst{3-0} = 0b1111;
Jim Grosbachc219e4d2009-12-14 18:56:47 +00002250}
2251}
2252
Johnny Chena4339822010-03-03 00:16:28 +00002253// Helper class for multiclass T2MemB -- for disassembly only
2254class T2I_memb<string opc, string asm>
2255 : T2I<(outs), (ins), NoItinerary, opc, asm,
2256 [/* For disassembly only; pattern left blank */]>,
2257 Requires<[IsThumb2, HasV7]> {
2258 let Inst{31-20} = 0xf3b;
2259 let Inst{15-14} = 0b10;
2260 let Inst{12} = 0;
2261}
2262
2263multiclass T2MemB<bits<4> op7_4, string opc> {
2264
2265 def st : T2I_memb<opc, "\tst"> {
2266 let Inst{7-4} = op7_4;
2267 let Inst{3-0} = 0b1110;
2268 }
2269
2270 def ish : T2I_memb<opc, "\tish"> {
2271 let Inst{7-4} = op7_4;
2272 let Inst{3-0} = 0b1011;
2273 }
2274
2275 def ishst : T2I_memb<opc, "\tishst"> {
2276 let Inst{7-4} = op7_4;
2277 let Inst{3-0} = 0b1010;
2278 }
2279
2280 def nsh : T2I_memb<opc, "\tnsh"> {
2281 let Inst{7-4} = op7_4;
2282 let Inst{3-0} = 0b0111;
2283 }
2284
2285 def nshst : T2I_memb<opc, "\tnshst"> {
2286 let Inst{7-4} = op7_4;
2287 let Inst{3-0} = 0b0110;
2288 }
2289
2290 def osh : T2I_memb<opc, "\tosh"> {
2291 let Inst{7-4} = op7_4;
2292 let Inst{3-0} = 0b0011;
2293 }
2294
2295 def oshst : T2I_memb<opc, "\toshst"> {
2296 let Inst{7-4} = op7_4;
2297 let Inst{3-0} = 0b0010;
2298 }
2299}
2300
2301// These DMB variants are for disassembly only.
2302defm t2DMB : T2MemB<0b0101, "dmb">;
2303
2304// These DSB variants are for disassembly only.
2305defm t2DSB : T2MemB<0b0100, "dsb">;
2306
2307// ISB has only full system option -- for disassembly only
2308def t2ISBsy : T2I_memb<"isb", ""> {
2309 let Inst{7-4} = 0b0110;
2310 let Inst{3-0} = 0b1111;
2311}
2312
Johnny Chend68e1192009-12-15 17:24:14 +00002313class T2I_ldrex<bits<2> opcod, dag oops, dag iops, AddrMode am, SizeFlagVal sz,
2314 InstrItinClass itin, string opc, string asm, string cstr,
2315 list<dag> pattern, bits<4> rt2 = 0b1111>
2316 : Thumb2I<oops, iops, am, sz, itin, opc, asm, cstr, pattern> {
2317 let Inst{31-27} = 0b11101;
2318 let Inst{26-20} = 0b0001101;
2319 let Inst{11-8} = rt2;
2320 let Inst{7-6} = 0b01;
2321 let Inst{5-4} = opcod;
2322 let Inst{3-0} = 0b1111;
2323}
2324class T2I_strex<bits<2> opcod, dag oops, dag iops, AddrMode am, SizeFlagVal sz,
2325 InstrItinClass itin, string opc, string asm, string cstr,
2326 list<dag> pattern, bits<4> rt2 = 0b1111>
2327 : Thumb2I<oops, iops, am, sz, itin, opc, asm, cstr, pattern> {
2328 let Inst{31-27} = 0b11101;
2329 let Inst{26-20} = 0b0001100;
2330 let Inst{11-8} = rt2;
2331 let Inst{7-6} = 0b01;
2332 let Inst{5-4} = opcod;
2333}
2334
Jim Grosbachc219e4d2009-12-14 18:56:47 +00002335let mayLoad = 1 in {
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002336def t2LDREXB : T2I_ldrex<0b00, (outs rGPR:$dest), (ins rGPR:$ptr), AddrModeNone,
Johnny Chend68e1192009-12-15 17:24:14 +00002337 Size4Bytes, NoItinerary, "ldrexb", "\t$dest, [$ptr]",
2338 "", []>;
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002339def t2LDREXH : T2I_ldrex<0b01, (outs rGPR:$dest), (ins rGPR:$ptr), AddrModeNone,
Johnny Chend68e1192009-12-15 17:24:14 +00002340 Size4Bytes, NoItinerary, "ldrexh", "\t$dest, [$ptr]",
2341 "", []>;
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002342def t2LDREX : Thumb2I<(outs rGPR:$dest), (ins rGPR:$ptr), AddrModeNone,
Johnny Chend68e1192009-12-15 17:24:14 +00002343 Size4Bytes, NoItinerary,
2344 "ldrex", "\t$dest, [$ptr]", "",
2345 []> {
2346 let Inst{31-27} = 0b11101;
2347 let Inst{26-20} = 0b0000101;
2348 let Inst{11-8} = 0b1111;
2349 let Inst{7-0} = 0b00000000; // imm8 = 0
2350}
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002351def t2LDREXD : T2I_ldrex<0b11, (outs rGPR:$dest, rGPR:$dest2), (ins rGPR:$ptr),
Johnny Chend68e1192009-12-15 17:24:14 +00002352 AddrModeNone, Size4Bytes, NoItinerary,
2353 "ldrexd", "\t$dest, $dest2, [$ptr]", "",
2354 [], {?, ?, ?, ?}>;
Jim Grosbachc219e4d2009-12-14 18:56:47 +00002355}
2356
Jim Grosbach587b0722009-12-16 19:44:06 +00002357let mayStore = 1, Constraints = "@earlyclobber $success" in {
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002358def t2STREXB : T2I_strex<0b00, (outs rGPR:$success), (ins rGPR:$src, rGPR:$ptr),
Johnny Chend68e1192009-12-15 17:24:14 +00002359 AddrModeNone, Size4Bytes, NoItinerary,
2360 "strexb", "\t$success, $src, [$ptr]", "", []>;
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002361def t2STREXH : T2I_strex<0b01, (outs rGPR:$success), (ins rGPR:$src, rGPR:$ptr),
Johnny Chend68e1192009-12-15 17:24:14 +00002362 AddrModeNone, Size4Bytes, NoItinerary,
2363 "strexh", "\t$success, $src, [$ptr]", "", []>;
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002364def t2STREX : Thumb2I<(outs rGPR:$success), (ins rGPR:$src, rGPR:$ptr),
Johnny Chend68e1192009-12-15 17:24:14 +00002365 AddrModeNone, Size4Bytes, NoItinerary,
2366 "strex", "\t$success, $src, [$ptr]", "",
2367 []> {
2368 let Inst{31-27} = 0b11101;
2369 let Inst{26-20} = 0b0000100;
2370 let Inst{7-0} = 0b00000000; // imm8 = 0
2371}
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002372def t2STREXD : T2I_strex<0b11, (outs rGPR:$success),
2373 (ins rGPR:$src, rGPR:$src2, rGPR:$ptr),
Johnny Chend68e1192009-12-15 17:24:14 +00002374 AddrModeNone, Size4Bytes, NoItinerary,
2375 "strexd", "\t$success, $src, $src2, [$ptr]", "", [],
2376 {?, ?, ?, ?}>;
Jim Grosbachc219e4d2009-12-14 18:56:47 +00002377}
2378
Johnny Chen10a77e12010-03-02 22:11:06 +00002379// Clear-Exclusive is for disassembly only.
2380def t2CLREX : T2I<(outs), (ins), NoItinerary, "clrex", "",
2381 [/* For disassembly only; pattern left blank */]>,
2382 Requires<[IsARM, HasV7]> {
2383 let Inst{31-20} = 0xf3b;
2384 let Inst{15-14} = 0b10;
2385 let Inst{12} = 0;
2386 let Inst{7-4} = 0b0010;
2387}
2388
Jim Grosbachc219e4d2009-12-14 18:56:47 +00002389//===----------------------------------------------------------------------===//
David Goodwin334c2642009-07-08 16:09:28 +00002390// TLS Instructions
2391//
2392
2393// __aeabi_read_tp preserves the registers r1-r3.
2394let isCall = 1,
2395 Defs = [R0, R12, LR, CPSR] in {
David Goodwin8b7d7ad2009-08-06 16:52:47 +00002396 def t2TPsoft : T2XI<(outs), (ins), IIC_Br,
Evan Cheng699beba2009-10-27 00:08:59 +00002397 "bl\t__aeabi_read_tp",
Johnny Chend68e1192009-12-15 17:24:14 +00002398 [(set R0, ARMthread_pointer)]> {
2399 let Inst{31-27} = 0b11110;
2400 let Inst{15-14} = 0b11;
2401 let Inst{12} = 1;
2402 }
David Goodwin334c2642009-07-08 16:09:28 +00002403}
2404
2405//===----------------------------------------------------------------------===//
Jim Grosbach5aa16842009-08-11 19:42:21 +00002406// SJLJ Exception handling intrinsics
Jim Grosbach1add6592009-08-13 15:11:43 +00002407// eh_sjlj_setjmp() is an instruction sequence to store the return
Jim Grosbach5aa16842009-08-11 19:42:21 +00002408// address and save #0 in R0 for the non-longjmp case.
2409// Since by its nature we may be coming from some other function to get
2410// here, and we're using the stack frame for the containing function to
2411// save/restore registers, we can't keep anything live in regs across
2412// the eh_sjlj_setjmp(), else it will almost certainly have been tromped upon
2413// when we get here from a longjmp(). We force everthing out of registers
2414// except for our own input by listing the relevant registers in Defs. By
2415// doing so, we also cause the prologue/epilogue code to actively preserve
2416// all of the callee-saved resgisters, which is exactly what we want.
Jim Grosbach0798edd2010-05-27 23:49:24 +00002417// $val is a scratch register for our use.
Jim Grosbacha87ded22010-02-08 23:22:00 +00002418let Defs =
Jim Grosbachf35d2162009-08-13 16:59:44 +00002419 [ R0, R1, R2, R3, R4, R5, R6, R7, R8, R9, R10, R11, R12, LR, D0,
2420 D1, D2, D3, D4, D5, D6, D7, D8, D9, D10, D11, D12, D13, D14, D15,
Jim Grosbach5aa16842009-08-11 19:42:21 +00002421 D16, D17, D18, D19, D20, D21, D22, D23, D24, D25, D26, D27, D28, D29, D30,
Jim Grosbach5caeff52010-05-28 17:37:40 +00002422 D31 ], hasSideEffects = 1, isBarrier = 1 in {
Jim Grosbacha87ded22010-02-08 23:22:00 +00002423 def t2Int_eh_sjlj_setjmp : Thumb2XI<(outs), (ins GPR:$src, tGPR:$val),
Jim Grosbach5aa16842009-08-11 19:42:21 +00002424 AddrModeNone, SizeSpecial, NoItinerary,
Jim Grosbachc9792a32010-05-28 17:51:20 +00002425 "mov\t$val, pc\t${:comment} begin eh.setjmp\n\t"
2426 "adds\t$val, #7\n\t"
2427 "str\t$val, [$src, #4]\n\t"
2428 "movs\tr0, #0\n\t"
2429 "b\t1f\n\t"
2430 "movs\tr0, #1\t${:comment} end eh.setjmp\n\t"
Jim Grosbach8db5cce2009-08-13 15:12:16 +00002431 "1:", "",
Bob Wilsonec80e262010-04-09 20:41:18 +00002432 [(set R0, (ARMeh_sjlj_setjmp GPR:$src, tGPR:$val))]>,
2433 Requires<[IsThumb2, HasVFP2]>;
Jim Grosbach5aa16842009-08-11 19:42:21 +00002434}
2435
Bob Wilsonec80e262010-04-09 20:41:18 +00002436let Defs =
Jim Grosbach5caeff52010-05-28 17:37:40 +00002437 [ R0, R1, R2, R3, R4, R5, R6, R7, R8, R9, R10, R11, R12, LR ],
2438 hasSideEffects = 1, isBarrier = 1 in {
Bob Wilsonec80e262010-04-09 20:41:18 +00002439 def t2Int_eh_sjlj_setjmp_nofp : Thumb2XI<(outs), (ins GPR:$src, tGPR:$val),
2440 AddrModeNone, SizeSpecial, NoItinerary,
Jim Grosbachc9792a32010-05-28 17:51:20 +00002441 "mov\t$val, pc\t${:comment} begin eh.setjmp\n\t"
2442 "adds\t$val, #7\n\t"
2443 "str\t$val, [$src, #4]\n\t"
2444 "movs\tr0, #0\n\t"
2445 "b\t1f\n\t"
2446 "movs\tr0, #1\t${:comment} end eh.setjmp\n\t"
Bob Wilsonec80e262010-04-09 20:41:18 +00002447 "1:", "",
2448 [(set R0, (ARMeh_sjlj_setjmp GPR:$src, tGPR:$val))]>,
2449 Requires<[IsThumb2, NoVFP]>;
2450}
Jim Grosbach5aa16842009-08-11 19:42:21 +00002451
2452
2453//===----------------------------------------------------------------------===//
David Goodwin5e47a9a2009-06-30 18:04:13 +00002454// Control-Flow Instructions
2455//
2456
Evan Chengc50a1cb2009-07-09 22:58:39 +00002457// FIXME: remove when we have a way to marking a MI with these properties.
2458// FIXME: $dst1 should be a def. But the extra ops must be in the end of the
2459// operand list.
2460// FIXME: Should pc be an implicit operand like PICADD, etc?
Evan Cheng0d92f5f2009-10-01 08:22:27 +00002461let isReturn = 1, isTerminator = 1, isBarrier = 1, mayLoad = 1,
2462 hasExtraDefRegAllocReq = 1 in
Bob Wilson815baeb2010-03-13 01:08:20 +00002463 def t2LDM_RET : T2XIt<(outs GPR:$wb), (ins addrmode4:$addr, pred:$p,
2464 reglist:$dsts, variable_ops), IIC_Br,
Bob Wilsonfed76ff2010-07-14 16:02:13 +00002465 "ldm${addr:submode}${p}${addr:wide}\t$addr!, $dsts",
Bob Wilson815baeb2010-03-13 01:08:20 +00002466 "$addr.addr = $wb", []> {
Johnny Chend68e1192009-12-15 17:24:14 +00002467 let Inst{31-27} = 0b11101;
2468 let Inst{26-25} = 0b00;
2469 let Inst{24-23} = {?, ?}; // IA: '01', DB: '10'
2470 let Inst{22} = 0;
Bob Wilson815baeb2010-03-13 01:08:20 +00002471 let Inst{21} = 1; // The W bit.
Johnny Chend68e1192009-12-15 17:24:14 +00002472 let Inst{20} = 1; // Load
2473}
Evan Chengc50a1cb2009-07-09 22:58:39 +00002474
David Goodwin5e47a9a2009-06-30 18:04:13 +00002475let isBranch = 1, isTerminator = 1, isBarrier = 1 in {
2476let isPredicable = 1 in
David Goodwin8b7d7ad2009-08-06 16:52:47 +00002477def t2B : T2XI<(outs), (ins brtarget:$target), IIC_Br,
Evan Cheng699beba2009-10-27 00:08:59 +00002478 "b.w\t$target",
Johnny Chend68e1192009-12-15 17:24:14 +00002479 [(br bb:$target)]> {
2480 let Inst{31-27} = 0b11110;
2481 let Inst{15-14} = 0b10;
2482 let Inst{12} = 1;
2483}
David Goodwin5e47a9a2009-06-30 18:04:13 +00002484
Evan Cheng5657c012009-07-29 02:18:14 +00002485let isNotDuplicable = 1, isIndirectBranch = 1 in {
Evan Cheng66ac5312009-07-25 00:33:29 +00002486def t2BR_JT :
Evan Cheng5657c012009-07-29 02:18:14 +00002487 T2JTI<(outs),
2488 (ins GPR:$target, GPR:$index, jt2block_operand:$jt, i32imm:$id),
Bob Wilsond4d188e2010-07-31 06:28:10 +00002489 IIC_Br, "mov\tpc, $target$jt",
Johnny Chend68e1192009-12-15 17:24:14 +00002490 [(ARMbr2jt GPR:$target, GPR:$index, tjumptable:$jt, imm:$id)]> {
2491 let Inst{31-27} = 0b11101;
2492 let Inst{26-20} = 0b0100100;
2493 let Inst{19-16} = 0b1111;
2494 let Inst{14-12} = 0b000;
2495 let Inst{11-8} = 0b1111; // Rd = pc
2496 let Inst{7-4} = 0b0000;
2497}
Evan Cheng5657c012009-07-29 02:18:14 +00002498
Evan Cheng25f7cfc2009-08-01 06:13:52 +00002499// FIXME: Add a non-pc based case that can be predicated.
Evan Cheng5657c012009-07-29 02:18:14 +00002500def t2TBB :
Evan Cheng25f7cfc2009-08-01 06:13:52 +00002501 T2JTI<(outs),
Evan Cheng5657c012009-07-29 02:18:14 +00002502 (ins tb_addrmode:$index, jt2block_operand:$jt, i32imm:$id),
Bob Wilsond4d188e2010-07-31 06:28:10 +00002503 IIC_Br, "tbb\t$index$jt", []> {
Johnny Chend68e1192009-12-15 17:24:14 +00002504 let Inst{31-27} = 0b11101;
2505 let Inst{26-20} = 0b0001101;
2506 let Inst{19-16} = 0b1111; // Rn = pc (table follows this instruction)
2507 let Inst{15-8} = 0b11110000;
2508 let Inst{7-4} = 0b0000; // B form
2509}
Evan Cheng5657c012009-07-29 02:18:14 +00002510
2511def t2TBH :
Evan Cheng25f7cfc2009-08-01 06:13:52 +00002512 T2JTI<(outs),
Evan Cheng5657c012009-07-29 02:18:14 +00002513 (ins tb_addrmode:$index, jt2block_operand:$jt, i32imm:$id),
Bob Wilsond4d188e2010-07-31 06:28:10 +00002514 IIC_Br, "tbh\t$index$jt", []> {
Johnny Chend68e1192009-12-15 17:24:14 +00002515 let Inst{31-27} = 0b11101;
2516 let Inst{26-20} = 0b0001101;
2517 let Inst{19-16} = 0b1111; // Rn = pc (table follows this instruction)
2518 let Inst{15-8} = 0b11110000;
2519 let Inst{7-4} = 0b0001; // H form
2520}
Johnny Chen93042d12010-03-02 18:14:57 +00002521
2522// Generic versions of the above two instructions, for disassembly only
2523
2524def t2TBBgen : T2I<(outs), (ins GPR:$a, GPR:$b), IIC_Br,
2525 "tbb", "\t[$a, $b]", []>{
2526 let Inst{31-27} = 0b11101;
2527 let Inst{26-20} = 0b0001101;
2528 let Inst{15-8} = 0b11110000;
2529 let Inst{7-4} = 0b0000; // B form
2530}
2531
2532def t2TBHgen : T2I<(outs), (ins GPR:$a, GPR:$b), IIC_Br,
2533 "tbh", "\t[$a, $b, lsl #1]", []> {
2534 let Inst{31-27} = 0b11101;
2535 let Inst{26-20} = 0b0001101;
2536 let Inst{15-8} = 0b11110000;
2537 let Inst{7-4} = 0b0001; // H form
2538}
Evan Cheng5657c012009-07-29 02:18:14 +00002539} // isNotDuplicable, isIndirectBranch
2540
David Goodwinc9a59b52009-06-30 19:50:22 +00002541} // isBranch, isTerminator, isBarrier
David Goodwin5e47a9a2009-06-30 18:04:13 +00002542
2543// FIXME: should be able to write a pattern for ARMBrcond, but can't use
2544// a two-value operand where a dag node expects two operands. :(
2545let isBranch = 1, isTerminator = 1 in
David Goodwin8b7d7ad2009-08-06 16:52:47 +00002546def t2Bcc : T2I<(outs), (ins brtarget:$target), IIC_Br,
Evan Cheng699beba2009-10-27 00:08:59 +00002547 "b", ".w\t$target",
Johnny Chend68e1192009-12-15 17:24:14 +00002548 [/*(ARMbrcond bb:$target, imm:$cc)*/]> {
2549 let Inst{31-27} = 0b11110;
2550 let Inst{15-14} = 0b10;
2551 let Inst{12} = 0;
2552}
Evan Chengf49810c2009-06-23 17:48:47 +00002553
Evan Cheng06e16582009-07-10 01:54:42 +00002554
2555// IT block
Evan Cheng86050dc2010-06-18 23:09:54 +00002556let Defs = [ITSTATE] in
Evan Cheng06e16582009-07-10 01:54:42 +00002557def t2IT : Thumb2XI<(outs), (ins it_pred:$cc, it_mask:$mask),
David Goodwin5d598aa2009-08-19 18:00:44 +00002558 AddrModeNone, Size2Bytes, IIC_iALUx,
Johnny Chend68e1192009-12-15 17:24:14 +00002559 "it$mask\t$cc", "", []> {
2560 // 16-bit instruction.
Johnny Chenbbc71b22009-12-16 02:32:54 +00002561 let Inst{31-16} = 0x0000;
Johnny Chend68e1192009-12-15 17:24:14 +00002562 let Inst{15-8} = 0b10111111;
2563}
Evan Cheng06e16582009-07-10 01:54:42 +00002564
Johnny Chence6275f2010-02-25 19:05:29 +00002565// Branch and Exchange Jazelle -- for disassembly only
2566// Rm = Inst{19-16}
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002567def t2BXJ : T2I<(outs), (ins rGPR:$func), NoItinerary, "bxj", "\t$func",
Johnny Chence6275f2010-02-25 19:05:29 +00002568 [/* For disassembly only; pattern left blank */]> {
2569 let Inst{31-27} = 0b11110;
2570 let Inst{26} = 0;
2571 let Inst{25-20} = 0b111100;
2572 let Inst{15-14} = 0b10;
2573 let Inst{12} = 0;
2574}
2575
Johnny Chen93042d12010-03-02 18:14:57 +00002576// Change Processor State is a system instruction -- for disassembly only.
2577// The singleton $opt operand contains the following information:
2578// opt{4-0} = mode from Inst{4-0}
2579// opt{5} = changemode from Inst{17}
2580// opt{8-6} = AIF from Inst{8-6}
2581// opt{10-9} = imod from Inst{19-18} with 0b10 as enable and 0b11 as disable
Johnny Chendd0f3cf2010-03-10 18:59:38 +00002582def t2CPS : T2XI<(outs),(ins cps_opt:$opt), NoItinerary, "cps$opt",
Johnny Chen93042d12010-03-02 18:14:57 +00002583 [/* For disassembly only; pattern left blank */]> {
2584 let Inst{31-27} = 0b11110;
2585 let Inst{26} = 0;
2586 let Inst{25-20} = 0b111010;
2587 let Inst{15-14} = 0b10;
2588 let Inst{12} = 0;
2589}
2590
Johnny Chen0f7866e2010-03-03 02:09:43 +00002591// A6.3.4 Branches and miscellaneous control
2592// Table A6-14 Change Processor State, and hint instructions
2593// Helper class for disassembly only.
2594class T2I_hint<bits<8> op7_0, string opc, string asm>
2595 : T2I<(outs), (ins), NoItinerary, opc, asm,
2596 [/* For disassembly only; pattern left blank */]> {
2597 let Inst{31-20} = 0xf3a;
2598 let Inst{15-14} = 0b10;
2599 let Inst{12} = 0;
2600 let Inst{10-8} = 0b000;
2601 let Inst{7-0} = op7_0;
2602}
2603
2604def t2NOP : T2I_hint<0b00000000, "nop", ".w">;
2605def t2YIELD : T2I_hint<0b00000001, "yield", ".w">;
2606def t2WFE : T2I_hint<0b00000010, "wfe", ".w">;
2607def t2WFI : T2I_hint<0b00000011, "wfi", ".w">;
2608def t2SEV : T2I_hint<0b00000100, "sev", ".w">;
2609
2610def t2DBG : T2I<(outs),(ins i32imm:$opt), NoItinerary, "dbg", "\t$opt",
2611 [/* For disassembly only; pattern left blank */]> {
2612 let Inst{31-20} = 0xf3a;
2613 let Inst{15-14} = 0b10;
2614 let Inst{12} = 0;
2615 let Inst{10-8} = 0b000;
2616 let Inst{7-4} = 0b1111;
2617}
2618
Johnny Chen6341c5a2010-02-25 20:25:24 +00002619// Secure Monitor Call is a system instruction -- for disassembly only
2620// Option = Inst{19-16}
2621def t2SMC : T2I<(outs), (ins i32imm:$opt), NoItinerary, "smc", "\t$opt",
2622 [/* For disassembly only; pattern left blank */]> {
2623 let Inst{31-27} = 0b11110;
2624 let Inst{26-20} = 0b1111111;
2625 let Inst{15-12} = 0b1000;
2626}
2627
2628// Store Return State is a system instruction -- for disassembly only
2629def t2SRSDBW : T2I<(outs),(ins i32imm:$mode),NoItinerary,"srsdb","\tsp!, $mode",
2630 [/* For disassembly only; pattern left blank */]> {
2631 let Inst{31-27} = 0b11101;
2632 let Inst{26-20} = 0b0000010; // W = 1
2633}
2634
2635def t2SRSDB : T2I<(outs),(ins i32imm:$mode),NoItinerary,"srsdb","\tsp, $mode",
2636 [/* For disassembly only; pattern left blank */]> {
2637 let Inst{31-27} = 0b11101;
2638 let Inst{26-20} = 0b0000000; // W = 0
2639}
2640
2641def t2SRSIAW : T2I<(outs),(ins i32imm:$mode),NoItinerary,"srsia","\tsp!, $mode",
2642 [/* For disassembly only; pattern left blank */]> {
2643 let Inst{31-27} = 0b11101;
2644 let Inst{26-20} = 0b0011010; // W = 1
2645}
2646
2647def t2SRSIA : T2I<(outs), (ins i32imm:$mode),NoItinerary,"srsia","\tsp, $mode",
2648 [/* For disassembly only; pattern left blank */]> {
2649 let Inst{31-27} = 0b11101;
2650 let Inst{26-20} = 0b0011000; // W = 0
2651}
2652
2653// Return From Exception is a system instruction -- for disassembly only
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002654def t2RFEDBW : T2I<(outs), (ins rGPR:$base), NoItinerary, "rfedb", "\t$base!",
Johnny Chen6341c5a2010-02-25 20:25:24 +00002655 [/* For disassembly only; pattern left blank */]> {
2656 let Inst{31-27} = 0b11101;
2657 let Inst{26-20} = 0b0000011; // W = 1
2658}
2659
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002660def t2RFEDB : T2I<(outs), (ins rGPR:$base), NoItinerary, "rfeab", "\t$base",
Johnny Chen6341c5a2010-02-25 20:25:24 +00002661 [/* For disassembly only; pattern left blank */]> {
2662 let Inst{31-27} = 0b11101;
2663 let Inst{26-20} = 0b0000001; // W = 0
2664}
2665
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002666def t2RFEIAW : T2I<(outs), (ins rGPR:$base), NoItinerary, "rfeia", "\t$base!",
Johnny Chen6341c5a2010-02-25 20:25:24 +00002667 [/* For disassembly only; pattern left blank */]> {
2668 let Inst{31-27} = 0b11101;
2669 let Inst{26-20} = 0b0011011; // W = 1
2670}
2671
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002672def t2RFEIA : T2I<(outs), (ins rGPR:$base), NoItinerary, "rfeia", "\t$base",
Johnny Chen6341c5a2010-02-25 20:25:24 +00002673 [/* For disassembly only; pattern left blank */]> {
2674 let Inst{31-27} = 0b11101;
2675 let Inst{26-20} = 0b0011001; // W = 0
2676}
2677
Evan Chengf49810c2009-06-23 17:48:47 +00002678//===----------------------------------------------------------------------===//
2679// Non-Instruction Patterns
2680//
2681
Jim Grosbach65b7f3a2009-10-21 20:44:34 +00002682// Two piece so_imms.
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002683def : T2Pat<(or rGPR:$LHS, t2_so_imm2part:$RHS),
2684 (t2ORRri (t2ORRri rGPR:$LHS, (t2_so_imm2part_1 imm:$RHS)),
Jim Grosbach65b7f3a2009-10-21 20:44:34 +00002685 (t2_so_imm2part_2 imm:$RHS))>;
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002686def : T2Pat<(xor rGPR:$LHS, t2_so_imm2part:$RHS),
2687 (t2EORri (t2EORri rGPR:$LHS, (t2_so_imm2part_1 imm:$RHS)),
Jim Grosbach65b7f3a2009-10-21 20:44:34 +00002688 (t2_so_imm2part_2 imm:$RHS))>;
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002689def : T2Pat<(add rGPR:$LHS, t2_so_imm2part:$RHS),
2690 (t2ADDri (t2ADDri rGPR:$LHS, (t2_so_imm2part_1 imm:$RHS)),
Jim Grosbach65b7f3a2009-10-21 20:44:34 +00002691 (t2_so_imm2part_2 imm:$RHS))>;
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002692def : T2Pat<(add rGPR:$LHS, t2_so_neg_imm2part:$RHS),
2693 (t2SUBri (t2SUBri rGPR:$LHS, (t2_so_neg_imm2part_1 imm:$RHS)),
Jim Grosbach15e6ef82009-11-23 20:35:53 +00002694 (t2_so_neg_imm2part_2 imm:$RHS))>;
Jim Grosbach65b7f3a2009-10-21 20:44:34 +00002695
Evan Cheng5adb66a2009-09-28 09:14:39 +00002696// 32-bit immediate using movw + movt.
2697// This is a single pseudo instruction to make it re-materializable. Remove
2698// when we can do generalized remat.
2699let isReMaterializable = 1 in
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002700def t2MOVi32imm : T2Ix2<(outs rGPR:$dst), (ins i32imm:$src), IIC_iMOVi,
Evan Cheng699beba2009-10-27 00:08:59 +00002701 "movw", "\t$dst, ${src:lo16}\n\tmovt${p}\t$dst, ${src:hi16}",
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002702 [(set rGPR:$dst, (i32 imm:$src))]>;
Evan Chengb9803a82009-11-06 23:52:48 +00002703
Anton Korobeynikov5cdc3a92009-11-24 00:44:37 +00002704// ConstantPool, GlobalAddress, and JumpTable
2705def : T2Pat<(ARMWrapper tglobaladdr :$dst), (t2LEApcrel tglobaladdr :$dst)>,
2706 Requires<[IsThumb2, DontUseMovt]>;
2707def : T2Pat<(ARMWrapper tconstpool :$dst), (t2LEApcrel tconstpool :$dst)>;
2708def : T2Pat<(ARMWrapper tglobaladdr :$dst), (t2MOVi32imm tglobaladdr :$dst)>,
2709 Requires<[IsThumb2, UseMovt]>;
2710
2711def : T2Pat<(ARMWrapperJT tjumptable:$dst, imm:$id),
2712 (t2LEApcrelJT tjumptable:$dst, imm:$id)>;
2713
Evan Chengb9803a82009-11-06 23:52:48 +00002714// Pseudo instruction that combines ldr from constpool and add pc. This should
2715// be expanded into two instructions late to allow if-conversion and
2716// scheduling.
Dan Gohmanbc9d98b2010-02-27 23:47:46 +00002717let canFoldAsLoad = 1, isReMaterializable = 1 in
Evan Chengb9803a82009-11-06 23:52:48 +00002718def t2LDRpci_pic : PseudoInst<(outs GPR:$dst), (ins i32imm:$addr, pclabel:$cp),
Jim Grosbach18f30e62010-06-02 21:53:11 +00002719 NoItinerary,
2720 "${:comment} ldr.w\t$dst, $addr\n$cp:\n\tadd\t$dst, pc",
Evan Chengb9803a82009-11-06 23:52:48 +00002721 [(set GPR:$dst, (ARMpic_add (load (ARMWrapper tconstpool:$addr)),
2722 imm:$cp))]>,
2723 Requires<[IsThumb2]>;
Johnny Chen23336552010-02-25 18:46:43 +00002724
2725//===----------------------------------------------------------------------===//
2726// Move between special register and ARM core register -- for disassembly only
2727//
2728
2729// Rd = Instr{11-8}
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002730def t2MRS : T2I<(outs rGPR:$dst), (ins), NoItinerary, "mrs", "\t$dst, cpsr",
Johnny Chen23336552010-02-25 18:46:43 +00002731 [/* For disassembly only; pattern left blank */]> {
2732 let Inst{31-27} = 0b11110;
2733 let Inst{26} = 0;
2734 let Inst{25-21} = 0b11111;
2735 let Inst{20} = 0; // The R bit.
2736 let Inst{15-14} = 0b10;
2737 let Inst{12} = 0;
2738}
2739
2740// Rd = Instr{11-8}
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002741def t2MRSsys : T2I<(outs rGPR:$dst), (ins), NoItinerary, "mrs", "\t$dst, spsr",
Johnny Chen23336552010-02-25 18:46:43 +00002742 [/* For disassembly only; pattern left blank */]> {
2743 let Inst{31-27} = 0b11110;
2744 let Inst{26} = 0;
2745 let Inst{25-21} = 0b11111;
2746 let Inst{20} = 1; // The R bit.
2747 let Inst{15-14} = 0b10;
2748 let Inst{12} = 0;
2749}
2750
Johnny Chen23336552010-02-25 18:46:43 +00002751// Rn = Inst{19-16}
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002752def t2MSR : T2I<(outs), (ins rGPR:$src, msr_mask:$mask), NoItinerary, "msr",
Johnny Chendd0f3cf2010-03-10 18:59:38 +00002753 "\tcpsr$mask, $src",
Johnny Chen23336552010-02-25 18:46:43 +00002754 [/* For disassembly only; pattern left blank */]> {
2755 let Inst{31-27} = 0b11110;
2756 let Inst{26} = 0;
2757 let Inst{25-21} = 0b11100;
2758 let Inst{20} = 0; // The R bit.
2759 let Inst{15-14} = 0b10;
2760 let Inst{12} = 0;
2761}
2762
Johnny Chen23336552010-02-25 18:46:43 +00002763// Rn = Inst{19-16}
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002764def t2MSRsys : T2I<(outs), (ins rGPR:$src, msr_mask:$mask), NoItinerary, "msr",
Johnny Chendd0f3cf2010-03-10 18:59:38 +00002765 "\tspsr$mask, $src",
Johnny Chen23336552010-02-25 18:46:43 +00002766 [/* For disassembly only; pattern left blank */]> {
2767 let Inst{31-27} = 0b11110;
2768 let Inst{26} = 0;
2769 let Inst{25-21} = 0b11100;
2770 let Inst{20} = 1; // The R bit.
2771 let Inst{15-14} = 0b10;
2772 let Inst{12} = 0;
2773}