blob: dbb8ffcb08b791b2ed77bdebd99ad935b7a50419 [file] [log] [blame]
Jia Liu31d157a2012-02-18 12:03:15 +00001//===-- ARMInstrThumb2.td - Thumb2 support for ARM ---------*- tablegen -*-===//
Anton Korobeynikovd4022c32009-05-29 23:41:08 +00002//
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
Jim Grosbach89df9962011-08-26 21:43:41 +000015def it_pred_asmoperand : AsmOperandClass {
16 let Name = "ITCondCode";
17 let ParserMethod = "parseITCondCode";
18}
Evan Cheng06e16582009-07-10 01:54:42 +000019def it_pred : Operand<i32> {
Johnny Chen9d3acaa2010-03-02 17:57:15 +000020 let PrintMethod = "printMandatoryPredicateOperand";
Jim Grosbach89df9962011-08-26 21:43:41 +000021 let ParserMatchClass = it_pred_asmoperand;
Evan Cheng06e16582009-07-10 01:54:42 +000022}
23
24// IT block condition mask
Jim Grosbach89df9962011-08-26 21:43:41 +000025def it_mask_asmoperand : AsmOperandClass { let Name = "ITMask"; }
Evan Cheng06e16582009-07-10 01:54:42 +000026def it_mask : Operand<i32> {
27 let PrintMethod = "printThumbITMask";
Jim Grosbach89df9962011-08-26 21:43:41 +000028 let ParserMatchClass = it_mask_asmoperand;
Evan Cheng06e16582009-07-10 01:54:42 +000029}
30
Owen Anderson0afa0092011-09-26 21:06:22 +000031// t2_shift_imm: An integer that encodes a shift amount and the type of shift
32// (asr or lsl). The 6-bit immediate encodes as:
33// {5} 0 ==> lsl
34// 1 asr
35// {4-0} imm5 shift amount.
36// asr #32 not allowed
37def t2_shift_imm : Operand<i32> {
38 let PrintMethod = "printShiftImmOperand";
39 let ParserMatchClass = ShifterImmAsmOperand;
40 let DecoderMethod = "DecodeT2ShifterImmOperand";
41}
42
Anton Korobeynikov52237112009-06-17 18:13:58 +000043// Shifted operands. No register controlled shifts for Thumb2.
44// Note: We do not support rrx shifted operands yet.
45def t2_so_reg : Operand<i32>, // reg imm
Evan Cheng9cb9e672009-06-27 02:26:13 +000046 ComplexPattern<i32, 2, "SelectT2ShifterOperandReg",
Anton Korobeynikov52237112009-06-17 18:13:58 +000047 [shl,srl,sra,rotr]> {
Chris Lattner2ac19022010-11-15 05:19:05 +000048 let EncoderMethod = "getT2SORegOpValue";
Evan Cheng9cb9e672009-06-27 02:26:13 +000049 let PrintMethod = "printT2SOOperand";
Owen Anderson2c9f8352011-08-22 23:10:16 +000050 let DecoderMethod = "DecodeSORegImmOperand";
Jim Grosbach72335d52011-08-31 18:23:08 +000051 let ParserMatchClass = ShiftedImmAsmOperand;
52 let MIOperandInfo = (ops rGPR, i32imm);
Anton Korobeynikov52237112009-06-17 18:13:58 +000053}
54
Evan Chengf49810c2009-06-23 17:48:47 +000055// t2_so_imm_not_XFORM - Return the complement of a t2_so_imm value
56def t2_so_imm_not_XFORM : SDNodeXForm<imm, [{
Owen Anderson825b72b2009-08-11 20:47:22 +000057 return CurDAG->getTargetConstant(~((uint32_t)N->getZExtValue()), MVT::i32);
Anton Korobeynikov52237112009-06-17 18:13:58 +000058}]>;
59
Evan Chengf49810c2009-06-23 17:48:47 +000060// t2_so_imm_neg_XFORM - Return the negation of a t2_so_imm value
61def t2_so_imm_neg_XFORM : SDNodeXForm<imm, [{
Owen Anderson825b72b2009-08-11 20:47:22 +000062 return CurDAG->getTargetConstant(-((int)N->getZExtValue()), MVT::i32);
Evan Chengf49810c2009-06-23 17:48:47 +000063}]>;
Anton Korobeynikov52237112009-06-17 18:13:58 +000064
Joel Jones96ef2842012-06-18 14:51:32 +000065// so_imm_notSext_XFORM - Return a so_imm value packed into the format
66// described for so_imm_notSext def below, with sign extension from 16
67// bits.
68def t2_so_imm_notSext16_XFORM : SDNodeXForm<imm, [{
69 APInt apIntN = N->getAPIntValue();
70 unsigned N16bitSignExt = apIntN.trunc(16).sext(32).getZExtValue();
71 return CurDAG->getTargetConstant(~N16bitSignExt, MVT::i32);
72}]>;
73
Evan Chengf49810c2009-06-23 17:48:47 +000074// t2_so_imm - Match a 32-bit immediate operand, which is an
75// 8-bit immediate rotated by an arbitrary number of bits, or an 8-bit
Bob Wilson09989942011-02-07 17:43:06 +000076// immediate splatted into multiple bytes of the word.
Jim Grosbach9588c102011-11-12 00:58:43 +000077def t2_so_imm_asmoperand : ImmAsmOperand { let Name = "T2SOImm"; }
Eli Friedmanc573e2c2011-04-29 22:48:03 +000078def t2_so_imm : Operand<i32>, ImmLeaf<i32, [{
79 return ARM_AM::getT2SOImmVal(Imm) != -1;
80 }]> {
Jim Grosbach6b8f1e32011-06-27 23:54:06 +000081 let ParserMatchClass = t2_so_imm_asmoperand;
Chris Lattner2ac19022010-11-15 05:19:05 +000082 let EncoderMethod = "getT2SOImmOpValue";
Owen Anderson8d7d2e12011-08-09 20:55:18 +000083 let DecoderMethod = "DecodeT2SOImm";
Owen Anderson5de6d842010-11-12 21:12:40 +000084}
Anton Korobeynikov52237112009-06-17 18:13:58 +000085
Jim Grosbach64171712010-02-16 21:07:46 +000086// t2_so_imm_not - Match an immediate that is a complement
Evan Chengf49810c2009-06-23 17:48:47 +000087// of a t2_so_imm.
Jim Grosbach89a63372011-10-28 22:36:30 +000088// Note: this pattern doesn't require an encoder method and such, as it's
89// only used on aliases (Pat<> and InstAlias<>). The actual encoding
90// is handled by the destination instructions, which use t2_so_imm.
91def t2_so_imm_not_asmoperand : AsmOperandClass { let Name = "T2SOImmNot"; }
Jim Grosbach3bc8a3d2011-12-08 00:31:07 +000092def t2_so_imm_not : Operand<i32>, PatLeaf<(imm), [{
Evan Chenge7cbe412009-07-08 21:03:57 +000093 return ARM_AM::getT2SOImmVal(~((uint32_t)N->getZExtValue())) != -1;
Jim Grosbach89a63372011-10-28 22:36:30 +000094}], t2_so_imm_not_XFORM> {
95 let ParserMatchClass = t2_so_imm_not_asmoperand;
96}
Evan Chengf49810c2009-06-23 17:48:47 +000097
Joel Jones96ef2842012-06-18 14:51:32 +000098// t2_so_imm_notSext - match an immediate that is a complement of a t2_so_imm
99// if the upper 16 bits are zero.
100def t2_so_imm_notSext : Operand<i32>, PatLeaf<(imm), [{
101 APInt apIntN = N->getAPIntValue();
102 if (!apIntN.isIntN(16)) return false;
103 unsigned N16bitSignExt = apIntN.trunc(16).sext(32).getZExtValue();
104 return ARM_AM::getT2SOImmVal(~N16bitSignExt) != -1;
105 }], t2_so_imm_notSext16_XFORM> {
106 let ParserMatchClass = t2_so_imm_not_asmoperand;
107}
108
Evan Chengf49810c2009-06-23 17:48:47 +0000109// t2_so_imm_neg - Match an immediate that is a negation of a t2_so_imm.
Jim Grosbach3bc8a3d2011-12-08 00:31:07 +0000110def t2_so_imm_neg_asmoperand : AsmOperandClass { let Name = "T2SOImmNeg"; }
111def t2_so_imm_neg : Operand<i32>, PatLeaf<(imm), [{
Jim Grosbachb22e70d2012-03-29 21:19:52 +0000112 int64_t Value = -(int)N->getZExtValue();
113 return Value && ARM_AM::getT2SOImmVal(Value) != -1;
Jim Grosbach3bc8a3d2011-12-08 00:31:07 +0000114}], t2_so_imm_neg_XFORM> {
115 let ParserMatchClass = t2_so_imm_neg_asmoperand;
116}
Evan Chengf49810c2009-06-23 17:48:47 +0000117
118/// imm0_4095 predicate - True if the 32-bit immediate is in the range [0.4095].
Jim Grosbach4e53fe82012-04-05 20:57:13 +0000119def imm0_4095_asmoperand: ImmAsmOperand { let Name = "Imm0_4095"; }
120def imm0_4095 : Operand<i32>, ImmLeaf<i32, [{
Eric Christopher8f232d32011-04-28 05:49:04 +0000121 return Imm >= 0 && Imm < 4096;
Jim Grosbach4e53fe82012-04-05 20:57:13 +0000122}]> {
123 let ParserMatchClass = imm0_4095_asmoperand;
124}
Anton Korobeynikov52237112009-06-17 18:13:58 +0000125
Jim Grosbach4e53fe82012-04-05 20:57:13 +0000126def imm0_4095_neg_asmoperand: AsmOperandClass { let Name = "Imm0_4095Neg"; }
127def imm0_4095_neg : Operand<i32>, PatLeaf<(i32 imm), [{
Jim Grosbach64171712010-02-16 21:07:46 +0000128 return (uint32_t)(-N->getZExtValue()) < 4096;
Jim Grosbach4e53fe82012-04-05 20:57:13 +0000129}], imm_neg_XFORM> {
130 let ParserMatchClass = imm0_4095_neg_asmoperand;
131}
Anton Korobeynikov52237112009-06-17 18:13:58 +0000132
Evan Chengfa2ea1a2009-08-04 01:41:15 +0000133def imm0_255_neg : PatLeaf<(i32 imm), [{
134 return (uint32_t)(-N->getZExtValue()) < 255;
Jim Grosbach64171712010-02-16 21:07:46 +0000135}], imm_neg_XFORM>;
Evan Chengfa2ea1a2009-08-04 01:41:15 +0000136
Jim Grosbach502e0aa2010-07-14 17:45:16 +0000137def imm0_255_not : PatLeaf<(i32 imm), [{
138 return (uint32_t)(~N->getZExtValue()) < 255;
139}], imm_comp_XFORM>;
140
Andrew Trickd49ffe82011-04-29 14:18:15 +0000141def lo5AllOne : PatLeaf<(i32 imm), [{
142 // Returns true if all low 5-bits are 1.
143 return (((uint32_t)N->getZExtValue()) & 0x1FUL) == 0x1FUL;
144}]>;
145
Evan Cheng055b0312009-06-29 07:51:04 +0000146// Define Thumb2 specific addressing modes.
147
148// t2addrmode_imm12 := reg + imm12
Jim Grosbacha8307dd2011-09-07 20:58:57 +0000149def t2addrmode_imm12_asmoperand : AsmOperandClass {let Name="MemUImm12Offset";}
Evan Cheng055b0312009-06-29 07:51:04 +0000150def t2addrmode_imm12 : Operand<i32>,
151 ComplexPattern<i32, 2, "SelectT2AddrModeImm12", []> {
Jim Grosbach458f2dc2010-10-25 20:00:01 +0000152 let PrintMethod = "printAddrModeImm12Operand";
Jim Grosbach683fc3e2010-12-10 20:53:44 +0000153 let EncoderMethod = "getAddrModeImm12OpValue";
Owen Anderson8d7d2e12011-08-09 20:55:18 +0000154 let DecoderMethod = "DecodeT2AddrModeImm12";
Jim Grosbacha8307dd2011-09-07 20:58:57 +0000155 let ParserMatchClass = t2addrmode_imm12_asmoperand;
Evan Cheng055b0312009-06-29 07:51:04 +0000156 let MIOperandInfo = (ops GPR:$base, i32imm:$offsimm);
157}
158
Owen Andersonc9bd4962011-03-18 17:42:55 +0000159// t2ldrlabel := imm12
160def t2ldrlabel : Operand<i32> {
161 let EncoderMethod = "getAddrModeImm12OpValue";
Owen Andersone1368722011-09-21 23:44:46 +0000162 let PrintMethod = "printT2LdrLabelOperand";
Owen Andersonc9bd4962011-03-18 17:42:55 +0000163}
164
Jim Grosbach0b4c6732012-01-18 22:46:46 +0000165def t2ldr_pcrel_imm12_asmoperand : AsmOperandClass {let Name = "MemPCRelImm12";}
166def t2ldr_pcrel_imm12 : Operand<i32> {
167 let ParserMatchClass = t2ldr_pcrel_imm12_asmoperand;
168 // used for assembler pseudo instruction and maps to t2ldrlabel, so
169 // doesn't need encoder or print methods of its own.
170}
Owen Andersonc9bd4962011-03-18 17:42:55 +0000171
Owen Andersona838a252010-12-14 00:36:49 +0000172// ADR instruction labels.
173def t2adrlabel : Operand<i32> {
174 let EncoderMethod = "getT2AdrLabelOpValue";
Jiangning Liu1fb27ec2012-08-02 08:13:13 +0000175 let PrintMethod = "printAdrLabelOperand";
Owen Andersona838a252010-12-14 00:36:49 +0000176}
177
178
Jim Grosbachf0eee6e2011-09-07 23:39:14 +0000179// t2addrmode_posimm8 := reg + imm8
180def MemPosImm8OffsetAsmOperand : AsmOperandClass {let Name="MemPosImm8Offset";}
181def t2addrmode_posimm8 : Operand<i32> {
182 let PrintMethod = "printT2AddrModeImm8Operand";
183 let EncoderMethod = "getT2AddrModeImm8OpValue";
184 let DecoderMethod = "DecodeT2AddrModeImm8";
185 let ParserMatchClass = MemPosImm8OffsetAsmOperand;
186 let MIOperandInfo = (ops GPR:$base, i32imm:$offsimm);
187}
188
Jim Grosbacha8307dd2011-09-07 20:58:57 +0000189// t2addrmode_negimm8 := reg - imm8
190def MemNegImm8OffsetAsmOperand : AsmOperandClass {let Name="MemNegImm8Offset";}
191def t2addrmode_negimm8 : Operand<i32>,
192 ComplexPattern<i32, 2, "SelectT2AddrModeImm8", []> {
193 let PrintMethod = "printT2AddrModeImm8Operand";
194 let EncoderMethod = "getT2AddrModeImm8OpValue";
195 let DecoderMethod = "DecodeT2AddrModeImm8";
196 let ParserMatchClass = MemNegImm8OffsetAsmOperand;
197 let MIOperandInfo = (ops GPR:$base, i32imm:$offsimm);
198}
199
Johnny Chen0635fc52010-03-04 17:40:44 +0000200// t2addrmode_imm8 := reg +/- imm8
Jim Grosbach7ce05792011-08-03 23:50:40 +0000201def MemImm8OffsetAsmOperand : AsmOperandClass { let Name = "MemImm8Offset"; }
Evan Cheng055b0312009-06-29 07:51:04 +0000202def t2addrmode_imm8 : Operand<i32>,
203 ComplexPattern<i32, 2, "SelectT2AddrModeImm8", []> {
204 let PrintMethod = "printT2AddrModeImm8Operand";
Jim Grosbach683fc3e2010-12-10 20:53:44 +0000205 let EncoderMethod = "getT2AddrModeImm8OpValue";
Owen Anderson8d7d2e12011-08-09 20:55:18 +0000206 let DecoderMethod = "DecodeT2AddrModeImm8";
Jim Grosbach7ce05792011-08-03 23:50:40 +0000207 let ParserMatchClass = MemImm8OffsetAsmOperand;
Evan Cheng055b0312009-06-29 07:51:04 +0000208 let MIOperandInfo = (ops GPR:$base, i32imm:$offsimm);
209}
210
Evan Cheng6d94f112009-07-03 00:06:39 +0000211def t2am_imm8_offset : Operand<i32>,
Chris Lattner52a261b2010-09-21 20:31:19 +0000212 ComplexPattern<i32, 1, "SelectT2AddrModeImm8Offset",
213 [], [SDNPWantRoot]> {
Evan Chenge88d5ce2009-07-02 07:28:31 +0000214 let PrintMethod = "printT2AddrModeImm8OffsetOperand";
Jim Grosbach683fc3e2010-12-10 20:53:44 +0000215 let EncoderMethod = "getT2AddrModeImm8OffsetOpValue";
Owen Anderson8d7d2e12011-08-09 20:55:18 +0000216 let DecoderMethod = "DecodeT2Imm8";
Evan Chenge88d5ce2009-07-02 07:28:31 +0000217}
218
Evan Cheng5c874172009-07-09 22:21:59 +0000219// t2addrmode_imm8s4 := reg +/- (imm8 << 2)
Jim Grosbacha77295d2011-09-08 22:07:06 +0000220def MemImm8s4OffsetAsmOperand : AsmOperandClass {let Name = "MemImm8s4Offset";}
Chris Lattner979b0612010-09-05 22:51:11 +0000221def t2addrmode_imm8s4 : Operand<i32> {
Evan Cheng5c874172009-07-09 22:21:59 +0000222 let PrintMethod = "printT2AddrModeImm8s4Operand";
Jim Grosbach683fc3e2010-12-10 20:53:44 +0000223 let EncoderMethod = "getT2AddrModeImm8s4OpValue";
Owen Anderson8d7d2e12011-08-09 20:55:18 +0000224 let DecoderMethod = "DecodeT2AddrModeImm8s4";
Jim Grosbacha77295d2011-09-08 22:07:06 +0000225 let ParserMatchClass = MemImm8s4OffsetAsmOperand;
David Goodwin6647cea2009-06-30 22:50:01 +0000226 let MIOperandInfo = (ops GPR:$base, i32imm:$offsimm);
227}
228
Jim Grosbacha77295d2011-09-08 22:07:06 +0000229def t2am_imm8s4_offset_asmoperand : AsmOperandClass { let Name = "Imm8s4"; }
Johnny Chenae1757b2010-03-11 01:13:36 +0000230def t2am_imm8s4_offset : Operand<i32> {
231 let PrintMethod = "printT2AddrModeImm8s4OffsetOperand";
Jim Grosbacha77295d2011-09-08 22:07:06 +0000232 let EncoderMethod = "getT2Imm8s4OpValue";
Owen Anderson14c903a2011-08-04 23:18:05 +0000233 let DecoderMethod = "DecodeT2Imm8S4";
Johnny Chenae1757b2010-03-11 01:13:36 +0000234}
235
Jim Grosbachb6aed502011-09-09 18:37:27 +0000236// t2addrmode_imm0_1020s4 := reg + (imm8 << 2)
237def MemImm0_1020s4OffsetAsmOperand : AsmOperandClass {
238 let Name = "MemImm0_1020s4Offset";
239}
240def t2addrmode_imm0_1020s4 : Operand<i32> {
241 let PrintMethod = "printT2AddrModeImm0_1020s4Operand";
242 let EncoderMethod = "getT2AddrModeImm0_1020s4OpValue";
243 let DecoderMethod = "DecodeT2AddrModeImm0_1020s4";
244 let ParserMatchClass = MemImm0_1020s4OffsetAsmOperand;
245 let MIOperandInfo = (ops GPRnopc:$base, i32imm:$offsimm);
246}
247
Evan Chengcba962d2009-07-09 20:40:44 +0000248// t2addrmode_so_reg := reg + (reg << imm2)
Jim Grosbachab899c12011-09-07 23:10:15 +0000249def t2addrmode_so_reg_asmoperand : AsmOperandClass {let Name="T2MemRegOffset";}
Evan Cheng055b0312009-06-29 07:51:04 +0000250def t2addrmode_so_reg : Operand<i32>,
251 ComplexPattern<i32, 3, "SelectT2AddrModeSoReg", []> {
252 let PrintMethod = "printT2AddrModeSoRegOperand";
Jim Grosbach683fc3e2010-12-10 20:53:44 +0000253 let EncoderMethod = "getT2AddrModeSORegOpValue";
Owen Anderson8d7d2e12011-08-09 20:55:18 +0000254 let DecoderMethod = "DecodeT2AddrModeSOReg";
Jim Grosbachab899c12011-09-07 23:10:15 +0000255 let ParserMatchClass = t2addrmode_so_reg_asmoperand;
Jim Grosbach6ccfc502010-07-30 02:41:01 +0000256 let MIOperandInfo = (ops GPR:$base, rGPR:$offsreg, i32imm:$offsimm);
Evan Cheng055b0312009-06-29 07:51:04 +0000257}
258
Jim Grosbach7f739be2011-09-19 22:21:13 +0000259// Addresses for the TBB/TBH instructions.
260def addrmode_tbb_asmoperand : AsmOperandClass { let Name = "MemTBB"; }
261def addrmode_tbb : Operand<i32> {
262 let PrintMethod = "printAddrModeTBB";
263 let ParserMatchClass = addrmode_tbb_asmoperand;
264 let MIOperandInfo = (ops GPR:$Rn, rGPR:$Rm);
265}
266def addrmode_tbh_asmoperand : AsmOperandClass { let Name = "MemTBH"; }
267def addrmode_tbh : Operand<i32> {
268 let PrintMethod = "printAddrModeTBH";
269 let ParserMatchClass = addrmode_tbh_asmoperand;
270 let MIOperandInfo = (ops GPR:$Rn, rGPR:$Rm);
271}
272
Anton Korobeynikov52237112009-06-17 18:13:58 +0000273//===----------------------------------------------------------------------===//
Evan Cheng9cb9e672009-06-27 02:26:13 +0000274// Multiclass helpers...
Anton Korobeynikov52237112009-06-17 18:13:58 +0000275//
276
Owen Andersona99e7782010-11-15 18:45:17 +0000277
278class T2OneRegImm<dag oops, dag iops, InstrItinClass itin,
Owen Anderson83da6cd2010-11-14 05:37:38 +0000279 string opc, string asm, list<dag> pattern>
280 : T2I<oops, iops, itin, opc, asm, pattern> {
281 bits<4> Rd;
Owen Andersona99e7782010-11-15 18:45:17 +0000282 bits<12> imm;
Jim Grosbach7a088642010-11-19 17:11:02 +0000283
Jim Grosbach86386922010-12-08 22:10:43 +0000284 let Inst{11-8} = Rd;
Owen Andersona99e7782010-11-15 18:45:17 +0000285 let Inst{26} = imm{11};
286 let Inst{14-12} = imm{10-8};
287 let Inst{7-0} = imm{7-0};
288}
289
Owen Andersonbb6315d2010-11-15 19:58:36 +0000290
Owen Andersona99e7782010-11-15 18:45:17 +0000291class T2sOneRegImm<dag oops, dag iops, InstrItinClass itin,
292 string opc, string asm, list<dag> pattern>
293 : T2sI<oops, iops, itin, opc, asm, pattern> {
294 bits<4> Rd;
Owen Anderson83da6cd2010-11-14 05:37:38 +0000295 bits<4> Rn;
296 bits<12> imm;
Jim Grosbach7a088642010-11-19 17:11:02 +0000297
Jim Grosbach86386922010-12-08 22:10:43 +0000298 let Inst{11-8} = Rd;
Owen Anderson83da6cd2010-11-14 05:37:38 +0000299 let Inst{26} = imm{11};
300 let Inst{14-12} = imm{10-8};
301 let Inst{7-0} = imm{7-0};
302}
303
Owen Andersonbb6315d2010-11-15 19:58:36 +0000304class T2OneRegCmpImm<dag oops, dag iops, InstrItinClass itin,
305 string opc, string asm, list<dag> pattern>
306 : T2I<oops, iops, itin, opc, asm, pattern> {
307 bits<4> Rn;
308 bits<12> imm;
Jim Grosbach7a088642010-11-19 17:11:02 +0000309
Jim Grosbach86386922010-12-08 22:10:43 +0000310 let Inst{19-16} = Rn;
Owen Andersonbb6315d2010-11-15 19:58:36 +0000311 let Inst{26} = imm{11};
312 let Inst{14-12} = imm{10-8};
313 let Inst{7-0} = imm{7-0};
314}
315
316
Owen Andersona99e7782010-11-15 18:45:17 +0000317class T2OneRegShiftedReg<dag oops, dag iops, InstrItinClass itin,
318 string opc, string asm, list<dag> pattern>
319 : T2I<oops, iops, itin, opc, asm, pattern> {
320 bits<4> Rd;
321 bits<12> ShiftedRm;
Jim Grosbach7a088642010-11-19 17:11:02 +0000322
Jim Grosbach86386922010-12-08 22:10:43 +0000323 let Inst{11-8} = Rd;
Owen Andersona99e7782010-11-15 18:45:17 +0000324 let Inst{3-0} = ShiftedRm{3-0};
325 let Inst{5-4} = ShiftedRm{6-5};
326 let Inst{14-12} = ShiftedRm{11-9};
327 let Inst{7-6} = ShiftedRm{8-7};
328}
329
330class T2sOneRegShiftedReg<dag oops, dag iops, InstrItinClass itin,
331 string opc, string asm, list<dag> pattern>
Owen Andersonbdf71442010-12-07 20:50:15 +0000332 : T2sI<oops, iops, itin, opc, asm, pattern> {
Owen Andersona99e7782010-11-15 18:45:17 +0000333 bits<4> Rd;
334 bits<12> ShiftedRm;
Jim Grosbach7a088642010-11-19 17:11:02 +0000335
Jim Grosbach86386922010-12-08 22:10:43 +0000336 let Inst{11-8} = Rd;
Owen Andersona99e7782010-11-15 18:45:17 +0000337 let Inst{3-0} = ShiftedRm{3-0};
338 let Inst{5-4} = ShiftedRm{6-5};
339 let Inst{14-12} = ShiftedRm{11-9};
340 let Inst{7-6} = ShiftedRm{8-7};
341}
342
Owen Andersonbb6315d2010-11-15 19:58:36 +0000343class T2OneRegCmpShiftedReg<dag oops, dag iops, InstrItinClass itin,
344 string opc, string asm, list<dag> pattern>
345 : T2I<oops, iops, itin, opc, asm, pattern> {
346 bits<4> Rn;
347 bits<12> ShiftedRm;
Jim Grosbach7a088642010-11-19 17:11:02 +0000348
Jim Grosbach86386922010-12-08 22:10:43 +0000349 let Inst{19-16} = Rn;
Owen Andersonbb6315d2010-11-15 19:58:36 +0000350 let Inst{3-0} = ShiftedRm{3-0};
351 let Inst{5-4} = ShiftedRm{6-5};
352 let Inst{14-12} = ShiftedRm{11-9};
353 let Inst{7-6} = ShiftedRm{8-7};
354}
355
Owen Andersona99e7782010-11-15 18:45:17 +0000356class T2TwoReg<dag oops, dag iops, InstrItinClass itin,
357 string opc, string asm, list<dag> pattern>
Jim Grosbach7a088642010-11-19 17:11:02 +0000358 : T2I<oops, iops, itin, opc, asm, pattern> {
Owen Andersona99e7782010-11-15 18:45:17 +0000359 bits<4> Rd;
360 bits<4> Rm;
Jim Grosbach7a088642010-11-19 17:11:02 +0000361
Jim Grosbach86386922010-12-08 22:10:43 +0000362 let Inst{11-8} = Rd;
363 let Inst{3-0} = Rm;
Owen Andersona99e7782010-11-15 18:45:17 +0000364}
365
366class T2sTwoReg<dag oops, dag iops, InstrItinClass itin,
367 string opc, string asm, list<dag> pattern>
Jim Grosbach7a088642010-11-19 17:11:02 +0000368 : T2sI<oops, iops, itin, opc, asm, pattern> {
Owen Andersona99e7782010-11-15 18:45:17 +0000369 bits<4> Rd;
370 bits<4> Rm;
Jim Grosbach7a088642010-11-19 17:11:02 +0000371
Jim Grosbach86386922010-12-08 22:10:43 +0000372 let Inst{11-8} = Rd;
373 let Inst{3-0} = Rm;
Owen Andersona99e7782010-11-15 18:45:17 +0000374}
375
Owen Andersonbb6315d2010-11-15 19:58:36 +0000376class T2TwoRegCmp<dag oops, dag iops, InstrItinClass itin,
377 string opc, string asm, list<dag> pattern>
Jim Grosbach7a088642010-11-19 17:11:02 +0000378 : T2I<oops, iops, itin, opc, asm, pattern> {
Owen Andersonbb6315d2010-11-15 19:58:36 +0000379 bits<4> Rn;
380 bits<4> Rm;
Jim Grosbach7a088642010-11-19 17:11:02 +0000381
Jim Grosbach86386922010-12-08 22:10:43 +0000382 let Inst{19-16} = Rn;
383 let Inst{3-0} = Rm;
Owen Andersonbb6315d2010-11-15 19:58:36 +0000384}
385
Owen Andersona99e7782010-11-15 18:45:17 +0000386
387class T2TwoRegImm<dag oops, dag iops, InstrItinClass itin,
388 string opc, string asm, list<dag> pattern>
389 : T2I<oops, iops, itin, opc, asm, pattern> {
390 bits<4> Rd;
Jim Grosbach07e9b262010-12-08 23:04:16 +0000391 bits<4> Rn;
Jim Grosbach20e0fa62010-12-08 23:24:29 +0000392 bits<12> imm;
Jim Grosbach7a088642010-11-19 17:11:02 +0000393
Jim Grosbach86386922010-12-08 22:10:43 +0000394 let Inst{11-8} = Rd;
Jim Grosbach20e0fa62010-12-08 23:24:29 +0000395 let Inst{19-16} = Rn;
396 let Inst{26} = imm{11};
397 let Inst{14-12} = imm{10-8};
398 let Inst{7-0} = imm{7-0};
Owen Andersona99e7782010-11-15 18:45:17 +0000399}
400
Owen Anderson83da6cd2010-11-14 05:37:38 +0000401class T2sTwoRegImm<dag oops, dag iops, InstrItinClass itin,
Owen Anderson5de6d842010-11-12 21:12:40 +0000402 string opc, string asm, list<dag> pattern>
403 : T2sI<oops, iops, itin, opc, asm, pattern> {
404 bits<4> Rd;
405 bits<4> Rn;
406 bits<12> imm;
Jim Grosbach7a088642010-11-19 17:11:02 +0000407
Jim Grosbach86386922010-12-08 22:10:43 +0000408 let Inst{11-8} = Rd;
409 let Inst{19-16} = Rn;
Owen Anderson5de6d842010-11-12 21:12:40 +0000410 let Inst{26} = imm{11};
411 let Inst{14-12} = imm{10-8};
412 let Inst{7-0} = imm{7-0};
413}
414
Owen Andersonbb6315d2010-11-15 19:58:36 +0000415class T2TwoRegShiftImm<dag oops, dag iops, InstrItinClass itin,
416 string opc, string asm, list<dag> pattern>
417 : T2I<oops, iops, itin, opc, asm, pattern> {
418 bits<4> Rd;
419 bits<4> Rm;
420 bits<5> imm;
Jim Grosbach7a088642010-11-19 17:11:02 +0000421
Jim Grosbach86386922010-12-08 22:10:43 +0000422 let Inst{11-8} = Rd;
423 let Inst{3-0} = Rm;
Owen Andersonbb6315d2010-11-15 19:58:36 +0000424 let Inst{14-12} = imm{4-2};
425 let Inst{7-6} = imm{1-0};
426}
427
428class T2sTwoRegShiftImm<dag oops, dag iops, InstrItinClass itin,
429 string opc, string asm, list<dag> pattern>
430 : T2sI<oops, iops, itin, opc, asm, pattern> {
431 bits<4> Rd;
432 bits<4> Rm;
433 bits<5> imm;
Jim Grosbach7a088642010-11-19 17:11:02 +0000434
Jim Grosbach86386922010-12-08 22:10:43 +0000435 let Inst{11-8} = Rd;
436 let Inst{3-0} = Rm;
Owen Andersonbb6315d2010-11-15 19:58:36 +0000437 let Inst{14-12} = imm{4-2};
438 let Inst{7-6} = imm{1-0};
439}
440
Owen Anderson5de6d842010-11-12 21:12:40 +0000441class T2ThreeReg<dag oops, dag iops, InstrItinClass itin,
442 string opc, string asm, list<dag> pattern>
Jim Grosbach7a088642010-11-19 17:11:02 +0000443 : T2I<oops, iops, itin, opc, asm, pattern> {
Owen Anderson83da6cd2010-11-14 05:37:38 +0000444 bits<4> Rd;
445 bits<4> Rn;
446 bits<4> Rm;
Jim Grosbach7a088642010-11-19 17:11:02 +0000447
Jim Grosbach86386922010-12-08 22:10:43 +0000448 let Inst{11-8} = Rd;
449 let Inst{19-16} = Rn;
450 let Inst{3-0} = Rm;
Owen Anderson83da6cd2010-11-14 05:37:38 +0000451}
452
453class T2sThreeReg<dag oops, dag iops, InstrItinClass itin,
454 string opc, string asm, list<dag> pattern>
Jim Grosbach7a088642010-11-19 17:11:02 +0000455 : T2sI<oops, iops, itin, opc, asm, pattern> {
Owen Anderson5de6d842010-11-12 21:12:40 +0000456 bits<4> Rd;
457 bits<4> Rn;
458 bits<4> Rm;
Jim Grosbach7a088642010-11-19 17:11:02 +0000459
Jim Grosbach86386922010-12-08 22:10:43 +0000460 let Inst{11-8} = Rd;
461 let Inst{19-16} = Rn;
462 let Inst{3-0} = Rm;
Owen Anderson5de6d842010-11-12 21:12:40 +0000463}
464
465class T2TwoRegShiftedReg<dag oops, dag iops, InstrItinClass itin,
466 string opc, string asm, list<dag> pattern>
Owen Anderson83da6cd2010-11-14 05:37:38 +0000467 : T2I<oops, iops, itin, opc, asm, pattern> {
468 bits<4> Rd;
469 bits<4> Rn;
470 bits<12> ShiftedRm;
Jim Grosbach7a088642010-11-19 17:11:02 +0000471
Jim Grosbach86386922010-12-08 22:10:43 +0000472 let Inst{11-8} = Rd;
473 let Inst{19-16} = Rn;
Owen Anderson83da6cd2010-11-14 05:37:38 +0000474 let Inst{3-0} = ShiftedRm{3-0};
475 let Inst{5-4} = ShiftedRm{6-5};
476 let Inst{14-12} = ShiftedRm{11-9};
477 let Inst{7-6} = ShiftedRm{8-7};
478}
479
480class T2sTwoRegShiftedReg<dag oops, dag iops, InstrItinClass itin,
481 string opc, string asm, list<dag> pattern>
Owen Anderson5de6d842010-11-12 21:12:40 +0000482 : T2sI<oops, iops, itin, opc, asm, pattern> {
483 bits<4> Rd;
484 bits<4> Rn;
485 bits<12> ShiftedRm;
Jim Grosbach7a088642010-11-19 17:11:02 +0000486
Jim Grosbach86386922010-12-08 22:10:43 +0000487 let Inst{11-8} = Rd;
488 let Inst{19-16} = Rn;
Owen Anderson5de6d842010-11-12 21:12:40 +0000489 let Inst{3-0} = ShiftedRm{3-0};
490 let Inst{5-4} = ShiftedRm{6-5};
491 let Inst{14-12} = ShiftedRm{11-9};
492 let Inst{7-6} = ShiftedRm{8-7};
493}
494
Owen Anderson35141a92010-11-18 01:08:42 +0000495class T2FourReg<dag oops, dag iops, InstrItinClass itin,
496 string opc, string asm, list<dag> pattern>
Jim Grosbach7a088642010-11-19 17:11:02 +0000497 : T2I<oops, iops, itin, opc, asm, pattern> {
Owen Anderson35141a92010-11-18 01:08:42 +0000498 bits<4> Rd;
499 bits<4> Rn;
500 bits<4> Rm;
501 bits<4> Ra;
Jim Grosbach7a088642010-11-19 17:11:02 +0000502
Jim Grosbach86386922010-12-08 22:10:43 +0000503 let Inst{19-16} = Rn;
504 let Inst{15-12} = Ra;
505 let Inst{11-8} = Rd;
506 let Inst{3-0} = Rm;
Owen Anderson35141a92010-11-18 01:08:42 +0000507}
508
Jim Grosbach7c6d85a2010-12-08 22:38:41 +0000509class T2MulLong<bits<3> opc22_20, bits<4> opc7_4,
510 dag oops, dag iops, InstrItinClass itin,
511 string opc, string asm, list<dag> pattern>
Jim Grosbach52082042010-12-08 22:29:28 +0000512 : T2I<oops, iops, itin, opc, asm, pattern> {
513 bits<4> RdLo;
514 bits<4> RdHi;
515 bits<4> Rn;
516 bits<4> Rm;
517
Jim Grosbach7c6d85a2010-12-08 22:38:41 +0000518 let Inst{31-23} = 0b111110111;
519 let Inst{22-20} = opc22_20;
Jim Grosbach52082042010-12-08 22:29:28 +0000520 let Inst{19-16} = Rn;
521 let Inst{15-12} = RdLo;
522 let Inst{11-8} = RdHi;
Jim Grosbach7c6d85a2010-12-08 22:38:41 +0000523 let Inst{7-4} = opc7_4;
Jim Grosbach52082042010-12-08 22:29:28 +0000524 let Inst{3-0} = Rm;
525}
526
Owen Anderson35141a92010-11-18 01:08:42 +0000527
Evan Chenga67efd12009-06-23 19:39:13 +0000528/// T2I_bin_irs - Defines a set of (op reg, {so_imm|r|so_reg}) patterns for a
Bob Wilson4876bdb2010-05-25 04:43:08 +0000529/// binary operation that produces a value. These are predicable and can be
Evan Cheng0aa1d8c2009-06-25 02:08:06 +0000530/// changed to modify CPSR.
Evan Cheng7e1bf302010-09-29 00:27:46 +0000531multiclass T2I_bin_irs<bits<4> opcod, string opc,
532 InstrItinClass iii, InstrItinClass iir, InstrItinClass iis,
Jim Grosbach5c6c1282012-08-02 21:50:41 +0000533 PatFrag opnode, bit Commutable = 0,
Jim Grosbachadf73662011-06-28 00:19:13 +0000534 string wide = ""> {
Anton Korobeynikov52237112009-06-17 18:13:58 +0000535 // shifted imm
Owen Anderson83da6cd2010-11-14 05:37:38 +0000536 def ri : T2sTwoRegImm<
537 (outs rGPR:$Rd), (ins rGPR:$Rn, t2_so_imm:$imm), iii,
538 opc, "\t$Rd, $Rn, $imm",
539 [(set rGPR:$Rd, (opnode rGPR:$Rn, t2_so_imm:$imm))]> {
Johnny Chend68e1192009-12-15 17:24:14 +0000540 let Inst{31-27} = 0b11110;
541 let Inst{25} = 0;
542 let Inst{24-21} = opcod;
Johnny Chend68e1192009-12-15 17:24:14 +0000543 let Inst{15} = 0;
544 }
Evan Chenga67efd12009-06-23 19:39:13 +0000545 // register
Owen Anderson83da6cd2010-11-14 05:37:38 +0000546 def rr : T2sThreeReg<(outs rGPR:$Rd), (ins rGPR:$Rn, rGPR:$Rm), iir,
547 opc, !strconcat(wide, "\t$Rd, $Rn, $Rm"),
548 [(set rGPR:$Rd, (opnode rGPR:$Rn, rGPR:$Rm))]> {
Evan Cheng8de898a2009-06-26 00:19:44 +0000549 let isCommutable = Commutable;
Johnny Chend68e1192009-12-15 17:24:14 +0000550 let Inst{31-27} = 0b11101;
551 let Inst{26-25} = 0b01;
552 let Inst{24-21} = opcod;
Johnny Chend68e1192009-12-15 17:24:14 +0000553 let Inst{14-12} = 0b000; // imm3
554 let Inst{7-6} = 0b00; // imm2
555 let Inst{5-4} = 0b00; // type
Evan Cheng8de898a2009-06-26 00:19:44 +0000556 }
Anton Korobeynikov52237112009-06-17 18:13:58 +0000557 // shifted register
Owen Anderson83da6cd2010-11-14 05:37:38 +0000558 def rs : T2sTwoRegShiftedReg<
559 (outs rGPR:$Rd), (ins rGPR:$Rn, t2_so_reg:$ShiftedRm), iis,
560 opc, !strconcat(wide, "\t$Rd, $Rn, $ShiftedRm"),
561 [(set rGPR:$Rd, (opnode rGPR:$Rn, t2_so_reg:$ShiftedRm))]> {
Johnny Chend68e1192009-12-15 17:24:14 +0000562 let Inst{31-27} = 0b11101;
563 let Inst{26-25} = 0b01;
564 let Inst{24-21} = opcod;
Bill Wendling4822bce2010-08-30 01:47:35 +0000565 }
Jim Grosbachadf73662011-06-28 00:19:13 +0000566 // Assembly aliases for optional destination operand when it's the same
567 // as the source operand.
Jim Grosbacha33b31b2011-08-22 18:04:24 +0000568 def : t2InstAlias<!strconcat(opc, "${s}${p} $Rdn, $imm"),
Jim Grosbach5c6c1282012-08-02 21:50:41 +0000569 (!cast<Instruction>(NAME#"ri") rGPR:$Rdn, rGPR:$Rdn,
Jim Grosbachadf73662011-06-28 00:19:13 +0000570 t2_so_imm:$imm, pred:$p,
Jim Grosbacha33b31b2011-08-22 18:04:24 +0000571 cc_out:$s)>;
572 def : t2InstAlias<!strconcat(opc, "${s}${p}", wide, " $Rdn, $Rm"),
Jim Grosbach5c6c1282012-08-02 21:50:41 +0000573 (!cast<Instruction>(NAME#"rr") rGPR:$Rdn, rGPR:$Rdn,
Jim Grosbachadf73662011-06-28 00:19:13 +0000574 rGPR:$Rm, pred:$p,
Jim Grosbacha33b31b2011-08-22 18:04:24 +0000575 cc_out:$s)>;
576 def : t2InstAlias<!strconcat(opc, "${s}${p}", wide, " $Rdn, $shift"),
Jim Grosbach5c6c1282012-08-02 21:50:41 +0000577 (!cast<Instruction>(NAME#"rs") rGPR:$Rdn, rGPR:$Rdn,
Jim Grosbachadf73662011-06-28 00:19:13 +0000578 t2_so_reg:$shift, pred:$p,
Jim Grosbacha33b31b2011-08-22 18:04:24 +0000579 cc_out:$s)>;
Bill Wendling4822bce2010-08-30 01:47:35 +0000580}
581
David Goodwin1f096272009-07-27 23:34:12 +0000582/// T2I_bin_w_irs - Same as T2I_bin_irs except these operations need
Jim Grosbachadf73662011-06-28 00:19:13 +0000583// the ".w" suffix to indicate that they are wide.
Evan Cheng7e1bf302010-09-29 00:27:46 +0000584multiclass T2I_bin_w_irs<bits<4> opcod, string opc,
585 InstrItinClass iii, InstrItinClass iir, InstrItinClass iis,
Jim Grosbach5c6c1282012-08-02 21:50:41 +0000586 PatFrag opnode, bit Commutable = 0> :
587 T2I_bin_irs<opcod, opc, iii, iir, iis, opnode, Commutable, ".w"> {
Jim Grosbach9e931f62012-02-24 19:06:05 +0000588 // Assembler aliases w/ the ".w" suffix.
589 def : t2InstAlias<!strconcat(opc, "${s}${p}.w", " $Rd, $Rn, $imm"),
Jim Grosbach5c6c1282012-08-02 21:50:41 +0000590 (!cast<Instruction>(NAME#"ri") rGPR:$Rd, rGPR:$Rn, t2_so_imm:$imm, pred:$p,
591 cc_out:$s)>;
Jim Grosbach5c1ac552011-09-02 18:41:35 +0000592 // Assembler aliases w/o the ".w" suffix.
593 def : t2InstAlias<!strconcat(opc, "${s}${p}", " $Rd, $Rn, $Rm"),
Jim Grosbach5c6c1282012-08-02 21:50:41 +0000594 (!cast<Instruction>(NAME#"rr") rGPR:$Rd, rGPR:$Rn, rGPR:$Rm, pred:$p,
595 cc_out:$s)>;
Jim Grosbach5c1ac552011-09-02 18:41:35 +0000596 def : t2InstAlias<!strconcat(opc, "${s}${p}", " $Rd, $Rn, $shift"),
Jim Grosbach5c6c1282012-08-02 21:50:41 +0000597 (!cast<Instruction>(NAME#"rs") rGPR:$Rd, rGPR:$Rn, t2_so_reg:$shift,
598 pred:$p, cc_out:$s)>;
Jim Grosbach5c1ac552011-09-02 18:41:35 +0000599
600 // and with the optional destination operand, too.
Jim Grosbach11d5dc32012-03-16 22:18:29 +0000601 def : t2InstAlias<!strconcat(opc, "${s}${p}.w", " $Rdn, $imm"),
Jim Grosbach5c6c1282012-08-02 21:50:41 +0000602 (!cast<Instruction>(NAME#"ri") rGPR:$Rdn, rGPR:$Rdn, t2_so_imm:$imm,
603 pred:$p, cc_out:$s)>;
Jim Grosbach5c1ac552011-09-02 18:41:35 +0000604 def : t2InstAlias<!strconcat(opc, "${s}${p}", " $Rdn, $Rm"),
Jim Grosbach5c6c1282012-08-02 21:50:41 +0000605 (!cast<Instruction>(NAME#"rr") rGPR:$Rdn, rGPR:$Rdn, rGPR:$Rm, pred:$p,
606 cc_out:$s)>;
Jim Grosbach5c1ac552011-09-02 18:41:35 +0000607 def : t2InstAlias<!strconcat(opc, "${s}${p}", " $Rdn, $shift"),
Jim Grosbach5c6c1282012-08-02 21:50:41 +0000608 (!cast<Instruction>(NAME#"rs") rGPR:$Rdn, rGPR:$Rdn, t2_so_reg:$shift,
609 pred:$p, cc_out:$s)>;
Jim Grosbach5c1ac552011-09-02 18:41:35 +0000610}
Bill Wendling1f7bf0e2010-08-29 03:55:31 +0000611
Evan Cheng1e249e32009-06-25 20:59:23 +0000612/// T2I_rbin_is - Same as T2I_bin_irs except the order of operands are
Bob Wilson20d8e4e2010-08-13 23:24:25 +0000613/// reversed. The 'rr' form is only defined for the disassembler; for codegen
614/// it is equivalent to the T2I_bin_irs counterpart.
615multiclass T2I_rbin_irs<bits<4> opcod, string opc, PatFrag opnode> {
Evan Chengf49810c2009-06-23 17:48:47 +0000616 // shifted imm
Owen Anderson83da6cd2010-11-14 05:37:38 +0000617 def ri : T2sTwoRegImm<
618 (outs rGPR:$Rd), (ins rGPR:$Rn, t2_so_imm:$imm), IIC_iALUi,
619 opc, ".w\t$Rd, $Rn, $imm",
620 [(set rGPR:$Rd, (opnode t2_so_imm:$imm, rGPR:$Rn))]> {
Johnny Chend68e1192009-12-15 17:24:14 +0000621 let Inst{31-27} = 0b11110;
622 let Inst{25} = 0;
623 let Inst{24-21} = opcod;
Johnny Chend68e1192009-12-15 17:24:14 +0000624 let Inst{15} = 0;
625 }
Bob Wilson20d8e4e2010-08-13 23:24:25 +0000626 // register
Owen Anderson83da6cd2010-11-14 05:37:38 +0000627 def rr : T2sThreeReg<
628 (outs rGPR:$Rd), (ins rGPR:$Rn, rGPR:$Rm), IIC_iALUr,
629 opc, "\t$Rd, $Rn, $Rm",
Bob Wilson136e4912010-08-14 03:18:29 +0000630 [/* For disassembly only; pattern left blank */]> {
Bob Wilson20d8e4e2010-08-13 23:24:25 +0000631 let Inst{31-27} = 0b11101;
632 let Inst{26-25} = 0b01;
633 let Inst{24-21} = opcod;
Bob Wilson20d8e4e2010-08-13 23:24:25 +0000634 let Inst{14-12} = 0b000; // imm3
635 let Inst{7-6} = 0b00; // imm2
636 let Inst{5-4} = 0b00; // type
637 }
Evan Chengf49810c2009-06-23 17:48:47 +0000638 // shifted register
Owen Anderson83da6cd2010-11-14 05:37:38 +0000639 def rs : T2sTwoRegShiftedReg<
640 (outs rGPR:$Rd), (ins rGPR:$Rn, t2_so_reg:$ShiftedRm),
641 IIC_iALUsir, opc, "\t$Rd, $Rn, $ShiftedRm",
642 [(set rGPR:$Rd, (opnode t2_so_reg:$ShiftedRm, rGPR:$Rn))]> {
Johnny Chend68e1192009-12-15 17:24:14 +0000643 let Inst{31-27} = 0b11101;
644 let Inst{26-25} = 0b01;
645 let Inst{24-21} = opcod;
Johnny Chend68e1192009-12-15 17:24:14 +0000646 }
Evan Chengf49810c2009-06-23 17:48:47 +0000647}
648
Evan Chenga67efd12009-06-23 19:39:13 +0000649/// T2I_bin_s_irs - Similar to T2I_bin_irs except it sets the 's' bit so the
Anton Korobeynikov52237112009-06-17 18:13:58 +0000650/// instruction modifies the CPSR register.
Andrew Trick3be654f2011-09-21 02:20:46 +0000651///
652/// These opcodes will be converted to the real non-S opcodes by
653/// AdjustInstrPostInstrSelection after giving then an optional CPSR operand.
Andrew Trick90b7b122011-10-18 19:18:52 +0000654let hasPostISelHook = 1, Defs = [CPSR] in {
655multiclass T2I_bin_s_irs<InstrItinClass iii, InstrItinClass iir,
656 InstrItinClass iis, PatFrag opnode,
657 bit Commutable = 0> {
Anton Korobeynikov52237112009-06-17 18:13:58 +0000658 // shifted imm
Andrew Trick90b7b122011-10-18 19:18:52 +0000659 def ri : t2PseudoInst<(outs rGPR:$Rd),
660 (ins GPRnopc:$Rn, t2_so_imm:$imm, pred:$p),
661 4, iii,
662 [(set rGPR:$Rd, CPSR, (opnode GPRnopc:$Rn,
663 t2_so_imm:$imm))]>;
Evan Chenga67efd12009-06-23 19:39:13 +0000664 // register
Andrew Trick90b7b122011-10-18 19:18:52 +0000665 def rr : t2PseudoInst<(outs rGPR:$Rd), (ins GPRnopc:$Rn, rGPR:$Rm, pred:$p),
666 4, iir,
667 [(set rGPR:$Rd, CPSR, (opnode GPRnopc:$Rn,
668 rGPR:$Rm))]> {
669 let isCommutable = Commutable;
670 }
Anton Korobeynikov52237112009-06-17 18:13:58 +0000671 // shifted register
Andrew Trick90b7b122011-10-18 19:18:52 +0000672 def rs : t2PseudoInst<(outs rGPR:$Rd),
673 (ins GPRnopc:$Rn, t2_so_reg:$ShiftedRm, pred:$p),
674 4, iis,
675 [(set rGPR:$Rd, CPSR, (opnode GPRnopc:$Rn,
676 t2_so_reg:$ShiftedRm))]>;
677}
678}
679
680/// T2I_rbin_s_is - Same as T2I_bin_s_irs, except selection DAG
681/// operands are reversed.
682let hasPostISelHook = 1, Defs = [CPSR] in {
683multiclass T2I_rbin_s_is<PatFrag opnode> {
684 // shifted imm
685 def ri : t2PseudoInst<(outs rGPR:$Rd),
Jim Grosbachb551f0c2012-05-21 17:57:17 +0000686 (ins rGPR:$Rn, t2_so_imm:$imm, pred:$p),
Andrew Trick90b7b122011-10-18 19:18:52 +0000687 4, IIC_iALUi,
688 [(set rGPR:$Rd, CPSR, (opnode t2_so_imm:$imm,
Jim Grosbachb551f0c2012-05-21 17:57:17 +0000689 rGPR:$Rn))]>;
Andrew Trick90b7b122011-10-18 19:18:52 +0000690 // shifted register
691 def rs : t2PseudoInst<(outs rGPR:$Rd),
Jim Grosbachb551f0c2012-05-21 17:57:17 +0000692 (ins rGPR:$Rn, t2_so_reg:$ShiftedRm, pred:$p),
Andrew Trick90b7b122011-10-18 19:18:52 +0000693 4, IIC_iALUsi,
694 [(set rGPR:$Rd, CPSR, (opnode t2_so_reg:$ShiftedRm,
Jim Grosbachb551f0c2012-05-21 17:57:17 +0000695 rGPR:$Rn))]>;
Anton Korobeynikov52237112009-06-17 18:13:58 +0000696}
697}
698
Evan Chenga67efd12009-06-23 19:39:13 +0000699/// T2I_bin_ii12rs - Defines a set of (op reg, {so_imm|imm0_4095|r|so_reg})
700/// patterns for a binary operation that produces a value.
Johnny Chend68e1192009-12-15 17:24:14 +0000701multiclass T2I_bin_ii12rs<bits<3> op23_21, string opc, PatFrag opnode,
702 bit Commutable = 0> {
Evan Chengf49810c2009-06-23 17:48:47 +0000703 // shifted imm
Jim Grosbach663e3392010-08-30 19:49:58 +0000704 // The register-immediate version is re-materializable. This is useful
705 // in particular for taking the address of a local.
706 let isReMaterializable = 1 in {
Owen Anderson83da6cd2010-11-14 05:37:38 +0000707 def ri : T2sTwoRegImm<
Jim Grosbachb95ed6e2011-10-03 20:51:59 +0000708 (outs GPRnopc:$Rd), (ins GPRnopc:$Rn, t2_so_imm:$imm), IIC_iALUi,
709 opc, ".w\t$Rd, $Rn, $imm",
710 [(set GPRnopc:$Rd, (opnode GPRnopc:$Rn, t2_so_imm:$imm))]> {
Johnny Chend68e1192009-12-15 17:24:14 +0000711 let Inst{31-27} = 0b11110;
712 let Inst{25} = 0;
713 let Inst{24} = 1;
714 let Inst{23-21} = op23_21;
Johnny Chend68e1192009-12-15 17:24:14 +0000715 let Inst{15} = 0;
716 }
Jim Grosbach663e3392010-08-30 19:49:58 +0000717 }
Evan Chengf49810c2009-06-23 17:48:47 +0000718 // 12-bit imm
Jim Grosbach07e9b262010-12-08 23:04:16 +0000719 def ri12 : T2I<
Jim Grosbachb95ed6e2011-10-03 20:51:59 +0000720 (outs GPRnopc:$Rd), (ins GPR:$Rn, imm0_4095:$imm), IIC_iALUi,
Owen Anderson83da6cd2010-11-14 05:37:38 +0000721 !strconcat(opc, "w"), "\t$Rd, $Rn, $imm",
Jim Grosbachb95ed6e2011-10-03 20:51:59 +0000722 [(set GPRnopc:$Rd, (opnode GPR:$Rn, imm0_4095:$imm))]> {
Jim Grosbach07e9b262010-12-08 23:04:16 +0000723 bits<4> Rd;
724 bits<4> Rn;
725 bits<12> imm;
Johnny Chend68e1192009-12-15 17:24:14 +0000726 let Inst{31-27} = 0b11110;
Jim Grosbach07e9b262010-12-08 23:04:16 +0000727 let Inst{26} = imm{11};
728 let Inst{25-24} = 0b10;
Johnny Chend68e1192009-12-15 17:24:14 +0000729 let Inst{23-21} = op23_21;
730 let Inst{20} = 0; // The S bit.
Jim Grosbach07e9b262010-12-08 23:04:16 +0000731 let Inst{19-16} = Rn;
Johnny Chend68e1192009-12-15 17:24:14 +0000732 let Inst{15} = 0;
Jim Grosbach07e9b262010-12-08 23:04:16 +0000733 let Inst{14-12} = imm{10-8};
734 let Inst{11-8} = Rd;
735 let Inst{7-0} = imm{7-0};
Johnny Chend68e1192009-12-15 17:24:14 +0000736 }
Evan Chenga67efd12009-06-23 19:39:13 +0000737 // register
Jim Grosbachb95ed6e2011-10-03 20:51:59 +0000738 def rr : T2sThreeReg<(outs GPRnopc:$Rd), (ins GPRnopc:$Rn, rGPR:$Rm),
739 IIC_iALUr, opc, ".w\t$Rd, $Rn, $Rm",
740 [(set GPRnopc:$Rd, (opnode GPRnopc:$Rn, rGPR:$Rm))]> {
Evan Cheng8de898a2009-06-26 00:19:44 +0000741 let isCommutable = Commutable;
Johnny Chend68e1192009-12-15 17:24:14 +0000742 let Inst{31-27} = 0b11101;
743 let Inst{26-25} = 0b01;
744 let Inst{24} = 1;
745 let Inst{23-21} = op23_21;
Johnny Chend68e1192009-12-15 17:24:14 +0000746 let Inst{14-12} = 0b000; // imm3
747 let Inst{7-6} = 0b00; // imm2
748 let Inst{5-4} = 0b00; // type
Evan Cheng8de898a2009-06-26 00:19:44 +0000749 }
Evan Chengf49810c2009-06-23 17:48:47 +0000750 // shifted register
Owen Anderson83da6cd2010-11-14 05:37:38 +0000751 def rs : T2sTwoRegShiftedReg<
Jim Grosbachb95ed6e2011-10-03 20:51:59 +0000752 (outs GPRnopc:$Rd), (ins GPRnopc:$Rn, t2_so_reg:$ShiftedRm),
Owen Anderson83da6cd2010-11-14 05:37:38 +0000753 IIC_iALUsi, opc, ".w\t$Rd, $Rn, $ShiftedRm",
Jim Grosbachb95ed6e2011-10-03 20:51:59 +0000754 [(set GPRnopc:$Rd, (opnode GPRnopc:$Rn, t2_so_reg:$ShiftedRm))]> {
Johnny Chend68e1192009-12-15 17:24:14 +0000755 let Inst{31-27} = 0b11101;
Johnny Chend68e1192009-12-15 17:24:14 +0000756 let Inst{26-25} = 0b01;
Johnny Chend248ffb2010-01-08 17:41:33 +0000757 let Inst{24} = 1;
Johnny Chend68e1192009-12-15 17:24:14 +0000758 let Inst{23-21} = op23_21;
Johnny Chend68e1192009-12-15 17:24:14 +0000759 }
Jakob Stoklund Olesen083b48a2012-08-16 23:21:55 +0000760
761 // Predicated versions.
762 def CCri : t2PseudoExpand<(outs GPRnopc:$Rd),
763 (ins GPRnopc:$Rfalse, GPRnopc:$Rn, t2_so_imm:$imm,
764 pred:$p, cc_out:$s), 4, IIC_iALUi, [],
765 (!cast<Instruction>(NAME#ri) GPRnopc:$Rd,
766 GPRnopc:$Rn, t2_so_imm:$imm, pred:$p, cc_out:$s)>,
767 RegConstraint<"$Rfalse = $Rd">;
768 def CCri12 : t2PseudoExpand<(outs GPRnopc:$Rd),
769 (ins GPRnopc:$Rfalse, GPR:$Rn, imm0_4095:$imm,
770 pred:$p),
771 4, IIC_iALUi, [],
772 (!cast<Instruction>(NAME#ri12) GPRnopc:$Rd,
773 GPR:$Rn, imm0_4095:$imm, pred:$p)>,
774 RegConstraint<"$Rfalse = $Rd">;
775 def CCrr : t2PseudoExpand<(outs GPRnopc:$Rd),
776 (ins GPRnopc:$Rfalse, GPRnopc:$Rn, rGPR:$Rm,
777 pred:$p, cc_out:$s), 4, IIC_iALUr, [],
778 (!cast<Instruction>(NAME#rr) GPRnopc:$Rd,
779 GPRnopc:$Rn, rGPR:$Rm, pred:$p, cc_out:$s)>,
780 RegConstraint<"$Rfalse = $Rd">;
781 def CCrs : t2PseudoExpand<(outs GPRnopc:$Rd),
782 (ins GPRnopc:$Rfalse, GPRnopc:$Rn, t2_so_reg:$Rm,
783 pred:$p, cc_out:$s), 4, IIC_iALUsi, [],
784 (!cast<Instruction>(NAME#rs) GPRnopc:$Rd,
785 GPRnopc:$Rn, t2_so_reg:$Rm, pred:$p, cc_out:$s)>,
786 RegConstraint<"$Rfalse = $Rd">;
Evan Chengf49810c2009-06-23 17:48:47 +0000787}
788
Jim Grosbach6935efc2009-11-24 00:20:27 +0000789/// T2I_adde_sube_irs - Defines a set of (op reg, {so_imm|r|so_reg}) patterns
Jim Grosbach39be8fc2010-02-16 20:42:29 +0000790/// for a binary operation that produces a value and use the carry
Jim Grosbach6935efc2009-11-24 00:20:27 +0000791/// bit. It's not predicable.
Evan Cheng342e3162011-08-30 01:34:54 +0000792let Defs = [CPSR], Uses = [CPSR] in {
Jim Grosbach80dc1162010-02-16 21:23:02 +0000793multiclass T2I_adde_sube_irs<bits<4> opcod, string opc, PatFrag opnode,
794 bit Commutable = 0> {
Anton Korobeynikov52237112009-06-17 18:13:58 +0000795 // shifted imm
Owen Anderson83da6cd2010-11-14 05:37:38 +0000796 def ri : T2sTwoRegImm<(outs rGPR:$Rd), (ins rGPR:$Rn, t2_so_imm:$imm),
Owen Anderson5de6d842010-11-12 21:12:40 +0000797 IIC_iALUi, opc, "\t$Rd, $Rn, $imm",
Evan Cheng342e3162011-08-30 01:34:54 +0000798 [(set rGPR:$Rd, CPSR, (opnode rGPR:$Rn, t2_so_imm:$imm, CPSR))]>,
Jim Grosbach39be8fc2010-02-16 20:42:29 +0000799 Requires<[IsThumb2]> {
Johnny Chend68e1192009-12-15 17:24:14 +0000800 let Inst{31-27} = 0b11110;
801 let Inst{25} = 0;
802 let Inst{24-21} = opcod;
Johnny Chend68e1192009-12-15 17:24:14 +0000803 let Inst{15} = 0;
804 }
Evan Chenga67efd12009-06-23 19:39:13 +0000805 // register
Owen Anderson83da6cd2010-11-14 05:37:38 +0000806 def rr : T2sThreeReg<(outs rGPR:$Rd), (ins rGPR:$Rn, rGPR:$Rm), IIC_iALUr,
Owen Anderson5de6d842010-11-12 21:12:40 +0000807 opc, ".w\t$Rd, $Rn, $Rm",
Evan Cheng342e3162011-08-30 01:34:54 +0000808 [(set rGPR:$Rd, CPSR, (opnode rGPR:$Rn, rGPR:$Rm, CPSR))]>,
Jim Grosbach39be8fc2010-02-16 20:42:29 +0000809 Requires<[IsThumb2]> {
Evan Cheng8de898a2009-06-26 00:19:44 +0000810 let isCommutable = Commutable;
Johnny Chend68e1192009-12-15 17:24:14 +0000811 let Inst{31-27} = 0b11101;
812 let Inst{26-25} = 0b01;
813 let Inst{24-21} = opcod;
Johnny Chend68e1192009-12-15 17:24:14 +0000814 let Inst{14-12} = 0b000; // imm3
815 let Inst{7-6} = 0b00; // imm2
816 let Inst{5-4} = 0b00; // type
Evan Cheng8de898a2009-06-26 00:19:44 +0000817 }
Anton Korobeynikov52237112009-06-17 18:13:58 +0000818 // shifted register
Owen Anderson83da6cd2010-11-14 05:37:38 +0000819 def rs : T2sTwoRegShiftedReg<
Jim Grosbach7a088642010-11-19 17:11:02 +0000820 (outs rGPR:$Rd), (ins rGPR:$Rn, t2_so_reg:$ShiftedRm),
Owen Anderson5de6d842010-11-12 21:12:40 +0000821 IIC_iALUsi, opc, ".w\t$Rd, $Rn, $ShiftedRm",
Evan Cheng342e3162011-08-30 01:34:54 +0000822 [(set rGPR:$Rd, CPSR, (opnode rGPR:$Rn, t2_so_reg:$ShiftedRm, CPSR))]>,
Jim Grosbach39be8fc2010-02-16 20:42:29 +0000823 Requires<[IsThumb2]> {
Johnny Chend68e1192009-12-15 17:24:14 +0000824 let Inst{31-27} = 0b11101;
825 let Inst{26-25} = 0b01;
826 let Inst{24-21} = opcod;
Johnny Chend68e1192009-12-15 17:24:14 +0000827 }
Jim Grosbach39be8fc2010-02-16 20:42:29 +0000828}
Andrew Trick1c3af772011-04-23 03:55:32 +0000829}
Jim Grosbach39be8fc2010-02-16 20:42:29 +0000830
Evan Chenga67efd12009-06-23 19:39:13 +0000831/// T2I_sh_ir - Defines a set of (op reg, {so_imm|r}) patterns for a shift /
832// rotate operation that produces a value.
Jim Grosbach9249ef32012-08-02 21:59:52 +0000833multiclass T2I_sh_ir<bits<2> opcod, string opc, Operand ty, PatFrag opnode> {
Evan Chenga67efd12009-06-23 19:39:13 +0000834 // 5-bit imm
Owen Andersonbb6315d2010-11-15 19:58:36 +0000835 def ri : T2sTwoRegShiftImm<
Owen Anderson6d746312011-08-08 20:42:17 +0000836 (outs rGPR:$Rd), (ins rGPR:$Rm, ty:$imm), IIC_iMOVsi,
Owen Andersonbb6315d2010-11-15 19:58:36 +0000837 opc, ".w\t$Rd, $Rm, $imm",
Jim Grosbach70939ee2011-08-17 21:51:27 +0000838 [(set rGPR:$Rd, (opnode rGPR:$Rm, (i32 ty:$imm)))]> {
Johnny Chend68e1192009-12-15 17:24:14 +0000839 let Inst{31-27} = 0b11101;
840 let Inst{26-21} = 0b010010;
841 let Inst{19-16} = 0b1111; // Rn
842 let Inst{5-4} = opcod;
843 }
Evan Chenga67efd12009-06-23 19:39:13 +0000844 // register
Owen Andersonbb6315d2010-11-15 19:58:36 +0000845 def rr : T2sThreeReg<
846 (outs rGPR:$Rd), (ins rGPR:$Rn, rGPR:$Rm), IIC_iMOVsr,
847 opc, ".w\t$Rd, $Rn, $Rm",
848 [(set rGPR:$Rd, (opnode rGPR:$Rn, rGPR:$Rm))]> {
Johnny Chend68e1192009-12-15 17:24:14 +0000849 let Inst{31-27} = 0b11111;
850 let Inst{26-23} = 0b0100;
851 let Inst{22-21} = opcod;
852 let Inst{15-12} = 0b1111;
853 let Inst{7-4} = 0b0000;
854 }
Jim Grosbach5f25fb02011-09-02 21:28:54 +0000855
856 // Optional destination register
857 def : t2InstAlias<!strconcat(opc, "${s}${p}", ".w $Rdn, $imm"),
Jim Grosbach9249ef32012-08-02 21:59:52 +0000858 (!cast<Instruction>(NAME#"ri") rGPR:$Rdn, rGPR:$Rdn, ty:$imm, pred:$p,
859 cc_out:$s)>;
Jim Grosbach5f25fb02011-09-02 21:28:54 +0000860 def : t2InstAlias<!strconcat(opc, "${s}${p}", ".w $Rdn, $Rm"),
Jim Grosbach9249ef32012-08-02 21:59:52 +0000861 (!cast<Instruction>(NAME#"rr") rGPR:$Rdn, rGPR:$Rdn, rGPR:$Rm, pred:$p,
862 cc_out:$s)>;
Jim Grosbach5f25fb02011-09-02 21:28:54 +0000863
864 // Assembler aliases w/o the ".w" suffix.
865 def : t2InstAlias<!strconcat(opc, "${s}${p}", " $Rd, $Rn, $imm"),
Jim Grosbach9249ef32012-08-02 21:59:52 +0000866 (!cast<Instruction>(NAME#"ri") rGPR:$Rd, rGPR:$Rn, ty:$imm, pred:$p,
867 cc_out:$s)>;
Jim Grosbach5f25fb02011-09-02 21:28:54 +0000868 def : t2InstAlias<!strconcat(opc, "${s}${p}", " $Rd, $Rn, $Rm"),
Jim Grosbach9249ef32012-08-02 21:59:52 +0000869 (!cast<Instruction>(NAME#"rr") rGPR:$Rd, rGPR:$Rn, rGPR:$Rm, pred:$p,
870 cc_out:$s)>;
Jim Grosbach5f25fb02011-09-02 21:28:54 +0000871
872 // and with the optional destination operand, too.
873 def : t2InstAlias<!strconcat(opc, "${s}${p}", " $Rdn, $imm"),
Jim Grosbach9249ef32012-08-02 21:59:52 +0000874 (!cast<Instruction>(NAME#"ri") rGPR:$Rdn, rGPR:$Rdn, ty:$imm, pred:$p,
875 cc_out:$s)>;
Jim Grosbach5f25fb02011-09-02 21:28:54 +0000876 def : t2InstAlias<!strconcat(opc, "${s}${p}", " $Rdn, $Rm"),
Jim Grosbach9249ef32012-08-02 21:59:52 +0000877 (!cast<Instruction>(NAME#"rr") rGPR:$Rdn, rGPR:$Rdn, rGPR:$Rm, pred:$p,
878 cc_out:$s)>;
Evan Chenga67efd12009-06-23 19:39:13 +0000879}
Evan Chengf49810c2009-06-23 17:48:47 +0000880
Johnny Chend68e1192009-12-15 17:24:14 +0000881/// T2I_cmp_irs - Defines a set of (op r, {so_imm|r|so_reg}) cmp / test
Evan Chenga67efd12009-06-23 19:39:13 +0000882/// patterns. Similar to T2I_bin_irs except the instruction does not produce
Evan Chengf49810c2009-06-23 17:48:47 +0000883/// a explicit result, only implicitly set CPSR.
Evan Cheng5d42c562010-09-29 00:49:25 +0000884multiclass T2I_cmp_irs<bits<4> opcod, string opc,
885 InstrItinClass iii, InstrItinClass iir, InstrItinClass iis,
Jim Grosbach9249ef32012-08-02 21:59:52 +0000886 PatFrag opnode> {
Jim Grosbachef88a922011-09-06 21:44:58 +0000887let isCompare = 1, Defs = [CPSR] in {
Evan Chengf49810c2009-06-23 17:48:47 +0000888 // shifted imm
Owen Andersonbb6315d2010-11-15 19:58:36 +0000889 def ri : T2OneRegCmpImm<
Jim Grosbachef88a922011-09-06 21:44:58 +0000890 (outs), (ins GPRnopc:$Rn, t2_so_imm:$imm), iii,
Owen Andersonbb6315d2010-11-15 19:58:36 +0000891 opc, ".w\t$Rn, $imm",
Jim Grosbachef88a922011-09-06 21:44:58 +0000892 [(opnode GPRnopc:$Rn, t2_so_imm:$imm)]> {
Johnny Chend68e1192009-12-15 17:24:14 +0000893 let Inst{31-27} = 0b11110;
894 let Inst{25} = 0;
895 let Inst{24-21} = opcod;
896 let Inst{20} = 1; // The S bit.
897 let Inst{15} = 0;
898 let Inst{11-8} = 0b1111; // Rd
899 }
Evan Chenga67efd12009-06-23 19:39:13 +0000900 // register
Owen Andersonbb6315d2010-11-15 19:58:36 +0000901 def rr : T2TwoRegCmp<
Jim Grosbachef88a922011-09-06 21:44:58 +0000902 (outs), (ins GPRnopc:$Rn, rGPR:$Rm), iir,
Owen Andersone732cb02011-08-23 17:37:32 +0000903 opc, ".w\t$Rn, $Rm",
Jim Grosbachef88a922011-09-06 21:44:58 +0000904 [(opnode GPRnopc:$Rn, rGPR:$Rm)]> {
Johnny Chend68e1192009-12-15 17:24:14 +0000905 let Inst{31-27} = 0b11101;
906 let Inst{26-25} = 0b01;
907 let Inst{24-21} = opcod;
908 let Inst{20} = 1; // The S bit.
909 let Inst{14-12} = 0b000; // imm3
910 let Inst{11-8} = 0b1111; // Rd
911 let Inst{7-6} = 0b00; // imm2
912 let Inst{5-4} = 0b00; // type
913 }
Evan Chengf49810c2009-06-23 17:48:47 +0000914 // shifted register
Owen Andersonbb6315d2010-11-15 19:58:36 +0000915 def rs : T2OneRegCmpShiftedReg<
Jim Grosbachef88a922011-09-06 21:44:58 +0000916 (outs), (ins GPRnopc:$Rn, t2_so_reg:$ShiftedRm), iis,
Owen Andersonbb6315d2010-11-15 19:58:36 +0000917 opc, ".w\t$Rn, $ShiftedRm",
Jim Grosbachef88a922011-09-06 21:44:58 +0000918 [(opnode GPRnopc:$Rn, t2_so_reg:$ShiftedRm)]> {
Johnny Chend68e1192009-12-15 17:24:14 +0000919 let Inst{31-27} = 0b11101;
920 let Inst{26-25} = 0b01;
921 let Inst{24-21} = opcod;
922 let Inst{20} = 1; // The S bit.
923 let Inst{11-8} = 0b1111; // Rd
924 }
Anton Korobeynikov52237112009-06-17 18:13:58 +0000925}
Jim Grosbachef88a922011-09-06 21:44:58 +0000926
927 // Assembler aliases w/o the ".w" suffix.
928 // No alias here for 'rr' version as not all instantiations of this
929 // multiclass want one (CMP in particular, does not).
930 def : t2InstAlias<!strconcat(opc, "${p}", " $Rn, $imm"),
Jim Grosbach9249ef32012-08-02 21:59:52 +0000931 (!cast<Instruction>(NAME#"ri") GPRnopc:$Rn, t2_so_imm:$imm, pred:$p)>;
Jim Grosbachef88a922011-09-06 21:44:58 +0000932 def : t2InstAlias<!strconcat(opc, "${p}", " $Rn, $shift"),
Jim Grosbach9249ef32012-08-02 21:59:52 +0000933 (!cast<Instruction>(NAME#"rs") GPRnopc:$Rn, t2_so_reg:$shift, pred:$p)>;
Anton Korobeynikov52237112009-06-17 18:13:58 +0000934}
935
Evan Chengf3c21b82009-06-30 02:15:48 +0000936/// T2I_ld - Defines a set of (op r, {imm12|imm8|so_reg}) load patterns.
Evan Cheng0e55fd62010-09-30 01:08:25 +0000937multiclass T2I_ld<bit signed, bits<2> opcod, string opc,
Owen Anderson9fe72bc2011-08-11 20:40:40 +0000938 InstrItinClass iii, InstrItinClass iis, RegisterClass target,
939 PatFrag opnode> {
940 def i12 : T2Ii12<(outs target:$Rt), (ins t2addrmode_imm12:$addr), iii,
Owen Anderson75579f72010-11-29 22:44:32 +0000941 opc, ".w\t$Rt, $addr",
Owen Anderson9fe72bc2011-08-11 20:40:40 +0000942 [(set target:$Rt, (opnode t2addrmode_imm12:$addr))]> {
Jim Grosbacha8307dd2011-09-07 20:58:57 +0000943 bits<4> Rt;
944 bits<17> addr;
945 let Inst{31-25} = 0b1111100;
Johnny Chend68e1192009-12-15 17:24:14 +0000946 let Inst{24} = signed;
947 let Inst{23} = 1;
948 let Inst{22-21} = opcod;
949 let Inst{20} = 1; // load
Owen Anderson80dd3e02010-11-30 22:45:47 +0000950 let Inst{19-16} = addr{16-13}; // Rn
Jim Grosbacha8307dd2011-09-07 20:58:57 +0000951 let Inst{15-12} = Rt;
Owen Anderson80dd3e02010-11-30 22:45:47 +0000952 let Inst{11-0} = addr{11-0}; // imm
Johnny Chend68e1192009-12-15 17:24:14 +0000953 }
Jim Grosbacha8307dd2011-09-07 20:58:57 +0000954 def i8 : T2Ii8 <(outs target:$Rt), (ins t2addrmode_negimm8:$addr), iii,
Owen Anderson75579f72010-11-29 22:44:32 +0000955 opc, "\t$Rt, $addr",
Jim Grosbacha8307dd2011-09-07 20:58:57 +0000956 [(set target:$Rt, (opnode t2addrmode_negimm8:$addr))]> {
957 bits<4> Rt;
958 bits<13> addr;
Johnny Chend68e1192009-12-15 17:24:14 +0000959 let Inst{31-27} = 0b11111;
960 let Inst{26-25} = 0b00;
961 let Inst{24} = signed;
962 let Inst{23} = 0;
963 let Inst{22-21} = opcod;
964 let Inst{20} = 1; // load
Jim Grosbacha8307dd2011-09-07 20:58:57 +0000965 let Inst{19-16} = addr{12-9}; // Rn
966 let Inst{15-12} = Rt;
Johnny Chend68e1192009-12-15 17:24:14 +0000967 let Inst{11} = 1;
968 // Offset: index==TRUE, wback==FALSE
969 let Inst{10} = 1; // The P bit.
Owen Anderson75579f72010-11-29 22:44:32 +0000970 let Inst{9} = addr{8}; // U
Jim Grosbacha8307dd2011-09-07 20:58:57 +0000971 let Inst{8} = 0; // The W bit.
Owen Anderson75579f72010-11-29 22:44:32 +0000972 let Inst{7-0} = addr{7-0}; // imm
Johnny Chend68e1192009-12-15 17:24:14 +0000973 }
Owen Anderson9fe72bc2011-08-11 20:40:40 +0000974 def s : T2Iso <(outs target:$Rt), (ins t2addrmode_so_reg:$addr), iis,
Owen Anderson75579f72010-11-29 22:44:32 +0000975 opc, ".w\t$Rt, $addr",
Owen Anderson9fe72bc2011-08-11 20:40:40 +0000976 [(set target:$Rt, (opnode t2addrmode_so_reg:$addr))]> {
Johnny Chend68e1192009-12-15 17:24:14 +0000977 let Inst{31-27} = 0b11111;
978 let Inst{26-25} = 0b00;
979 let Inst{24} = signed;
980 let Inst{23} = 0;
981 let Inst{22-21} = opcod;
982 let Inst{20} = 1; // load
983 let Inst{11-6} = 0b000000;
Jim Grosbach7721e7f2010-12-02 23:05:38 +0000984
Owen Anderson75579f72010-11-29 22:44:32 +0000985 bits<4> Rt;
Jim Grosbach86386922010-12-08 22:10:43 +0000986 let Inst{15-12} = Rt;
Jim Grosbach7721e7f2010-12-02 23:05:38 +0000987
Owen Anderson75579f72010-11-29 22:44:32 +0000988 bits<10> addr;
989 let Inst{19-16} = addr{9-6}; // Rn
990 let Inst{3-0} = addr{5-2}; // Rm
991 let Inst{5-4} = addr{1-0}; // imm
Owen Anderson8d7d2e12011-08-09 20:55:18 +0000992
993 let DecoderMethod = "DecodeT2LoadShift";
Johnny Chend68e1192009-12-15 17:24:14 +0000994 }
Evan Chengbc7deb02010-11-03 05:14:24 +0000995
Jim Grosbach5aa53682012-01-18 22:04:42 +0000996 // pci variant is very similar to i12, but supports negative offsets
997 // from the PC.
Owen Anderson9fe72bc2011-08-11 20:40:40 +0000998 def pci : T2Ipc <(outs target:$Rt), (ins t2ldrlabel:$addr), iii,
Owen Anderson971b83b2011-02-08 22:39:40 +0000999 opc, ".w\t$Rt, $addr",
Owen Anderson9fe72bc2011-08-11 20:40:40 +00001000 [(set target:$Rt, (opnode (ARMWrapper tconstpool:$addr)))]> {
Owen Anderson971b83b2011-02-08 22:39:40 +00001001 let isReMaterializable = 1;
1002 let Inst{31-27} = 0b11111;
1003 let Inst{26-25} = 0b00;
1004 let Inst{24} = signed;
1005 let Inst{23} = ?; // add = (U == '1')
1006 let Inst{22-21} = opcod;
1007 let Inst{20} = 1; // load
1008 let Inst{19-16} = 0b1111; // Rn
1009 bits<4> Rt;
1010 bits<12> addr;
1011 let Inst{15-12} = Rt{3-0};
1012 let Inst{11-0} = addr{11-0};
1013 }
Evan Chengf3c21b82009-06-30 02:15:48 +00001014}
1015
David Goodwin73b8f162009-06-30 22:11:34 +00001016/// T2I_st - Defines a set of (op r, {imm12|imm8|so_reg}) store patterns.
Evan Cheng0e55fd62010-09-30 01:08:25 +00001017multiclass T2I_st<bits<2> opcod, string opc,
Owen Anderson9fe72bc2011-08-11 20:40:40 +00001018 InstrItinClass iii, InstrItinClass iis, RegisterClass target,
1019 PatFrag opnode> {
1020 def i12 : T2Ii12<(outs), (ins target:$Rt, t2addrmode_imm12:$addr), iii,
Owen Anderson75579f72010-11-29 22:44:32 +00001021 opc, ".w\t$Rt, $addr",
Owen Anderson9fe72bc2011-08-11 20:40:40 +00001022 [(opnode target:$Rt, t2addrmode_imm12:$addr)]> {
Johnny Chend68e1192009-12-15 17:24:14 +00001023 let Inst{31-27} = 0b11111;
1024 let Inst{26-23} = 0b0001;
1025 let Inst{22-21} = opcod;
1026 let Inst{20} = 0; // !load
Jim Grosbach7721e7f2010-12-02 23:05:38 +00001027
Owen Anderson75579f72010-11-29 22:44:32 +00001028 bits<4> Rt;
Jim Grosbach86386922010-12-08 22:10:43 +00001029 let Inst{15-12} = Rt;
Jim Grosbach7721e7f2010-12-02 23:05:38 +00001030
Owen Anderson80dd3e02010-11-30 22:45:47 +00001031 bits<17> addr;
Johnny Chenf9ce2cb2011-04-12 18:48:00 +00001032 let addr{12} = 1; // add = TRUE
Owen Anderson80dd3e02010-11-30 22:45:47 +00001033 let Inst{19-16} = addr{16-13}; // Rn
1034 let Inst{23} = addr{12}; // U
1035 let Inst{11-0} = addr{11-0}; // imm
Johnny Chend68e1192009-12-15 17:24:14 +00001036 }
Jim Grosbacha8307dd2011-09-07 20:58:57 +00001037 def i8 : T2Ii8 <(outs), (ins target:$Rt, t2addrmode_negimm8:$addr), iii,
Owen Anderson75579f72010-11-29 22:44:32 +00001038 opc, "\t$Rt, $addr",
Jim Grosbacha8307dd2011-09-07 20:58:57 +00001039 [(opnode target:$Rt, t2addrmode_negimm8:$addr)]> {
Johnny Chend68e1192009-12-15 17:24:14 +00001040 let Inst{31-27} = 0b11111;
1041 let Inst{26-23} = 0b0000;
1042 let Inst{22-21} = opcod;
1043 let Inst{20} = 0; // !load
1044 let Inst{11} = 1;
1045 // Offset: index==TRUE, wback==FALSE
1046 let Inst{10} = 1; // The P bit.
1047 let Inst{8} = 0; // The W bit.
Jim Grosbach7721e7f2010-12-02 23:05:38 +00001048
Owen Anderson75579f72010-11-29 22:44:32 +00001049 bits<4> Rt;
Jim Grosbach86386922010-12-08 22:10:43 +00001050 let Inst{15-12} = Rt;
Jim Grosbach7721e7f2010-12-02 23:05:38 +00001051
Owen Anderson75579f72010-11-29 22:44:32 +00001052 bits<13> addr;
1053 let Inst{19-16} = addr{12-9}; // Rn
1054 let Inst{9} = addr{8}; // U
1055 let Inst{7-0} = addr{7-0}; // imm
Johnny Chend68e1192009-12-15 17:24:14 +00001056 }
Owen Anderson9fe72bc2011-08-11 20:40:40 +00001057 def s : T2Iso <(outs), (ins target:$Rt, t2addrmode_so_reg:$addr), iis,
Owen Anderson75579f72010-11-29 22:44:32 +00001058 opc, ".w\t$Rt, $addr",
Owen Anderson9fe72bc2011-08-11 20:40:40 +00001059 [(opnode target:$Rt, t2addrmode_so_reg:$addr)]> {
Johnny Chend68e1192009-12-15 17:24:14 +00001060 let Inst{31-27} = 0b11111;
1061 let Inst{26-23} = 0b0000;
1062 let Inst{22-21} = opcod;
1063 let Inst{20} = 0; // !load
1064 let Inst{11-6} = 0b000000;
Jim Grosbach7721e7f2010-12-02 23:05:38 +00001065
Owen Anderson75579f72010-11-29 22:44:32 +00001066 bits<4> Rt;
Jim Grosbach86386922010-12-08 22:10:43 +00001067 let Inst{15-12} = Rt;
Jim Grosbach7721e7f2010-12-02 23:05:38 +00001068
Owen Anderson75579f72010-11-29 22:44:32 +00001069 bits<10> addr;
1070 let Inst{19-16} = addr{9-6}; // Rn
1071 let Inst{3-0} = addr{5-2}; // Rm
1072 let Inst{5-4} = addr{1-0}; // imm
Johnny Chend68e1192009-12-15 17:24:14 +00001073 }
David Goodwin73b8f162009-06-30 22:11:34 +00001074}
1075
Evan Cheng0e55fd62010-09-30 01:08:25 +00001076/// T2I_ext_rrot - A unary operation with two forms: one whose operand is a
Evan Chengd27c9fc2009-07-03 01:43:10 +00001077/// register and one whose operand is a register rotated by 8/16/24.
Jim Grosbachc5a8c862011-07-27 16:47:19 +00001078class T2I_ext_rrot<bits<3> opcod, string opc, PatFrag opnode>
1079 : T2TwoReg<(outs rGPR:$Rd), (ins rGPR:$Rm, rot_imm:$rot), IIC_iEXTr,
1080 opc, ".w\t$Rd, $Rm$rot",
Eli Friedman2cb1dfa2011-08-08 19:49:37 +00001081 [(set rGPR:$Rd, (opnode (rotr rGPR:$Rm, rot_imm:$rot)))]>,
1082 Requires<[IsThumb2]> {
Jim Grosbachc5a8c862011-07-27 16:47:19 +00001083 let Inst{31-27} = 0b11111;
1084 let Inst{26-23} = 0b0100;
1085 let Inst{22-20} = opcod;
1086 let Inst{19-16} = 0b1111; // Rn
1087 let Inst{15-12} = 0b1111;
1088 let Inst{7} = 1;
Jim Grosbach7a088642010-11-19 17:11:02 +00001089
Jim Grosbachc5a8c862011-07-27 16:47:19 +00001090 bits<2> rot;
1091 let Inst{5-4} = rot{1-0}; // rotate
Evan Chengd27c9fc2009-07-03 01:43:10 +00001092}
1093
Eli Friedman761fa7a2010-06-24 18:20:04 +00001094// UXTB16 - Requres T2ExtractPack, does not need the .w qualifier.
Jim Grosbach70327412011-07-27 17:48:13 +00001095class T2I_ext_rrot_uxtb16<bits<3> opcod, string opc, PatFrag opnode>
Owen Andersone732cb02011-08-23 17:37:32 +00001096 : T2TwoReg<(outs rGPR:$Rd), (ins rGPR:$Rm, rot_imm:$rot),
1097 IIC_iEXTr, opc, "\t$Rd, $Rm$rot",
1098 [(set rGPR:$Rd, (opnode (rotr rGPR:$Rm, rot_imm:$rot)))]>,
Jim Grosbach70327412011-07-27 17:48:13 +00001099 Requires<[HasT2ExtractPack, IsThumb2]> {
1100 bits<2> rot;
1101 let Inst{31-27} = 0b11111;
1102 let Inst{26-23} = 0b0100;
1103 let Inst{22-20} = opcod;
1104 let Inst{19-16} = 0b1111; // Rn
1105 let Inst{15-12} = 0b1111;
1106 let Inst{7} = 1;
1107 let Inst{5-4} = rot;
Johnny Chen267124c2010-03-04 22:24:41 +00001108}
1109
Eli Friedman761fa7a2010-06-24 18:20:04 +00001110// SXTB16 - Requres T2ExtractPack, does not need the .w qualifier, no pattern
1111// supported yet.
Jim Grosbach70327412011-07-27 17:48:13 +00001112class T2I_ext_rrot_sxtb16<bits<3> opcod, string opc>
1113 : T2TwoReg<(outs rGPR:$Rd), (ins rGPR:$Rm, rot_imm:$rot), IIC_iEXTr,
1114 opc, "\t$Rd, $Rm$rot", []>,
Jim Grosbacha7603982011-07-01 21:12:19 +00001115 Requires<[IsThumb2, HasT2ExtractPack]> {
Jim Grosbach70327412011-07-27 17:48:13 +00001116 bits<2> rot;
1117 let Inst{31-27} = 0b11111;
1118 let Inst{26-23} = 0b0100;
1119 let Inst{22-20} = opcod;
1120 let Inst{19-16} = 0b1111; // Rn
1121 let Inst{15-12} = 0b1111;
1122 let Inst{7} = 1;
1123 let Inst{5-4} = rot;
Johnny Chen93042d12010-03-02 18:14:57 +00001124}
1125
Evan Cheng0e55fd62010-09-30 01:08:25 +00001126/// T2I_exta_rrot - A binary operation with two forms: one whose operand is a
Evan Chengd27c9fc2009-07-03 01:43:10 +00001127/// register and one whose operand is a register rotated by 8/16/24.
Jim Grosbach70327412011-07-27 17:48:13 +00001128class T2I_exta_rrot<bits<3> opcod, string opc, PatFrag opnode>
1129 : T2ThreeReg<(outs rGPR:$Rd),
1130 (ins rGPR:$Rn, rGPR:$Rm, rot_imm:$rot),
1131 IIC_iEXTAsr, opc, "\t$Rd, $Rn, $Rm$rot",
1132 [(set rGPR:$Rd, (opnode rGPR:$Rn, (rotr rGPR:$Rm,rot_imm:$rot)))]>,
1133 Requires<[HasT2ExtractPack, IsThumb2]> {
1134 bits<2> rot;
1135 let Inst{31-27} = 0b11111;
1136 let Inst{26-23} = 0b0100;
1137 let Inst{22-20} = opcod;
1138 let Inst{15-12} = 0b1111;
1139 let Inst{7} = 1;
1140 let Inst{5-4} = rot;
Evan Chengd27c9fc2009-07-03 01:43:10 +00001141}
1142
Jim Grosbach70327412011-07-27 17:48:13 +00001143class T2I_exta_rrot_np<bits<3> opcod, string opc>
1144 : T2ThreeReg<(outs rGPR:$Rd), (ins rGPR:$Rn, rGPR:$Rm,rot_imm:$rot),
1145 IIC_iEXTAsr, opc, "\t$Rd, $Rn, $Rm$rot", []> {
1146 bits<2> rot;
1147 let Inst{31-27} = 0b11111;
1148 let Inst{26-23} = 0b0100;
1149 let Inst{22-20} = opcod;
1150 let Inst{15-12} = 0b1111;
1151 let Inst{7} = 1;
1152 let Inst{5-4} = rot;
Johnny Chen93042d12010-03-02 18:14:57 +00001153}
1154
Anton Korobeynikov52237112009-06-17 18:13:58 +00001155//===----------------------------------------------------------------------===//
Evan Cheng9cb9e672009-06-27 02:26:13 +00001156// Instructions
1157//===----------------------------------------------------------------------===//
1158
1159//===----------------------------------------------------------------------===//
Evan Chenga09b9ca2009-06-24 23:47:58 +00001160// Miscellaneous Instructions.
1161//
1162
Owen Andersonda663f72010-11-15 21:30:39 +00001163class T2PCOneRegImm<dag oops, dag iops, InstrItinClass itin,
1164 string asm, list<dag> pattern>
1165 : T2XI<oops, iops, itin, asm, pattern> {
1166 bits<4> Rd;
1167 bits<12> label;
Jim Grosbach7a088642010-11-19 17:11:02 +00001168
Jim Grosbach86386922010-12-08 22:10:43 +00001169 let Inst{11-8} = Rd;
Owen Andersonda663f72010-11-15 21:30:39 +00001170 let Inst{26} = label{11};
1171 let Inst{14-12} = label{10-8};
1172 let Inst{7-0} = label{7-0};
1173}
1174
Evan Chenga09b9ca2009-06-24 23:47:58 +00001175// LEApcrel - Load a pc-relative address into a register without offending the
1176// assembler.
Owen Andersona838a252010-12-14 00:36:49 +00001177def t2ADR : T2PCOneRegImm<(outs rGPR:$Rd),
1178 (ins t2adrlabel:$addr, pred:$p),
Owen Anderson08fef882011-09-09 22:24:36 +00001179 IIC_iALUi, "adr{$p}.w\t$Rd, $addr", []> {
Johnny Chend68e1192009-12-15 17:24:14 +00001180 let Inst{31-27} = 0b11110;
1181 let Inst{25-24} = 0b10;
1182 // Inst{23:21} = '11' (add = FALSE) or '00' (add = TRUE)
1183 let Inst{22} = 0;
1184 let Inst{20} = 0;
1185 let Inst{19-16} = 0b1111; // Rn
1186 let Inst{15} = 0;
Jim Grosbach00f25fa2010-12-14 20:46:39 +00001187
Owen Andersona838a252010-12-14 00:36:49 +00001188 bits<4> Rd;
1189 bits<13> addr;
1190 let Inst{11-8} = Rd;
1191 let Inst{23} = addr{12};
1192 let Inst{21} = addr{12};
1193 let Inst{26} = addr{11};
1194 let Inst{14-12} = addr{10-8};
1195 let Inst{7-0} = addr{7-0};
Owen Anderson08fef882011-09-09 22:24:36 +00001196
1197 let DecoderMethod = "DecodeT2Adr";
Owen Anderson6b8719f2010-12-13 22:51:08 +00001198}
Owen Andersona838a252010-12-14 00:36:49 +00001199
1200let neverHasSideEffects = 1, isReMaterializable = 1 in
Jim Grosbach41b1d4e2010-12-15 18:48:45 +00001201def t2LEApcrel : t2PseudoInst<(outs rGPR:$Rd), (ins i32imm:$label, pred:$p),
Owen Anderson16884412011-07-13 23:22:26 +00001202 4, IIC_iALUi, []>;
Jakob Stoklund Olesen7778ee12012-08-24 21:44:11 +00001203let hasSideEffects = 1 in
Jim Grosbach41b1d4e2010-12-15 18:48:45 +00001204def t2LEApcrelJT : t2PseudoInst<(outs rGPR:$Rd),
1205 (ins i32imm:$label, nohash_imm:$id, pred:$p),
Owen Anderson16884412011-07-13 23:22:26 +00001206 4, IIC_iALUi,
Jim Grosbach41b1d4e2010-12-15 18:48:45 +00001207 []>;
Evan Chenga09b9ca2009-06-24 23:47:58 +00001208
Jim Grosbach60fc2ed2010-12-08 23:30:19 +00001209
Evan Chenga09b9ca2009-06-24 23:47:58 +00001210//===----------------------------------------------------------------------===//
Evan Cheng9cb9e672009-06-27 02:26:13 +00001211// Load / store Instructions.
1212//
1213
Evan Cheng055b0312009-06-29 07:51:04 +00001214// Load
Dan Gohmanbc9d98b2010-02-27 23:47:46 +00001215let canFoldAsLoad = 1, isReMaterializable = 1 in
Owen Anderson9fe72bc2011-08-11 20:40:40 +00001216defm t2LDR : T2I_ld<0, 0b10, "ldr", IIC_iLoad_i, IIC_iLoad_si, GPR,
Evan Cheng0e55fd62010-09-30 01:08:25 +00001217 UnOpFrag<(load node:$Src)>>;
Evan Cheng055b0312009-06-29 07:51:04 +00001218
Evan Chengf3c21b82009-06-30 02:15:48 +00001219// Loads with zero extension
Evan Cheng7e2fe912010-10-28 06:47:08 +00001220defm t2LDRH : T2I_ld<0, 0b01, "ldrh", IIC_iLoad_bh_i, IIC_iLoad_bh_si,
Owen Anderson9fe72bc2011-08-11 20:40:40 +00001221 rGPR, UnOpFrag<(zextloadi16 node:$Src)>>;
Evan Cheng7e2fe912010-10-28 06:47:08 +00001222defm t2LDRB : T2I_ld<0, 0b00, "ldrb", IIC_iLoad_bh_i, IIC_iLoad_bh_si,
Owen Anderson9fe72bc2011-08-11 20:40:40 +00001223 rGPR, UnOpFrag<(zextloadi8 node:$Src)>>;
Evan Cheng055b0312009-06-29 07:51:04 +00001224
Evan Chengf3c21b82009-06-30 02:15:48 +00001225// Loads with sign extension
Evan Cheng7e2fe912010-10-28 06:47:08 +00001226defm t2LDRSH : T2I_ld<1, 0b01, "ldrsh", IIC_iLoad_bh_i, IIC_iLoad_bh_si,
Owen Anderson9fe72bc2011-08-11 20:40:40 +00001227 rGPR, UnOpFrag<(sextloadi16 node:$Src)>>;
Evan Cheng7e2fe912010-10-28 06:47:08 +00001228defm t2LDRSB : T2I_ld<1, 0b00, "ldrsb", IIC_iLoad_bh_i, IIC_iLoad_bh_si,
Owen Anderson9fe72bc2011-08-11 20:40:40 +00001229 rGPR, UnOpFrag<(sextloadi8 node:$Src)>>;
Evan Cheng055b0312009-06-29 07:51:04 +00001230
Owen Anderson9d63d902010-12-01 19:18:46 +00001231let mayLoad = 1, neverHasSideEffects = 1, hasExtraDefRegAllocReq = 1 in {
Evan Chengf3c21b82009-06-30 02:15:48 +00001232// Load doubleword
Owen Anderson9d63d902010-12-01 19:18:46 +00001233def t2LDRDi8 : T2Ii8s4<1, 0, 1, (outs rGPR:$Rt, rGPR:$Rt2),
Evan Chenge298ab22009-09-27 09:46:04 +00001234 (ins t2addrmode_imm8s4:$addr),
Jim Grosbacha77295d2011-09-08 22:07:06 +00001235 IIC_iLoad_d_i, "ldrd", "\t$Rt, $Rt2, $addr", "", []>;
Evan Cheng5fd1c9b2010-05-19 06:07:03 +00001236} // mayLoad = 1, neverHasSideEffects = 1, hasExtraDefRegAllocReq = 1
Evan Chengf3c21b82009-06-30 02:15:48 +00001237
1238// zextload i1 -> zextload i8
1239def : T2Pat<(zextloadi1 t2addrmode_imm12:$addr),
1240 (t2LDRBi12 t2addrmode_imm12:$addr)>;
Jim Grosbacha8307dd2011-09-07 20:58:57 +00001241def : T2Pat<(zextloadi1 t2addrmode_negimm8:$addr),
1242 (t2LDRBi8 t2addrmode_negimm8:$addr)>;
Evan Chengf3c21b82009-06-30 02:15:48 +00001243def : T2Pat<(zextloadi1 t2addrmode_so_reg:$addr),
1244 (t2LDRBs t2addrmode_so_reg:$addr)>;
1245def : T2Pat<(zextloadi1 (ARMWrapper tconstpool:$addr)),
1246 (t2LDRBpci tconstpool:$addr)>;
1247
1248// extload -> zextload
1249// FIXME: Reduce the number of patterns by legalizing extload to zextload
1250// earlier?
1251def : T2Pat<(extloadi1 t2addrmode_imm12:$addr),
1252 (t2LDRBi12 t2addrmode_imm12:$addr)>;
Jim Grosbacha8307dd2011-09-07 20:58:57 +00001253def : T2Pat<(extloadi1 t2addrmode_negimm8:$addr),
1254 (t2LDRBi8 t2addrmode_negimm8:$addr)>;
Evan Chengf3c21b82009-06-30 02:15:48 +00001255def : T2Pat<(extloadi1 t2addrmode_so_reg:$addr),
1256 (t2LDRBs t2addrmode_so_reg:$addr)>;
1257def : T2Pat<(extloadi1 (ARMWrapper tconstpool:$addr)),
1258 (t2LDRBpci tconstpool:$addr)>;
1259
1260def : T2Pat<(extloadi8 t2addrmode_imm12:$addr),
1261 (t2LDRBi12 t2addrmode_imm12:$addr)>;
Jim Grosbacha8307dd2011-09-07 20:58:57 +00001262def : T2Pat<(extloadi8 t2addrmode_negimm8:$addr),
1263 (t2LDRBi8 t2addrmode_negimm8:$addr)>;
Evan Chengf3c21b82009-06-30 02:15:48 +00001264def : T2Pat<(extloadi8 t2addrmode_so_reg:$addr),
1265 (t2LDRBs t2addrmode_so_reg:$addr)>;
1266def : T2Pat<(extloadi8 (ARMWrapper tconstpool:$addr)),
1267 (t2LDRBpci tconstpool:$addr)>;
1268
1269def : T2Pat<(extloadi16 t2addrmode_imm12:$addr),
1270 (t2LDRHi12 t2addrmode_imm12:$addr)>;
Jim Grosbacha8307dd2011-09-07 20:58:57 +00001271def : T2Pat<(extloadi16 t2addrmode_negimm8:$addr),
1272 (t2LDRHi8 t2addrmode_negimm8:$addr)>;
Evan Chengf3c21b82009-06-30 02:15:48 +00001273def : T2Pat<(extloadi16 t2addrmode_so_reg:$addr),
1274 (t2LDRHs t2addrmode_so_reg:$addr)>;
1275def : T2Pat<(extloadi16 (ARMWrapper tconstpool:$addr)),
1276 (t2LDRHpci tconstpool:$addr)>;
Evan Cheng055b0312009-06-29 07:51:04 +00001277
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001278// FIXME: The destination register of the loads and stores can't be PC, but
1279// can be SP. We need another regclass (similar to rGPR) to represent
1280// that. Not a pressing issue since these are selected manually,
1281// not via pattern.
1282
Evan Chenge88d5ce2009-07-02 07:28:31 +00001283// Indexed loads
Owen Anderson6af50f72010-11-30 00:14:31 +00001284
Evan Cheng5fd1c9b2010-05-19 06:07:03 +00001285let mayLoad = 1, neverHasSideEffects = 1 in {
Jim Grosbacheeec0252011-09-08 00:39:19 +00001286def t2LDR_PRE : T2Ipreldst<0, 0b10, 1, 1, (outs GPR:$Rt, GPR:$Rn_wb),
Evan Chenge88d5ce2009-07-02 07:28:31 +00001287 (ins t2addrmode_imm8:$addr),
Evan Cheng0e55fd62010-09-30 01:08:25 +00001288 AddrModeT2_i8, IndexModePre, IIC_iLoad_iu,
Jim Grosbacheeec0252011-09-08 00:39:19 +00001289 "ldr", "\t$Rt, $addr!", "$addr.base = $Rn_wb",
1290 []> {
1291 let AsmMatchConverter = "cvtLdWriteBackRegT2AddrModeImm8";
1292}
Evan Chenge88d5ce2009-07-02 07:28:31 +00001293
Jim Grosbacheeec0252011-09-08 00:39:19 +00001294def t2LDR_POST : T2Ipostldst<0, 0b10, 1, 0, (outs GPR:$Rt, GPR:$Rn_wb),
Jim Grosbache64fb282011-09-08 01:01:32 +00001295 (ins addr_offset_none:$Rn, t2am_imm8_offset:$offset),
1296 AddrModeT2_i8, IndexModePost, IIC_iLoad_iu,
Owen Anderson0781c1f2011-09-23 21:26:40 +00001297 "ldr", "\t$Rt, $Rn$offset", "$Rn = $Rn_wb", []>;
Evan Chenge88d5ce2009-07-02 07:28:31 +00001298
Jim Grosbacheeec0252011-09-08 00:39:19 +00001299def t2LDRB_PRE : T2Ipreldst<0, 0b00, 1, 1, (outs GPR:$Rt, GPR:$Rn_wb),
Evan Chenge88d5ce2009-07-02 07:28:31 +00001300 (ins t2addrmode_imm8:$addr),
Evan Cheng0e55fd62010-09-30 01:08:25 +00001301 AddrModeT2_i8, IndexModePre, IIC_iLoad_bh_iu,
Jim Grosbacheeec0252011-09-08 00:39:19 +00001302 "ldrb", "\t$Rt, $addr!", "$addr.base = $Rn_wb",
1303 []> {
1304 let AsmMatchConverter = "cvtLdWriteBackRegT2AddrModeImm8";
1305}
1306def t2LDRB_POST : T2Ipostldst<0, 0b00, 1, 0, (outs GPR:$Rt, GPR:$Rn_wb),
Jim Grosbache64fb282011-09-08 01:01:32 +00001307 (ins addr_offset_none:$Rn, t2am_imm8_offset:$offset),
1308 AddrModeT2_i8, IndexModePost, IIC_iLoad_bh_iu,
Owen Anderson0781c1f2011-09-23 21:26:40 +00001309 "ldrb", "\t$Rt, $Rn$offset", "$Rn = $Rn_wb", []>;
Evan Chenge88d5ce2009-07-02 07:28:31 +00001310
Jim Grosbacheeec0252011-09-08 00:39:19 +00001311def t2LDRH_PRE : T2Ipreldst<0, 0b01, 1, 1, (outs GPR:$Rt, GPR:$Rn_wb),
Evan Chenge88d5ce2009-07-02 07:28:31 +00001312 (ins t2addrmode_imm8:$addr),
Evan Cheng0e55fd62010-09-30 01:08:25 +00001313 AddrModeT2_i8, IndexModePre, IIC_iLoad_bh_iu,
Jim Grosbacheeec0252011-09-08 00:39:19 +00001314 "ldrh", "\t$Rt, $addr!", "$addr.base = $Rn_wb",
1315 []> {
1316 let AsmMatchConverter = "cvtLdWriteBackRegT2AddrModeImm8";
1317}
1318def t2LDRH_POST : T2Ipostldst<0, 0b01, 1, 0, (outs GPR:$Rt, GPR:$Rn_wb),
Jim Grosbache64fb282011-09-08 01:01:32 +00001319 (ins addr_offset_none:$Rn, t2am_imm8_offset:$offset),
1320 AddrModeT2_i8, IndexModePost, IIC_iLoad_bh_iu,
Owen Anderson0781c1f2011-09-23 21:26:40 +00001321 "ldrh", "\t$Rt, $Rn$offset", "$Rn = $Rn_wb", []>;
Evan Chenge88d5ce2009-07-02 07:28:31 +00001322
Jim Grosbacheeec0252011-09-08 00:39:19 +00001323def t2LDRSB_PRE : T2Ipreldst<1, 0b00, 1, 1, (outs GPR:$Rt, GPR:$Rn_wb),
Evan Cheng4fbb9962009-07-02 23:16:11 +00001324 (ins t2addrmode_imm8:$addr),
Evan Cheng0e55fd62010-09-30 01:08:25 +00001325 AddrModeT2_i8, IndexModePre, IIC_iLoad_bh_iu,
Jim Grosbacheeec0252011-09-08 00:39:19 +00001326 "ldrsb", "\t$Rt, $addr!", "$addr.base = $Rn_wb",
1327 []> {
1328 let AsmMatchConverter = "cvtLdWriteBackRegT2AddrModeImm8";
1329}
1330def t2LDRSB_POST : T2Ipostldst<1, 0b00, 1, 0, (outs GPR:$Rt, GPR:$Rn_wb),
Jim Grosbache64fb282011-09-08 01:01:32 +00001331 (ins addr_offset_none:$Rn, t2am_imm8_offset:$offset),
1332 AddrModeT2_i8, IndexModePost, IIC_iLoad_bh_iu,
Owen Anderson0781c1f2011-09-23 21:26:40 +00001333 "ldrsb", "\t$Rt, $Rn$offset", "$Rn = $Rn_wb", []>;
Evan Cheng4fbb9962009-07-02 23:16:11 +00001334
Jim Grosbacheeec0252011-09-08 00:39:19 +00001335def t2LDRSH_PRE : T2Ipreldst<1, 0b01, 1, 1, (outs GPR:$Rt, GPR:$Rn_wb),
Evan Cheng4fbb9962009-07-02 23:16:11 +00001336 (ins t2addrmode_imm8:$addr),
Evan Cheng0e55fd62010-09-30 01:08:25 +00001337 AddrModeT2_i8, IndexModePre, IIC_iLoad_bh_iu,
Jim Grosbacheeec0252011-09-08 00:39:19 +00001338 "ldrsh", "\t$Rt, $addr!", "$addr.base = $Rn_wb",
1339 []> {
1340 let AsmMatchConverter = "cvtLdWriteBackRegT2AddrModeImm8";
1341}
1342def t2LDRSH_POST : T2Ipostldst<1, 0b01, 1, 0, (outs GPR:$Rt, GPR:$Rn_wb),
Jim Grosbache64fb282011-09-08 01:01:32 +00001343 (ins addr_offset_none:$Rn, t2am_imm8_offset:$offset),
1344 AddrModeT2_i8, IndexModePost, IIC_iLoad_bh_iu,
Owen Anderson0781c1f2011-09-23 21:26:40 +00001345 "ldrsh", "\t$Rt, $Rn$offset", "$Rn = $Rn_wb", []>;
Jim Grosbach7a088642010-11-19 17:11:02 +00001346} // mayLoad = 1, neverHasSideEffects = 1
Evan Cheng4fbb9962009-07-02 23:16:11 +00001347
Jim Grosbachf0eee6e2011-09-07 23:39:14 +00001348// LDRT, LDRBT, LDRHT, LDRSBT, LDRSHT all have offset mode (PUW=0b110).
Johnny Chene54a3ef2010-03-03 18:45:36 +00001349// Ref: A8.6.57 LDR (immediate, Thumb) Encoding T4
Evan Cheng0e55fd62010-09-30 01:08:25 +00001350class T2IldT<bit signed, bits<2> type, string opc, InstrItinClass ii>
Jim Grosbachf0eee6e2011-09-07 23:39:14 +00001351 : T2Ii8<(outs rGPR:$Rt), (ins t2addrmode_posimm8:$addr), ii, opc,
Owen Andersoneb05a8d2010-11-30 18:38:28 +00001352 "\t$Rt, $addr", []> {
Jim Grosbachf0eee6e2011-09-07 23:39:14 +00001353 bits<4> Rt;
1354 bits<13> addr;
Johnny Chene54a3ef2010-03-03 18:45:36 +00001355 let Inst{31-27} = 0b11111;
1356 let Inst{26-25} = 0b00;
1357 let Inst{24} = signed;
1358 let Inst{23} = 0;
1359 let Inst{22-21} = type;
1360 let Inst{20} = 1; // load
Jim Grosbachf0eee6e2011-09-07 23:39:14 +00001361 let Inst{19-16} = addr{12-9};
1362 let Inst{15-12} = Rt;
Johnny Chene54a3ef2010-03-03 18:45:36 +00001363 let Inst{11} = 1;
1364 let Inst{10-8} = 0b110; // PUW.
Jim Grosbachf0eee6e2011-09-07 23:39:14 +00001365 let Inst{7-0} = addr{7-0};
Johnny Chene54a3ef2010-03-03 18:45:36 +00001366}
1367
Evan Cheng0e55fd62010-09-30 01:08:25 +00001368def t2LDRT : T2IldT<0, 0b10, "ldrt", IIC_iLoad_i>;
1369def t2LDRBT : T2IldT<0, 0b00, "ldrbt", IIC_iLoad_bh_i>;
1370def t2LDRHT : T2IldT<0, 0b01, "ldrht", IIC_iLoad_bh_i>;
1371def t2LDRSBT : T2IldT<1, 0b00, "ldrsbt", IIC_iLoad_bh_i>;
1372def t2LDRSHT : T2IldT<1, 0b01, "ldrsht", IIC_iLoad_bh_i>;
Johnny Chene54a3ef2010-03-03 18:45:36 +00001373
David Goodwin73b8f162009-06-30 22:11:34 +00001374// Store
Owen Anderson9fe72bc2011-08-11 20:40:40 +00001375defm t2STR :T2I_st<0b10,"str", IIC_iStore_i, IIC_iStore_si, GPR,
Evan Cheng0e55fd62010-09-30 01:08:25 +00001376 BinOpFrag<(store node:$LHS, node:$RHS)>>;
Evan Cheng7e2fe912010-10-28 06:47:08 +00001377defm t2STRB:T2I_st<0b00,"strb", IIC_iStore_bh_i, IIC_iStore_bh_si,
Owen Anderson9fe72bc2011-08-11 20:40:40 +00001378 rGPR, BinOpFrag<(truncstorei8 node:$LHS, node:$RHS)>>;
Evan Cheng7e2fe912010-10-28 06:47:08 +00001379defm t2STRH:T2I_st<0b01,"strh", IIC_iStore_bh_i, IIC_iStore_bh_si,
Owen Anderson9fe72bc2011-08-11 20:40:40 +00001380 rGPR, BinOpFrag<(truncstorei16 node:$LHS, node:$RHS)>>;
David Goodwin73b8f162009-06-30 22:11:34 +00001381
David Goodwin6647cea2009-06-30 22:50:01 +00001382// Store doubleword
Cameron Zwarichd5751372011-10-16 06:38:06 +00001383let mayStore = 1, neverHasSideEffects = 1, hasExtraSrcRegAllocReq = 1 in
Johnny Chend68e1192009-12-15 17:24:14 +00001384def t2STRDi8 : T2Ii8s4<1, 0, 0, (outs),
Owen Anderson9d63d902010-12-01 19:18:46 +00001385 (ins GPR:$Rt, GPR:$Rt2, t2addrmode_imm8s4:$addr),
Jim Grosbacha77295d2011-09-08 22:07:06 +00001386 IIC_iStore_d_r, "strd", "\t$Rt, $Rt2, $addr", "", []>;
David Goodwin6647cea2009-06-30 22:50:01 +00001387
Evan Cheng6d94f112009-07-03 00:06:39 +00001388// Indexed stores
Cameron Zwarichdaada342011-10-16 06:38:10 +00001389
1390let mayStore = 1, neverHasSideEffects = 1 in {
Jim Grosbacheeec0252011-09-08 00:39:19 +00001391def t2STR_PRE : T2Ipreldst<0, 0b10, 0, 1, (outs GPRnopc:$Rn_wb),
Jim Grosbachb0659872011-12-13 21:10:25 +00001392 (ins GPRnopc:$Rt, t2addrmode_imm8:$addr),
Evan Cheng0e55fd62010-09-30 01:08:25 +00001393 AddrModeT2_i8, IndexModePre, IIC_iStore_iu,
Jim Grosbachee2c2a42011-09-16 21:55:56 +00001394 "str", "\t$Rt, $addr!",
1395 "$addr.base = $Rn_wb,@earlyclobber $Rn_wb", []> {
1396 let AsmMatchConverter = "cvtStWriteBackRegT2AddrModeImm8";
1397}
1398def t2STRH_PRE : T2Ipreldst<0, 0b01, 0, 1, (outs GPRnopc:$Rn_wb),
1399 (ins rGPR:$Rt, t2addrmode_imm8:$addr),
1400 AddrModeT2_i8, IndexModePre, IIC_iStore_iu,
1401 "strh", "\t$Rt, $addr!",
1402 "$addr.base = $Rn_wb,@earlyclobber $Rn_wb", []> {
1403 let AsmMatchConverter = "cvtStWriteBackRegT2AddrModeImm8";
1404}
1405
1406def t2STRB_PRE : T2Ipreldst<0, 0b00, 0, 1, (outs GPRnopc:$Rn_wb),
1407 (ins rGPR:$Rt, t2addrmode_imm8:$addr),
1408 AddrModeT2_i8, IndexModePre, IIC_iStore_bh_iu,
1409 "strb", "\t$Rt, $addr!",
1410 "$addr.base = $Rn_wb,@earlyclobber $Rn_wb", []> {
1411 let AsmMatchConverter = "cvtStWriteBackRegT2AddrModeImm8";
1412}
Eli Friedman0851a292011-10-18 03:17:34 +00001413} // mayStore = 1, neverHasSideEffects = 1
Evan Cheng6d94f112009-07-03 00:06:39 +00001414
Jim Grosbacheeec0252011-09-08 00:39:19 +00001415def t2STR_POST : T2Ipostldst<0, 0b10, 0, 0, (outs GPRnopc:$Rn_wb),
Jim Grosbachb0659872011-12-13 21:10:25 +00001416 (ins GPRnopc:$Rt, addr_offset_none:$Rn,
Jim Grosbach947a24c2011-09-16 21:09:00 +00001417 t2am_imm8_offset:$offset),
Evan Cheng0e55fd62010-09-30 01:08:25 +00001418 AddrModeT2_i8, IndexModePost, IIC_iStore_iu,
Owen Anderson0781c1f2011-09-23 21:26:40 +00001419 "str", "\t$Rt, $Rn$offset",
Jim Grosbacheeec0252011-09-08 00:39:19 +00001420 "$Rn = $Rn_wb,@earlyclobber $Rn_wb",
1421 [(set GPRnopc:$Rn_wb,
Jim Grosbachb0659872011-12-13 21:10:25 +00001422 (post_store GPRnopc:$Rt, addr_offset_none:$Rn,
Jim Grosbach947a24c2011-09-16 21:09:00 +00001423 t2am_imm8_offset:$offset))]>;
Evan Cheng6d94f112009-07-03 00:06:39 +00001424
Jim Grosbacheeec0252011-09-08 00:39:19 +00001425def t2STRH_POST : T2Ipostldst<0, 0b01, 0, 0, (outs GPRnopc:$Rn_wb),
Jim Grosbach947a24c2011-09-16 21:09:00 +00001426 (ins rGPR:$Rt, addr_offset_none:$Rn,
1427 t2am_imm8_offset:$offset),
Evan Cheng0e55fd62010-09-30 01:08:25 +00001428 AddrModeT2_i8, IndexModePost, IIC_iStore_bh_iu,
Owen Anderson0781c1f2011-09-23 21:26:40 +00001429 "strh", "\t$Rt, $Rn$offset",
Jim Grosbacheeec0252011-09-08 00:39:19 +00001430 "$Rn = $Rn_wb,@earlyclobber $Rn_wb",
1431 [(set GPRnopc:$Rn_wb,
Jim Grosbach947a24c2011-09-16 21:09:00 +00001432 (post_truncsti16 rGPR:$Rt, addr_offset_none:$Rn,
1433 t2am_imm8_offset:$offset))]>;
Evan Cheng6d94f112009-07-03 00:06:39 +00001434
Jim Grosbacheeec0252011-09-08 00:39:19 +00001435def t2STRB_POST : T2Ipostldst<0, 0b00, 0, 0, (outs GPRnopc:$Rn_wb),
Jim Grosbach947a24c2011-09-16 21:09:00 +00001436 (ins rGPR:$Rt, addr_offset_none:$Rn,
1437 t2am_imm8_offset:$offset),
Evan Cheng0e55fd62010-09-30 01:08:25 +00001438 AddrModeT2_i8, IndexModePost, IIC_iStore_bh_iu,
Owen Anderson0781c1f2011-09-23 21:26:40 +00001439 "strb", "\t$Rt, $Rn$offset",
Jim Grosbacheeec0252011-09-08 00:39:19 +00001440 "$Rn = $Rn_wb,@earlyclobber $Rn_wb",
1441 [(set GPRnopc:$Rn_wb,
Jim Grosbach947a24c2011-09-16 21:09:00 +00001442 (post_truncsti8 rGPR:$Rt, addr_offset_none:$Rn,
1443 t2am_imm8_offset:$offset))]>;
Evan Cheng6d94f112009-07-03 00:06:39 +00001444
Jim Grosbachee2c2a42011-09-16 21:55:56 +00001445// Pseudo-instructions for pattern matching the pre-indexed stores. We can't
1446// put the patterns on the instruction definitions directly as ISel wants
1447// the address base and offset to be separate operands, not a single
1448// complex operand like we represent the instructions themselves. The
1449// pseudos map between the two.
1450let usesCustomInserter = 1,
1451 Constraints = "$Rn = $Rn_wb,@earlyclobber $Rn_wb" in {
1452def t2STR_preidx: t2PseudoInst<(outs GPRnopc:$Rn_wb),
1453 (ins rGPR:$Rt, GPRnopc:$Rn, t2am_imm8_offset:$offset, pred:$p),
1454 4, IIC_iStore_ru,
1455 [(set GPRnopc:$Rn_wb,
1456 (pre_store rGPR:$Rt, GPRnopc:$Rn, t2am_imm8_offset:$offset))]>;
1457def t2STRB_preidx: t2PseudoInst<(outs GPRnopc:$Rn_wb),
1458 (ins rGPR:$Rt, GPRnopc:$Rn, t2am_imm8_offset:$offset, pred:$p),
1459 4, IIC_iStore_ru,
1460 [(set GPRnopc:$Rn_wb,
1461 (pre_truncsti8 rGPR:$Rt, GPRnopc:$Rn, t2am_imm8_offset:$offset))]>;
1462def t2STRH_preidx: t2PseudoInst<(outs GPRnopc:$Rn_wb),
1463 (ins rGPR:$Rt, GPRnopc:$Rn, t2am_imm8_offset:$offset, pred:$p),
1464 4, IIC_iStore_ru,
1465 [(set GPRnopc:$Rn_wb,
1466 (pre_truncsti16 rGPR:$Rt, GPRnopc:$Rn, t2am_imm8_offset:$offset))]>;
1467}
Jim Grosbachee2c2a42011-09-16 21:55:56 +00001468
Johnny Chene54a3ef2010-03-03 18:45:36 +00001469// STRT, STRBT, STRHT all have offset mode (PUW=0b110) and are for disassembly
1470// only.
1471// Ref: A8.6.193 STR (immediate, Thumb) Encoding T4
Evan Cheng0e55fd62010-09-30 01:08:25 +00001472class T2IstT<bits<2> type, string opc, InstrItinClass ii>
Johnny Chen471d73d2011-04-13 21:04:32 +00001473 : T2Ii8<(outs rGPR:$Rt), (ins t2addrmode_imm8:$addr), ii, opc,
Owen Andersoneb05a8d2010-11-30 18:38:28 +00001474 "\t$Rt, $addr", []> {
Johnny Chene54a3ef2010-03-03 18:45:36 +00001475 let Inst{31-27} = 0b11111;
1476 let Inst{26-25} = 0b00;
1477 let Inst{24} = 0; // not signed
1478 let Inst{23} = 0;
1479 let Inst{22-21} = type;
1480 let Inst{20} = 0; // store
1481 let Inst{11} = 1;
1482 let Inst{10-8} = 0b110; // PUW
Jim Grosbach7721e7f2010-12-02 23:05:38 +00001483
Owen Andersoneb05a8d2010-11-30 18:38:28 +00001484 bits<4> Rt;
1485 bits<13> addr;
Jim Grosbach86386922010-12-08 22:10:43 +00001486 let Inst{15-12} = Rt;
Owen Andersoneb05a8d2010-11-30 18:38:28 +00001487 let Inst{19-16} = addr{12-9};
1488 let Inst{7-0} = addr{7-0};
Johnny Chene54a3ef2010-03-03 18:45:36 +00001489}
1490
Evan Cheng0e55fd62010-09-30 01:08:25 +00001491def t2STRT : T2IstT<0b10, "strt", IIC_iStore_i>;
1492def t2STRBT : T2IstT<0b00, "strbt", IIC_iStore_bh_i>;
1493def t2STRHT : T2IstT<0b01, "strht", IIC_iStore_bh_i>;
David Goodwind1fa1202009-07-01 00:01:13 +00001494
Johnny Chenae1757b2010-03-11 01:13:36 +00001495// ldrd / strd pre / post variants
1496// For disassembly only.
1497
Jim Grosbacha77295d2011-09-08 22:07:06 +00001498def t2LDRD_PRE : T2Ii8s4<1, 1, 1, (outs rGPR:$Rt, rGPR:$Rt2, GPR:$wb),
1499 (ins t2addrmode_imm8s4:$addr), IIC_iLoad_d_ru,
1500 "ldrd", "\t$Rt, $Rt2, $addr!", "$addr.base = $wb", []> {
1501 let AsmMatchConverter = "cvtT2LdrdPre";
1502 let DecoderMethod = "DecodeT2LDRDPreInstruction";
1503}
Johnny Chenae1757b2010-03-11 01:13:36 +00001504
Jim Grosbacha77295d2011-09-08 22:07:06 +00001505def t2LDRD_POST : T2Ii8s4post<0, 1, 1, (outs rGPR:$Rt, rGPR:$Rt2, GPR:$wb),
1506 (ins addr_offset_none:$addr, t2am_imm8s4_offset:$imm),
Owen Anderson7782a582011-09-13 20:46:26 +00001507 IIC_iLoad_d_ru, "ldrd", "\t$Rt, $Rt2, $addr$imm",
Jim Grosbacha77295d2011-09-08 22:07:06 +00001508 "$addr.base = $wb", []>;
Johnny Chenae1757b2010-03-11 01:13:36 +00001509
Jim Grosbacha77295d2011-09-08 22:07:06 +00001510def t2STRD_PRE : T2Ii8s4<1, 1, 0, (outs GPR:$wb),
1511 (ins rGPR:$Rt, rGPR:$Rt2, t2addrmode_imm8s4:$addr),
1512 IIC_iStore_d_ru, "strd", "\t$Rt, $Rt2, $addr!",
1513 "$addr.base = $wb", []> {
1514 let AsmMatchConverter = "cvtT2StrdPre";
1515 let DecoderMethod = "DecodeT2STRDPreInstruction";
1516}
Johnny Chenae1757b2010-03-11 01:13:36 +00001517
Jim Grosbacha77295d2011-09-08 22:07:06 +00001518def t2STRD_POST : T2Ii8s4post<0, 1, 0, (outs GPR:$wb),
1519 (ins rGPR:$Rt, rGPR:$Rt2, addr_offset_none:$addr,
1520 t2am_imm8s4_offset:$imm),
Owen Anderson7782a582011-09-13 20:46:26 +00001521 IIC_iStore_d_ru, "strd", "\t$Rt, $Rt2, $addr$imm",
Jim Grosbacha77295d2011-09-08 22:07:06 +00001522 "$addr.base = $wb", []>;
Evan Cheng2889cce2009-07-03 00:18:36 +00001523
Johnny Chen0635fc52010-03-04 17:40:44 +00001524// T2Ipl (Preload Data/Instruction) signals the memory system of possible future
Jim Grosbacha5813282011-10-26 22:22:01 +00001525// data/instruction access.
Evan Chengdfed19f2010-11-03 06:34:55 +00001526// instr_write is inverted for Thumb mode: (prefetch 3) -> (preload 0),
1527// (prefetch 1) -> (preload 2), (prefetch 2) -> (preload 1).
Evan Cheng416941d2010-11-04 05:19:35 +00001528multiclass T2Ipl<bits<1> write, bits<1> instr, string opc> {
Johnny Chen0635fc52010-03-04 17:40:44 +00001529
Evan Chengdfed19f2010-11-03 06:34:55 +00001530 def i12 : T2Ii12<(outs), (ins t2addrmode_imm12:$addr), IIC_Preload, opc,
Evan Chengbc7deb02010-11-03 05:14:24 +00001531 "\t$addr",
Evan Cheng416941d2010-11-04 05:19:35 +00001532 [(ARMPreload t2addrmode_imm12:$addr, (i32 write), (i32 instr))]> {
Johnny Chen0635fc52010-03-04 17:40:44 +00001533 let Inst{31-25} = 0b1111100;
Evan Cheng416941d2010-11-04 05:19:35 +00001534 let Inst{24} = instr;
Johnny Chen0635fc52010-03-04 17:40:44 +00001535 let Inst{22} = 0;
Evan Cheng416941d2010-11-04 05:19:35 +00001536 let Inst{21} = write;
Johnny Chen0635fc52010-03-04 17:40:44 +00001537 let Inst{20} = 1;
1538 let Inst{15-12} = 0b1111;
Jim Grosbach7721e7f2010-12-02 23:05:38 +00001539
Owen Anderson80dd3e02010-11-30 22:45:47 +00001540 bits<17> addr;
Johnny Chenf9ce2cb2011-04-12 18:48:00 +00001541 let addr{12} = 1; // add = TRUE
Owen Anderson80dd3e02010-11-30 22:45:47 +00001542 let Inst{19-16} = addr{16-13}; // Rn
1543 let Inst{23} = addr{12}; // U
Owen Anderson0e1bcdf2010-11-30 19:19:31 +00001544 let Inst{11-0} = addr{11-0}; // imm12
Johnny Chen0635fc52010-03-04 17:40:44 +00001545 }
1546
Jim Grosbacha8307dd2011-09-07 20:58:57 +00001547 def i8 : T2Ii8<(outs), (ins t2addrmode_negimm8:$addr), IIC_Preload, opc,
Evan Chengbc7deb02010-11-03 05:14:24 +00001548 "\t$addr",
Jim Grosbacha8307dd2011-09-07 20:58:57 +00001549 [(ARMPreload t2addrmode_negimm8:$addr, (i32 write), (i32 instr))]> {
Johnny Chen0635fc52010-03-04 17:40:44 +00001550 let Inst{31-25} = 0b1111100;
Evan Cheng416941d2010-11-04 05:19:35 +00001551 let Inst{24} = instr;
Johnny Chen0635fc52010-03-04 17:40:44 +00001552 let Inst{23} = 0; // U = 0
1553 let Inst{22} = 0;
Evan Cheng416941d2010-11-04 05:19:35 +00001554 let Inst{21} = write;
Johnny Chen0635fc52010-03-04 17:40:44 +00001555 let Inst{20} = 1;
1556 let Inst{15-12} = 0b1111;
1557 let Inst{11-8} = 0b1100;
Jim Grosbach7721e7f2010-12-02 23:05:38 +00001558
Owen Anderson0e1bcdf2010-11-30 19:19:31 +00001559 bits<13> addr;
1560 let Inst{19-16} = addr{12-9}; // Rn
1561 let Inst{7-0} = addr{7-0}; // imm8
Johnny Chen0635fc52010-03-04 17:40:44 +00001562 }
1563
Evan Chengdfed19f2010-11-03 06:34:55 +00001564 def s : T2Iso<(outs), (ins t2addrmode_so_reg:$addr), IIC_Preload, opc,
Evan Chengbc7deb02010-11-03 05:14:24 +00001565 "\t$addr",
Evan Cheng416941d2010-11-04 05:19:35 +00001566 [(ARMPreload t2addrmode_so_reg:$addr, (i32 write), (i32 instr))]> {
Evan Chengbc7deb02010-11-03 05:14:24 +00001567 let Inst{31-25} = 0b1111100;
Evan Cheng416941d2010-11-04 05:19:35 +00001568 let Inst{24} = instr;
Evan Chengbc7deb02010-11-03 05:14:24 +00001569 let Inst{23} = 0; // add = TRUE for T1
1570 let Inst{22} = 0;
Evan Cheng416941d2010-11-04 05:19:35 +00001571 let Inst{21} = write;
Evan Chengbc7deb02010-11-03 05:14:24 +00001572 let Inst{20} = 1;
1573 let Inst{15-12} = 0b1111;
1574 let Inst{11-6} = 0000000;
Jim Grosbach7721e7f2010-12-02 23:05:38 +00001575
Owen Anderson0e1bcdf2010-11-30 19:19:31 +00001576 bits<10> addr;
1577 let Inst{19-16} = addr{9-6}; // Rn
1578 let Inst{3-0} = addr{5-2}; // Rm
1579 let Inst{5-4} = addr{1-0}; // imm2
Owen Anderson8d7d2e12011-08-09 20:55:18 +00001580
1581 let DecoderMethod = "DecodeT2LoadShift";
Evan Chengbc7deb02010-11-03 05:14:24 +00001582 }
Jim Grosbacha5813282011-10-26 22:22:01 +00001583 // FIXME: We should have a separate 'pci' variant here. As-is we represent
1584 // it via the i12 variant, which it's related to, but that means we can
1585 // represent negative immediates, which aren't legal for anything except
1586 // the 'pci' case (Rn == 15).
Johnny Chen0635fc52010-03-04 17:40:44 +00001587}
1588
Evan Cheng416941d2010-11-04 05:19:35 +00001589defm t2PLD : T2Ipl<0, 0, "pld">, Requires<[IsThumb2]>;
1590defm t2PLDW : T2Ipl<1, 0, "pldw">, Requires<[IsThumb2,HasV7,HasMP]>;
1591defm t2PLI : T2Ipl<0, 1, "pli">, Requires<[IsThumb2,HasV7]>;
Johnny Chen0635fc52010-03-04 17:40:44 +00001592
Evan Cheng2889cce2009-07-03 00:18:36 +00001593//===----------------------------------------------------------------------===//
1594// Load / store multiple Instructions.
1595//
1596
Owen Andersoncd00dc62011-09-12 21:28:46 +00001597multiclass thumb2_ld_mult<string asm, InstrItinClass itin,
Bill Wendling6c470b82010-11-13 09:09:38 +00001598 InstrItinClass itin_upd, bit L_bit> {
Bill Wendling73fe34a2010-11-16 01:16:36 +00001599 def IA :
Bill Wendling6c470b82010-11-13 09:09:38 +00001600 T2XI<(outs), (ins GPR:$Rn, pred:$p, reglist:$regs, variable_ops),
Jim Grosbachffa5a762011-09-07 16:22:42 +00001601 itin, !strconcat(asm, "${p}.w\t$Rn, $regs"), []> {
Bill Wendling6c470b82010-11-13 09:09:38 +00001602 bits<4> Rn;
1603 bits<16> regs;
Jim Grosbach7a088642010-11-19 17:11:02 +00001604
Bill Wendling6c470b82010-11-13 09:09:38 +00001605 let Inst{31-27} = 0b11101;
1606 let Inst{26-25} = 0b00;
1607 let Inst{24-23} = 0b01; // Increment After
1608 let Inst{22} = 0;
1609 let Inst{21} = 0; // No writeback
1610 let Inst{20} = L_bit;
1611 let Inst{19-16} = Rn;
Jim Grosbachf8e74f82011-10-24 17:16:24 +00001612 let Inst{15-0} = regs;
Bill Wendling6c470b82010-11-13 09:09:38 +00001613 }
Bill Wendling73fe34a2010-11-16 01:16:36 +00001614 def IA_UPD :
Bill Wendling6c470b82010-11-13 09:09:38 +00001615 T2XIt<(outs GPR:$wb), (ins GPR:$Rn, pred:$p, reglist:$regs, variable_ops),
Jim Grosbachffa5a762011-09-07 16:22:42 +00001616 itin_upd, !strconcat(asm, "${p}.w\t$Rn!, $regs"), "$Rn = $wb", []> {
Bill Wendling6c470b82010-11-13 09:09:38 +00001617 bits<4> Rn;
1618 bits<16> regs;
Jim Grosbach7a088642010-11-19 17:11:02 +00001619
Bill Wendling6c470b82010-11-13 09:09:38 +00001620 let Inst{31-27} = 0b11101;
1621 let Inst{26-25} = 0b00;
1622 let Inst{24-23} = 0b01; // Increment After
1623 let Inst{22} = 0;
1624 let Inst{21} = 1; // Writeback
1625 let Inst{20} = L_bit;
1626 let Inst{19-16} = Rn;
Jim Grosbachf8e74f82011-10-24 17:16:24 +00001627 let Inst{15-0} = regs;
Bill Wendling6c470b82010-11-13 09:09:38 +00001628 }
Bill Wendling73fe34a2010-11-16 01:16:36 +00001629 def DB :
Bill Wendling6c470b82010-11-13 09:09:38 +00001630 T2XI<(outs), (ins GPR:$Rn, pred:$p, reglist:$regs, variable_ops),
Jim Grosbachcfbb3a72011-09-07 18:39:47 +00001631 itin, !strconcat(asm, "db${p}\t$Rn, $regs"), []> {
Bill Wendling6c470b82010-11-13 09:09:38 +00001632 bits<4> Rn;
1633 bits<16> regs;
1634
1635 let Inst{31-27} = 0b11101;
1636 let Inst{26-25} = 0b00;
1637 let Inst{24-23} = 0b10; // Decrement Before
1638 let Inst{22} = 0;
1639 let Inst{21} = 0; // No writeback
1640 let Inst{20} = L_bit;
1641 let Inst{19-16} = Rn;
Jim Grosbachf8e74f82011-10-24 17:16:24 +00001642 let Inst{15-0} = regs;
Bill Wendling6c470b82010-11-13 09:09:38 +00001643 }
Bill Wendling73fe34a2010-11-16 01:16:36 +00001644 def DB_UPD :
Bill Wendling6c470b82010-11-13 09:09:38 +00001645 T2XIt<(outs GPR:$wb), (ins GPR:$Rn, pred:$p, reglist:$regs, variable_ops),
Jim Grosbachcfbb3a72011-09-07 18:39:47 +00001646 itin_upd, !strconcat(asm, "db${p}\t$Rn!, $regs"), "$Rn = $wb", []> {
Bill Wendling6c470b82010-11-13 09:09:38 +00001647 bits<4> Rn;
1648 bits<16> regs;
1649
1650 let Inst{31-27} = 0b11101;
1651 let Inst{26-25} = 0b00;
1652 let Inst{24-23} = 0b10; // Decrement Before
1653 let Inst{22} = 0;
1654 let Inst{21} = 1; // Writeback
1655 let Inst{20} = L_bit;
1656 let Inst{19-16} = Rn;
Jim Grosbachf8e74f82011-10-24 17:16:24 +00001657 let Inst{15-0} = regs;
Bill Wendling6c470b82010-11-13 09:09:38 +00001658 }
1659}
1660
Bill Wendlingc93989a2010-11-13 11:20:05 +00001661let neverHasSideEffects = 1 in {
Bill Wendlingddc918b2010-11-13 10:57:02 +00001662
1663let mayLoad = 1, hasExtraDefRegAllocReq = 1 in
Owen Andersoncd00dc62011-09-12 21:28:46 +00001664defm t2LDM : thumb2_ld_mult<"ldm", IIC_iLoad_m, IIC_iLoad_mu, 1>;
1665
1666multiclass thumb2_st_mult<string asm, InstrItinClass itin,
1667 InstrItinClass itin_upd, bit L_bit> {
1668 def IA :
1669 T2XI<(outs), (ins GPR:$Rn, pred:$p, reglist:$regs, variable_ops),
1670 itin, !strconcat(asm, "${p}.w\t$Rn, $regs"), []> {
1671 bits<4> Rn;
1672 bits<16> regs;
1673
1674 let Inst{31-27} = 0b11101;
1675 let Inst{26-25} = 0b00;
1676 let Inst{24-23} = 0b01; // Increment After
1677 let Inst{22} = 0;
1678 let Inst{21} = 0; // No writeback
1679 let Inst{20} = L_bit;
1680 let Inst{19-16} = Rn;
1681 let Inst{15} = 0;
1682 let Inst{14} = regs{14};
1683 let Inst{13} = 0;
1684 let Inst{12-0} = regs{12-0};
1685 }
1686 def IA_UPD :
1687 T2XIt<(outs GPR:$wb), (ins GPR:$Rn, pred:$p, reglist:$regs, variable_ops),
1688 itin_upd, !strconcat(asm, "${p}.w\t$Rn!, $regs"), "$Rn = $wb", []> {
1689 bits<4> Rn;
1690 bits<16> regs;
1691
1692 let Inst{31-27} = 0b11101;
1693 let Inst{26-25} = 0b00;
1694 let Inst{24-23} = 0b01; // Increment After
1695 let Inst{22} = 0;
1696 let Inst{21} = 1; // Writeback
1697 let Inst{20} = L_bit;
1698 let Inst{19-16} = Rn;
1699 let Inst{15} = 0;
1700 let Inst{14} = regs{14};
1701 let Inst{13} = 0;
1702 let Inst{12-0} = regs{12-0};
1703 }
1704 def DB :
1705 T2XI<(outs), (ins GPR:$Rn, pred:$p, reglist:$regs, variable_ops),
1706 itin, !strconcat(asm, "db${p}\t$Rn, $regs"), []> {
1707 bits<4> Rn;
1708 bits<16> regs;
1709
1710 let Inst{31-27} = 0b11101;
1711 let Inst{26-25} = 0b00;
1712 let Inst{24-23} = 0b10; // Decrement Before
1713 let Inst{22} = 0;
1714 let Inst{21} = 0; // No writeback
1715 let Inst{20} = L_bit;
1716 let Inst{19-16} = Rn;
1717 let Inst{15} = 0;
1718 let Inst{14} = regs{14};
1719 let Inst{13} = 0;
1720 let Inst{12-0} = regs{12-0};
1721 }
1722 def DB_UPD :
1723 T2XIt<(outs GPR:$wb), (ins GPR:$Rn, pred:$p, reglist:$regs, variable_ops),
1724 itin_upd, !strconcat(asm, "db${p}\t$Rn!, $regs"), "$Rn = $wb", []> {
1725 bits<4> Rn;
1726 bits<16> regs;
1727
1728 let Inst{31-27} = 0b11101;
1729 let Inst{26-25} = 0b00;
1730 let Inst{24-23} = 0b10; // Decrement Before
1731 let Inst{22} = 0;
1732 let Inst{21} = 1; // Writeback
1733 let Inst{20} = L_bit;
1734 let Inst{19-16} = Rn;
1735 let Inst{15} = 0;
1736 let Inst{14} = regs{14};
1737 let Inst{13} = 0;
1738 let Inst{12-0} = regs{12-0};
1739 }
1740}
1741
Bill Wendlingddc918b2010-11-13 10:57:02 +00001742
1743let mayStore = 1, hasExtraSrcRegAllocReq = 1 in
Owen Andersoncd00dc62011-09-12 21:28:46 +00001744defm t2STM : thumb2_st_mult<"stm", IIC_iStore_m, IIC_iStore_mu, 0>;
Bill Wendlingddc918b2010-11-13 10:57:02 +00001745
1746} // neverHasSideEffects
1747
Bob Wilson815baeb2010-03-13 01:08:20 +00001748
Evan Cheng9cb9e672009-06-27 02:26:13 +00001749//===----------------------------------------------------------------------===//
Anton Korobeynikov52237112009-06-17 18:13:58 +00001750// Move Instructions.
1751//
Anton Korobeynikov52237112009-06-17 18:13:58 +00001752
Evan Chengf49810c2009-06-23 17:48:47 +00001753let neverHasSideEffects = 1 in
Jim Grosbach1ad60c22011-09-10 00:15:36 +00001754def t2MOVr : T2sTwoReg<(outs GPRnopc:$Rd), (ins GPR:$Rm), IIC_iMOVr,
Owen Andersonc56dcbf2010-11-16 00:29:56 +00001755 "mov", ".w\t$Rd, $Rm", []> {
Johnny Chend68e1192009-12-15 17:24:14 +00001756 let Inst{31-27} = 0b11101;
1757 let Inst{26-25} = 0b01;
1758 let Inst{24-21} = 0b0010;
Johnny Chend68e1192009-12-15 17:24:14 +00001759 let Inst{19-16} = 0b1111; // Rn
1760 let Inst{14-12} = 0b000;
1761 let Inst{7-4} = 0b0000;
1762}
Jim Grosbach9858a482011-10-18 17:09:35 +00001763def : t2InstAlias<"mov${p}.w $Rd, $Rm", (t2MOVr GPRnopc:$Rd, GPR:$Rm,
1764 pred:$p, zero_reg)>;
Jim Grosbach1ad60c22011-09-10 00:15:36 +00001765def : t2InstAlias<"movs${p}.w $Rd, $Rm", (t2MOVr GPRnopc:$Rd, GPR:$Rm,
1766 pred:$p, CPSR)>;
1767def : t2InstAlias<"movs${p} $Rd, $Rm", (t2MOVr GPRnopc:$Rd, GPR:$Rm,
1768 pred:$p, CPSR)>;
Evan Chengf49810c2009-06-23 17:48:47 +00001769
Evan Cheng5adb66a2009-09-28 09:14:39 +00001770// AddedComplexity to ensure isel tries t2MOVi before t2MOVi16.
Evan Chengc4af4632010-11-17 20:13:28 +00001771let isReMaterializable = 1, isAsCheapAsAMove = 1, isMoveImm = 1,
1772 AddedComplexity = 1 in
Owen Andersonc56dcbf2010-11-16 00:29:56 +00001773def t2MOVi : T2sOneRegImm<(outs rGPR:$Rd), (ins t2_so_imm:$imm), IIC_iMOVi,
1774 "mov", ".w\t$Rd, $imm",
1775 [(set rGPR:$Rd, t2_so_imm:$imm)]> {
Johnny Chend68e1192009-12-15 17:24:14 +00001776 let Inst{31-27} = 0b11110;
1777 let Inst{25} = 0;
1778 let Inst{24-21} = 0b0010;
Johnny Chend68e1192009-12-15 17:24:14 +00001779 let Inst{19-16} = 0b1111; // Rn
1780 let Inst{15} = 0;
1781}
David Goodwin83b35932009-06-26 16:10:07 +00001782
Jim Grosbach1ad60c22011-09-10 00:15:36 +00001783// cc_out is handled as part of the explicit mnemonic in the parser for 'mov'.
1784// Use aliases to get that to play nice here.
1785def : t2InstAlias<"movs${p}.w $Rd, $imm", (t2MOVi rGPR:$Rd, t2_so_imm:$imm,
1786 pred:$p, CPSR)>;
1787def : t2InstAlias<"movs${p} $Rd, $imm", (t2MOVi rGPR:$Rd, t2_so_imm:$imm,
1788 pred:$p, CPSR)>;
1789
1790def : t2InstAlias<"mov${p}.w $Rd, $imm", (t2MOVi rGPR:$Rd, t2_so_imm:$imm,
1791 pred:$p, zero_reg)>;
1792def : t2InstAlias<"mov${p} $Rd, $imm", (t2MOVi rGPR:$Rd, t2_so_imm:$imm,
1793 pred:$p, zero_reg)>;
Jim Grosbach6b8f1e32011-06-27 23:54:06 +00001794
Evan Chengc4af4632010-11-17 20:13:28 +00001795let isReMaterializable = 1, isAsCheapAsAMove = 1, isMoveImm = 1 in
Jim Grosbachffa32252011-07-19 19:13:28 +00001796def t2MOVi16 : T2I<(outs rGPR:$Rd), (ins imm0_65535_expr:$imm), IIC_iMOVi,
Owen Andersonc56dcbf2010-11-16 00:29:56 +00001797 "movw", "\t$Rd, $imm",
1798 [(set rGPR:$Rd, imm0_65535:$imm)]> {
Johnny Chend68e1192009-12-15 17:24:14 +00001799 let Inst{31-27} = 0b11110;
1800 let Inst{25} = 1;
1801 let Inst{24-21} = 0b0010;
1802 let Inst{20} = 0; // The S bit.
1803 let Inst{15} = 0;
Jim Grosbach7a088642010-11-19 17:11:02 +00001804
Owen Andersonc56dcbf2010-11-16 00:29:56 +00001805 bits<4> Rd;
1806 bits<16> imm;
Jim Grosbach7a088642010-11-19 17:11:02 +00001807
Jim Grosbach86386922010-12-08 22:10:43 +00001808 let Inst{11-8} = Rd;
Owen Andersonc56dcbf2010-11-16 00:29:56 +00001809 let Inst{19-16} = imm{15-12};
1810 let Inst{26} = imm{11};
1811 let Inst{14-12} = imm{10-8};
1812 let Inst{7-0} = imm{7-0};
Kevin Enderby9e5887b2011-10-04 22:44:48 +00001813 let DecoderMethod = "DecodeT2MOVTWInstruction";
Johnny Chend68e1192009-12-15 17:24:14 +00001814}
Evan Chengf49810c2009-06-23 17:48:47 +00001815
Evan Cheng53519f02011-01-21 18:55:51 +00001816def t2MOVi16_ga_pcrel : PseudoInst<(outs rGPR:$Rd),
Evan Cheng5de5d4b2011-01-17 08:03:18 +00001817 (ins i32imm:$addr, pclabel:$id), IIC_iMOVi, []>;
1818
1819let Constraints = "$src = $Rd" in {
Evan Cheng75972122011-01-13 07:58:56 +00001820def t2MOVTi16 : T2I<(outs rGPR:$Rd),
Jim Grosbachffa32252011-07-19 19:13:28 +00001821 (ins rGPR:$src, imm0_65535_expr:$imm), IIC_iMOVi,
Owen Andersonc56dcbf2010-11-16 00:29:56 +00001822 "movt", "\t$Rd, $imm",
1823 [(set rGPR:$Rd,
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001824 (or (and rGPR:$src, 0xffff), lo16AllZero:$imm))]> {
Johnny Chend68e1192009-12-15 17:24:14 +00001825 let Inst{31-27} = 0b11110;
1826 let Inst{25} = 1;
1827 let Inst{24-21} = 0b0110;
1828 let Inst{20} = 0; // The S bit.
1829 let Inst{15} = 0;
Jim Grosbach7a088642010-11-19 17:11:02 +00001830
Owen Andersonc56dcbf2010-11-16 00:29:56 +00001831 bits<4> Rd;
1832 bits<16> imm;
Jim Grosbach7a088642010-11-19 17:11:02 +00001833
Jim Grosbach86386922010-12-08 22:10:43 +00001834 let Inst{11-8} = Rd;
Owen Andersonc56dcbf2010-11-16 00:29:56 +00001835 let Inst{19-16} = imm{15-12};
1836 let Inst{26} = imm{11};
1837 let Inst{14-12} = imm{10-8};
1838 let Inst{7-0} = imm{7-0};
Kevin Enderby9e5887b2011-10-04 22:44:48 +00001839 let DecoderMethod = "DecodeT2MOVTWInstruction";
Johnny Chend68e1192009-12-15 17:24:14 +00001840}
Anton Korobeynikov52237112009-06-17 18:13:58 +00001841
Evan Cheng53519f02011-01-21 18:55:51 +00001842def t2MOVTi16_ga_pcrel : PseudoInst<(outs rGPR:$Rd),
Evan Cheng5de5d4b2011-01-17 08:03:18 +00001843 (ins rGPR:$src, i32imm:$addr, pclabel:$id), IIC_iMOVi, []>;
1844} // Constraints
1845
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001846def : T2Pat<(or rGPR:$src, 0xffff0000), (t2MOVTi16 rGPR:$src, 0xffff)>;
Evan Cheng20956592009-10-21 08:15:52 +00001847
Anton Korobeynikov52237112009-06-17 18:13:58 +00001848//===----------------------------------------------------------------------===//
Evan Chengd27c9fc2009-07-03 01:43:10 +00001849// Extend Instructions.
1850//
1851
1852// Sign extenders
1853
Jim Grosbachc5a8c862011-07-27 16:47:19 +00001854def t2SXTB : T2I_ext_rrot<0b100, "sxtb",
Johnny Chend68e1192009-12-15 17:24:14 +00001855 UnOpFrag<(sext_inreg node:$Src, i8)>>;
Jim Grosbachc5a8c862011-07-27 16:47:19 +00001856def t2SXTH : T2I_ext_rrot<0b000, "sxth",
Johnny Chend68e1192009-12-15 17:24:14 +00001857 UnOpFrag<(sext_inreg node:$Src, i16)>>;
Jim Grosbach70327412011-07-27 17:48:13 +00001858def t2SXTB16 : T2I_ext_rrot_sxtb16<0b010, "sxtb16">;
Evan Chengd27c9fc2009-07-03 01:43:10 +00001859
Jim Grosbach70327412011-07-27 17:48:13 +00001860def t2SXTAB : T2I_exta_rrot<0b100, "sxtab",
Evan Chengd27c9fc2009-07-03 01:43:10 +00001861 BinOpFrag<(add node:$LHS, (sext_inreg node:$RHS, i8))>>;
Jim Grosbach70327412011-07-27 17:48:13 +00001862def t2SXTAH : T2I_exta_rrot<0b000, "sxtah",
Evan Chengd27c9fc2009-07-03 01:43:10 +00001863 BinOpFrag<(add node:$LHS, (sext_inreg node:$RHS,i16))>>;
Jim Grosbach70327412011-07-27 17:48:13 +00001864def t2SXTAB16 : T2I_exta_rrot_np<0b010, "sxtab16">;
Evan Chengd27c9fc2009-07-03 01:43:10 +00001865
Evan Chengd27c9fc2009-07-03 01:43:10 +00001866// Zero extenders
1867
1868let AddedComplexity = 16 in {
Jim Grosbachc5a8c862011-07-27 16:47:19 +00001869def t2UXTB : T2I_ext_rrot<0b101, "uxtb",
Johnny Chend68e1192009-12-15 17:24:14 +00001870 UnOpFrag<(and node:$Src, 0x000000FF)>>;
Jim Grosbachc5a8c862011-07-27 16:47:19 +00001871def t2UXTH : T2I_ext_rrot<0b001, "uxth",
Johnny Chend68e1192009-12-15 17:24:14 +00001872 UnOpFrag<(and node:$Src, 0x0000FFFF)>>;
Jim Grosbach70327412011-07-27 17:48:13 +00001873def t2UXTB16 : T2I_ext_rrot_uxtb16<0b011, "uxtb16",
Johnny Chend68e1192009-12-15 17:24:14 +00001874 UnOpFrag<(and node:$Src, 0x00FF00FF)>>;
Evan Chengd27c9fc2009-07-03 01:43:10 +00001875
Jim Grosbach79464942010-07-28 23:17:45 +00001876// FIXME: This pattern incorrectly assumes the shl operator is a rotate.
1877// The transformation should probably be done as a combiner action
1878// instead so we can include a check for masking back in the upper
1879// eight bits of the source into the lower eight bits of the result.
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001880//def : T2Pat<(and (shl rGPR:$Src, (i32 8)), 0xFF00FF),
Jim Grosbach70327412011-07-27 17:48:13 +00001881// (t2UXTB16 rGPR:$Src, 3)>,
Jim Grosbach9729d2e2010-11-01 15:59:52 +00001882// Requires<[HasT2ExtractPack, IsThumb2]>;
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001883def : T2Pat<(and (srl rGPR:$Src, (i32 8)), 0xFF00FF),
Jim Grosbach70327412011-07-27 17:48:13 +00001884 (t2UXTB16 rGPR:$Src, 1)>,
Jim Grosbach9729d2e2010-11-01 15:59:52 +00001885 Requires<[HasT2ExtractPack, IsThumb2]>;
Evan Chengd27c9fc2009-07-03 01:43:10 +00001886
Jim Grosbach70327412011-07-27 17:48:13 +00001887def t2UXTAB : T2I_exta_rrot<0b101, "uxtab",
Jim Grosbach6935efc2009-11-24 00:20:27 +00001888 BinOpFrag<(add node:$LHS, (and node:$RHS, 0x00FF))>>;
Jim Grosbach70327412011-07-27 17:48:13 +00001889def t2UXTAH : T2I_exta_rrot<0b001, "uxtah",
Jim Grosbach6935efc2009-11-24 00:20:27 +00001890 BinOpFrag<(add node:$LHS, (and node:$RHS, 0xFFFF))>>;
Jim Grosbach70327412011-07-27 17:48:13 +00001891def t2UXTAB16 : T2I_exta_rrot_np<0b011, "uxtab16">;
Evan Chengd27c9fc2009-07-03 01:43:10 +00001892}
1893
1894//===----------------------------------------------------------------------===//
Anton Korobeynikov52237112009-06-17 18:13:58 +00001895// Arithmetic Instructions.
1896//
Anton Korobeynikov52237112009-06-17 18:13:58 +00001897
Johnny Chend68e1192009-12-15 17:24:14 +00001898defm t2ADD : T2I_bin_ii12rs<0b000, "add",
1899 BinOpFrag<(add node:$LHS, node:$RHS)>, 1>;
1900defm t2SUB : T2I_bin_ii12rs<0b101, "sub",
1901 BinOpFrag<(sub node:$LHS, node:$RHS)>>;
Anton Korobeynikov52237112009-06-17 18:13:58 +00001902
Evan Chengf49810c2009-06-23 17:48:47 +00001903// ADD and SUB with 's' bit set. No 12-bit immediate (T4) variants.
Andrew Trick3be654f2011-09-21 02:20:46 +00001904//
1905// Currently, t2ADDS/t2SUBS are pseudo opcodes that exist only in the
1906// selection DAG. They are "lowered" to real t2ADD/t2SUB opcodes by
1907// AdjustInstrPostInstrSelection where we determine whether or not to
1908// set the "s" bit based on CPSR liveness.
1909//
1910// FIXME: Eliminate t2ADDS/t2SUBS pseudo opcodes after adding tablegen
1911// support for an optional CPSR definition that corresponds to the DAG
1912// node's second value. We can then eliminate the implicit def of CPSR.
Andrew Trick90b7b122011-10-18 19:18:52 +00001913defm t2ADDS : T2I_bin_s_irs <IIC_iALUi, IIC_iALUr, IIC_iALUsi,
Evan Cheng342e3162011-08-30 01:34:54 +00001914 BinOpFrag<(ARMaddc node:$LHS, node:$RHS)>, 1>;
Andrew Trick90b7b122011-10-18 19:18:52 +00001915defm t2SUBS : T2I_bin_s_irs <IIC_iALUi, IIC_iALUr, IIC_iALUsi,
Evan Cheng342e3162011-08-30 01:34:54 +00001916 BinOpFrag<(ARMsubc node:$LHS, node:$RHS)>>;
Anton Korobeynikov52237112009-06-17 18:13:58 +00001917
Andrew Trick83a80312011-09-20 18:22:31 +00001918let hasPostISelHook = 1 in {
Johnny Chend68e1192009-12-15 17:24:14 +00001919defm t2ADC : T2I_adde_sube_irs<0b1010, "adc",
Evan Cheng342e3162011-08-30 01:34:54 +00001920 BinOpWithFlagFrag<(ARMadde node:$LHS, node:$RHS, node:$FLAG)>, 1>;
Johnny Chend68e1192009-12-15 17:24:14 +00001921defm t2SBC : T2I_adde_sube_irs<0b1011, "sbc",
Evan Cheng342e3162011-08-30 01:34:54 +00001922 BinOpWithFlagFrag<(ARMsube node:$LHS, node:$RHS, node:$FLAG)>>;
Andrew Trick83a80312011-09-20 18:22:31 +00001923}
Evan Chengf49810c2009-06-23 17:48:47 +00001924
David Goodwin752aa7d2009-07-27 16:39:05 +00001925// RSB
Bob Wilson20d8e4e2010-08-13 23:24:25 +00001926defm t2RSB : T2I_rbin_irs <0b1110, "rsb",
Johnny Chend68e1192009-12-15 17:24:14 +00001927 BinOpFrag<(sub node:$LHS, node:$RHS)>>;
Evan Cheng4a517082011-09-06 18:52:20 +00001928
1929// FIXME: Eliminate them if we can write def : Pat patterns which defines
1930// CPSR and the implicit def of CPSR is not needed.
Andrew Trick90b7b122011-10-18 19:18:52 +00001931defm t2RSBS : T2I_rbin_s_is <BinOpFrag<(ARMsubc node:$LHS, node:$RHS)>>;
Evan Chengf49810c2009-06-23 17:48:47 +00001932
1933// (sub X, imm) gets canonicalized to (add X, -imm). Match this form.
Jim Grosbach502e0aa2010-07-14 17:45:16 +00001934// The assume-no-carry-in form uses the negation of the input since add/sub
1935// assume opposite meanings of the carry flag (i.e., carry == !borrow).
1936// See the definition of AddWithCarry() in the ARM ARM A2.2.1 for the gory
1937// details.
1938// The AddedComplexity preferences the first variant over the others since
1939// it can be shrunk to a 16-bit wide encoding, while the others cannot.
Evan Chengfa2ea1a2009-08-04 01:41:15 +00001940let AddedComplexity = 1 in
Jim Grosbach502e0aa2010-07-14 17:45:16 +00001941def : T2Pat<(add GPR:$src, imm0_255_neg:$imm),
1942 (t2SUBri GPR:$src, imm0_255_neg:$imm)>;
1943def : T2Pat<(add GPR:$src, t2_so_imm_neg:$imm),
1944 (t2SUBri GPR:$src, t2_so_imm_neg:$imm)>;
1945def : T2Pat<(add GPR:$src, imm0_4095_neg:$imm),
1946 (t2SUBri12 GPR:$src, imm0_4095_neg:$imm)>;
Evan Chengfc472532012-06-23 00:29:06 +00001947def : T2Pat<(add GPR:$src, imm0_65535_neg:$imm),
1948 (t2SUBrr GPR:$src, (t2MOVi16 (imm_neg_XFORM imm:$imm)))>;
1949
Jim Grosbach502e0aa2010-07-14 17:45:16 +00001950let AddedComplexity = 1 in
Evan Cheng342e3162011-08-30 01:34:54 +00001951def : T2Pat<(ARMaddc rGPR:$src, imm0_255_neg:$imm),
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001952 (t2SUBSri rGPR:$src, imm0_255_neg:$imm)>;
Evan Cheng342e3162011-08-30 01:34:54 +00001953def : T2Pat<(ARMaddc rGPR:$src, t2_so_imm_neg:$imm),
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001954 (t2SUBSri rGPR:$src, t2_so_imm_neg:$imm)>;
Evan Chengfc472532012-06-23 00:29:06 +00001955def : T2Pat<(ARMaddc rGPR:$src, imm0_65535_neg:$imm),
1956 (t2SUBSrr rGPR:$src, (t2MOVi16 (imm_neg_XFORM imm:$imm)))>;
Jim Grosbach502e0aa2010-07-14 17:45:16 +00001957// The with-carry-in form matches bitwise not instead of the negation.
1958// Effectively, the inverse interpretation of the carry flag already accounts
1959// for part of the negation.
1960let AddedComplexity = 1 in
Evan Cheng342e3162011-08-30 01:34:54 +00001961def : T2Pat<(ARMadde rGPR:$src, imm0_255_not:$imm, CPSR),
Andrew Trick1c3af772011-04-23 03:55:32 +00001962 (t2SBCri rGPR:$src, imm0_255_not:$imm)>;
Evan Cheng342e3162011-08-30 01:34:54 +00001963def : T2Pat<(ARMadde rGPR:$src, t2_so_imm_not:$imm, CPSR),
Andrew Trick1c3af772011-04-23 03:55:32 +00001964 (t2SBCri rGPR:$src, t2_so_imm_not:$imm)>;
Evan Chengfc472532012-06-23 00:29:06 +00001965def : T2Pat<(ARMadde rGPR:$src, imm0_65535_neg:$imm, CPSR),
1966 (t2SBCrr rGPR:$src, (t2MOVi16 (imm_neg_XFORM imm:$imm)))>;
Anton Korobeynikov52237112009-06-17 18:13:58 +00001967
Johnny Chen93042d12010-03-02 18:14:57 +00001968// Select Bytes -- for disassembly only
1969
Owen Andersonc7373f82010-11-30 20:00:01 +00001970def t2SEL : T2ThreeReg<(outs GPR:$Rd), (ins GPR:$Rn, GPR:$Rm),
Jim Grosbacha7603982011-07-01 21:12:19 +00001971 NoItinerary, "sel", "\t$Rd, $Rn, $Rm", []>,
1972 Requires<[IsThumb2, HasThumb2DSP]> {
Johnny Chen93042d12010-03-02 18:14:57 +00001973 let Inst{31-27} = 0b11111;
1974 let Inst{26-24} = 0b010;
1975 let Inst{23} = 0b1;
1976 let Inst{22-20} = 0b010;
1977 let Inst{15-12} = 0b1111;
1978 let Inst{7} = 0b1;
1979 let Inst{6-4} = 0b000;
1980}
1981
Johnny Chenadc77332010-02-26 22:04:29 +00001982// A6.3.13, A6.3.14, A6.3.15 Parallel addition and subtraction (signed/unsigned)
1983// And Miscellaneous operations -- for disassembly only
Nate Begeman692433b2010-07-29 17:56:55 +00001984class T2I_pam<bits<3> op22_20, bits<4> op7_4, string opc,
Bruno Cardoso Lopes03016002011-01-21 14:07:40 +00001985 list<dag> pat = [/* For disassembly only; pattern left blank */],
1986 dag iops = (ins rGPR:$Rn, rGPR:$Rm),
1987 string asm = "\t$Rd, $Rn, $Rm">
Jim Grosbacha7603982011-07-01 21:12:19 +00001988 : T2I<(outs rGPR:$Rd), iops, NoItinerary, opc, asm, pat>,
1989 Requires<[IsThumb2, HasThumb2DSP]> {
Johnny Chenadc77332010-02-26 22:04:29 +00001990 let Inst{31-27} = 0b11111;
1991 let Inst{26-23} = 0b0101;
1992 let Inst{22-20} = op22_20;
1993 let Inst{15-12} = 0b1111;
1994 let Inst{7-4} = op7_4;
Jim Grosbach7a088642010-11-19 17:11:02 +00001995
Owen Anderson46c478e2010-11-17 19:57:38 +00001996 bits<4> Rd;
1997 bits<4> Rn;
1998 bits<4> Rm;
Jim Grosbach7a088642010-11-19 17:11:02 +00001999
Jim Grosbach86386922010-12-08 22:10:43 +00002000 let Inst{11-8} = Rd;
2001 let Inst{19-16} = Rn;
2002 let Inst{3-0} = Rm;
Johnny Chenadc77332010-02-26 22:04:29 +00002003}
2004
2005// Saturating add/subtract -- for disassembly only
2006
Nate Begeman692433b2010-07-29 17:56:55 +00002007def t2QADD : T2I_pam<0b000, 0b1000, "qadd",
Bruno Cardoso Lopes03016002011-01-21 14:07:40 +00002008 [(set rGPR:$Rd, (int_arm_qadd rGPR:$Rn, rGPR:$Rm))],
2009 (ins rGPR:$Rm, rGPR:$Rn), "\t$Rd, $Rm, $Rn">;
Johnny Chenadc77332010-02-26 22:04:29 +00002010def t2QADD16 : T2I_pam<0b001, 0b0001, "qadd16">;
2011def t2QADD8 : T2I_pam<0b000, 0b0001, "qadd8">;
2012def t2QASX : T2I_pam<0b010, 0b0001, "qasx">;
Bruno Cardoso Lopes03016002011-01-21 14:07:40 +00002013def t2QDADD : T2I_pam<0b000, 0b1001, "qdadd", [],
2014 (ins rGPR:$Rm, rGPR:$Rn), "\t$Rd, $Rm, $Rn">;
2015def t2QDSUB : T2I_pam<0b000, 0b1011, "qdsub", [],
2016 (ins rGPR:$Rm, rGPR:$Rn), "\t$Rd, $Rm, $Rn">;
Johnny Chenadc77332010-02-26 22:04:29 +00002017def t2QSAX : T2I_pam<0b110, 0b0001, "qsax">;
Nate Begeman692433b2010-07-29 17:56:55 +00002018def t2QSUB : T2I_pam<0b000, 0b1010, "qsub",
Bruno Cardoso Lopes03016002011-01-21 14:07:40 +00002019 [(set rGPR:$Rd, (int_arm_qsub rGPR:$Rn, rGPR:$Rm))],
2020 (ins rGPR:$Rm, rGPR:$Rn), "\t$Rd, $Rm, $Rn">;
Johnny Chenadc77332010-02-26 22:04:29 +00002021def t2QSUB16 : T2I_pam<0b101, 0b0001, "qsub16">;
2022def t2QSUB8 : T2I_pam<0b100, 0b0001, "qsub8">;
2023def t2UQADD16 : T2I_pam<0b001, 0b0101, "uqadd16">;
2024def t2UQADD8 : T2I_pam<0b000, 0b0101, "uqadd8">;
2025def t2UQASX : T2I_pam<0b010, 0b0101, "uqasx">;
2026def t2UQSAX : T2I_pam<0b110, 0b0101, "uqsax">;
2027def t2UQSUB16 : T2I_pam<0b101, 0b0101, "uqsub16">;
2028def t2UQSUB8 : T2I_pam<0b100, 0b0101, "uqsub8">;
2029
2030// Signed/Unsigned add/subtract -- for disassembly only
2031
2032def t2SASX : T2I_pam<0b010, 0b0000, "sasx">;
2033def t2SADD16 : T2I_pam<0b001, 0b0000, "sadd16">;
2034def t2SADD8 : T2I_pam<0b000, 0b0000, "sadd8">;
2035def t2SSAX : T2I_pam<0b110, 0b0000, "ssax">;
2036def t2SSUB16 : T2I_pam<0b101, 0b0000, "ssub16">;
2037def t2SSUB8 : T2I_pam<0b100, 0b0000, "ssub8">;
2038def t2UASX : T2I_pam<0b010, 0b0100, "uasx">;
2039def t2UADD16 : T2I_pam<0b001, 0b0100, "uadd16">;
2040def t2UADD8 : T2I_pam<0b000, 0b0100, "uadd8">;
2041def t2USAX : T2I_pam<0b110, 0b0100, "usax">;
2042def t2USUB16 : T2I_pam<0b101, 0b0100, "usub16">;
2043def t2USUB8 : T2I_pam<0b100, 0b0100, "usub8">;
2044
2045// Signed/Unsigned halving add/subtract -- for disassembly only
2046
2047def t2SHASX : T2I_pam<0b010, 0b0010, "shasx">;
2048def t2SHADD16 : T2I_pam<0b001, 0b0010, "shadd16">;
2049def t2SHADD8 : T2I_pam<0b000, 0b0010, "shadd8">;
2050def t2SHSAX : T2I_pam<0b110, 0b0010, "shsax">;
2051def t2SHSUB16 : T2I_pam<0b101, 0b0010, "shsub16">;
2052def t2SHSUB8 : T2I_pam<0b100, 0b0010, "shsub8">;
2053def t2UHASX : T2I_pam<0b010, 0b0110, "uhasx">;
2054def t2UHADD16 : T2I_pam<0b001, 0b0110, "uhadd16">;
2055def t2UHADD8 : T2I_pam<0b000, 0b0110, "uhadd8">;
2056def t2UHSAX : T2I_pam<0b110, 0b0110, "uhsax">;
2057def t2UHSUB16 : T2I_pam<0b101, 0b0110, "uhsub16">;
2058def t2UHSUB8 : T2I_pam<0b100, 0b0110, "uhsub8">;
2059
Owen Anderson821752e2010-11-18 20:32:18 +00002060// Helper class for disassembly only
2061// A6.3.16 & A6.3.17
2062// T2Imac - Thumb2 multiply [accumulate, and absolute difference] instructions.
2063class T2ThreeReg_mac<bit long, bits<3> op22_20, bits<4> op7_4, dag oops,
2064 dag iops, InstrItinClass itin, string opc, string asm, list<dag> pattern>
2065 : T2ThreeReg<oops, iops, itin, opc, asm, pattern> {
2066 let Inst{31-27} = 0b11111;
2067 let Inst{26-24} = 0b011;
2068 let Inst{23} = long;
2069 let Inst{22-20} = op22_20;
2070 let Inst{7-4} = op7_4;
2071}
2072
2073class T2FourReg_mac<bit long, bits<3> op22_20, bits<4> op7_4, dag oops,
2074 dag iops, InstrItinClass itin, string opc, string asm, list<dag> pattern>
2075 : T2FourReg<oops, iops, itin, opc, asm, pattern> {
2076 let Inst{31-27} = 0b11111;
2077 let Inst{26-24} = 0b011;
2078 let Inst{23} = long;
2079 let Inst{22-20} = op22_20;
2080 let Inst{7-4} = op7_4;
2081}
2082
Jim Grosbach8c989842011-09-20 00:26:34 +00002083// Unsigned Sum of Absolute Differences [and Accumulate].
Owen Anderson821752e2010-11-18 20:32:18 +00002084def t2USAD8 : T2ThreeReg_mac<0, 0b111, 0b0000, (outs rGPR:$Rd),
2085 (ins rGPR:$Rn, rGPR:$Rm),
Jim Grosbacha7603982011-07-01 21:12:19 +00002086 NoItinerary, "usad8", "\t$Rd, $Rn, $Rm", []>,
2087 Requires<[IsThumb2, HasThumb2DSP]> {
Johnny Chenadc77332010-02-26 22:04:29 +00002088 let Inst{15-12} = 0b1111;
2089}
Owen Anderson821752e2010-11-18 20:32:18 +00002090def t2USADA8 : T2FourReg_mac<0, 0b111, 0b0000, (outs rGPR:$Rd),
Jim Grosbach7a088642010-11-19 17:11:02 +00002091 (ins rGPR:$Rn, rGPR:$Rm, rGPR:$Ra), NoItinerary,
Jim Grosbacha7603982011-07-01 21:12:19 +00002092 "usada8", "\t$Rd, $Rn, $Rm, $Ra", []>,
2093 Requires<[IsThumb2, HasThumb2DSP]>;
Johnny Chenadc77332010-02-26 22:04:29 +00002094
Jim Grosbach8c989842011-09-20 00:26:34 +00002095// Signed/Unsigned saturate.
Owen Anderson46c478e2010-11-17 19:57:38 +00002096class T2SatI<dag oops, dag iops, InstrItinClass itin,
2097 string opc, string asm, list<dag> pattern>
Jim Grosbach7a088642010-11-19 17:11:02 +00002098 : T2I<oops, iops, itin, opc, asm, pattern> {
Owen Anderson46c478e2010-11-17 19:57:38 +00002099 bits<4> Rd;
2100 bits<4> Rn;
2101 bits<5> sat_imm;
2102 bits<7> sh;
Jim Grosbach7a088642010-11-19 17:11:02 +00002103
Jim Grosbach86386922010-12-08 22:10:43 +00002104 let Inst{11-8} = Rd;
2105 let Inst{19-16} = Rn;
Jim Grosbach580f4a92011-07-25 22:20:28 +00002106 let Inst{4-0} = sat_imm;
2107 let Inst{21} = sh{5};
Owen Anderson46c478e2010-11-17 19:57:38 +00002108 let Inst{14-12} = sh{4-2};
2109 let Inst{7-6} = sh{1-0};
2110}
2111
Owen Andersonc7373f82010-11-30 20:00:01 +00002112def t2SSAT: T2SatI<
Owen Anderson0afa0092011-09-26 21:06:22 +00002113 (outs rGPR:$Rd),
2114 (ins imm1_32:$sat_imm, rGPR:$Rn, t2_shift_imm:$sh),
Jim Grosbach8c989842011-09-20 00:26:34 +00002115 NoItinerary, "ssat", "\t$Rd, $sat_imm, $Rn$sh", []> {
Johnny Chenadc77332010-02-26 22:04:29 +00002116 let Inst{31-27} = 0b11110;
2117 let Inst{25-22} = 0b1100;
2118 let Inst{20} = 0;
2119 let Inst{15} = 0;
Owen Anderson061c3c42011-09-19 20:00:02 +00002120 let Inst{5} = 0;
Johnny Chenadc77332010-02-26 22:04:29 +00002121}
2122
Owen Andersonc7373f82010-11-30 20:00:01 +00002123def t2SSAT16: T2SatI<
Jim Grosbachf4943352011-07-25 23:09:14 +00002124 (outs rGPR:$Rd), (ins imm1_16:$sat_imm, rGPR:$Rn), NoItinerary,
Jim Grosbach8c989842011-09-20 00:26:34 +00002125 "ssat16", "\t$Rd, $sat_imm, $Rn", []>,
Jim Grosbacha7603982011-07-01 21:12:19 +00002126 Requires<[IsThumb2, HasThumb2DSP]> {
Johnny Chenadc77332010-02-26 22:04:29 +00002127 let Inst{31-27} = 0b11110;
2128 let Inst{25-22} = 0b1100;
2129 let Inst{20} = 0;
2130 let Inst{15} = 0;
2131 let Inst{21} = 1; // sh = '1'
2132 let Inst{14-12} = 0b000; // imm3 = '000'
2133 let Inst{7-6} = 0b00; // imm2 = '00'
Owen Anderson8a28bdc2011-09-16 22:17:02 +00002134 let Inst{5-4} = 0b00;
Johnny Chenadc77332010-02-26 22:04:29 +00002135}
2136
Owen Andersonc7373f82010-11-30 20:00:01 +00002137def t2USAT: T2SatI<
Owen Anderson0afa0092011-09-26 21:06:22 +00002138 (outs rGPR:$Rd),
2139 (ins imm0_31:$sat_imm, rGPR:$Rn, t2_shift_imm:$sh),
Jim Grosbach8c989842011-09-20 00:26:34 +00002140 NoItinerary, "usat", "\t$Rd, $sat_imm, $Rn$sh", []> {
Johnny Chenadc77332010-02-26 22:04:29 +00002141 let Inst{31-27} = 0b11110;
2142 let Inst{25-22} = 0b1110;
2143 let Inst{20} = 0;
2144 let Inst{15} = 0;
Johnny Chenadc77332010-02-26 22:04:29 +00002145}
2146
Jim Grosbachb105b992011-09-16 18:32:30 +00002147def t2USAT16: T2SatI<(outs rGPR:$Rd), (ins imm0_15:$sat_imm, rGPR:$Rn),
Jim Grosbachf921c0fe2011-06-13 22:54:22 +00002148 NoItinerary,
Jim Grosbach8c989842011-09-20 00:26:34 +00002149 "usat16", "\t$Rd, $sat_imm, $Rn", []>,
Jim Grosbacha7603982011-07-01 21:12:19 +00002150 Requires<[IsThumb2, HasThumb2DSP]> {
Owen Anderson4a713572011-09-23 21:57:50 +00002151 let Inst{31-22} = 0b1111001110;
Johnny Chenadc77332010-02-26 22:04:29 +00002152 let Inst{20} = 0;
2153 let Inst{15} = 0;
2154 let Inst{21} = 1; // sh = '1'
2155 let Inst{14-12} = 0b000; // imm3 = '000'
2156 let Inst{7-6} = 0b00; // imm2 = '00'
Owen Anderson4a713572011-09-23 21:57:50 +00002157 let Inst{5-4} = 0b00;
Johnny Chenadc77332010-02-26 22:04:29 +00002158}
Anton Korobeynikov52237112009-06-17 18:13:58 +00002159
Bob Wilson38aa2872010-08-13 21:48:10 +00002160def : T2Pat<(int_arm_ssat GPR:$a, imm:$pos), (t2SSAT imm:$pos, GPR:$a, 0)>;
2161def : T2Pat<(int_arm_usat GPR:$a, imm:$pos), (t2USAT imm:$pos, GPR:$a, 0)>;
Nate Begeman0e0a20e2010-07-29 22:48:09 +00002162
Evan Chengf49810c2009-06-23 17:48:47 +00002163//===----------------------------------------------------------------------===//
Evan Chenga67efd12009-06-23 19:39:13 +00002164// Shift and rotate Instructions.
2165//
2166
Jim Grosbach5f25fb02011-09-02 21:28:54 +00002167defm t2LSL : T2I_sh_ir<0b00, "lsl", imm0_31,
Jim Grosbach9249ef32012-08-02 21:59:52 +00002168 BinOpFrag<(shl node:$LHS, node:$RHS)>>;
Jim Grosbachd2990102011-09-02 18:43:25 +00002169defm t2LSR : T2I_sh_ir<0b01, "lsr", imm_sr,
Jim Grosbach9249ef32012-08-02 21:59:52 +00002170 BinOpFrag<(srl node:$LHS, node:$RHS)>>;
Jim Grosbachd2990102011-09-02 18:43:25 +00002171defm t2ASR : T2I_sh_ir<0b10, "asr", imm_sr,
Jim Grosbach9249ef32012-08-02 21:59:52 +00002172 BinOpFrag<(sra node:$LHS, node:$RHS)>>;
Jim Grosbach5f25fb02011-09-02 21:28:54 +00002173defm t2ROR : T2I_sh_ir<0b11, "ror", imm0_31,
Jim Grosbach9249ef32012-08-02 21:59:52 +00002174 BinOpFrag<(rotr node:$LHS, node:$RHS)>>;
Evan Chenga67efd12009-06-23 19:39:13 +00002175
Andrew Trickd49ffe82011-04-29 14:18:15 +00002176// (rotr x, (and y, 0x...1f)) ==> (ROR x, y)
Bob Wilsonac03af42012-07-02 17:22:47 +00002177def : T2Pat<(rotr rGPR:$lhs, (and rGPR:$rhs, lo5AllOne)),
2178 (t2RORrr rGPR:$lhs, rGPR:$rhs)>;
Andrew Trickd49ffe82011-04-29 14:18:15 +00002179
David Goodwinca01a8d2009-09-01 18:32:09 +00002180let Uses = [CPSR] in {
Owen Anderson46c478e2010-11-17 19:57:38 +00002181def t2RRX : T2sTwoReg<(outs rGPR:$Rd), (ins rGPR:$Rm), IIC_iMOVsi,
2182 "rrx", "\t$Rd, $Rm",
2183 [(set rGPR:$Rd, (ARMrrx rGPR:$Rm))]> {
Johnny Chend68e1192009-12-15 17:24:14 +00002184 let Inst{31-27} = 0b11101;
2185 let Inst{26-25} = 0b01;
2186 let Inst{24-21} = 0b0010;
Johnny Chend68e1192009-12-15 17:24:14 +00002187 let Inst{19-16} = 0b1111; // Rn
2188 let Inst{14-12} = 0b000;
2189 let Inst{7-4} = 0b0011;
2190}
David Goodwinca01a8d2009-09-01 18:32:09 +00002191}
Evan Chenga67efd12009-06-23 19:39:13 +00002192
Daniel Dunbar8d66b782011-01-10 15:26:39 +00002193let isCodeGenOnly = 1, Defs = [CPSR] in {
Owen Andersonbb6315d2010-11-15 19:58:36 +00002194def t2MOVsrl_flag : T2TwoRegShiftImm<
2195 (outs rGPR:$Rd), (ins rGPR:$Rm), IIC_iMOVsi,
2196 "lsrs", ".w\t$Rd, $Rm, #1",
2197 [(set rGPR:$Rd, (ARMsrl_flag rGPR:$Rm))]> {
Johnny Chend68e1192009-12-15 17:24:14 +00002198 let Inst{31-27} = 0b11101;
2199 let Inst{26-25} = 0b01;
2200 let Inst{24-21} = 0b0010;
2201 let Inst{20} = 1; // The S bit.
2202 let Inst{19-16} = 0b1111; // Rn
2203 let Inst{5-4} = 0b01; // Shift type.
2204 // Shift amount = Inst{14-12:7-6} = 1.
2205 let Inst{14-12} = 0b000;
2206 let Inst{7-6} = 0b01;
2207}
Owen Andersonbb6315d2010-11-15 19:58:36 +00002208def t2MOVsra_flag : T2TwoRegShiftImm<
2209 (outs rGPR:$Rd), (ins rGPR:$Rm), IIC_iMOVsi,
2210 "asrs", ".w\t$Rd, $Rm, #1",
2211 [(set rGPR:$Rd, (ARMsra_flag rGPR:$Rm))]> {
Johnny Chend68e1192009-12-15 17:24:14 +00002212 let Inst{31-27} = 0b11101;
2213 let Inst{26-25} = 0b01;
2214 let Inst{24-21} = 0b0010;
2215 let Inst{20} = 1; // The S bit.
2216 let Inst{19-16} = 0b1111; // Rn
2217 let Inst{5-4} = 0b10; // Shift type.
2218 // Shift amount = Inst{14-12:7-6} = 1.
2219 let Inst{14-12} = 0b000;
2220 let Inst{7-6} = 0b01;
2221}
David Goodwin3583df72009-07-28 17:06:49 +00002222}
2223
Evan Chenga67efd12009-06-23 19:39:13 +00002224//===----------------------------------------------------------------------===//
Evan Chengf49810c2009-06-23 17:48:47 +00002225// Bitwise Instructions.
2226//
Anton Korobeynikov52237112009-06-17 18:13:58 +00002227
Johnny Chend68e1192009-12-15 17:24:14 +00002228defm t2AND : T2I_bin_w_irs<0b0000, "and",
Evan Cheng7e1bf302010-09-29 00:27:46 +00002229 IIC_iBITi, IIC_iBITr, IIC_iBITsi,
Jim Grosbach5c6c1282012-08-02 21:50:41 +00002230 BinOpFrag<(and node:$LHS, node:$RHS)>, 1>;
Johnny Chend68e1192009-12-15 17:24:14 +00002231defm t2ORR : T2I_bin_w_irs<0b0010, "orr",
Evan Cheng7e1bf302010-09-29 00:27:46 +00002232 IIC_iBITi, IIC_iBITr, IIC_iBITsi,
Jim Grosbach5c6c1282012-08-02 21:50:41 +00002233 BinOpFrag<(or node:$LHS, node:$RHS)>, 1>;
Johnny Chend68e1192009-12-15 17:24:14 +00002234defm t2EOR : T2I_bin_w_irs<0b0100, "eor",
Evan Cheng7e1bf302010-09-29 00:27:46 +00002235 IIC_iBITi, IIC_iBITr, IIC_iBITsi,
Jim Grosbach5c6c1282012-08-02 21:50:41 +00002236 BinOpFrag<(xor node:$LHS, node:$RHS)>, 1>;
Evan Chengf49810c2009-06-23 17:48:47 +00002237
Johnny Chend68e1192009-12-15 17:24:14 +00002238defm t2BIC : T2I_bin_w_irs<0b0001, "bic",
Evan Cheng7e1bf302010-09-29 00:27:46 +00002239 IIC_iBITi, IIC_iBITr, IIC_iBITsi,
Jim Grosbach5c6c1282012-08-02 21:50:41 +00002240 BinOpFrag<(and node:$LHS, (not node:$RHS))>>;
Evan Chengf49810c2009-06-23 17:48:47 +00002241
Owen Anderson2f7aed32010-11-17 22:16:31 +00002242class T2BitFI<dag oops, dag iops, InstrItinClass itin,
2243 string opc, string asm, list<dag> pattern>
Jim Grosbach7a088642010-11-19 17:11:02 +00002244 : T2I<oops, iops, itin, opc, asm, pattern> {
Owen Anderson2f7aed32010-11-17 22:16:31 +00002245 bits<4> Rd;
2246 bits<5> msb;
2247 bits<5> lsb;
Jim Grosbach7a088642010-11-19 17:11:02 +00002248
Jim Grosbach86386922010-12-08 22:10:43 +00002249 let Inst{11-8} = Rd;
Owen Anderson2f7aed32010-11-17 22:16:31 +00002250 let Inst{4-0} = msb{4-0};
2251 let Inst{14-12} = lsb{4-2};
2252 let Inst{7-6} = lsb{1-0};
2253}
2254
2255class T2TwoRegBitFI<dag oops, dag iops, InstrItinClass itin,
2256 string opc, string asm, list<dag> pattern>
2257 : T2BitFI<oops, iops, itin, opc, asm, pattern> {
2258 bits<4> Rn;
Jim Grosbach7a088642010-11-19 17:11:02 +00002259
Jim Grosbach86386922010-12-08 22:10:43 +00002260 let Inst{19-16} = Rn;
Owen Anderson2f7aed32010-11-17 22:16:31 +00002261}
2262
2263let Constraints = "$src = $Rd" in
2264def t2BFC : T2BitFI<(outs rGPR:$Rd), (ins rGPR:$src, bf_inv_mask_imm:$imm),
2265 IIC_iUNAsi, "bfc", "\t$Rd, $imm",
2266 [(set rGPR:$Rd, (and rGPR:$src, bf_inv_mask_imm:$imm))]> {
Johnny Chend68e1192009-12-15 17:24:14 +00002267 let Inst{31-27} = 0b11110;
Johnny Chen3a961222011-04-15 22:52:15 +00002268 let Inst{26} = 0; // should be 0.
Johnny Chend68e1192009-12-15 17:24:14 +00002269 let Inst{25} = 1;
2270 let Inst{24-20} = 0b10110;
2271 let Inst{19-16} = 0b1111; // Rn
2272 let Inst{15} = 0;
Johnny Chen3a961222011-04-15 22:52:15 +00002273 let Inst{5} = 0; // should be 0.
Jim Grosbach7a088642010-11-19 17:11:02 +00002274
Owen Anderson2f7aed32010-11-17 22:16:31 +00002275 bits<10> imm;
2276 let msb{4-0} = imm{9-5};
2277 let lsb{4-0} = imm{4-0};
Johnny Chend68e1192009-12-15 17:24:14 +00002278}
Evan Chengf49810c2009-06-23 17:48:47 +00002279
Owen Anderson2f7aed32010-11-17 22:16:31 +00002280def t2SBFX: T2TwoRegBitFI<
Jim Grosbachfb8989e2011-07-27 21:09:25 +00002281 (outs rGPR:$Rd), (ins rGPR:$Rn, imm0_31:$lsb, imm1_32:$msb),
Owen Anderson2f7aed32010-11-17 22:16:31 +00002282 IIC_iUNAsi, "sbfx", "\t$Rd, $Rn, $lsb, $msb", []> {
Johnny Chend68e1192009-12-15 17:24:14 +00002283 let Inst{31-27} = 0b11110;
2284 let Inst{25} = 1;
2285 let Inst{24-20} = 0b10100;
2286 let Inst{15} = 0;
2287}
Sandeep Patel47eedaa2009-10-13 18:59:48 +00002288
Owen Anderson2f7aed32010-11-17 22:16:31 +00002289def t2UBFX: T2TwoRegBitFI<
Jim Grosbachfb8989e2011-07-27 21:09:25 +00002290 (outs rGPR:$Rd), (ins rGPR:$Rn, imm0_31:$lsb, imm1_32:$msb),
Owen Anderson2f7aed32010-11-17 22:16:31 +00002291 IIC_iUNAsi, "ubfx", "\t$Rd, $Rn, $lsb, $msb", []> {
Johnny Chend68e1192009-12-15 17:24:14 +00002292 let Inst{31-27} = 0b11110;
2293 let Inst{25} = 1;
2294 let Inst{24-20} = 0b11100;
2295 let Inst{15} = 0;
2296}
Sandeep Patel47eedaa2009-10-13 18:59:48 +00002297
Johnny Chen9474d552010-02-02 19:31:58 +00002298// A8.6.18 BFI - Bitfield insert (Encoding T1)
Bruno Cardoso Lopesa461d422011-01-18 20:45:56 +00002299let Constraints = "$src = $Rd" in {
2300 def t2BFI : T2TwoRegBitFI<(outs rGPR:$Rd),
2301 (ins rGPR:$src, rGPR:$Rn, bf_inv_mask_imm:$imm),
2302 IIC_iBITi, "bfi", "\t$Rd, $Rn, $imm",
2303 [(set rGPR:$Rd, (ARMbfi rGPR:$src, rGPR:$Rn,
2304 bf_inv_mask_imm:$imm))]> {
2305 let Inst{31-27} = 0b11110;
Johnny Chen188ce9c2011-04-15 00:35:08 +00002306 let Inst{26} = 0; // should be 0.
Bruno Cardoso Lopesa461d422011-01-18 20:45:56 +00002307 let Inst{25} = 1;
2308 let Inst{24-20} = 0b10110;
2309 let Inst{15} = 0;
Johnny Chen188ce9c2011-04-15 00:35:08 +00002310 let Inst{5} = 0; // should be 0.
Jim Grosbach7a088642010-11-19 17:11:02 +00002311
Bruno Cardoso Lopesa461d422011-01-18 20:45:56 +00002312 bits<10> imm;
2313 let msb{4-0} = imm{9-5};
2314 let lsb{4-0} = imm{4-0};
2315 }
Johnny Chen9474d552010-02-02 19:31:58 +00002316}
Evan Chengf49810c2009-06-23 17:48:47 +00002317
Evan Cheng7e1bf302010-09-29 00:27:46 +00002318defm t2ORN : T2I_bin_irs<0b0011, "orn",
2319 IIC_iBITi, IIC_iBITr, IIC_iBITsi,
Jim Grosbach5c6c1282012-08-02 21:50:41 +00002320 BinOpFrag<(or node:$LHS, (not node:$RHS))>, 0, "">;
Evan Cheng36a0aeb2009-07-06 22:23:46 +00002321
Jim Grosbachd32872f2011-09-14 21:24:41 +00002322/// T2I_un_irs - Defines a set of (op reg, {so_imm|r|so_reg}) patterns for a
2323/// unary operation that produces a value. These are predicable and can be
2324/// changed to modify CPSR.
2325multiclass T2I_un_irs<bits<4> opcod, string opc,
2326 InstrItinClass iii, InstrItinClass iir, InstrItinClass iis,
2327 PatFrag opnode, bit Cheap = 0, bit ReMat = 0> {
2328 // shifted imm
2329 def i : T2sOneRegImm<(outs rGPR:$Rd), (ins t2_so_imm:$imm), iii,
2330 opc, "\t$Rd, $imm",
2331 [(set rGPR:$Rd, (opnode t2_so_imm:$imm))]> {
2332 let isAsCheapAsAMove = Cheap;
2333 let isReMaterializable = ReMat;
2334 let Inst{31-27} = 0b11110;
2335 let Inst{25} = 0;
2336 let Inst{24-21} = opcod;
2337 let Inst{19-16} = 0b1111; // Rn
2338 let Inst{15} = 0;
2339 }
2340 // register
2341 def r : T2sTwoReg<(outs rGPR:$Rd), (ins rGPR:$Rm), iir,
2342 opc, ".w\t$Rd, $Rm",
2343 [(set rGPR:$Rd, (opnode rGPR:$Rm))]> {
2344 let Inst{31-27} = 0b11101;
2345 let Inst{26-25} = 0b01;
2346 let Inst{24-21} = opcod;
2347 let Inst{19-16} = 0b1111; // Rn
2348 let Inst{14-12} = 0b000; // imm3
2349 let Inst{7-6} = 0b00; // imm2
2350 let Inst{5-4} = 0b00; // type
2351 }
2352 // shifted register
2353 def s : T2sOneRegShiftedReg<(outs rGPR:$Rd), (ins t2_so_reg:$ShiftedRm), iis,
2354 opc, ".w\t$Rd, $ShiftedRm",
2355 [(set rGPR:$Rd, (opnode t2_so_reg:$ShiftedRm))]> {
2356 let Inst{31-27} = 0b11101;
2357 let Inst{26-25} = 0b01;
2358 let Inst{24-21} = opcod;
2359 let Inst{19-16} = 0b1111; // Rn
2360 }
2361}
2362
Evan Cheng36a0aeb2009-07-06 22:23:46 +00002363// Prefer over of t2EORri ra, rb, -1 because mvn has 16-bit version
2364let AddedComplexity = 1 in
Evan Cheng5d42c562010-09-29 00:49:25 +00002365defm t2MVN : T2I_un_irs <0b0011, "mvn",
Evan Cheng3881cb72010-09-29 22:42:35 +00002366 IIC_iMVNi, IIC_iMVNr, IIC_iMVNsi,
Evan Cheng5d42c562010-09-29 00:49:25 +00002367 UnOpFrag<(not node:$Src)>, 1, 1>;
Evan Cheng36a0aeb2009-07-06 22:23:46 +00002368
Jim Grosbachf084a5e2010-07-20 16:07:04 +00002369let AddedComplexity = 1 in
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002370def : T2Pat<(and rGPR:$src, t2_so_imm_not:$imm),
2371 (t2BICri rGPR:$src, t2_so_imm_not:$imm)>;
Evan Cheng36a0aeb2009-07-06 22:23:46 +00002372
Joel Jones96ef2842012-06-18 14:51:32 +00002373// top16Zero - answer true if the upper 16 bits of $src are 0, false otherwise
2374def top16Zero: PatLeaf<(i32 rGPR:$src), [{
2375 return CurDAG->MaskedValueIsZero(SDValue(N,0), APInt::getHighBitsSet(32, 16));
2376 }]>;
2377
2378// so_imm_notSext is needed instead of so_imm_not, as the value of imm
2379// will match the extended, not the original bitWidth for $src.
2380def : T2Pat<(and top16Zero:$src, t2_so_imm_notSext:$imm),
2381 (t2BICri rGPR:$src, t2_so_imm_notSext:$imm)>;
2382
2383
Evan Cheng25f7cfc2009-08-01 06:13:52 +00002384// FIXME: Disable this pattern on Darwin to workaround an assembler bug.
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002385def : T2Pat<(or rGPR:$src, t2_so_imm_not:$imm),
2386 (t2ORNri rGPR:$src, t2_so_imm_not:$imm)>,
Evan Chengea253b92009-08-12 01:56:42 +00002387 Requires<[IsThumb2]>;
Evan Cheng36a0aeb2009-07-06 22:23:46 +00002388
2389def : T2Pat<(t2_so_imm_not:$src),
2390 (t2MVNi t2_so_imm_not:$src)>;
2391
Evan Chengf49810c2009-06-23 17:48:47 +00002392//===----------------------------------------------------------------------===//
2393// Multiply Instructions.
2394//
Evan Cheng8de898a2009-06-26 00:19:44 +00002395let isCommutable = 1 in
Owen Anderson35141a92010-11-18 01:08:42 +00002396def t2MUL: T2ThreeReg<(outs rGPR:$Rd), (ins rGPR:$Rn, rGPR:$Rm), IIC_iMUL32,
2397 "mul", "\t$Rd, $Rn, $Rm",
2398 [(set rGPR:$Rd, (mul rGPR:$Rn, rGPR:$Rm))]> {
Johnny Chend68e1192009-12-15 17:24:14 +00002399 let Inst{31-27} = 0b11111;
2400 let Inst{26-23} = 0b0110;
2401 let Inst{22-20} = 0b000;
2402 let Inst{15-12} = 0b1111; // Ra = 0b1111 (no accumulate)
2403 let Inst{7-4} = 0b0000; // Multiply
2404}
Evan Chengf49810c2009-06-23 17:48:47 +00002405
Owen Anderson35141a92010-11-18 01:08:42 +00002406def t2MLA: T2FourReg<
2407 (outs rGPR:$Rd), (ins rGPR:$Rn, rGPR:$Rm, rGPR:$Ra), IIC_iMAC32,
2408 "mla", "\t$Rd, $Rn, $Rm, $Ra",
2409 [(set rGPR:$Rd, (add (mul rGPR:$Rn, rGPR:$Rm), rGPR:$Ra))]> {
Johnny Chend68e1192009-12-15 17:24:14 +00002410 let Inst{31-27} = 0b11111;
2411 let Inst{26-23} = 0b0110;
2412 let Inst{22-20} = 0b000;
Johnny Chend68e1192009-12-15 17:24:14 +00002413 let Inst{7-4} = 0b0000; // Multiply
2414}
Evan Chengf49810c2009-06-23 17:48:47 +00002415
Owen Anderson35141a92010-11-18 01:08:42 +00002416def t2MLS: T2FourReg<
2417 (outs rGPR:$Rd), (ins rGPR:$Rn, rGPR:$Rm, rGPR:$Ra), IIC_iMAC32,
2418 "mls", "\t$Rd, $Rn, $Rm, $Ra",
2419 [(set rGPR:$Rd, (sub rGPR:$Ra, (mul rGPR:$Rn, rGPR:$Rm)))]> {
Johnny Chend68e1192009-12-15 17:24:14 +00002420 let Inst{31-27} = 0b11111;
2421 let Inst{26-23} = 0b0110;
2422 let Inst{22-20} = 0b000;
Johnny Chend68e1192009-12-15 17:24:14 +00002423 let Inst{7-4} = 0b0001; // Multiply and Subtract
2424}
Evan Chengf49810c2009-06-23 17:48:47 +00002425
Evan Cheng5b9fcd12009-07-07 01:17:28 +00002426// Extra precision multiplies with low / high results
2427let neverHasSideEffects = 1 in {
2428let isCommutable = 1 in {
Jim Grosbach7c6d85a2010-12-08 22:38:41 +00002429def t2SMULL : T2MulLong<0b000, 0b0000,
Owen Anderson796c3652011-08-22 23:16:48 +00002430 (outs rGPR:$RdLo, rGPR:$RdHi),
Owen Anderson35141a92010-11-18 01:08:42 +00002431 (ins rGPR:$Rn, rGPR:$Rm), IIC_iMUL64,
Owen Anderson796c3652011-08-22 23:16:48 +00002432 "smull", "\t$RdLo, $RdHi, $Rn, $Rm", []>;
Evan Cheng5b9fcd12009-07-07 01:17:28 +00002433
Jim Grosbach7c6d85a2010-12-08 22:38:41 +00002434def t2UMULL : T2MulLong<0b010, 0b0000,
Jim Grosbach52082042010-12-08 22:29:28 +00002435 (outs rGPR:$RdLo, rGPR:$RdHi),
Owen Anderson35141a92010-11-18 01:08:42 +00002436 (ins rGPR:$Rn, rGPR:$Rm), IIC_iMUL64,
Jim Grosbach7c6d85a2010-12-08 22:38:41 +00002437 "umull", "\t$RdLo, $RdHi, $Rn, $Rm", []>;
Johnny Chend68e1192009-12-15 17:24:14 +00002438} // isCommutable
Evan Cheng5b9fcd12009-07-07 01:17:28 +00002439
2440// Multiply + accumulate
Arnold Schwaighofera7016d62012-08-12 05:11:56 +00002441def t2SMLAL : T2MulLong<0b100, 0b0000,
2442 (outs rGPR:$RdLo, rGPR:$RdHi),
Owen Anderson35141a92010-11-18 01:08:42 +00002443 (ins rGPR:$Rn, rGPR:$Rm), IIC_iMAC64,
Arnold Schwaighofera7016d62012-08-12 05:11:56 +00002444 "smlal", "\t$RdLo, $RdHi, $Rn, $Rm", []>;
Evan Cheng5b9fcd12009-07-07 01:17:28 +00002445
Arnold Schwaighofera7016d62012-08-12 05:11:56 +00002446def t2UMLAL : T2MulLong<0b110, 0b0000,
2447 (outs rGPR:$RdLo, rGPR:$RdHi),
Owen Anderson35141a92010-11-18 01:08:42 +00002448 (ins rGPR:$Rn, rGPR:$Rm), IIC_iMAC64,
Arnold Schwaighofera7016d62012-08-12 05:11:56 +00002449 "umlal", "\t$RdLo, $RdHi, $Rn, $Rm", []>;
Evan Cheng5b9fcd12009-07-07 01:17:28 +00002450
Jim Grosbach7c6d85a2010-12-08 22:38:41 +00002451def t2UMAAL : T2MulLong<0b110, 0b0110,
2452 (outs rGPR:$RdLo, rGPR:$RdHi),
Owen Anderson35141a92010-11-18 01:08:42 +00002453 (ins rGPR:$Rn, rGPR:$Rm), IIC_iMAC64,
Jim Grosbacha7603982011-07-01 21:12:19 +00002454 "umaal", "\t$RdLo, $RdHi, $Rn, $Rm", []>,
2455 Requires<[IsThumb2, HasThumb2DSP]>;
Evan Cheng5b9fcd12009-07-07 01:17:28 +00002456} // neverHasSideEffects
2457
Johnny Chen93042d12010-03-02 18:14:57 +00002458// Rounding variants of the below included for disassembly only
2459
Evan Cheng5b9fcd12009-07-07 01:17:28 +00002460// Most significant word multiply
Owen Anderson821752e2010-11-18 20:32:18 +00002461def t2SMMUL : T2ThreeReg<(outs rGPR:$Rd), (ins rGPR:$Rn, rGPR:$Rm), IIC_iMUL32,
2462 "smmul", "\t$Rd, $Rn, $Rm",
Jim Grosbacha7603982011-07-01 21:12:19 +00002463 [(set rGPR:$Rd, (mulhs rGPR:$Rn, rGPR:$Rm))]>,
2464 Requires<[IsThumb2, HasThumb2DSP]> {
Johnny Chend68e1192009-12-15 17:24:14 +00002465 let Inst{31-27} = 0b11111;
2466 let Inst{26-23} = 0b0110;
2467 let Inst{22-20} = 0b101;
2468 let Inst{15-12} = 0b1111; // Ra = 0b1111 (no accumulate)
2469 let Inst{7-4} = 0b0000; // No Rounding (Inst{4} = 0)
2470}
Evan Cheng5b9fcd12009-07-07 01:17:28 +00002471
Owen Anderson821752e2010-11-18 20:32:18 +00002472def t2SMMULR : T2ThreeReg<(outs rGPR:$Rd), (ins rGPR:$Rn, rGPR:$Rm), IIC_iMUL32,
Jim Grosbacha7603982011-07-01 21:12:19 +00002473 "smmulr", "\t$Rd, $Rn, $Rm", []>,
2474 Requires<[IsThumb2, HasThumb2DSP]> {
Johnny Chen93042d12010-03-02 18:14:57 +00002475 let Inst{31-27} = 0b11111;
2476 let Inst{26-23} = 0b0110;
2477 let Inst{22-20} = 0b101;
2478 let Inst{15-12} = 0b1111; // Ra = 0b1111 (no accumulate)
2479 let Inst{7-4} = 0b0001; // Rounding (Inst{4} = 1)
2480}
2481
Owen Anderson821752e2010-11-18 20:32:18 +00002482def t2SMMLA : T2FourReg<
2483 (outs rGPR:$Rd), (ins rGPR:$Rn, rGPR:$Rm, rGPR:$Ra), IIC_iMAC32,
2484 "smmla", "\t$Rd, $Rn, $Rm, $Ra",
Jim Grosbacha7603982011-07-01 21:12:19 +00002485 [(set rGPR:$Rd, (add (mulhs rGPR:$Rm, rGPR:$Rn), rGPR:$Ra))]>,
2486 Requires<[IsThumb2, HasThumb2DSP]> {
Johnny Chend68e1192009-12-15 17:24:14 +00002487 let Inst{31-27} = 0b11111;
2488 let Inst{26-23} = 0b0110;
2489 let Inst{22-20} = 0b101;
Johnny Chend68e1192009-12-15 17:24:14 +00002490 let Inst{7-4} = 0b0000; // No Rounding (Inst{4} = 0)
2491}
Evan Cheng5b9fcd12009-07-07 01:17:28 +00002492
Owen Anderson821752e2010-11-18 20:32:18 +00002493def t2SMMLAR: T2FourReg<
2494 (outs rGPR:$Rd), (ins rGPR:$Rn, rGPR:$Rm, rGPR:$Ra), IIC_iMAC32,
Jim Grosbacha7603982011-07-01 21:12:19 +00002495 "smmlar", "\t$Rd, $Rn, $Rm, $Ra", []>,
2496 Requires<[IsThumb2, HasThumb2DSP]> {
Johnny Chen93042d12010-03-02 18:14:57 +00002497 let Inst{31-27} = 0b11111;
2498 let Inst{26-23} = 0b0110;
2499 let Inst{22-20} = 0b101;
Johnny Chen93042d12010-03-02 18:14:57 +00002500 let Inst{7-4} = 0b0001; // Rounding (Inst{4} = 1)
2501}
Evan Cheng5b9fcd12009-07-07 01:17:28 +00002502
Owen Anderson821752e2010-11-18 20:32:18 +00002503def t2SMMLS: T2FourReg<
2504 (outs rGPR:$Rd), (ins rGPR:$Rn, rGPR:$Rm, rGPR:$Ra), IIC_iMAC32,
2505 "smmls", "\t$Rd, $Rn, $Rm, $Ra",
Jim Grosbacha7603982011-07-01 21:12:19 +00002506 [(set rGPR:$Rd, (sub rGPR:$Ra, (mulhs rGPR:$Rn, rGPR:$Rm)))]>,
2507 Requires<[IsThumb2, HasThumb2DSP]> {
Johnny Chend68e1192009-12-15 17:24:14 +00002508 let Inst{31-27} = 0b11111;
2509 let Inst{26-23} = 0b0110;
2510 let Inst{22-20} = 0b110;
Johnny Chend68e1192009-12-15 17:24:14 +00002511 let Inst{7-4} = 0b0000; // No Rounding (Inst{4} = 0)
2512}
Evan Cheng5b9fcd12009-07-07 01:17:28 +00002513
Owen Anderson821752e2010-11-18 20:32:18 +00002514def t2SMMLSR:T2FourReg<
2515 (outs rGPR:$Rd), (ins rGPR:$Rn, rGPR:$Rm, rGPR:$Ra), IIC_iMAC32,
Jim Grosbacha7603982011-07-01 21:12:19 +00002516 "smmlsr", "\t$Rd, $Rn, $Rm, $Ra", []>,
2517 Requires<[IsThumb2, HasThumb2DSP]> {
Johnny Chen93042d12010-03-02 18:14:57 +00002518 let Inst{31-27} = 0b11111;
2519 let Inst{26-23} = 0b0110;
2520 let Inst{22-20} = 0b110;
Johnny Chen93042d12010-03-02 18:14:57 +00002521 let Inst{7-4} = 0b0001; // Rounding (Inst{4} = 1)
2522}
2523
Evan Cheng5b9fcd12009-07-07 01:17:28 +00002524multiclass T2I_smul<string opc, PatFrag opnode> {
Owen Anderson821752e2010-11-18 20:32:18 +00002525 def BB : T2ThreeReg<(outs rGPR:$Rd), (ins rGPR:$Rn, rGPR:$Rm), IIC_iMUL16,
2526 !strconcat(opc, "bb"), "\t$Rd, $Rn, $Rm",
2527 [(set rGPR:$Rd, (opnode (sext_inreg rGPR:$Rn, i16),
Jim Grosbacha7603982011-07-01 21:12:19 +00002528 (sext_inreg rGPR:$Rm, i16)))]>,
2529 Requires<[IsThumb2, HasThumb2DSP]> {
Johnny Chend68e1192009-12-15 17:24:14 +00002530 let Inst{31-27} = 0b11111;
2531 let Inst{26-23} = 0b0110;
2532 let Inst{22-20} = 0b001;
2533 let Inst{15-12} = 0b1111; // Ra = 0b1111 (no accumulate)
2534 let Inst{7-6} = 0b00;
2535 let Inst{5-4} = 0b00;
2536 }
Evan Cheng5b9fcd12009-07-07 01:17:28 +00002537
Owen Anderson821752e2010-11-18 20:32:18 +00002538 def BT : T2ThreeReg<(outs rGPR:$Rd), (ins rGPR:$Rn, rGPR:$Rm), IIC_iMUL16,
2539 !strconcat(opc, "bt"), "\t$Rd, $Rn, $Rm",
2540 [(set rGPR:$Rd, (opnode (sext_inreg rGPR:$Rn, i16),
Jim Grosbacha7603982011-07-01 21:12:19 +00002541 (sra rGPR:$Rm, (i32 16))))]>,
2542 Requires<[IsThumb2, HasThumb2DSP]> {
Johnny Chend68e1192009-12-15 17:24:14 +00002543 let Inst{31-27} = 0b11111;
2544 let Inst{26-23} = 0b0110;
2545 let Inst{22-20} = 0b001;
2546 let Inst{15-12} = 0b1111; // Ra = 0b1111 (no accumulate)
2547 let Inst{7-6} = 0b00;
2548 let Inst{5-4} = 0b01;
2549 }
Evan Cheng5b9fcd12009-07-07 01:17:28 +00002550
Owen Anderson821752e2010-11-18 20:32:18 +00002551 def TB : T2ThreeReg<(outs rGPR:$Rd), (ins rGPR:$Rn, rGPR:$Rm), IIC_iMUL16,
2552 !strconcat(opc, "tb"), "\t$Rd, $Rn, $Rm",
2553 [(set rGPR:$Rd, (opnode (sra rGPR:$Rn, (i32 16)),
Jim Grosbacha7603982011-07-01 21:12:19 +00002554 (sext_inreg rGPR:$Rm, i16)))]>,
2555 Requires<[IsThumb2, HasThumb2DSP]> {
Johnny Chend68e1192009-12-15 17:24:14 +00002556 let Inst{31-27} = 0b11111;
2557 let Inst{26-23} = 0b0110;
2558 let Inst{22-20} = 0b001;
2559 let Inst{15-12} = 0b1111; // Ra = 0b1111 (no accumulate)
2560 let Inst{7-6} = 0b00;
2561 let Inst{5-4} = 0b10;
2562 }
Evan Cheng5b9fcd12009-07-07 01:17:28 +00002563
Owen Anderson821752e2010-11-18 20:32:18 +00002564 def TT : T2ThreeReg<(outs rGPR:$Rd), (ins rGPR:$Rn, rGPR:$Rm), IIC_iMUL16,
2565 !strconcat(opc, "tt"), "\t$Rd, $Rn, $Rm",
2566 [(set rGPR:$Rd, (opnode (sra rGPR:$Rn, (i32 16)),
Jim Grosbacha7603982011-07-01 21:12:19 +00002567 (sra rGPR:$Rm, (i32 16))))]>,
2568 Requires<[IsThumb2, HasThumb2DSP]> {
Johnny Chend68e1192009-12-15 17:24:14 +00002569 let Inst{31-27} = 0b11111;
2570 let Inst{26-23} = 0b0110;
2571 let Inst{22-20} = 0b001;
2572 let Inst{15-12} = 0b1111; // Ra = 0b1111 (no accumulate)
2573 let Inst{7-6} = 0b00;
2574 let Inst{5-4} = 0b11;
2575 }
Evan Cheng5b9fcd12009-07-07 01:17:28 +00002576
Owen Anderson821752e2010-11-18 20:32:18 +00002577 def WB : T2ThreeReg<(outs rGPR:$Rd), (ins rGPR:$Rn, rGPR:$Rm), IIC_iMUL16,
2578 !strconcat(opc, "wb"), "\t$Rd, $Rn, $Rm",
2579 [(set rGPR:$Rd, (sra (opnode rGPR:$Rn,
Jim Grosbacha7603982011-07-01 21:12:19 +00002580 (sext_inreg rGPR:$Rm, i16)), (i32 16)))]>,
2581 Requires<[IsThumb2, HasThumb2DSP]> {
Johnny Chend68e1192009-12-15 17:24:14 +00002582 let Inst{31-27} = 0b11111;
2583 let Inst{26-23} = 0b0110;
2584 let Inst{22-20} = 0b011;
2585 let Inst{15-12} = 0b1111; // Ra = 0b1111 (no accumulate)
2586 let Inst{7-6} = 0b00;
2587 let Inst{5-4} = 0b00;
2588 }
Evan Cheng5b9fcd12009-07-07 01:17:28 +00002589
Owen Anderson821752e2010-11-18 20:32:18 +00002590 def WT : T2ThreeReg<(outs rGPR:$Rd), (ins rGPR:$Rn, rGPR:$Rm), IIC_iMUL16,
2591 !strconcat(opc, "wt"), "\t$Rd, $Rn, $Rm",
2592 [(set rGPR:$Rd, (sra (opnode rGPR:$Rn,
Jim Grosbacha7603982011-07-01 21:12:19 +00002593 (sra rGPR:$Rm, (i32 16))), (i32 16)))]>,
2594 Requires<[IsThumb2, HasThumb2DSP]> {
Johnny Chend68e1192009-12-15 17:24:14 +00002595 let Inst{31-27} = 0b11111;
2596 let Inst{26-23} = 0b0110;
2597 let Inst{22-20} = 0b011;
2598 let Inst{15-12} = 0b1111; // Ra = 0b1111 (no accumulate)
2599 let Inst{7-6} = 0b00;
2600 let Inst{5-4} = 0b01;
2601 }
Evan Cheng5b9fcd12009-07-07 01:17:28 +00002602}
2603
2604
2605multiclass T2I_smla<string opc, PatFrag opnode> {
Owen Anderson821752e2010-11-18 20:32:18 +00002606 def BB : T2FourReg<
2607 (outs rGPR:$Rd), (ins rGPR:$Rn, rGPR:$Rm, rGPR:$Ra), IIC_iMAC16,
2608 !strconcat(opc, "bb"), "\t$Rd, $Rn, $Rm, $Ra",
2609 [(set rGPR:$Rd, (add rGPR:$Ra,
2610 (opnode (sext_inreg rGPR:$Rn, i16),
Jim Grosbacha7603982011-07-01 21:12:19 +00002611 (sext_inreg rGPR:$Rm, i16))))]>,
2612 Requires<[IsThumb2, HasThumb2DSP]> {
Johnny Chend68e1192009-12-15 17:24:14 +00002613 let Inst{31-27} = 0b11111;
2614 let Inst{26-23} = 0b0110;
2615 let Inst{22-20} = 0b001;
Johnny Chend68e1192009-12-15 17:24:14 +00002616 let Inst{7-6} = 0b00;
2617 let Inst{5-4} = 0b00;
2618 }
Evan Cheng5b9fcd12009-07-07 01:17:28 +00002619
Owen Anderson821752e2010-11-18 20:32:18 +00002620 def BT : T2FourReg<
2621 (outs rGPR:$Rd), (ins rGPR:$Rn, rGPR:$Rm, rGPR:$Ra), IIC_iMAC16,
2622 !strconcat(opc, "bt"), "\t$Rd, $Rn, $Rm, $Ra",
2623 [(set rGPR:$Rd, (add rGPR:$Ra, (opnode (sext_inreg rGPR:$Rn, i16),
Jim Grosbacha7603982011-07-01 21:12:19 +00002624 (sra rGPR:$Rm, (i32 16)))))]>,
2625 Requires<[IsThumb2, HasThumb2DSP]> {
Johnny Chend68e1192009-12-15 17:24:14 +00002626 let Inst{31-27} = 0b11111;
2627 let Inst{26-23} = 0b0110;
2628 let Inst{22-20} = 0b001;
Johnny Chend68e1192009-12-15 17:24:14 +00002629 let Inst{7-6} = 0b00;
2630 let Inst{5-4} = 0b01;
2631 }
Evan Cheng5b9fcd12009-07-07 01:17:28 +00002632
Owen Anderson821752e2010-11-18 20:32:18 +00002633 def TB : T2FourReg<
2634 (outs rGPR:$Rd), (ins rGPR:$Rn, rGPR:$Rm, rGPR:$Ra), IIC_iMAC16,
2635 !strconcat(opc, "tb"), "\t$Rd, $Rn, $Rm, $Ra",
2636 [(set rGPR:$Rd, (add rGPR:$Ra, (opnode (sra rGPR:$Rn, (i32 16)),
Jim Grosbacha7603982011-07-01 21:12:19 +00002637 (sext_inreg rGPR:$Rm, i16))))]>,
2638 Requires<[IsThumb2, HasThumb2DSP]> {
Johnny Chend68e1192009-12-15 17:24:14 +00002639 let Inst{31-27} = 0b11111;
2640 let Inst{26-23} = 0b0110;
2641 let Inst{22-20} = 0b001;
Johnny Chend68e1192009-12-15 17:24:14 +00002642 let Inst{7-6} = 0b00;
2643 let Inst{5-4} = 0b10;
2644 }
Evan Cheng5b9fcd12009-07-07 01:17:28 +00002645
Owen Anderson821752e2010-11-18 20:32:18 +00002646 def TT : T2FourReg<
2647 (outs rGPR:$Rd), (ins rGPR:$Rn, rGPR:$Rm, rGPR:$Ra), IIC_iMAC16,
2648 !strconcat(opc, "tt"), "\t$Rd, $Rn, $Rm, $Ra",
2649 [(set rGPR:$Rd, (add rGPR:$Ra, (opnode (sra rGPR:$Rn, (i32 16)),
Jim Grosbacha7603982011-07-01 21:12:19 +00002650 (sra rGPR:$Rm, (i32 16)))))]>,
2651 Requires<[IsThumb2, HasThumb2DSP]> {
Johnny Chend68e1192009-12-15 17:24:14 +00002652 let Inst{31-27} = 0b11111;
2653 let Inst{26-23} = 0b0110;
2654 let Inst{22-20} = 0b001;
Johnny Chend68e1192009-12-15 17:24:14 +00002655 let Inst{7-6} = 0b00;
2656 let Inst{5-4} = 0b11;
2657 }
Evan Cheng5b9fcd12009-07-07 01:17:28 +00002658
Owen Anderson821752e2010-11-18 20:32:18 +00002659 def WB : T2FourReg<
2660 (outs rGPR:$Rd), (ins rGPR:$Rn, rGPR:$Rm, rGPR:$Ra), IIC_iMAC16,
2661 !strconcat(opc, "wb"), "\t$Rd, $Rn, $Rm, $Ra",
2662 [(set rGPR:$Rd, (add rGPR:$Ra, (sra (opnode rGPR:$Rn,
Jim Grosbacha7603982011-07-01 21:12:19 +00002663 (sext_inreg rGPR:$Rm, i16)), (i32 16))))]>,
2664 Requires<[IsThumb2, HasThumb2DSP]> {
Johnny Chend68e1192009-12-15 17:24:14 +00002665 let Inst{31-27} = 0b11111;
2666 let Inst{26-23} = 0b0110;
2667 let Inst{22-20} = 0b011;
Johnny Chend68e1192009-12-15 17:24:14 +00002668 let Inst{7-6} = 0b00;
2669 let Inst{5-4} = 0b00;
2670 }
Evan Cheng5b9fcd12009-07-07 01:17:28 +00002671
Owen Anderson821752e2010-11-18 20:32:18 +00002672 def WT : T2FourReg<
2673 (outs rGPR:$Rd), (ins rGPR:$Rn, rGPR:$Rm, rGPR:$Ra), IIC_iMAC16,
2674 !strconcat(opc, "wt"), "\t$Rd, $Rn, $Rm, $Ra",
2675 [(set rGPR:$Rd, (add rGPR:$Ra, (sra (opnode rGPR:$Rn,
Jim Grosbacha7603982011-07-01 21:12:19 +00002676 (sra rGPR:$Rm, (i32 16))), (i32 16))))]>,
2677 Requires<[IsThumb2, HasThumb2DSP]> {
Johnny Chend68e1192009-12-15 17:24:14 +00002678 let Inst{31-27} = 0b11111;
2679 let Inst{26-23} = 0b0110;
2680 let Inst{22-20} = 0b011;
Johnny Chend68e1192009-12-15 17:24:14 +00002681 let Inst{7-6} = 0b00;
2682 let Inst{5-4} = 0b01;
2683 }
Evan Cheng5b9fcd12009-07-07 01:17:28 +00002684}
2685
2686defm t2SMUL : T2I_smul<"smul", BinOpFrag<(mul node:$LHS, node:$RHS)>>;
2687defm t2SMLA : T2I_smla<"smla", BinOpFrag<(mul node:$LHS, node:$RHS)>>;
2688
Jim Grosbacheeca7582011-09-15 23:45:50 +00002689// Halfword multiple accumulate long: SMLAL<x><y>
Owen Anderson821752e2010-11-18 20:32:18 +00002690def t2SMLALBB : T2FourReg_mac<1, 0b100, 0b1000, (outs rGPR:$Ra,rGPR:$Rd),
2691 (ins rGPR:$Rn,rGPR:$Rm), IIC_iMAC64, "smlalbb", "\t$Ra, $Rd, $Rn, $Rm",
Jim Grosbacha7603982011-07-01 21:12:19 +00002692 [/* For disassembly only; pattern left blank */]>,
2693 Requires<[IsThumb2, HasThumb2DSP]>;
Owen Anderson821752e2010-11-18 20:32:18 +00002694def t2SMLALBT : T2FourReg_mac<1, 0b100, 0b1001, (outs rGPR:$Ra,rGPR:$Rd),
2695 (ins rGPR:$Rn,rGPR:$Rm), IIC_iMAC64, "smlalbt", "\t$Ra, $Rd, $Rn, $Rm",
Jim Grosbacha7603982011-07-01 21:12:19 +00002696 [/* For disassembly only; pattern left blank */]>,
2697 Requires<[IsThumb2, HasThumb2DSP]>;
Owen Anderson821752e2010-11-18 20:32:18 +00002698def t2SMLALTB : T2FourReg_mac<1, 0b100, 0b1010, (outs rGPR:$Ra,rGPR:$Rd),
2699 (ins rGPR:$Rn,rGPR:$Rm), IIC_iMAC64, "smlaltb", "\t$Ra, $Rd, $Rn, $Rm",
Jim Grosbacha7603982011-07-01 21:12:19 +00002700 [/* For disassembly only; pattern left blank */]>,
2701 Requires<[IsThumb2, HasThumb2DSP]>;
Owen Anderson821752e2010-11-18 20:32:18 +00002702def t2SMLALTT : T2FourReg_mac<1, 0b100, 0b1011, (outs rGPR:$Ra,rGPR:$Rd),
2703 (ins rGPR:$Rn,rGPR:$Rm), IIC_iMAC64, "smlaltt", "\t$Ra, $Rd, $Rn, $Rm",
Jim Grosbacha7603982011-07-01 21:12:19 +00002704 [/* For disassembly only; pattern left blank */]>,
2705 Requires<[IsThumb2, HasThumb2DSP]>;
Evan Cheng5b9fcd12009-07-07 01:17:28 +00002706
Johnny Chenadc77332010-02-26 22:04:29 +00002707// Dual halfword multiple: SMUAD, SMUSD, SMLAD, SMLSD, SMLALD, SMLSLD
Owen Anderson821752e2010-11-18 20:32:18 +00002708def t2SMUAD: T2ThreeReg_mac<
2709 0, 0b010, 0b0000, (outs rGPR:$Rd), (ins rGPR:$Rn, rGPR:$Rm),
Jim Grosbacha7603982011-07-01 21:12:19 +00002710 IIC_iMAC32, "smuad", "\t$Rd, $Rn, $Rm", []>,
2711 Requires<[IsThumb2, HasThumb2DSP]> {
Johnny Chenadc77332010-02-26 22:04:29 +00002712 let Inst{15-12} = 0b1111;
2713}
Owen Anderson821752e2010-11-18 20:32:18 +00002714def t2SMUADX:T2ThreeReg_mac<
2715 0, 0b010, 0b0001, (outs rGPR:$Rd), (ins rGPR:$Rn, rGPR:$Rm),
Jim Grosbacha7603982011-07-01 21:12:19 +00002716 IIC_iMAC32, "smuadx", "\t$Rd, $Rn, $Rm", []>,
2717 Requires<[IsThumb2, HasThumb2DSP]> {
Johnny Chenadc77332010-02-26 22:04:29 +00002718 let Inst{15-12} = 0b1111;
2719}
Owen Anderson821752e2010-11-18 20:32:18 +00002720def t2SMUSD: T2ThreeReg_mac<
2721 0, 0b100, 0b0000, (outs rGPR:$Rd), (ins rGPR:$Rn, rGPR:$Rm),
Jim Grosbacha7603982011-07-01 21:12:19 +00002722 IIC_iMAC32, "smusd", "\t$Rd, $Rn, $Rm", []>,
2723 Requires<[IsThumb2, HasThumb2DSP]> {
Johnny Chenadc77332010-02-26 22:04:29 +00002724 let Inst{15-12} = 0b1111;
2725}
Owen Anderson821752e2010-11-18 20:32:18 +00002726def t2SMUSDX:T2ThreeReg_mac<
2727 0, 0b100, 0b0001, (outs rGPR:$Rd), (ins rGPR:$Rn, rGPR:$Rm),
Jim Grosbacha7603982011-07-01 21:12:19 +00002728 IIC_iMAC32, "smusdx", "\t$Rd, $Rn, $Rm", []>,
2729 Requires<[IsThumb2, HasThumb2DSP]> {
Johnny Chenadc77332010-02-26 22:04:29 +00002730 let Inst{15-12} = 0b1111;
2731}
Owen Andersonc6788c82011-08-22 23:31:45 +00002732def t2SMLAD : T2FourReg_mac<
Owen Anderson821752e2010-11-18 20:32:18 +00002733 0, 0b010, 0b0000, (outs rGPR:$Rd),
2734 (ins rGPR:$Rn, rGPR:$Rm, rGPR:$Ra), IIC_iMAC32, "smlad",
Jim Grosbacha7603982011-07-01 21:12:19 +00002735 "\t$Rd, $Rn, $Rm, $Ra", []>,
2736 Requires<[IsThumb2, HasThumb2DSP]>;
Owen Anderson821752e2010-11-18 20:32:18 +00002737def t2SMLADX : T2FourReg_mac<
2738 0, 0b010, 0b0001, (outs rGPR:$Rd),
2739 (ins rGPR:$Rn, rGPR:$Rm, rGPR:$Ra), IIC_iMAC32, "smladx",
Jim Grosbacha7603982011-07-01 21:12:19 +00002740 "\t$Rd, $Rn, $Rm, $Ra", []>,
2741 Requires<[IsThumb2, HasThumb2DSP]>;
Owen Anderson821752e2010-11-18 20:32:18 +00002742def t2SMLSD : T2FourReg_mac<0, 0b100, 0b0000, (outs rGPR:$Rd),
2743 (ins rGPR:$Rn, rGPR:$Rm, rGPR:$Ra), IIC_iMAC32, "smlsd",
Jim Grosbacha7603982011-07-01 21:12:19 +00002744 "\t$Rd, $Rn, $Rm, $Ra", []>,
2745 Requires<[IsThumb2, HasThumb2DSP]>;
Owen Anderson821752e2010-11-18 20:32:18 +00002746def t2SMLSDX : T2FourReg_mac<0, 0b100, 0b0001, (outs rGPR:$Rd),
2747 (ins rGPR:$Rn, rGPR:$Rm, rGPR:$Ra), IIC_iMAC32, "smlsdx",
Jim Grosbacha7603982011-07-01 21:12:19 +00002748 "\t$Rd, $Rn, $Rm, $Ra", []>,
2749 Requires<[IsThumb2, HasThumb2DSP]>;
Owen Anderson821752e2010-11-18 20:32:18 +00002750def t2SMLALD : T2FourReg_mac<1, 0b100, 0b1100, (outs rGPR:$Ra,rGPR:$Rd),
Jim Grosbach231948f2011-09-16 16:58:03 +00002751 (ins rGPR:$Rn, rGPR:$Rm), IIC_iMAC64, "smlald",
2752 "\t$Ra, $Rd, $Rn, $Rm", []>,
Jim Grosbacha7603982011-07-01 21:12:19 +00002753 Requires<[IsThumb2, HasThumb2DSP]>;
Owen Anderson821752e2010-11-18 20:32:18 +00002754def t2SMLALDX : T2FourReg_mac<1, 0b100, 0b1101, (outs rGPR:$Ra,rGPR:$Rd),
Jim Grosbach231948f2011-09-16 16:58:03 +00002755 (ins rGPR:$Rn,rGPR:$Rm), IIC_iMAC64, "smlaldx",
2756 "\t$Ra, $Rd, $Rn, $Rm", []>,
Jim Grosbacha7603982011-07-01 21:12:19 +00002757 Requires<[IsThumb2, HasThumb2DSP]>;
Owen Anderson821752e2010-11-18 20:32:18 +00002758def t2SMLSLD : T2FourReg_mac<1, 0b101, 0b1100, (outs rGPR:$Ra,rGPR:$Rd),
Jim Grosbach7ff24722011-09-16 17:10:44 +00002759 (ins rGPR:$Rn,rGPR:$Rm), IIC_iMAC64, "smlsld",
2760 "\t$Ra, $Rd, $Rn, $Rm", []>,
Jim Grosbacha7603982011-07-01 21:12:19 +00002761 Requires<[IsThumb2, HasThumb2DSP]>;
Owen Anderson821752e2010-11-18 20:32:18 +00002762def t2SMLSLDX : T2FourReg_mac<1, 0b101, 0b1101, (outs rGPR:$Ra,rGPR:$Rd),
2763 (ins rGPR:$Rm,rGPR:$Rn), IIC_iMAC64, "smlsldx",
Jim Grosbach7ff24722011-09-16 17:10:44 +00002764 "\t$Ra, $Rd, $Rn, $Rm", []>,
Jim Grosbacha7603982011-07-01 21:12:19 +00002765 Requires<[IsThumb2, HasThumb2DSP]>;
Evan Chengf49810c2009-06-23 17:48:47 +00002766
2767//===----------------------------------------------------------------------===//
Evan Cheng734f63b2011-06-21 19:00:54 +00002768// Division Instructions.
2769// Signed and unsigned division on v7-M
2770//
2771def t2SDIV : T2ThreeReg<(outs rGPR:$Rd), (ins rGPR:$Rn, rGPR:$Rm), IIC_iALUi,
2772 "sdiv", "\t$Rd, $Rn, $Rm",
2773 [(set rGPR:$Rd, (sdiv rGPR:$Rn, rGPR:$Rm))]>,
2774 Requires<[HasDivide, IsThumb2]> {
2775 let Inst{31-27} = 0b11111;
2776 let Inst{26-21} = 0b011100;
2777 let Inst{20} = 0b1;
2778 let Inst{15-12} = 0b1111;
2779 let Inst{7-4} = 0b1111;
2780}
2781
2782def t2UDIV : T2ThreeReg<(outs rGPR:$Rd), (ins rGPR:$Rn, rGPR:$Rm), IIC_iALUi,
2783 "udiv", "\t$Rd, $Rn, $Rm",
2784 [(set rGPR:$Rd, (udiv rGPR:$Rn, rGPR:$Rm))]>,
2785 Requires<[HasDivide, IsThumb2]> {
2786 let Inst{31-27} = 0b11111;
2787 let Inst{26-21} = 0b011101;
2788 let Inst{20} = 0b1;
2789 let Inst{15-12} = 0b1111;
2790 let Inst{7-4} = 0b1111;
2791}
2792
2793//===----------------------------------------------------------------------===//
Evan Chengf49810c2009-06-23 17:48:47 +00002794// Misc. Arithmetic Instructions.
2795//
2796
Jim Grosbach80dc1162010-02-16 21:23:02 +00002797class T2I_misc<bits<2> op1, bits<2> op2, dag oops, dag iops,
2798 InstrItinClass itin, string opc, string asm, list<dag> pattern>
Owen Anderson612fb5b2010-11-18 21:15:19 +00002799 : T2ThreeReg<oops, iops, itin, opc, asm, pattern> {
Johnny Chend68e1192009-12-15 17:24:14 +00002800 let Inst{31-27} = 0b11111;
2801 let Inst{26-22} = 0b01010;
2802 let Inst{21-20} = op1;
2803 let Inst{15-12} = 0b1111;
2804 let Inst{7-6} = 0b10;
2805 let Inst{5-4} = op2;
Jim Grosbach86386922010-12-08 22:10:43 +00002806 let Rn{3-0} = Rm;
Johnny Chend68e1192009-12-15 17:24:14 +00002807}
Evan Chengf49810c2009-06-23 17:48:47 +00002808
Owen Anderson612fb5b2010-11-18 21:15:19 +00002809def t2CLZ : T2I_misc<0b11, 0b00, (outs rGPR:$Rd), (ins rGPR:$Rm), IIC_iUNAr,
2810 "clz", "\t$Rd, $Rm", [(set rGPR:$Rd, (ctlz rGPR:$Rm))]>;
Evan Chengf49810c2009-06-23 17:48:47 +00002811
Owen Anderson612fb5b2010-11-18 21:15:19 +00002812def t2RBIT : T2I_misc<0b01, 0b10, (outs rGPR:$Rd), (ins rGPR:$Rm), IIC_iUNAr,
2813 "rbit", "\t$Rd, $Rm",
2814 [(set rGPR:$Rd, (ARMrbit rGPR:$Rm))]>;
Jim Grosbach3482c802010-01-18 19:58:49 +00002815
Owen Anderson612fb5b2010-11-18 21:15:19 +00002816def t2REV : T2I_misc<0b01, 0b00, (outs rGPR:$Rd), (ins rGPR:$Rm), IIC_iUNAr,
2817 "rev", ".w\t$Rd, $Rm", [(set rGPR:$Rd, (bswap rGPR:$Rm))]>;
Johnny Chend68e1192009-12-15 17:24:14 +00002818
Owen Anderson612fb5b2010-11-18 21:15:19 +00002819def t2REV16 : T2I_misc<0b01, 0b01, (outs rGPR:$Rd), (ins rGPR:$Rm), IIC_iUNAr,
2820 "rev16", ".w\t$Rd, $Rm",
Evan Cheng9568e5c2011-06-21 06:01:08 +00002821 [(set rGPR:$Rd, (rotr (bswap rGPR:$Rm), (i32 16)))]>;
Evan Cheng6d6c55b2011-06-17 20:47:21 +00002822
Owen Anderson612fb5b2010-11-18 21:15:19 +00002823def t2REVSH : T2I_misc<0b01, 0b11, (outs rGPR:$Rd), (ins rGPR:$Rm), IIC_iUNAr,
2824 "revsh", ".w\t$Rd, $Rm",
Evan Cheng9568e5c2011-06-21 06:01:08 +00002825 [(set rGPR:$Rd, (sra (bswap rGPR:$Rm), (i32 16)))]>;
Evan Cheng3f30af32011-03-18 21:52:42 +00002826
Evan Chengf60ceac2011-06-15 17:17:48 +00002827def : T2Pat<(or (sra (shl rGPR:$Rm, (i32 24)), (i32 16)),
Evan Cheng9568e5c2011-06-21 06:01:08 +00002828 (and (srl rGPR:$Rm, (i32 8)), 0xFF)),
Evan Chengf60ceac2011-06-15 17:17:48 +00002829 (t2REVSH rGPR:$Rm)>;
2830
Owen Anderson612fb5b2010-11-18 21:15:19 +00002831def t2PKHBT : T2ThreeReg<
Jim Grosbach0b692472011-09-14 23:16:41 +00002832 (outs rGPR:$Rd), (ins rGPR:$Rn, rGPR:$Rm, pkh_lsl_amt:$sh),
2833 IIC_iBITsi, "pkhbt", "\t$Rd, $Rn, $Rm$sh",
Owen Anderson612fb5b2010-11-18 21:15:19 +00002834 [(set rGPR:$Rd, (or (and rGPR:$Rn, 0xFFFF),
Jim Grosbach1769a3d2011-07-20 20:49:03 +00002835 (and (shl rGPR:$Rm, pkh_lsl_amt:$sh),
Jim Grosbachb1dc3932010-05-05 20:44:35 +00002836 0xFFFF0000)))]>,
Jim Grosbach9729d2e2010-11-01 15:59:52 +00002837 Requires<[HasT2ExtractPack, IsThumb2]> {
Johnny Chend68e1192009-12-15 17:24:14 +00002838 let Inst{31-27} = 0b11101;
2839 let Inst{26-25} = 0b01;
2840 let Inst{24-20} = 0b01100;
2841 let Inst{5} = 0; // BT form
2842 let Inst{4} = 0;
Jim Grosbach7a088642010-11-19 17:11:02 +00002843
Jim Grosbacha0472dc2011-07-20 20:32:09 +00002844 bits<5> sh;
2845 let Inst{14-12} = sh{4-2};
2846 let Inst{7-6} = sh{1-0};
Johnny Chend68e1192009-12-15 17:24:14 +00002847}
Evan Cheng40289b02009-07-07 05:35:52 +00002848
2849// Alternate cases for PKHBT where identities eliminate some nodes.
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002850def : T2Pat<(or (and rGPR:$src1, 0xFFFF), (and rGPR:$src2, 0xFFFF0000)),
2851 (t2PKHBT rGPR:$src1, rGPR:$src2, 0)>,
Jim Grosbach9729d2e2010-11-01 15:59:52 +00002852 Requires<[HasT2ExtractPack, IsThumb2]>;
Bob Wilsonf955f292010-08-17 17:23:19 +00002853def : T2Pat<(or (and rGPR:$src1, 0xFFFF), (shl rGPR:$src2, imm16_31:$sh)),
Jim Grosbacha0472dc2011-07-20 20:32:09 +00002854 (t2PKHBT rGPR:$src1, rGPR:$src2, imm16_31:$sh)>,
Jim Grosbach9729d2e2010-11-01 15:59:52 +00002855 Requires<[HasT2ExtractPack, IsThumb2]>;
Evan Cheng40289b02009-07-07 05:35:52 +00002856
Bob Wilsondc66eda2010-08-16 22:26:55 +00002857// Note: Shifts of 1-15 bits will be transformed to srl instead of sra and
2858// will match the pattern below.
Owen Anderson612fb5b2010-11-18 21:15:19 +00002859def t2PKHTB : T2ThreeReg<
Jim Grosbach0b692472011-09-14 23:16:41 +00002860 (outs rGPR:$Rd), (ins rGPR:$Rn, rGPR:$Rm, pkh_asr_amt:$sh),
2861 IIC_iBITsi, "pkhtb", "\t$Rd, $Rn, $Rm$sh",
Owen Anderson612fb5b2010-11-18 21:15:19 +00002862 [(set rGPR:$Rd, (or (and rGPR:$Rn, 0xFFFF0000),
Jim Grosbach1769a3d2011-07-20 20:49:03 +00002863 (and (sra rGPR:$Rm, pkh_asr_amt:$sh),
Bob Wilsonf955f292010-08-17 17:23:19 +00002864 0xFFFF)))]>,
Jim Grosbach9729d2e2010-11-01 15:59:52 +00002865 Requires<[HasT2ExtractPack, IsThumb2]> {
Johnny Chend68e1192009-12-15 17:24:14 +00002866 let Inst{31-27} = 0b11101;
2867 let Inst{26-25} = 0b01;
2868 let Inst{24-20} = 0b01100;
2869 let Inst{5} = 1; // TB form
2870 let Inst{4} = 0;
Jim Grosbach7a088642010-11-19 17:11:02 +00002871
Jim Grosbacha0472dc2011-07-20 20:32:09 +00002872 bits<5> sh;
2873 let Inst{14-12} = sh{4-2};
2874 let Inst{7-6} = sh{1-0};
Johnny Chend68e1192009-12-15 17:24:14 +00002875}
Evan Cheng40289b02009-07-07 05:35:52 +00002876
2877// Alternate cases for PKHTB where identities eliminate some nodes. Note that
2878// a shift amount of 0 is *not legal* here, it is PKHBT instead.
Bob Wilsondc66eda2010-08-16 22:26:55 +00002879def : T2Pat<(or (and rGPR:$src1, 0xFFFF0000), (srl rGPR:$src2, imm16_31:$sh)),
Jim Grosbacha0472dc2011-07-20 20:32:09 +00002880 (t2PKHTB rGPR:$src1, rGPR:$src2, imm16_31:$sh)>,
Jim Grosbach9729d2e2010-11-01 15:59:52 +00002881 Requires<[HasT2ExtractPack, IsThumb2]>;
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002882def : T2Pat<(or (and rGPR:$src1, 0xFFFF0000),
Bob Wilsonf955f292010-08-17 17:23:19 +00002883 (and (srl rGPR:$src2, imm1_15:$sh), 0xFFFF)),
Jim Grosbacha0472dc2011-07-20 20:32:09 +00002884 (t2PKHTB rGPR:$src1, rGPR:$src2, imm1_15:$sh)>,
Jim Grosbach9729d2e2010-11-01 15:59:52 +00002885 Requires<[HasT2ExtractPack, IsThumb2]>;
Evan Chengf49810c2009-06-23 17:48:47 +00002886
2887//===----------------------------------------------------------------------===//
2888// Comparison Instructions...
2889//
Johnny Chend68e1192009-12-15 17:24:14 +00002890defm t2CMP : T2I_cmp_irs<0b1101, "cmp",
Evan Cheng5d42c562010-09-29 00:49:25 +00002891 IIC_iCMPi, IIC_iCMPr, IIC_iCMPsi,
Jim Grosbach9249ef32012-08-02 21:59:52 +00002892 BinOpFrag<(ARMcmp node:$LHS, node:$RHS)>>;
Jim Grosbach97a884d2010-12-07 20:41:06 +00002893
Jim Grosbachef88a922011-09-06 21:44:58 +00002894def : T2Pat<(ARMcmpZ GPRnopc:$lhs, t2_so_imm:$imm),
2895 (t2CMPri GPRnopc:$lhs, t2_so_imm:$imm)>;
2896def : T2Pat<(ARMcmpZ GPRnopc:$lhs, rGPR:$rhs),
2897 (t2CMPrr GPRnopc:$lhs, rGPR:$rhs)>;
2898def : T2Pat<(ARMcmpZ GPRnopc:$lhs, t2_so_reg:$rhs),
2899 (t2CMPrs GPRnopc:$lhs, t2_so_reg:$rhs)>;
Evan Chengf49810c2009-06-23 17:48:47 +00002900
Bill Wendlingad5c8802012-06-11 08:07:26 +00002901let isCompare = 1, Defs = [CPSR] in {
2902 // shifted imm
2903 def t2CMNri : T2OneRegCmpImm<
2904 (outs), (ins GPRnopc:$Rn, t2_so_imm:$imm), IIC_iCMPi,
2905 "cmn", ".w\t$Rn, $imm",
2906 [(ARMcmn GPRnopc:$Rn, (ineg t2_so_imm:$imm))]> {
2907 let Inst{31-27} = 0b11110;
2908 let Inst{25} = 0;
2909 let Inst{24-21} = 0b1000;
2910 let Inst{20} = 1; // The S bit.
2911 let Inst{15} = 0;
2912 let Inst{11-8} = 0b1111; // Rd
2913 }
2914 // register
2915 def t2CMNzrr : T2TwoRegCmp<
2916 (outs), (ins GPRnopc:$Rn, rGPR:$Rm), IIC_iCMPr,
2917 "cmn", ".w\t$Rn, $Rm",
2918 [(BinOpFrag<(ARMcmpZ node:$LHS,(ineg node:$RHS))>
2919 GPRnopc:$Rn, rGPR:$Rm)]> {
2920 let Inst{31-27} = 0b11101;
2921 let Inst{26-25} = 0b01;
2922 let Inst{24-21} = 0b1000;
2923 let Inst{20} = 1; // The S bit.
2924 let Inst{14-12} = 0b000; // imm3
2925 let Inst{11-8} = 0b1111; // Rd
2926 let Inst{7-6} = 0b00; // imm2
2927 let Inst{5-4} = 0b00; // type
2928 }
2929 // shifted register
2930 def t2CMNzrs : T2OneRegCmpShiftedReg<
2931 (outs), (ins GPRnopc:$Rn, t2_so_reg:$ShiftedRm), IIC_iCMPsi,
2932 "cmn", ".w\t$Rn, $ShiftedRm",
2933 [(BinOpFrag<(ARMcmpZ node:$LHS,(ineg node:$RHS))>
2934 GPRnopc:$Rn, t2_so_reg:$ShiftedRm)]> {
2935 let Inst{31-27} = 0b11101;
2936 let Inst{26-25} = 0b01;
2937 let Inst{24-21} = 0b1000;
2938 let Inst{20} = 1; // The S bit.
2939 let Inst{11-8} = 0b1111; // Rd
2940 }
2941}
Dan Gohman4b7dff92010-08-26 15:50:25 +00002942
Bill Wendlingad5c8802012-06-11 08:07:26 +00002943// Assembler aliases w/o the ".w" suffix.
2944// No alias here for 'rr' version as not all instantiations of this multiclass
2945// want one (CMP in particular, does not).
Jim Grosbach9249ef32012-08-02 21:59:52 +00002946def : t2InstAlias<"cmn${p} $Rn, $imm",
2947 (t2CMNri GPRnopc:$Rn, t2_so_imm:$imm, pred:$p)>;
2948def : t2InstAlias<"cmn${p} $Rn, $shift",
2949 (t2CMNzrs GPRnopc:$Rn, t2_so_reg:$shift, pred:$p)>;
Dan Gohman4b7dff92010-08-26 15:50:25 +00002950
Bill Wendlingad5c8802012-06-11 08:07:26 +00002951def : T2Pat<(ARMcmp GPR:$src, t2_so_imm_neg:$imm),
2952 (t2CMNri GPR:$src, t2_so_imm_neg:$imm)>;
2953
2954def : T2Pat<(ARMcmpZ GPRnopc:$src, t2_so_imm_neg:$imm),
2955 (t2CMNri GPRnopc:$src, t2_so_imm_neg:$imm)>;
Evan Chengf49810c2009-06-23 17:48:47 +00002956
Johnny Chend68e1192009-12-15 17:24:14 +00002957defm t2TST : T2I_cmp_irs<0b0000, "tst",
Evan Cheng5d42c562010-09-29 00:49:25 +00002958 IIC_iTSTi, IIC_iTSTr, IIC_iTSTsi,
Jim Grosbach9249ef32012-08-02 21:59:52 +00002959 BinOpFrag<(ARMcmpZ (and_su node:$LHS, node:$RHS), 0)>>;
Johnny Chend68e1192009-12-15 17:24:14 +00002960defm t2TEQ : T2I_cmp_irs<0b0100, "teq",
Evan Cheng5d42c562010-09-29 00:49:25 +00002961 IIC_iTSTi, IIC_iTSTr, IIC_iTSTsi,
Jim Grosbach9249ef32012-08-02 21:59:52 +00002962 BinOpFrag<(ARMcmpZ (xor_su node:$LHS, node:$RHS), 0)>>;
Evan Chengf49810c2009-06-23 17:48:47 +00002963
Evan Chenge253c952009-07-07 20:39:03 +00002964// Conditional moves
2965// FIXME: should be able to write a pattern for ARMcmov, but can't use
Jim Grosbach64171712010-02-16 21:07:46 +00002966// a two-value operand where a dag node expects two operands. :(
Evan Cheng63f35442010-11-13 02:25:14 +00002967let neverHasSideEffects = 1 in {
Jakob Stoklund Olesenc5041ca2012-04-04 18:23:42 +00002968
Jakob Stoklund Olesen053b5b02012-08-16 23:14:20 +00002969let isCommutable = 1, isSelect = 1 in
Jim Grosbachefeedce2011-07-01 17:14:11 +00002970def t2MOVCCr : t2PseudoInst<(outs rGPR:$Rd),
2971 (ins rGPR:$false, rGPR:$Rm, pred:$p),
Owen Anderson16884412011-07-13 23:22:26 +00002972 4, IIC_iCMOVr,
Owen Anderson8ee97792010-11-18 21:46:31 +00002973 [/*(set rGPR:$Rd, (ARMcmov rGPR:$false, rGPR:$Rm, imm:$cc, CCR:$ccr))*/]>,
Jim Grosbachefeedce2011-07-01 17:14:11 +00002974 RegConstraint<"$false = $Rd">;
2975
2976let isMoveImm = 1 in
2977def t2MOVCCi : t2PseudoInst<(outs rGPR:$Rd),
2978 (ins rGPR:$false, t2_so_imm:$imm, pred:$p),
Owen Anderson16884412011-07-13 23:22:26 +00002979 4, IIC_iCMOVi,
Jim Grosbachefeedce2011-07-01 17:14:11 +00002980[/*(set rGPR:$Rd,(ARMcmov rGPR:$false,t2_so_imm:$imm, imm:$cc, CCR:$ccr))*/]>,
2981 RegConstraint<"$false = $Rd">;
Evan Chenge253c952009-07-07 20:39:03 +00002982
Jim Grosbach6b8f1e32011-06-27 23:54:06 +00002983// FIXME: Pseudo-ize these. For now, just mark codegen only.
2984let isCodeGenOnly = 1 in {
Evan Chengc4af4632010-11-17 20:13:28 +00002985let isMoveImm = 1 in
Jim Grosbachffa32252011-07-19 19:13:28 +00002986def t2MOVCCi16 : T2I<(outs rGPR:$Rd), (ins rGPR:$false, imm0_65535_expr:$imm),
Evan Cheng875a6ac2010-11-12 22:42:47 +00002987 IIC_iCMOVi,
Owen Andersonc56dcbf2010-11-16 00:29:56 +00002988 "movw", "\t$Rd, $imm", []>,
2989 RegConstraint<"$false = $Rd"> {
Jim Grosbacha4257162010-10-07 00:53:56 +00002990 let Inst{31-27} = 0b11110;
2991 let Inst{25} = 1;
2992 let Inst{24-21} = 0b0010;
2993 let Inst{20} = 0; // The S bit.
2994 let Inst{15} = 0;
Jim Grosbach7a088642010-11-19 17:11:02 +00002995
Owen Andersonc56dcbf2010-11-16 00:29:56 +00002996 bits<4> Rd;
2997 bits<16> imm;
Jim Grosbach7a088642010-11-19 17:11:02 +00002998
Jim Grosbach86386922010-12-08 22:10:43 +00002999 let Inst{11-8} = Rd;
Owen Andersonc56dcbf2010-11-16 00:29:56 +00003000 let Inst{19-16} = imm{15-12};
3001 let Inst{26} = imm{11};
3002 let Inst{14-12} = imm{10-8};
3003 let Inst{7-0} = imm{7-0};
Jim Grosbacha4257162010-10-07 00:53:56 +00003004}
3005
Evan Chengc4af4632010-11-17 20:13:28 +00003006let isMoveImm = 1 in
Evan Cheng63f35442010-11-13 02:25:14 +00003007def t2MOVCCi32imm : PseudoInst<(outs rGPR:$dst),
3008 (ins rGPR:$false, i32imm:$src, pred:$p),
Jim Grosbach99594eb2010-11-18 01:38:26 +00003009 IIC_iCMOVix2, []>, RegConstraint<"$false = $dst">;
Evan Cheng63f35442010-11-13 02:25:14 +00003010
Evan Chengc4af4632010-11-17 20:13:28 +00003011let isMoveImm = 1 in
Owen Anderson8ee97792010-11-18 21:46:31 +00003012def t2MVNCCi : T2OneRegImm<(outs rGPR:$Rd), (ins rGPR:$false, t2_so_imm:$imm),
Jim Grosbach9c5edc02011-10-26 17:28:15 +00003013 IIC_iCMOVi, "mvn", "\t$Rd, $imm",
Owen Anderson8ee97792010-11-18 21:46:31 +00003014[/*(set rGPR:$Rd,(ARMcmov rGPR:$false,t2_so_imm_not:$imm,
Evan Cheng875a6ac2010-11-12 22:42:47 +00003015 imm:$cc, CCR:$ccr))*/]>,
Owen Anderson8ee97792010-11-18 21:46:31 +00003016 RegConstraint<"$false = $Rd"> {
Evan Cheng875a6ac2010-11-12 22:42:47 +00003017 let Inst{31-27} = 0b11110;
3018 let Inst{25} = 0;
3019 let Inst{24-21} = 0b0011;
3020 let Inst{20} = 0; // The S bit.
3021 let Inst{19-16} = 0b1111; // Rn
3022 let Inst{15} = 0;
3023}
3024
Johnny Chend68e1192009-12-15 17:24:14 +00003025class T2I_movcc_sh<bits<2> opcod, dag oops, dag iops, InstrItinClass itin,
3026 string opc, string asm, list<dag> pattern>
Owen Andersonbb6315d2010-11-15 19:58:36 +00003027 : T2TwoRegShiftImm<oops, iops, itin, opc, asm, pattern> {
Johnny Chend68e1192009-12-15 17:24:14 +00003028 let Inst{31-27} = 0b11101;
3029 let Inst{26-25} = 0b01;
3030 let Inst{24-21} = 0b0010;
3031 let Inst{20} = 0; // The S bit.
3032 let Inst{19-16} = 0b1111; // Rn
3033 let Inst{5-4} = opcod; // Shift type.
3034}
Owen Andersonbb6315d2010-11-15 19:58:36 +00003035def t2MOVCClsl : T2I_movcc_sh<0b00, (outs rGPR:$Rd),
3036 (ins rGPR:$false, rGPR:$Rm, i32imm:$imm),
3037 IIC_iCMOVsi, "lsl", ".w\t$Rd, $Rm, $imm", []>,
3038 RegConstraint<"$false = $Rd">;
3039def t2MOVCClsr : T2I_movcc_sh<0b01, (outs rGPR:$Rd),
3040 (ins rGPR:$false, rGPR:$Rm, i32imm:$imm),
3041 IIC_iCMOVsi, "lsr", ".w\t$Rd, $Rm, $imm", []>,
3042 RegConstraint<"$false = $Rd">;
3043def t2MOVCCasr : T2I_movcc_sh<0b10, (outs rGPR:$Rd),
3044 (ins rGPR:$false, rGPR:$Rm, i32imm:$imm),
3045 IIC_iCMOVsi, "asr", ".w\t$Rd, $Rm, $imm", []>,
3046 RegConstraint<"$false = $Rd">;
3047def t2MOVCCror : T2I_movcc_sh<0b11, (outs rGPR:$Rd),
3048 (ins rGPR:$false, rGPR:$Rm, i32imm:$imm),
3049 IIC_iCMOVsi, "ror", ".w\t$Rd, $Rm, $imm", []>,
3050 RegConstraint<"$false = $Rd">;
Evan Cheng03a18522012-03-20 21:28:05 +00003051} // isCodeGenOnly = 1
Evan Chengc892aeb2012-02-23 01:19:06 +00003052
Evan Cheng03a18522012-03-20 21:28:05 +00003053multiclass T2I_bincc_irs<Instruction iri, Instruction irr, Instruction irs,
Evan Chengc892aeb2012-02-23 01:19:06 +00003054 InstrItinClass iii, InstrItinClass iir, InstrItinClass iis> {
3055 // shifted imm
Evan Cheng03a18522012-03-20 21:28:05 +00003056 def ri : t2PseudoExpand<(outs rGPR:$Rd),
Jakob Stoklund Olesen65bf80e2012-08-15 16:17:24 +00003057 (ins rGPR:$Rfalse, rGPR:$Rn, t2_so_imm:$imm,
3058 pred:$p, cc_out:$s),
Evan Cheng03a18522012-03-20 21:28:05 +00003059 4, iii, [],
3060 (iri rGPR:$Rd, rGPR:$Rn, t2_so_imm:$imm, pred:$p, cc_out:$s)>,
Jakob Stoklund Olesen65bf80e2012-08-15 16:17:24 +00003061 RegConstraint<"$Rfalse = $Rd">;
Evan Chengc892aeb2012-02-23 01:19:06 +00003062 // register
Evan Cheng03a18522012-03-20 21:28:05 +00003063 def rr : t2PseudoExpand<(outs rGPR:$Rd),
Jakob Stoklund Olesen65bf80e2012-08-15 16:17:24 +00003064 (ins rGPR:$Rfalse, rGPR:$Rn, rGPR:$Rm,
3065 pred:$p, cc_out:$s),
Evan Cheng03a18522012-03-20 21:28:05 +00003066 4, iir, [],
3067 (irr rGPR:$Rd, rGPR:$Rn, rGPR:$Rm, pred:$p, cc_out:$s)>,
Jakob Stoklund Olesen65bf80e2012-08-15 16:17:24 +00003068 RegConstraint<"$Rfalse = $Rd">;
Evan Chengc892aeb2012-02-23 01:19:06 +00003069 // shifted register
Evan Cheng03a18522012-03-20 21:28:05 +00003070 def rs : t2PseudoExpand<(outs rGPR:$Rd),
Jakob Stoklund Olesen65bf80e2012-08-15 16:17:24 +00003071 (ins rGPR:$Rfalse, rGPR:$Rn, t2_so_reg:$ShiftedRm,
3072 pred:$p, cc_out:$s),
Evan Cheng03a18522012-03-20 21:28:05 +00003073 4, iis, [],
3074 (irs rGPR:$Rd, rGPR:$Rn, t2_so_reg:$ShiftedRm, pred:$p, cc_out:$s)>,
Jakob Stoklund Olesen65bf80e2012-08-15 16:17:24 +00003075 RegConstraint<"$Rfalse = $Rd">;
Evan Chengc892aeb2012-02-23 01:19:06 +00003076} // T2I_bincc_irs
3077
Evan Cheng03a18522012-03-20 21:28:05 +00003078defm t2ANDCC : T2I_bincc_irs<t2ANDri, t2ANDrr, t2ANDrs,
3079 IIC_iBITi, IIC_iBITr, IIC_iBITsi>;
3080defm t2ORRCC : T2I_bincc_irs<t2ORRri, t2ORRrr, t2ORRrs,
3081 IIC_iBITi, IIC_iBITr, IIC_iBITsi>;
3082defm t2EORCC : T2I_bincc_irs<t2EORri, t2EORrr, t2EORrs,
3083 IIC_iBITi, IIC_iBITr, IIC_iBITsi>;
Jim Grosbachefeedce2011-07-01 17:14:11 +00003084} // neverHasSideEffects
Evan Cheng13f8b362009-08-01 01:43:45 +00003085
David Goodwin5e47a9a2009-06-30 18:04:13 +00003086//===----------------------------------------------------------------------===//
Jim Grosbachc219e4d2009-12-14 18:56:47 +00003087// Atomic operations intrinsics
3088//
3089
3090// memory barriers protect the atomic sequences
3091let hasSideEffects = 1 in {
Bob Wilsonf74a4292010-10-30 00:54:37 +00003092def t2DMB : AInoP<(outs), (ins memb_opt:$opt), ThumbFrm, NoItinerary,
3093 "dmb", "\t$opt", [(ARMMemBarrier (i32 imm:$opt))]>,
3094 Requires<[IsThumb, HasDB]> {
3095 bits<4> opt;
3096 let Inst{31-4} = 0xf3bf8f5;
3097 let Inst{3-0} = opt;
Jim Grosbachc219e4d2009-12-14 18:56:47 +00003098}
3099}
3100
Bob Wilsonf74a4292010-10-30 00:54:37 +00003101def t2DSB : AInoP<(outs), (ins memb_opt:$opt), ThumbFrm, NoItinerary,
Jim Grosbachaa833e52011-09-06 22:53:27 +00003102 "dsb", "\t$opt", []>,
Bob Wilsonf74a4292010-10-30 00:54:37 +00003103 Requires<[IsThumb, HasDB]> {
3104 bits<4> opt;
3105 let Inst{31-4} = 0xf3bf8f4;
3106 let Inst{3-0} = opt;
Johnny Chena4339822010-03-03 00:16:28 +00003107}
3108
Jim Grosbachaa833e52011-09-06 22:53:27 +00003109def t2ISB : AInoP<(outs), (ins memb_opt:$opt), ThumbFrm, NoItinerary,
3110 "isb", "\t$opt",
Evan Cheng97a45432012-04-27 01:27:19 +00003111 []>, Requires<[IsThumb, HasDB]> {
Jim Grosbachaa833e52011-09-06 22:53:27 +00003112 bits<4> opt;
Bob Wilsonf74a4292010-10-30 00:54:37 +00003113 let Inst{31-4} = 0xf3bf8f6;
Jim Grosbachaa833e52011-09-06 22:53:27 +00003114 let Inst{3-0} = opt;
Johnny Chena4339822010-03-03 00:16:28 +00003115}
3116
Owen Anderson16884412011-07-13 23:22:26 +00003117class T2I_ldrex<bits<2> opcod, dag oops, dag iops, AddrMode am, int sz,
Johnny Chend68e1192009-12-15 17:24:14 +00003118 InstrItinClass itin, string opc, string asm, string cstr,
3119 list<dag> pattern, bits<4> rt2 = 0b1111>
3120 : Thumb2I<oops, iops, am, sz, itin, opc, asm, cstr, pattern> {
3121 let Inst{31-27} = 0b11101;
3122 let Inst{26-20} = 0b0001101;
3123 let Inst{11-8} = rt2;
3124 let Inst{7-6} = 0b01;
3125 let Inst{5-4} = opcod;
3126 let Inst{3-0} = 0b1111;
Jim Grosbach7a088642010-11-19 17:11:02 +00003127
Bruno Cardoso Lopes505f3cd2011-03-24 21:04:58 +00003128 bits<4> addr;
Owen Anderson91a7c592010-11-19 00:28:38 +00003129 bits<4> Rt;
Bruno Cardoso Lopes505f3cd2011-03-24 21:04:58 +00003130 let Inst{19-16} = addr;
Jim Grosbach86386922010-12-08 22:10:43 +00003131 let Inst{15-12} = Rt;
Johnny Chend68e1192009-12-15 17:24:14 +00003132}
Owen Anderson16884412011-07-13 23:22:26 +00003133class T2I_strex<bits<2> opcod, dag oops, dag iops, AddrMode am, int sz,
Johnny Chend68e1192009-12-15 17:24:14 +00003134 InstrItinClass itin, string opc, string asm, string cstr,
3135 list<dag> pattern, bits<4> rt2 = 0b1111>
3136 : Thumb2I<oops, iops, am, sz, itin, opc, asm, cstr, pattern> {
3137 let Inst{31-27} = 0b11101;
3138 let Inst{26-20} = 0b0001100;
3139 let Inst{11-8} = rt2;
3140 let Inst{7-6} = 0b01;
3141 let Inst{5-4} = opcod;
Jim Grosbach7a088642010-11-19 17:11:02 +00003142
Owen Anderson91a7c592010-11-19 00:28:38 +00003143 bits<4> Rd;
Bruno Cardoso Lopes505f3cd2011-03-24 21:04:58 +00003144 bits<4> addr;
Owen Anderson91a7c592010-11-19 00:28:38 +00003145 bits<4> Rt;
Bruno Cardoso Lopes505f3cd2011-03-24 21:04:58 +00003146 let Inst{3-0} = Rd;
3147 let Inst{19-16} = addr;
Jim Grosbach86386922010-12-08 22:10:43 +00003148 let Inst{15-12} = Rt;
Johnny Chend68e1192009-12-15 17:24:14 +00003149}
3150
Jim Grosbachc219e4d2009-12-14 18:56:47 +00003151let mayLoad = 1 in {
Jim Grosbachb6aed502011-09-09 18:37:27 +00003152def t2LDREXB : T2I_ldrex<0b00, (outs rGPR:$Rt), (ins addr_offset_none:$addr),
Owen Anderson16884412011-07-13 23:22:26 +00003153 AddrModeNone, 4, NoItinerary,
Jim Grosbachf921c0fe2011-06-13 22:54:22 +00003154 "ldrexb", "\t$Rt, $addr", "", []>;
Jim Grosbachb6aed502011-09-09 18:37:27 +00003155def t2LDREXH : T2I_ldrex<0b01, (outs rGPR:$Rt), (ins addr_offset_none:$addr),
Owen Anderson16884412011-07-13 23:22:26 +00003156 AddrModeNone, 4, NoItinerary,
Jim Grosbachf921c0fe2011-06-13 22:54:22 +00003157 "ldrexh", "\t$Rt, $addr", "", []>;
Jim Grosbachb6aed502011-09-09 18:37:27 +00003158def t2LDREX : Thumb2I<(outs rGPR:$Rt), (ins t2addrmode_imm0_1020s4:$addr),
Owen Anderson16884412011-07-13 23:22:26 +00003159 AddrModeNone, 4, NoItinerary,
Jim Grosbachf921c0fe2011-06-13 22:54:22 +00003160 "ldrex", "\t$Rt, $addr", "", []> {
Jim Grosbachb6aed502011-09-09 18:37:27 +00003161 bits<4> Rt;
3162 bits<12> addr;
Johnny Chend68e1192009-12-15 17:24:14 +00003163 let Inst{31-27} = 0b11101;
3164 let Inst{26-20} = 0b0000101;
Jim Grosbachb6aed502011-09-09 18:37:27 +00003165 let Inst{19-16} = addr{11-8};
Owen Anderson808c7d12010-12-10 21:52:38 +00003166 let Inst{15-12} = Rt;
Jim Grosbachb6aed502011-09-09 18:37:27 +00003167 let Inst{11-8} = 0b1111;
3168 let Inst{7-0} = addr{7-0};
Johnny Chend68e1192009-12-15 17:24:14 +00003169}
Bruno Cardoso Lopesa0112d02011-05-28 04:07:29 +00003170let hasExtraDefRegAllocReq = 1 in
3171def t2LDREXD : T2I_ldrex<0b11, (outs rGPR:$Rt, rGPR:$Rt2),
Jim Grosbachb6aed502011-09-09 18:37:27 +00003172 (ins addr_offset_none:$addr),
Owen Anderson16884412011-07-13 23:22:26 +00003173 AddrModeNone, 4, NoItinerary,
Bruno Cardoso Lopes505f3cd2011-03-24 21:04:58 +00003174 "ldrexd", "\t$Rt, $Rt2, $addr", "",
Owen Anderson91a7c592010-11-19 00:28:38 +00003175 [], {?, ?, ?, ?}> {
3176 bits<4> Rt2;
Jim Grosbach86386922010-12-08 22:10:43 +00003177 let Inst{11-8} = Rt2;
Owen Anderson91a7c592010-11-19 00:28:38 +00003178}
Jim Grosbachc219e4d2009-12-14 18:56:47 +00003179}
3180
Owen Anderson91a7c592010-11-19 00:28:38 +00003181let mayStore = 1, Constraints = "@earlyclobber $Rd" in {
Jim Grosbachf921c0fe2011-06-13 22:54:22 +00003182def t2STREXB : T2I_strex<0b00, (outs rGPR:$Rd),
Jim Grosbachb6aed502011-09-09 18:37:27 +00003183 (ins rGPR:$Rt, addr_offset_none:$addr),
Owen Anderson16884412011-07-13 23:22:26 +00003184 AddrModeNone, 4, NoItinerary,
Jim Grosbachf921c0fe2011-06-13 22:54:22 +00003185 "strexb", "\t$Rd, $Rt, $addr", "", []>;
3186def t2STREXH : T2I_strex<0b01, (outs rGPR:$Rd),
Jim Grosbachb6aed502011-09-09 18:37:27 +00003187 (ins rGPR:$Rt, addr_offset_none:$addr),
Owen Anderson16884412011-07-13 23:22:26 +00003188 AddrModeNone, 4, NoItinerary,
Jim Grosbachf921c0fe2011-06-13 22:54:22 +00003189 "strexh", "\t$Rd, $Rt, $addr", "", []>;
Jim Grosbachb6aed502011-09-09 18:37:27 +00003190def t2STREX : Thumb2I<(outs rGPR:$Rd), (ins rGPR:$Rt,
3191 t2addrmode_imm0_1020s4:$addr),
Owen Anderson16884412011-07-13 23:22:26 +00003192 AddrModeNone, 4, NoItinerary,
Bruno Cardoso Lopes505f3cd2011-03-24 21:04:58 +00003193 "strex", "\t$Rd, $Rt, $addr", "",
3194 []> {
Jim Grosbachb6aed502011-09-09 18:37:27 +00003195 bits<4> Rd;
3196 bits<4> Rt;
3197 bits<12> addr;
Johnny Chend68e1192009-12-15 17:24:14 +00003198 let Inst{31-27} = 0b11101;
3199 let Inst{26-20} = 0b0000100;
Jim Grosbachb6aed502011-09-09 18:37:27 +00003200 let Inst{19-16} = addr{11-8};
Owen Anderson808c7d12010-12-10 21:52:38 +00003201 let Inst{15-12} = Rt;
Jim Grosbachb6aed502011-09-09 18:37:27 +00003202 let Inst{11-8} = Rd;
3203 let Inst{7-0} = addr{7-0};
Johnny Chend68e1192009-12-15 17:24:14 +00003204}
Anton Korobeynikov2c6d0f22012-01-23 22:57:52 +00003205let hasExtraSrcRegAllocReq = 1 in
Owen Anderson91a7c592010-11-19 00:28:38 +00003206def t2STREXD : T2I_strex<0b11, (outs rGPR:$Rd),
Jim Grosbachb6aed502011-09-09 18:37:27 +00003207 (ins rGPR:$Rt, rGPR:$Rt2, addr_offset_none:$addr),
Owen Anderson16884412011-07-13 23:22:26 +00003208 AddrModeNone, 4, NoItinerary,
Bruno Cardoso Lopes505f3cd2011-03-24 21:04:58 +00003209 "strexd", "\t$Rd, $Rt, $Rt2, $addr", "", [],
Owen Anderson91a7c592010-11-19 00:28:38 +00003210 {?, ?, ?, ?}> {
3211 bits<4> Rt2;
Jim Grosbach86386922010-12-08 22:10:43 +00003212 let Inst{11-8} = Rt2;
Owen Anderson91a7c592010-11-19 00:28:38 +00003213}
Anton Korobeynikov2c6d0f22012-01-23 22:57:52 +00003214}
Jim Grosbachc219e4d2009-12-14 18:56:47 +00003215
Jim Grosbachad2dad92011-09-06 20:27:04 +00003216def t2CLREX : T2I<(outs), (ins), NoItinerary, "clrex", "", []>,
Bruno Cardoso Lopese47f3752011-01-20 19:18:32 +00003217 Requires<[IsThumb2, HasV7]> {
3218 let Inst{31-16} = 0xf3bf;
Johnny Chen10a77e12010-03-02 22:11:06 +00003219 let Inst{15-14} = 0b10;
Bruno Cardoso Lopese47f3752011-01-20 19:18:32 +00003220 let Inst{13} = 0;
Johnny Chen10a77e12010-03-02 22:11:06 +00003221 let Inst{12} = 0;
Bruno Cardoso Lopese47f3752011-01-20 19:18:32 +00003222 let Inst{11-8} = 0b1111;
Johnny Chen10a77e12010-03-02 22:11:06 +00003223 let Inst{7-4} = 0b0010;
Bruno Cardoso Lopese47f3752011-01-20 19:18:32 +00003224 let Inst{3-0} = 0b1111;
Johnny Chen10a77e12010-03-02 22:11:06 +00003225}
3226
Jim Grosbachc219e4d2009-12-14 18:56:47 +00003227//===----------------------------------------------------------------------===//
Jim Grosbach5aa16842009-08-11 19:42:21 +00003228// SJLJ Exception handling intrinsics
Jim Grosbach1add6592009-08-13 15:11:43 +00003229// eh_sjlj_setjmp() is an instruction sequence to store the return
Jim Grosbach5aa16842009-08-11 19:42:21 +00003230// address and save #0 in R0 for the non-longjmp case.
3231// Since by its nature we may be coming from some other function to get
3232// here, and we're using the stack frame for the containing function to
3233// save/restore registers, we can't keep anything live in regs across
3234// the eh_sjlj_setjmp(), else it will almost certainly have been tromped upon
Chris Lattner7a2bdde2011-04-15 05:18:47 +00003235// when we get here from a longjmp(). We force everything out of registers
Jim Grosbach5aa16842009-08-11 19:42:21 +00003236// except for our own input by listing the relevant registers in Defs. By
3237// doing so, we also cause the prologue/epilogue code to actively preserve
3238// all of the callee-saved resgisters, which is exactly what we want.
Jim Grosbach0798edd2010-05-27 23:49:24 +00003239// $val is a scratch register for our use.
Jim Grosbacha87ded22010-02-08 23:22:00 +00003240let Defs =
Andrew Tricka1099f12011-06-07 00:08:49 +00003241 [ R0, R1, R2, R3, R4, R5, R6, R7, R8, R9, R10, R11, R12, LR, CPSR,
Jakob Stoklund Olesenece8b732012-01-13 22:55:42 +00003242 Q0, Q1, Q2, Q3, Q8, Q9, Q10, Q11, Q12, Q13, Q14, Q15],
Bill Wendling13a71212011-10-17 22:26:23 +00003243 hasSideEffects = 1, isBarrier = 1, isCodeGenOnly = 1,
3244 usesCustomInserter = 1 in {
Jim Grosbach9f134b52010-08-26 17:02:47 +00003245 def t2Int_eh_sjlj_setjmp : Thumb2XI<(outs), (ins tGPR:$src, tGPR:$val),
Owen Anderson16884412011-07-13 23:22:26 +00003246 AddrModeNone, 0, NoItinerary, "", "",
Jim Grosbach9f134b52010-08-26 17:02:47 +00003247 [(set R0, (ARMeh_sjlj_setjmp tGPR:$src, tGPR:$val))]>,
Bob Wilsonec80e262010-04-09 20:41:18 +00003248 Requires<[IsThumb2, HasVFP2]>;
Jim Grosbach5aa16842009-08-11 19:42:21 +00003249}
3250
Bob Wilsonec80e262010-04-09 20:41:18 +00003251let Defs =
Andrew Tricka1099f12011-06-07 00:08:49 +00003252 [ R0, R1, R2, R3, R4, R5, R6, R7, R8, R9, R10, R11, R12, LR, CPSR ],
Bill Wendling13a71212011-10-17 22:26:23 +00003253 hasSideEffects = 1, isBarrier = 1, isCodeGenOnly = 1,
3254 usesCustomInserter = 1 in {
Jim Grosbach9f134b52010-08-26 17:02:47 +00003255 def t2Int_eh_sjlj_setjmp_nofp : Thumb2XI<(outs), (ins tGPR:$src, tGPR:$val),
Owen Anderson16884412011-07-13 23:22:26 +00003256 AddrModeNone, 0, NoItinerary, "", "",
Jim Grosbach9f134b52010-08-26 17:02:47 +00003257 [(set R0, (ARMeh_sjlj_setjmp tGPR:$src, tGPR:$val))]>,
Bob Wilsonec80e262010-04-09 20:41:18 +00003258 Requires<[IsThumb2, NoVFP]>;
3259}
Jim Grosbach5aa16842009-08-11 19:42:21 +00003260
3261
3262//===----------------------------------------------------------------------===//
David Goodwin5e47a9a2009-06-30 18:04:13 +00003263// Control-Flow Instructions
3264//
3265
Evan Chengc50a1cb2009-07-09 22:58:39 +00003266// FIXME: remove when we have a way to marking a MI with these properties.
Evan Chengc50a1cb2009-07-09 22:58:39 +00003267// FIXME: Should pc be an implicit operand like PICADD, etc?
Evan Cheng0d92f5f2009-10-01 08:22:27 +00003268let isReturn = 1, isTerminator = 1, isBarrier = 1, mayLoad = 1,
Chris Lattner39ee0362010-10-31 19:10:56 +00003269 hasExtraDefRegAllocReq = 1, isCodeGenOnly = 1 in
Jim Grosbach53e3fc42011-07-08 17:40:42 +00003270def t2LDMIA_RET: t2PseudoExpand<(outs GPR:$wb), (ins GPR:$Rn, pred:$p,
Jim Grosbach16f99242011-06-30 18:25:42 +00003271 reglist:$regs, variable_ops),
Owen Anderson16884412011-07-13 23:22:26 +00003272 4, IIC_iLoad_mBr, [],
Jim Grosbach53e3fc42011-07-08 17:40:42 +00003273 (t2LDMIA_UPD GPR:$wb, GPR:$Rn, pred:$p, reglist:$regs)>,
Jim Grosbach16f99242011-06-30 18:25:42 +00003274 RegConstraint<"$Rn = $wb">;
Evan Chengc50a1cb2009-07-09 22:58:39 +00003275
David Goodwin5e47a9a2009-06-30 18:04:13 +00003276let isBranch = 1, isTerminator = 1, isBarrier = 1 in {
3277let isPredicable = 1 in
Owen Anderson51f6a7a2011-09-09 21:48:23 +00003278def t2B : T2I<(outs), (ins uncondbrtarget:$target), IIC_Br,
3279 "b", ".w\t$target",
Johnny Chend68e1192009-12-15 17:24:14 +00003280 [(br bb:$target)]> {
3281 let Inst{31-27} = 0b11110;
3282 let Inst{15-14} = 0b10;
3283 let Inst{12} = 1;
Owen Anderson05bf5952010-11-29 18:54:38 +00003284
3285 bits<20> target;
3286 let Inst{26} = target{19};
3287 let Inst{11} = target{18};
3288 let Inst{13} = target{17};
3289 let Inst{21-16} = target{16-11};
3290 let Inst{10-0} = target{10-0};
Kevin Enderby2a7d3a92012-04-12 23:13:34 +00003291 let DecoderMethod = "DecodeT2BInstruction";
Johnny Chend68e1192009-12-15 17:24:14 +00003292}
David Goodwin5e47a9a2009-06-30 18:04:13 +00003293
Jim Grosbacha0bb2532010-11-29 22:40:58 +00003294let isNotDuplicable = 1, isIndirectBranch = 1 in {
Jim Grosbachd4811102010-12-15 19:03:16 +00003295def t2BR_JT : t2PseudoInst<(outs),
Jim Grosbach5ca66692010-11-29 22:37:40 +00003296 (ins GPR:$target, GPR:$index, i32imm:$jt, i32imm:$id),
Owen Anderson16884412011-07-13 23:22:26 +00003297 0, IIC_Br,
Jim Grosbach5ca66692010-11-29 22:37:40 +00003298 [(ARMbr2jt GPR:$target, GPR:$index, tjumptable:$jt, imm:$id)]>;
Evan Cheng5657c012009-07-29 02:18:14 +00003299
Evan Cheng25f7cfc2009-08-01 06:13:52 +00003300// FIXME: Add a non-pc based case that can be predicated.
Jim Grosbachd4811102010-12-15 19:03:16 +00003301def t2TBB_JT : t2PseudoInst<(outs),
Jim Grosbachbc80e942011-09-19 20:31:59 +00003302 (ins GPR:$index, i32imm:$jt, i32imm:$id), 0, IIC_Br, []>;
Jim Grosbach5ca66692010-11-29 22:37:40 +00003303
Jim Grosbachd4811102010-12-15 19:03:16 +00003304def t2TBH_JT : t2PseudoInst<(outs),
Jim Grosbachbc80e942011-09-19 20:31:59 +00003305 (ins GPR:$index, i32imm:$jt, i32imm:$id), 0, IIC_Br, []>;
Jim Grosbach5ca66692010-11-29 22:37:40 +00003306
Jim Grosbach7f739be2011-09-19 22:21:13 +00003307def t2TBB : T2I<(outs), (ins addrmode_tbb:$addr), IIC_Br,
3308 "tbb", "\t$addr", []> {
Jim Grosbach5ca66692010-11-29 22:37:40 +00003309 bits<4> Rn;
3310 bits<4> Rm;
Jim Grosbachf0db2612010-12-17 18:42:56 +00003311 let Inst{31-20} = 0b111010001101;
Jim Grosbach5ca66692010-11-29 22:37:40 +00003312 let Inst{19-16} = Rn;
3313 let Inst{15-5} = 0b11110000000;
3314 let Inst{4} = 0; // B form
3315 let Inst{3-0} = Rm;
Jim Grosbach7f739be2011-09-19 22:21:13 +00003316
3317 let DecoderMethod = "DecodeThumbTableBranch";
Johnny Chend68e1192009-12-15 17:24:14 +00003318}
Evan Cheng5657c012009-07-29 02:18:14 +00003319
Jim Grosbach7f739be2011-09-19 22:21:13 +00003320def t2TBH : T2I<(outs), (ins addrmode_tbh:$addr), IIC_Br,
3321 "tbh", "\t$addr", []> {
Jim Grosbach5ca66692010-11-29 22:37:40 +00003322 bits<4> Rn;
3323 bits<4> Rm;
Jim Grosbachf0db2612010-12-17 18:42:56 +00003324 let Inst{31-20} = 0b111010001101;
Jim Grosbach5ca66692010-11-29 22:37:40 +00003325 let Inst{19-16} = Rn;
3326 let Inst{15-5} = 0b11110000000;
3327 let Inst{4} = 1; // H form
3328 let Inst{3-0} = Rm;
Jim Grosbach7f739be2011-09-19 22:21:13 +00003329
3330 let DecoderMethod = "DecodeThumbTableBranch";
Johnny Chen93042d12010-03-02 18:14:57 +00003331}
Evan Cheng5657c012009-07-29 02:18:14 +00003332} // isNotDuplicable, isIndirectBranch
3333
David Goodwinc9a59b52009-06-30 19:50:22 +00003334} // isBranch, isTerminator, isBarrier
David Goodwin5e47a9a2009-06-30 18:04:13 +00003335
3336// FIXME: should be able to write a pattern for ARMBrcond, but can't use
Owen Anderson51f6a7a2011-09-09 21:48:23 +00003337// a two-value operand where a dag node expects ", "two operands. :(
David Goodwin5e47a9a2009-06-30 18:04:13 +00003338let isBranch = 1, isTerminator = 1 in
David Goodwin8b7d7ad2009-08-06 16:52:47 +00003339def t2Bcc : T2I<(outs), (ins brtarget:$target), IIC_Br,
Evan Cheng699beba2009-10-27 00:08:59 +00003340 "b", ".w\t$target",
Johnny Chend68e1192009-12-15 17:24:14 +00003341 [/*(ARMbrcond bb:$target, imm:$cc)*/]> {
3342 let Inst{31-27} = 0b11110;
3343 let Inst{15-14} = 0b10;
3344 let Inst{12} = 0;
Jim Grosbach00f25fa2010-12-14 20:46:39 +00003345
Owen Andersonfb20d892010-12-09 00:27:41 +00003346 bits<4> p;
3347 let Inst{25-22} = p;
Jim Grosbach7721e7f2010-12-02 23:05:38 +00003348
Owen Andersonfb20d892010-12-09 00:27:41 +00003349 bits<21> target;
3350 let Inst{26} = target{20};
3351 let Inst{11} = target{19};
3352 let Inst{13} = target{18};
3353 let Inst{21-16} = target{17-12};
3354 let Inst{10-0} = target{11-1};
Owen Anderson8d7d2e12011-08-09 20:55:18 +00003355
3356 let DecoderMethod = "DecodeThumb2BCCInstruction";
Johnny Chend68e1192009-12-15 17:24:14 +00003357}
Evan Chengf49810c2009-06-23 17:48:47 +00003358
Evan Chengafff9412011-12-20 18:26:50 +00003359// Tail calls. The IOS version of thumb tail calls uses a t2 branch, so
Jim Grosbachaf7f2d62011-07-08 20:32:21 +00003360// it goes here.
3361let isCall = 1, isTerminator = 1, isReturn = 1, isBarrier = 1 in {
Evan Chengafff9412011-12-20 18:26:50 +00003362 // IOS version.
Jakob Stoklund Olesenc54f6342012-02-24 01:19:29 +00003363 let Uses = [SP] in
Owen Anderson51f6a7a2011-09-09 21:48:23 +00003364 def tTAILJMPd: tPseudoExpand<(outs),
Jakob Stoklund Olesen135fb452012-07-13 20:27:00 +00003365 (ins uncondbrtarget:$dst, pred:$p),
Owen Anderson16884412011-07-13 23:22:26 +00003366 4, IIC_Br, [],
Owen Anderson51f6a7a2011-09-09 21:48:23 +00003367 (t2B uncondbrtarget:$dst, pred:$p)>,
Evan Chengafff9412011-12-20 18:26:50 +00003368 Requires<[IsThumb2, IsIOS]>;
Jim Grosbachaf7f2d62011-07-08 20:32:21 +00003369}
Evan Cheng06e16582009-07-10 01:54:42 +00003370
Jakob Stoklund Olesenf16936e2012-04-06 00:04:58 +00003371let isCall = 1, Defs = [LR], Uses = [SP] in {
Evan Cheng4bfcd4a2012-02-28 18:51:51 +00003372 // mov lr, pc; b if callee is marked noreturn to avoid confusing the
3373 // return stack predictor.
3374 def t2BMOVPCB_CALL : tPseudoInst<(outs),
Jakob Stoklund Olesen135fb452012-07-13 20:27:00 +00003375 (ins t_bltarget:$func),
Evan Cheng4bfcd4a2012-02-28 18:51:51 +00003376 6, IIC_Br, [(ARMcall_nolink tglobaladdr:$func)]>,
Jakob Stoklund Olesenf16936e2012-04-06 00:04:58 +00003377 Requires<[IsThumb]>;
Evan Cheng4bfcd4a2012-02-28 18:51:51 +00003378}
3379
3380// Direct calls
3381def : T2Pat<(ARMcall_nolink texternalsym:$func),
3382 (t2BMOVPCB_CALL texternalsym:$func)>,
Jakob Stoklund Olesenf16936e2012-04-06 00:04:58 +00003383 Requires<[IsThumb]>;
Evan Cheng4bfcd4a2012-02-28 18:51:51 +00003384
Evan Cheng06e16582009-07-10 01:54:42 +00003385// IT block
Evan Cheng86050dc2010-06-18 23:09:54 +00003386let Defs = [ITSTATE] in
Evan Cheng06e16582009-07-10 01:54:42 +00003387def t2IT : Thumb2XI<(outs), (ins it_pred:$cc, it_mask:$mask),
Owen Anderson16884412011-07-13 23:22:26 +00003388 AddrModeNone, 2, IIC_iALUx,
Johnny Chend68e1192009-12-15 17:24:14 +00003389 "it$mask\t$cc", "", []> {
3390 // 16-bit instruction.
Johnny Chenbbc71b22009-12-16 02:32:54 +00003391 let Inst{31-16} = 0x0000;
Johnny Chend68e1192009-12-15 17:24:14 +00003392 let Inst{15-8} = 0b10111111;
Owen Anderson05bf5952010-11-29 18:54:38 +00003393
3394 bits<4> cc;
3395 bits<4> mask;
Jim Grosbach86386922010-12-08 22:10:43 +00003396 let Inst{7-4} = cc;
3397 let Inst{3-0} = mask;
Owen Andersoneaca9282011-08-30 22:58:27 +00003398
3399 let DecoderMethod = "DecodeIT";
Johnny Chend68e1192009-12-15 17:24:14 +00003400}
Evan Cheng06e16582009-07-10 01:54:42 +00003401
Johnny Chence6275f2010-02-25 19:05:29 +00003402// Branch and Exchange Jazelle -- for disassembly only
3403// Rm = Inst{19-16}
Jim Grosbach6c3e11e2011-09-02 23:43:09 +00003404def t2BXJ : T2I<(outs), (ins rGPR:$func), NoItinerary, "bxj", "\t$func", []> {
3405 bits<4> func;
Johnny Chence6275f2010-02-25 19:05:29 +00003406 let Inst{31-27} = 0b11110;
3407 let Inst{26} = 0;
3408 let Inst{25-20} = 0b111100;
Jim Grosbach86386922010-12-08 22:10:43 +00003409 let Inst{19-16} = func;
Jim Grosbach6c3e11e2011-09-02 23:43:09 +00003410 let Inst{15-0} = 0b1000111100000000;
Johnny Chence6275f2010-02-25 19:05:29 +00003411}
3412
Jim Grosbach11cca7a2011-08-18 17:51:36 +00003413// Compare and branch on zero / non-zero
3414let isBranch = 1, isTerminator = 1 in {
3415 def tCBZ : T1I<(outs), (ins tGPR:$Rn, t_cbtarget:$target), IIC_Br,
3416 "cbz\t$Rn, $target", []>,
3417 T1Misc<{0,0,?,1,?,?,?}>,
3418 Requires<[IsThumb2]> {
3419 // A8.6.27
3420 bits<6> target;
3421 bits<3> Rn;
3422 let Inst{9} = target{5};
3423 let Inst{7-3} = target{4-0};
3424 let Inst{2-0} = Rn;
3425 }
3426
3427 def tCBNZ : T1I<(outs), (ins tGPR:$Rn, t_cbtarget:$target), IIC_Br,
3428 "cbnz\t$Rn, $target", []>,
3429 T1Misc<{1,0,?,1,?,?,?}>,
3430 Requires<[IsThumb2]> {
3431 // A8.6.27
3432 bits<6> target;
3433 bits<3> Rn;
3434 let Inst{9} = target{5};
3435 let Inst{7-3} = target{4-0};
3436 let Inst{2-0} = Rn;
3437 }
3438}
3439
3440
Jim Grosbach32f36892011-09-19 23:38:34 +00003441// Change Processor State is a system instruction.
Bruno Cardoso Lopesa2b6e412011-02-14 13:09:44 +00003442// FIXME: Since the asm parser has currently no clean way to handle optional
3443// operands, create 3 versions of the same instruction. Once there's a clean
3444// framework to represent optional operands, change this behavior.
3445class t2CPS<dag iops, string asm_op> : T2XI<(outs), iops, NoItinerary,
Jim Grosbach32f36892011-09-19 23:38:34 +00003446 !strconcat("cps", asm_op), []> {
Bruno Cardoso Lopesa2b6e412011-02-14 13:09:44 +00003447 bits<2> imod;
3448 bits<3> iflags;
3449 bits<5> mode;
3450 bit M;
3451
Johnny Chen93042d12010-03-02 18:14:57 +00003452 let Inst{31-27} = 0b11110;
Bruno Cardoso Lopesa2b6e412011-02-14 13:09:44 +00003453 let Inst{26} = 0;
Johnny Chen93042d12010-03-02 18:14:57 +00003454 let Inst{25-20} = 0b111010;
Bruno Cardoso Lopesa2b6e412011-02-14 13:09:44 +00003455 let Inst{19-16} = 0b1111;
Johnny Chen93042d12010-03-02 18:14:57 +00003456 let Inst{15-14} = 0b10;
Bruno Cardoso Lopesa2b6e412011-02-14 13:09:44 +00003457 let Inst{12} = 0;
3458 let Inst{10-9} = imod;
3459 let Inst{8} = M;
3460 let Inst{7-5} = iflags;
3461 let Inst{4-0} = mode;
Owen Anderson6153a032011-08-23 17:45:18 +00003462 let DecoderMethod = "DecodeT2CPSInstruction";
Johnny Chen93042d12010-03-02 18:14:57 +00003463}
3464
Bruno Cardoso Lopesa2b6e412011-02-14 13:09:44 +00003465let M = 1 in
3466 def t2CPS3p : t2CPS<(ins imod_op:$imod, iflags_op:$iflags, i32imm:$mode),
3467 "$imod.w\t$iflags, $mode">;
3468let mode = 0, M = 0 in
3469 def t2CPS2p : t2CPS<(ins imod_op:$imod, iflags_op:$iflags),
3470 "$imod.w\t$iflags">;
3471let imod = 0, iflags = 0, M = 1 in
Jim Grosbach0efe2132011-09-19 23:58:31 +00003472 def t2CPS1p : t2CPS<(ins imm0_31:$mode), "\t$mode">;
Bruno Cardoso Lopesa2b6e412011-02-14 13:09:44 +00003473
Johnny Chen0f7866e2010-03-03 02:09:43 +00003474// A6.3.4 Branches and miscellaneous control
3475// Table A6-14 Change Processor State, and hint instructions
Jim Grosbach7e99a602012-06-18 19:45:50 +00003476def t2HINT : T2I<(outs), (ins imm0_255:$imm), NoItinerary, "hint", "\t$imm",[]>{
3477 bits<8> imm;
3478 let Inst{31-8} = 0b111100111010111110000000;
3479 let Inst{7-0} = imm;
Johnny Chen0f7866e2010-03-03 02:09:43 +00003480}
3481
Jim Grosbach7e99a602012-06-18 19:45:50 +00003482def : t2InstAlias<"hint$p.w $imm", (t2HINT imm0_255:$imm, pred:$p)>;
3483def : t2InstAlias<"nop$p.w", (t2HINT 0, pred:$p)>;
3484def : t2InstAlias<"yield$p.w", (t2HINT 1, pred:$p)>;
3485def : t2InstAlias<"wfe$p.w", (t2HINT 2, pred:$p)>;
3486def : t2InstAlias<"wfi$p.w", (t2HINT 3, pred:$p)>;
3487def : t2InstAlias<"sev$p.w", (t2HINT 4, pred:$p)>;
Johnny Chen0f7866e2010-03-03 02:09:43 +00003488
Jim Grosbach6f9f8842011-07-13 22:59:38 +00003489def t2DBG : T2I<(outs), (ins imm0_15:$opt), NoItinerary, "dbg", "\t$opt", []> {
Owen Andersonc7373f82010-11-30 20:00:01 +00003490 bits<4> opt;
Jim Grosbach77951902011-09-06 22:06:40 +00003491 let Inst{31-20} = 0b111100111010;
3492 let Inst{19-16} = 0b1111;
3493 let Inst{15-8} = 0b10000000;
3494 let Inst{7-4} = 0b1111;
Jim Grosbach86386922010-12-08 22:10:43 +00003495 let Inst{3-0} = opt;
Johnny Chen0f7866e2010-03-03 02:09:43 +00003496}
3497
Jim Grosbach32f36892011-09-19 23:38:34 +00003498// Secure Monitor Call is a system instruction.
Johnny Chen6341c5a2010-02-25 20:25:24 +00003499// Option = Inst{19-16}
Jim Grosbach32f36892011-09-19 23:38:34 +00003500def t2SMC : T2I<(outs), (ins imm0_15:$opt), NoItinerary, "smc", "\t$opt", []> {
Johnny Chen6341c5a2010-02-25 20:25:24 +00003501 let Inst{31-27} = 0b11110;
3502 let Inst{26-20} = 0b1111111;
3503 let Inst{15-12} = 0b1000;
Jim Grosbach7721e7f2010-12-02 23:05:38 +00003504
Owen Andersond18a9c92010-11-29 19:22:08 +00003505 bits<4> opt;
Jim Grosbach86386922010-12-08 22:10:43 +00003506 let Inst{19-16} = opt;
Owen Andersond18a9c92010-11-29 19:22:08 +00003507}
3508
Jim Grosbach05ec8f72011-09-16 18:25:22 +00003509class T2SRS<bits<2> Op, bit W, dag oops, dag iops, InstrItinClass itin,
3510 string opc, string asm, list<dag> pattern>
Owen Andersond18a9c92010-11-29 19:22:08 +00003511 : T2I<oops, iops, itin, opc, asm, pattern> {
3512 bits<5> mode;
Jim Grosbach05ec8f72011-09-16 18:25:22 +00003513 let Inst{31-25} = 0b1110100;
3514 let Inst{24-23} = Op;
3515 let Inst{22} = 0;
3516 let Inst{21} = W;
3517 let Inst{20-16} = 0b01101;
3518 let Inst{15-5} = 0b11000000000;
Owen Andersond18a9c92010-11-29 19:22:08 +00003519 let Inst{4-0} = mode{4-0};
Johnny Chen6341c5a2010-02-25 20:25:24 +00003520}
3521
Jim Grosbach05ec8f72011-09-16 18:25:22 +00003522// Store Return State is a system instruction.
3523def t2SRSDB_UPD : T2SRS<0b00, 1, (outs), (ins imm0_31:$mode), NoItinerary,
3524 "srsdb", "\tsp!, $mode", []>;
3525def t2SRSDB : T2SRS<0b00, 0, (outs), (ins imm0_31:$mode), NoItinerary,
3526 "srsdb","\tsp, $mode", []>;
3527def t2SRSIA_UPD : T2SRS<0b11, 1, (outs), (ins imm0_31:$mode), NoItinerary,
3528 "srsia","\tsp!, $mode", []>;
3529def t2SRSIA : T2SRS<0b11, 0, (outs), (ins imm0_31:$mode), NoItinerary,
3530 "srsia","\tsp, $mode", []>;
Johnny Chen6341c5a2010-02-25 20:25:24 +00003531
Jim Grosbach05ec8f72011-09-16 18:25:22 +00003532// Return From Exception is a system instruction.
Owen Anderson5404c2b2010-11-29 20:38:48 +00003533class T2RFE<bits<12> op31_20, dag oops, dag iops, InstrItinClass itin,
Owen Andersond18a9c92010-11-29 19:22:08 +00003534 string opc, string asm, list<dag> pattern>
3535 : T2I<oops, iops, itin, opc, asm, pattern> {
Owen Anderson5404c2b2010-11-29 20:38:48 +00003536 let Inst{31-20} = op31_20{11-0};
Jim Grosbach7721e7f2010-12-02 23:05:38 +00003537
Owen Andersond18a9c92010-11-29 19:22:08 +00003538 bits<4> Rn;
Jim Grosbach86386922010-12-08 22:10:43 +00003539 let Inst{19-16} = Rn;
Johnny Chenec51a622011-04-12 21:41:51 +00003540 let Inst{15-0} = 0xc000;
Owen Andersond18a9c92010-11-29 19:22:08 +00003541}
3542
Owen Anderson5404c2b2010-11-29 20:38:48 +00003543def t2RFEDBW : T2RFE<0b111010000011,
Johnny Chenec51a622011-04-12 21:41:51 +00003544 (outs), (ins GPR:$Rn), NoItinerary, "rfedb", "\t$Rn!",
Owen Anderson5404c2b2010-11-29 20:38:48 +00003545 [/* For disassembly only; pattern left blank */]>;
3546def t2RFEDB : T2RFE<0b111010000001,
Johnny Chenec51a622011-04-12 21:41:51 +00003547 (outs), (ins GPR:$Rn), NoItinerary, "rfedb", "\t$Rn",
Owen Anderson5404c2b2010-11-29 20:38:48 +00003548 [/* For disassembly only; pattern left blank */]>;
3549def t2RFEIAW : T2RFE<0b111010011011,
Johnny Chenec51a622011-04-12 21:41:51 +00003550 (outs), (ins GPR:$Rn), NoItinerary, "rfeia", "\t$Rn!",
Owen Anderson5404c2b2010-11-29 20:38:48 +00003551 [/* For disassembly only; pattern left blank */]>;
3552def t2RFEIA : T2RFE<0b111010011001,
Johnny Chenec51a622011-04-12 21:41:51 +00003553 (outs), (ins GPR:$Rn), NoItinerary, "rfeia", "\t$Rn",
Owen Anderson5404c2b2010-11-29 20:38:48 +00003554 [/* For disassembly only; pattern left blank */]>;
Johnny Chen6341c5a2010-02-25 20:25:24 +00003555
Evan Chengf49810c2009-06-23 17:48:47 +00003556//===----------------------------------------------------------------------===//
3557// Non-Instruction Patterns
3558//
3559
Evan Cheng5adb66a2009-09-28 09:14:39 +00003560// 32-bit immediate using movw + movt.
Evan Cheng5be39222010-09-24 22:03:46 +00003561// This is a single pseudo instruction to make it re-materializable.
3562// FIXME: Remove this when we can do generalized remat.
Evan Chengfc8475b2011-01-19 02:16:49 +00003563let isReMaterializable = 1, isMoveImm = 1 in
Jim Grosbach3c38f962010-10-06 22:01:26 +00003564def t2MOVi32imm : PseudoInst<(outs rGPR:$dst), (ins i32imm:$src), IIC_iMOVix2,
Jim Grosbach99594eb2010-11-18 01:38:26 +00003565 [(set rGPR:$dst, (i32 imm:$src))]>,
Jim Grosbach3c38f962010-10-06 22:01:26 +00003566 Requires<[IsThumb, HasV6T2]>;
Evan Chengb9803a82009-11-06 23:52:48 +00003567
Evan Cheng53519f02011-01-21 18:55:51 +00003568// Pseudo instruction that combines movw + movt + add pc (if pic).
Evan Cheng9fe20092011-01-20 08:34:58 +00003569// It also makes it possible to rematerialize the instructions.
3570// FIXME: Remove this when we can do generalized remat and when machine licm
3571// can properly the instructions.
Evan Cheng53519f02011-01-21 18:55:51 +00003572let isReMaterializable = 1 in {
3573def t2MOV_ga_pcrel : PseudoInst<(outs rGPR:$dst), (ins i32imm:$addr),
3574 IIC_iMOVix2addpc,
Evan Cheng9fe20092011-01-20 08:34:58 +00003575 [(set rGPR:$dst, (ARMWrapperPIC tglobaladdr:$addr))]>,
3576 Requires<[IsThumb2, UseMovt]>;
Evan Cheng5de5d4b2011-01-17 08:03:18 +00003577
Evan Cheng53519f02011-01-21 18:55:51 +00003578def t2MOV_ga_dyn : PseudoInst<(outs rGPR:$dst), (ins i32imm:$addr),
3579 IIC_iMOVix2,
3580 [(set rGPR:$dst, (ARMWrapperDYN tglobaladdr:$addr))]>,
3581 Requires<[IsThumb2, UseMovt]>;
3582}
3583
Anton Korobeynikov5cdc3a92009-11-24 00:44:37 +00003584// ConstantPool, GlobalAddress, and JumpTable
3585def : T2Pat<(ARMWrapper tglobaladdr :$dst), (t2LEApcrel tglobaladdr :$dst)>,
3586 Requires<[IsThumb2, DontUseMovt]>;
3587def : T2Pat<(ARMWrapper tconstpool :$dst), (t2LEApcrel tconstpool :$dst)>;
3588def : T2Pat<(ARMWrapper tglobaladdr :$dst), (t2MOVi32imm tglobaladdr :$dst)>,
3589 Requires<[IsThumb2, UseMovt]>;
3590
3591def : T2Pat<(ARMWrapperJT tjumptable:$dst, imm:$id),
3592 (t2LEApcrelJT tjumptable:$dst, imm:$id)>;
3593
Evan Chengb9803a82009-11-06 23:52:48 +00003594// Pseudo instruction that combines ldr from constpool and add pc. This should
3595// be expanded into two instructions late to allow if-conversion and
3596// scheduling.
Dan Gohmanbc9d98b2010-02-27 23:47:46 +00003597let canFoldAsLoad = 1, isReMaterializable = 1 in
Evan Cheng9fe20092011-01-20 08:34:58 +00003598def t2LDRpci_pic : PseudoInst<(outs rGPR:$dst), (ins i32imm:$addr, pclabel:$cp),
Jim Grosbach99594eb2010-11-18 01:38:26 +00003599 IIC_iLoadiALU,
Evan Cheng9fe20092011-01-20 08:34:58 +00003600 [(set rGPR:$dst, (ARMpic_add (load (ARMWrapper tconstpool:$addr)),
Evan Chengb9803a82009-11-06 23:52:48 +00003601 imm:$cp))]>,
3602 Requires<[IsThumb2]>;
Bill Wendlingef2c86f2011-10-10 22:59:55 +00003603
Andrew Trick7f5f0da2011-10-18 18:40:53 +00003604// Pseudo isntruction that combines movs + predicated rsbmi
Bill Wendlingef2c86f2011-10-10 22:59:55 +00003605// to implement integer ABS
3606let usesCustomInserter = 1, Defs = [CPSR] in {
3607def t2ABS : PseudoInst<(outs rGPR:$dst), (ins rGPR:$src),
3608 NoItinerary, []>, Requires<[IsThumb2]>;
3609}
3610
Owen Anderson8a83f712011-09-07 21:10:42 +00003611//===----------------------------------------------------------------------===//
3612// Coprocessor load/store -- for disassembly only
3613//
Jim Grosbachc66e7af2011-10-12 20:54:17 +00003614class T2CI<bits<4> op31_28, dag oops, dag iops, string opc, string asm>
Owen Anderson8a83f712011-09-07 21:10:42 +00003615 : T2I<oops, iops, NoItinerary, opc, asm, []> {
Jim Grosbachc66e7af2011-10-12 20:54:17 +00003616 let Inst{31-28} = op31_28;
Owen Anderson8a83f712011-09-07 21:10:42 +00003617 let Inst{27-25} = 0b110;
3618}
3619
Jim Grosbachc66e7af2011-10-12 20:54:17 +00003620multiclass t2LdStCop<bits<4> op31_28, bit load, bit Dbit, string asm> {
3621 def _OFFSET : T2CI<op31_28,
3622 (outs), (ins p_imm:$cop, c_imm:$CRd, addrmode5:$addr),
3623 asm, "\t$cop, $CRd, $addr"> {
3624 bits<13> addr;
3625 bits<4> cop;
3626 bits<4> CRd;
Owen Anderson8a83f712011-09-07 21:10:42 +00003627 let Inst{24} = 1; // P = 1
Jim Grosbachc66e7af2011-10-12 20:54:17 +00003628 let Inst{23} = addr{8};
3629 let Inst{22} = Dbit;
Owen Anderson8a83f712011-09-07 21:10:42 +00003630 let Inst{21} = 0; // W = 0
Owen Anderson8a83f712011-09-07 21:10:42 +00003631 let Inst{20} = load;
Jim Grosbachc66e7af2011-10-12 20:54:17 +00003632 let Inst{19-16} = addr{12-9};
3633 let Inst{15-12} = CRd;
3634 let Inst{11-8} = cop;
3635 let Inst{7-0} = addr{7-0};
Owen Anderson8a83f712011-09-07 21:10:42 +00003636 let DecoderMethod = "DecodeCopMemInstruction";
3637 }
Jim Grosbachc66e7af2011-10-12 20:54:17 +00003638 def _PRE : T2CI<op31_28,
3639 (outs), (ins p_imm:$cop, c_imm:$CRd, addrmode5:$addr),
3640 asm, "\t$cop, $CRd, $addr!"> {
3641 bits<13> addr;
3642 bits<4> cop;
3643 bits<4> CRd;
Owen Anderson8a83f712011-09-07 21:10:42 +00003644 let Inst{24} = 1; // P = 1
Jim Grosbachc66e7af2011-10-12 20:54:17 +00003645 let Inst{23} = addr{8};
3646 let Inst{22} = Dbit;
Owen Anderson8a83f712011-09-07 21:10:42 +00003647 let Inst{21} = 1; // W = 1
Owen Anderson8a83f712011-09-07 21:10:42 +00003648 let Inst{20} = load;
Jim Grosbachc66e7af2011-10-12 20:54:17 +00003649 let Inst{19-16} = addr{12-9};
3650 let Inst{15-12} = CRd;
3651 let Inst{11-8} = cop;
3652 let Inst{7-0} = addr{7-0};
Owen Anderson8a83f712011-09-07 21:10:42 +00003653 let DecoderMethod = "DecodeCopMemInstruction";
3654 }
Jim Grosbachc66e7af2011-10-12 20:54:17 +00003655 def _POST: T2CI<op31_28,
3656 (outs), (ins p_imm:$cop, c_imm:$CRd, addr_offset_none:$addr,
3657 postidx_imm8s4:$offset),
3658 asm, "\t$cop, $CRd, $addr, $offset"> {
3659 bits<9> offset;
3660 bits<4> addr;
3661 bits<4> cop;
3662 bits<4> CRd;
Owen Anderson8a83f712011-09-07 21:10:42 +00003663 let Inst{24} = 0; // P = 0
Jim Grosbachc66e7af2011-10-12 20:54:17 +00003664 let Inst{23} = offset{8};
3665 let Inst{22} = Dbit;
Owen Anderson8a83f712011-09-07 21:10:42 +00003666 let Inst{21} = 1; // W = 1
Owen Anderson8a83f712011-09-07 21:10:42 +00003667 let Inst{20} = load;
Jim Grosbachc66e7af2011-10-12 20:54:17 +00003668 let Inst{19-16} = addr;
3669 let Inst{15-12} = CRd;
3670 let Inst{11-8} = cop;
3671 let Inst{7-0} = offset{7-0};
Owen Anderson8a83f712011-09-07 21:10:42 +00003672 let DecoderMethod = "DecodeCopMemInstruction";
3673 }
Jim Grosbachc66e7af2011-10-12 20:54:17 +00003674 def _OPTION : T2CI<op31_28, (outs),
3675 (ins p_imm:$cop, c_imm:$CRd, addr_offset_none:$addr,
3676 coproc_option_imm:$option),
3677 asm, "\t$cop, $CRd, $addr, $option"> {
3678 bits<8> option;
3679 bits<4> addr;
3680 bits<4> cop;
3681 bits<4> CRd;
Owen Anderson8a83f712011-09-07 21:10:42 +00003682 let Inst{24} = 0; // P = 0
3683 let Inst{23} = 1; // U = 1
Jim Grosbachc66e7af2011-10-12 20:54:17 +00003684 let Inst{22} = Dbit;
Owen Anderson8a83f712011-09-07 21:10:42 +00003685 let Inst{21} = 0; // W = 0
Owen Anderson8a83f712011-09-07 21:10:42 +00003686 let Inst{20} = load;
Jim Grosbachc66e7af2011-10-12 20:54:17 +00003687 let Inst{19-16} = addr;
3688 let Inst{15-12} = CRd;
3689 let Inst{11-8} = cop;
3690 let Inst{7-0} = option;
Owen Anderson8a83f712011-09-07 21:10:42 +00003691 let DecoderMethod = "DecodeCopMemInstruction";
3692 }
3693}
3694
Jim Grosbachc66e7af2011-10-12 20:54:17 +00003695defm t2LDC : t2LdStCop<0b1110, 1, 0, "ldc">;
3696defm t2LDCL : t2LdStCop<0b1110, 1, 1, "ldcl">;
3697defm t2STC : t2LdStCop<0b1110, 0, 0, "stc">;
3698defm t2STCL : t2LdStCop<0b1110, 0, 1, "stcl">;
3699defm t2LDC2 : t2LdStCop<0b1111, 1, 0, "ldc2">;
3700defm t2LDC2L : t2LdStCop<0b1111, 1, 1, "ldc2l">;
3701defm t2STC2 : t2LdStCop<0b1111, 0, 0, "stc2">;
3702defm t2STC2L : t2LdStCop<0b1111, 0, 1, "stc2l">;
Owen Anderson8a83f712011-09-07 21:10:42 +00003703
Johnny Chen23336552010-02-25 18:46:43 +00003704
3705//===----------------------------------------------------------------------===//
3706// Move between special register and ARM core register -- for disassembly only
3707//
Jim Grosbachbf841cf2011-09-14 20:03:46 +00003708// Move to ARM core register from Special Register
James Molloyacad68d2011-09-28 14:21:38 +00003709
3710// A/R class MRS.
3711//
3712// A/R class can only move from CPSR or SPSR.
Jim Grosbachc92ba4e2012-04-23 22:04:10 +00003713def t2MRS_AR : T2I<(outs GPR:$Rd), (ins), NoItinerary, "mrs", "\t$Rd, apsr",
3714 []>, Requires<[IsThumb2,IsARClass]> {
Owen Anderson00a035f2010-11-29 19:29:15 +00003715 bits<4> Rd;
Jim Grosbachbf841cf2011-09-14 20:03:46 +00003716 let Inst{31-12} = 0b11110011111011111000;
Jim Grosbach86386922010-12-08 22:10:43 +00003717 let Inst{11-8} = Rd;
Jim Grosbachbf841cf2011-09-14 20:03:46 +00003718 let Inst{7-0} = 0b0000;
Owen Anderson00a035f2010-11-29 19:29:15 +00003719}
3720
James Molloyacad68d2011-09-28 14:21:38 +00003721def : t2InstAlias<"mrs${p} $Rd, cpsr", (t2MRS_AR GPR:$Rd, pred:$p)>;
Jim Grosbachbf841cf2011-09-14 20:03:46 +00003722
Jim Grosbachc92ba4e2012-04-23 22:04:10 +00003723def t2MRSsys_AR: T2I<(outs GPR:$Rd), (ins), NoItinerary, "mrs", "\t$Rd, spsr",
3724 []>, Requires<[IsThumb2,IsARClass]> {
Jim Grosbachbf841cf2011-09-14 20:03:46 +00003725 bits<4> Rd;
3726 let Inst{31-12} = 0b11110011111111111000;
3727 let Inst{11-8} = Rd;
3728 let Inst{7-0} = 0b0000;
3729}
Johnny Chen23336552010-02-25 18:46:43 +00003730
James Molloyacad68d2011-09-28 14:21:38 +00003731// M class MRS.
3732//
3733// This MRS has a mask field in bits 7-0 and can take more values than
3734// the A/R class (a full msr_mask).
3735def t2MRS_M : T2I<(outs rGPR:$Rd), (ins msr_mask:$mask), NoItinerary,
3736 "mrs", "\t$Rd, $mask", []>,
Evan Cheng97a45432012-04-27 01:27:19 +00003737 Requires<[IsThumb,IsMClass]> {
James Molloyacad68d2011-09-28 14:21:38 +00003738 bits<4> Rd;
3739 bits<8> mask;
3740 let Inst{31-12} = 0b11110011111011111000;
3741 let Inst{11-8} = Rd;
3742 let Inst{19-16} = 0b1111;
3743 let Inst{7-0} = mask;
3744}
3745
3746
Bruno Cardoso Lopes584bf7b2011-02-18 19:45:59 +00003747// Move from ARM core register to Special Register
3748//
James Molloyacad68d2011-09-28 14:21:38 +00003749// A/R class MSR.
3750//
Bruno Cardoso Lopes584bf7b2011-02-18 19:45:59 +00003751// No need to have both system and application versions, the encodings are the
3752// same and the assembly parser has no way to distinguish between them. The mask
3753// operand contains the special register (R Bit) in bit 4 and bits 3-0 contains
3754// the mask with the fields to be accessed in the special register.
James Molloyacad68d2011-09-28 14:21:38 +00003755def t2MSR_AR : T2I<(outs), (ins msr_mask:$mask, rGPR:$Rn),
3756 NoItinerary, "msr", "\t$mask, $Rn", []>,
3757 Requires<[IsThumb2,IsARClass]> {
Bruno Cardoso Lopes584bf7b2011-02-18 19:45:59 +00003758 bits<5> mask;
Owen Anderson00a035f2010-11-29 19:29:15 +00003759 bits<4> Rn;
Jim Grosbachbf841cf2011-09-14 20:03:46 +00003760 let Inst{31-21} = 0b11110011100;
Bruno Cardoso Lopes584bf7b2011-02-18 19:45:59 +00003761 let Inst{20} = mask{4}; // R Bit
Jim Grosbachbf841cf2011-09-14 20:03:46 +00003762 let Inst{19-16} = Rn;
3763 let Inst{15-12} = 0b1000;
Bruno Cardoso Lopes584bf7b2011-02-18 19:45:59 +00003764 let Inst{11-8} = mask{3-0};
Jim Grosbachbf841cf2011-09-14 20:03:46 +00003765 let Inst{7-0} = 0;
Owen Anderson00a035f2010-11-29 19:29:15 +00003766}
3767
James Molloyacad68d2011-09-28 14:21:38 +00003768// M class MSR.
3769//
3770// Move from ARM core register to Special Register
3771def t2MSR_M : T2I<(outs), (ins msr_mask:$SYSm, rGPR:$Rn),
3772 NoItinerary, "msr", "\t$SYSm, $Rn", []>,
Evan Cheng97a45432012-04-27 01:27:19 +00003773 Requires<[IsThumb,IsMClass]> {
Kevin Enderby0fd4f3c2012-05-17 22:18:01 +00003774 bits<12> SYSm;
James Molloyacad68d2011-09-28 14:21:38 +00003775 bits<4> Rn;
3776 let Inst{31-21} = 0b11110011100;
3777 let Inst{20} = 0b0;
3778 let Inst{19-16} = Rn;
3779 let Inst{15-12} = 0b1000;
Kevin Enderby0fd4f3c2012-05-17 22:18:01 +00003780 let Inst{11-0} = SYSm;
James Molloyacad68d2011-09-28 14:21:38 +00003781}
3782
3783
Bruno Cardoso Lopes6b3a9992011-01-20 16:58:48 +00003784//===----------------------------------------------------------------------===//
Jim Grosbach9bb098a2011-07-13 21:14:23 +00003785// Move between coprocessor and ARM core register
Bruno Cardoso Lopes6b3a9992011-01-20 16:58:48 +00003786//
3787
Jim Grosbache35c5e02011-07-13 21:35:10 +00003788class t2MovRCopro<bits<4> Op, string opc, bit direction, dag oops, dag iops,
3789 list<dag> pattern>
3790 : T2Cop<Op, oops, iops,
Jim Grosbach0d8dae22011-07-13 21:17:59 +00003791 !strconcat(opc, "\t$cop, $opc1, $Rt, $CRn, $CRm, $opc2"),
Jim Grosbach9bb098a2011-07-13 21:14:23 +00003792 pattern> {
3793 let Inst{27-24} = 0b1110;
3794 let Inst{20} = direction;
3795 let Inst{4} = 1;
3796
3797 bits<4> Rt;
3798 bits<4> cop;
3799 bits<3> opc1;
3800 bits<3> opc2;
3801 bits<4> CRm;
3802 bits<4> CRn;
3803
3804 let Inst{15-12} = Rt;
3805 let Inst{11-8} = cop;
3806 let Inst{23-21} = opc1;
3807 let Inst{7-5} = opc2;
3808 let Inst{3-0} = CRm;
3809 let Inst{19-16} = CRn;
3810}
3811
Jim Grosbache35c5e02011-07-13 21:35:10 +00003812class t2MovRRCopro<bits<4> Op, string opc, bit direction,
3813 list<dag> pattern = []>
3814 : T2Cop<Op, (outs),
Jim Grosbachc8ae39e2011-07-14 21:26:42 +00003815 (ins p_imm:$cop, imm0_15:$opc1, GPR:$Rt, GPR:$Rt2, c_imm:$CRm),
Jim Grosbache35c5e02011-07-13 21:35:10 +00003816 !strconcat(opc, "\t$cop, $opc1, $Rt, $Rt2, $CRm"), pattern> {
3817 let Inst{27-24} = 0b1100;
3818 let Inst{23-21} = 0b010;
3819 let Inst{20} = direction;
3820
3821 bits<4> Rt;
3822 bits<4> Rt2;
3823 bits<4> cop;
3824 bits<4> opc1;
3825 bits<4> CRm;
3826
3827 let Inst{15-12} = Rt;
3828 let Inst{19-16} = Rt2;
3829 let Inst{11-8} = cop;
3830 let Inst{7-4} = opc1;
3831 let Inst{3-0} = CRm;
3832}
3833
3834/* from ARM core register to coprocessor */
3835def t2MCR : t2MovRCopro<0b1110, "mcr", 0,
Jim Grosbach9bb098a2011-07-13 21:14:23 +00003836 (outs),
Jim Grosbache540c742011-07-14 21:19:17 +00003837 (ins p_imm:$cop, imm0_7:$opc1, GPR:$Rt, c_imm:$CRn,
3838 c_imm:$CRm, imm0_7:$opc2),
Jim Grosbach9bb098a2011-07-13 21:14:23 +00003839 [(int_arm_mcr imm:$cop, imm:$opc1, GPR:$Rt, imm:$CRn,
3840 imm:$CRm, imm:$opc2)]>;
Jim Grosbach213d2e72012-03-16 00:45:58 +00003841def : t2InstAlias<"mcr $cop, $opc1, $Rt, $CRn, $CRm",
3842 (t2MCR p_imm:$cop, imm0_7:$opc1, GPR:$Rt, c_imm:$CRn,
3843 c_imm:$CRm, 0)>;
Jim Grosbache35c5e02011-07-13 21:35:10 +00003844def t2MCR2 : t2MovRCopro<0b1111, "mcr2", 0,
Jim Grosbache540c742011-07-14 21:19:17 +00003845 (outs), (ins p_imm:$cop, imm0_7:$opc1, GPR:$Rt, c_imm:$CRn,
3846 c_imm:$CRm, imm0_7:$opc2),
Bruno Cardoso Lopes0a69ba32011-05-03 17:29:29 +00003847 [(int_arm_mcr2 imm:$cop, imm:$opc1, GPR:$Rt, imm:$CRn,
3848 imm:$CRm, imm:$opc2)]>;
Jim Grosbach213d2e72012-03-16 00:45:58 +00003849def : t2InstAlias<"mcr2 $cop, $opc1, $Rt, $CRn, $CRm",
3850 (t2MCR2 p_imm:$cop, imm0_7:$opc1, GPR:$Rt, c_imm:$CRn,
3851 c_imm:$CRm, 0)>;
Jim Grosbache35c5e02011-07-13 21:35:10 +00003852
3853/* from coprocessor to ARM core register */
3854def t2MRC : t2MovRCopro<0b1110, "mrc", 1,
Jim Grosbachccfd9312011-07-19 20:35:35 +00003855 (outs GPR:$Rt), (ins p_imm:$cop, imm0_7:$opc1, c_imm:$CRn,
3856 c_imm:$CRm, imm0_7:$opc2), []>;
Jim Grosbach213d2e72012-03-16 00:45:58 +00003857def : t2InstAlias<"mrc $cop, $opc1, $Rt, $CRn, $CRm",
3858 (t2MRC GPR:$Rt, p_imm:$cop, imm0_7:$opc1, c_imm:$CRn,
3859 c_imm:$CRm, 0)>;
Jim Grosbache35c5e02011-07-13 21:35:10 +00003860
3861def t2MRC2 : t2MovRCopro<0b1111, "mrc2", 1,
Jim Grosbachccfd9312011-07-19 20:35:35 +00003862 (outs GPR:$Rt), (ins p_imm:$cop, imm0_7:$opc1, c_imm:$CRn,
3863 c_imm:$CRm, imm0_7:$opc2), []>;
Jim Grosbach213d2e72012-03-16 00:45:58 +00003864def : t2InstAlias<"mrc2 $cop, $opc1, $Rt, $CRn, $CRm",
3865 (t2MRC2 GPR:$Rt, p_imm:$cop, imm0_7:$opc1, c_imm:$CRn,
3866 c_imm:$CRm, 0)>;
Bruno Cardoso Lopes6b3a9992011-01-20 16:58:48 +00003867
Jim Grosbache35c5e02011-07-13 21:35:10 +00003868def : T2v6Pat<(int_arm_mrc imm:$cop, imm:$opc1, imm:$CRn, imm:$CRm, imm:$opc2),
3869 (t2MRC imm:$cop, imm:$opc1, imm:$CRn, imm:$CRm, imm:$opc2)>;
3870
3871def : T2v6Pat<(int_arm_mrc2 imm:$cop, imm:$opc1, imm:$CRn, imm:$CRm, imm:$opc2),
Bruno Cardoso Lopes54ad87a2011-05-03 17:29:22 +00003872 (t2MRC2 imm:$cop, imm:$opc1, imm:$CRn, imm:$CRm, imm:$opc2)>;
3873
Bruno Cardoso Lopes6b3a9992011-01-20 16:58:48 +00003874
Jim Grosbache35c5e02011-07-13 21:35:10 +00003875/* from ARM core register to coprocessor */
3876def t2MCRR : t2MovRRCopro<0b1110, "mcrr", 0,
3877 [(int_arm_mcrr imm:$cop, imm:$opc1, GPR:$Rt, GPR:$Rt2,
3878 imm:$CRm)]>;
3879def t2MCRR2 : t2MovRRCopro<0b1111, "mcrr2", 0,
Bruno Cardoso Lopes0a69ba32011-05-03 17:29:29 +00003880 [(int_arm_mcrr2 imm:$cop, imm:$opc1, GPR:$Rt,
3881 GPR:$Rt2, imm:$CRm)]>;
Jim Grosbache35c5e02011-07-13 21:35:10 +00003882/* from coprocessor to ARM core register */
3883def t2MRRC : t2MovRRCopro<0b1110, "mrrc", 1>;
3884
3885def t2MRRC2 : t2MovRRCopro<0b1111, "mrrc2", 1>;
Bruno Cardoso Lopes6b3a9992011-01-20 16:58:48 +00003886
Bruno Cardoso Lopes8dd37f72011-01-20 18:32:09 +00003887//===----------------------------------------------------------------------===//
Jim Grosbach9bb098a2011-07-13 21:14:23 +00003888// Other Coprocessor Instructions.
Bruno Cardoso Lopes8dd37f72011-01-20 18:32:09 +00003889//
3890
Jim Grosbach1cbb0c12011-07-13 22:06:11 +00003891def tCDP : T2Cop<0b1110, (outs), (ins p_imm:$cop, imm0_15:$opc1,
Jim Grosbach83ab0702011-07-13 22:01:08 +00003892 c_imm:$CRd, c_imm:$CRn, c_imm:$CRm, imm0_7:$opc2),
Jim Grosbach9bb098a2011-07-13 21:14:23 +00003893 "cdp\t$cop, $opc1, $CRd, $CRn, $CRm, $opc2",
3894 [(int_arm_cdp imm:$cop, imm:$opc1, imm:$CRd, imm:$CRn,
3895 imm:$CRm, imm:$opc2)]> {
3896 let Inst{27-24} = 0b1110;
3897
3898 bits<4> opc1;
3899 bits<4> CRn;
3900 bits<4> CRd;
3901 bits<4> cop;
3902 bits<3> opc2;
3903 bits<4> CRm;
3904
3905 let Inst{3-0} = CRm;
3906 let Inst{4} = 0;
3907 let Inst{7-5} = opc2;
3908 let Inst{11-8} = cop;
3909 let Inst{15-12} = CRd;
3910 let Inst{19-16} = CRn;
3911 let Inst{23-20} = opc1;
3912}
3913
Jim Grosbach1cbb0c12011-07-13 22:06:11 +00003914def t2CDP2 : T2Cop<0b1111, (outs), (ins p_imm:$cop, imm0_15:$opc1,
Jim Grosbach83ab0702011-07-13 22:01:08 +00003915 c_imm:$CRd, c_imm:$CRn, c_imm:$CRm, imm0_7:$opc2),
Bruno Cardoso Lopes8dd37f72011-01-20 18:32:09 +00003916 "cdp2\t$cop, $opc1, $CRd, $CRn, $CRm, $opc2",
Bruno Cardoso Lopes0a69ba32011-05-03 17:29:29 +00003917 [(int_arm_cdp2 imm:$cop, imm:$opc1, imm:$CRd, imm:$CRn,
3918 imm:$CRm, imm:$opc2)]> {
Bruno Cardoso Lopes8dd37f72011-01-20 18:32:09 +00003919 let Inst{27-24} = 0b1110;
3920
3921 bits<4> opc1;
3922 bits<4> CRn;
3923 bits<4> CRd;
3924 bits<4> cop;
3925 bits<3> opc2;
3926 bits<4> CRm;
3927
3928 let Inst{3-0} = CRm;
3929 let Inst{4} = 0;
3930 let Inst{7-5} = opc2;
3931 let Inst{11-8} = cop;
3932 let Inst{15-12} = CRd;
3933 let Inst{19-16} = CRn;
3934 let Inst{23-20} = opc1;
3935}
Jim Grosbachc5a8c862011-07-27 16:47:19 +00003936
3937
3938
3939//===----------------------------------------------------------------------===//
3940// Non-Instruction Patterns
3941//
3942
3943// SXT/UXT with no rotate
Jim Grosbach70327412011-07-27 17:48:13 +00003944let AddedComplexity = 16 in {
3945def : T2Pat<(and rGPR:$Rm, 0x000000FF), (t2UXTB rGPR:$Rm, 0)>,
Eli Friedman2cb1dfa2011-08-08 19:49:37 +00003946 Requires<[IsThumb2]>;
Jim Grosbach70327412011-07-27 17:48:13 +00003947def : T2Pat<(and rGPR:$Rm, 0x0000FFFF), (t2UXTH rGPR:$Rm, 0)>,
Eli Friedman2cb1dfa2011-08-08 19:49:37 +00003948 Requires<[IsThumb2]>;
Jim Grosbach70327412011-07-27 17:48:13 +00003949def : T2Pat<(and rGPR:$Rm, 0x00FF00FF), (t2UXTB16 rGPR:$Rm, 0)>,
3950 Requires<[HasT2ExtractPack, IsThumb2]>;
3951def : T2Pat<(add rGPR:$Rn, (and rGPR:$Rm, 0x00FF)),
3952 (t2UXTAB rGPR:$Rn, rGPR:$Rm, 0)>,
3953 Requires<[HasT2ExtractPack, IsThumb2]>;
3954def : T2Pat<(add rGPR:$Rn, (and rGPR:$Rm, 0xFFFF)),
3955 (t2UXTAH rGPR:$Rn, rGPR:$Rm, 0)>,
3956 Requires<[HasT2ExtractPack, IsThumb2]>;
3957}
Jim Grosbachc5a8c862011-07-27 16:47:19 +00003958
Jim Grosbach70327412011-07-27 17:48:13 +00003959def : T2Pat<(sext_inreg rGPR:$Src, i8), (t2SXTB rGPR:$Src, 0)>,
Eli Friedman2cb1dfa2011-08-08 19:49:37 +00003960 Requires<[IsThumb2]>;
Jim Grosbach70327412011-07-27 17:48:13 +00003961def : T2Pat<(sext_inreg rGPR:$Src, i16), (t2SXTH rGPR:$Src, 0)>,
Eli Friedman2cb1dfa2011-08-08 19:49:37 +00003962 Requires<[IsThumb2]>;
Jim Grosbach70327412011-07-27 17:48:13 +00003963def : T2Pat<(add rGPR:$Rn, (sext_inreg rGPR:$Rm, i8)),
3964 (t2SXTAB rGPR:$Rn, rGPR:$Rm, 0)>,
3965 Requires<[HasT2ExtractPack, IsThumb2]>;
3966def : T2Pat<(add rGPR:$Rn, (sext_inreg rGPR:$Rm, i16)),
3967 (t2SXTAH rGPR:$Rn, rGPR:$Rm, 0)>,
3968 Requires<[HasT2ExtractPack, IsThumb2]>;
Eli Friedman069e2ed2011-08-26 02:59:24 +00003969
3970// Atomic load/store patterns
Jakob Stoklund Olesencff9baa2012-08-28 03:11:27 +00003971def : T2Pat<(atomic_load_8 t2addrmode_imm12:$addr),
3972 (t2LDRBi12 t2addrmode_imm12:$addr)>;
3973def : T2Pat<(atomic_load_8 t2addrmode_negimm8:$addr),
3974 (t2LDRBi8 t2addrmode_negimm8:$addr)>;
Eli Friedman069e2ed2011-08-26 02:59:24 +00003975def : T2Pat<(atomic_load_8 t2addrmode_so_reg:$addr),
Jakob Stoklund Olesencff9baa2012-08-28 03:11:27 +00003976 (t2LDRBs t2addrmode_so_reg:$addr)>;
3977def : T2Pat<(atomic_load_16 t2addrmode_imm12:$addr),
3978 (t2LDRHi12 t2addrmode_imm12:$addr)>;
3979def : T2Pat<(atomic_load_16 t2addrmode_negimm8:$addr),
3980 (t2LDRHi8 t2addrmode_negimm8:$addr)>;
Eli Friedman069e2ed2011-08-26 02:59:24 +00003981def : T2Pat<(atomic_load_16 t2addrmode_so_reg:$addr),
Jakob Stoklund Olesencff9baa2012-08-28 03:11:27 +00003982 (t2LDRHs t2addrmode_so_reg:$addr)>;
3983def : T2Pat<(atomic_load_32 t2addrmode_imm12:$addr),
3984 (t2LDRi12 t2addrmode_imm12:$addr)>;
Jim Grosbacha8307dd2011-09-07 20:58:57 +00003985def : T2Pat<(atomic_load_32 t2addrmode_negimm8:$addr),
Jakob Stoklund Olesencff9baa2012-08-28 03:11:27 +00003986 (t2LDRi8 t2addrmode_negimm8:$addr)>;
Eli Friedman069e2ed2011-08-26 02:59:24 +00003987def : T2Pat<(atomic_load_32 t2addrmode_so_reg:$addr),
Jakob Stoklund Olesencff9baa2012-08-28 03:11:27 +00003988 (t2LDRs t2addrmode_so_reg:$addr)>;
Eli Friedman069e2ed2011-08-26 02:59:24 +00003989def : T2Pat<(atomic_store_8 t2addrmode_imm12:$addr, GPR:$val),
3990 (t2STRBi12 GPR:$val, t2addrmode_imm12:$addr)>;
Jim Grosbacha8307dd2011-09-07 20:58:57 +00003991def : T2Pat<(atomic_store_8 t2addrmode_negimm8:$addr, GPR:$val),
3992 (t2STRBi8 GPR:$val, t2addrmode_negimm8:$addr)>;
Eli Friedman069e2ed2011-08-26 02:59:24 +00003993def : T2Pat<(atomic_store_8 t2addrmode_so_reg:$addr, GPR:$val),
3994 (t2STRBs GPR:$val, t2addrmode_so_reg:$addr)>;
3995def : T2Pat<(atomic_store_16 t2addrmode_imm12:$addr, GPR:$val),
3996 (t2STRHi12 GPR:$val, t2addrmode_imm12:$addr)>;
Jim Grosbacha8307dd2011-09-07 20:58:57 +00003997def : T2Pat<(atomic_store_16 t2addrmode_negimm8:$addr, GPR:$val),
3998 (t2STRHi8 GPR:$val, t2addrmode_negimm8:$addr)>;
Eli Friedman069e2ed2011-08-26 02:59:24 +00003999def : T2Pat<(atomic_store_16 t2addrmode_so_reg:$addr, GPR:$val),
4000 (t2STRHs GPR:$val, t2addrmode_so_reg:$addr)>;
4001def : T2Pat<(atomic_store_32 t2addrmode_imm12:$addr, GPR:$val),
4002 (t2STRi12 GPR:$val, t2addrmode_imm12:$addr)>;
Jim Grosbacha8307dd2011-09-07 20:58:57 +00004003def : T2Pat<(atomic_store_32 t2addrmode_negimm8:$addr, GPR:$val),
4004 (t2STRi8 GPR:$val, t2addrmode_negimm8:$addr)>;
Eli Friedman069e2ed2011-08-26 02:59:24 +00004005def : T2Pat<(atomic_store_32 t2addrmode_so_reg:$addr, GPR:$val),
4006 (t2STRs GPR:$val, t2addrmode_so_reg:$addr)>;
Jim Grosbach72335d52011-08-31 18:23:08 +00004007
4008
4009//===----------------------------------------------------------------------===//
4010// Assembler aliases
4011//
4012
4013// Aliases for ADC without the ".w" optional width specifier.
4014def : t2InstAlias<"adc${s}${p} $Rd, $Rn, $Rm",
4015 (t2ADCrr rGPR:$Rd, rGPR:$Rn, rGPR:$Rm, pred:$p, cc_out:$s)>;
4016def : t2InstAlias<"adc${s}${p} $Rd, $Rn, $ShiftedRm",
4017 (t2ADCrs rGPR:$Rd, rGPR:$Rn, t2_so_reg:$ShiftedRm,
4018 pred:$p, cc_out:$s)>;
4019
4020// Aliases for SBC without the ".w" optional width specifier.
4021def : t2InstAlias<"sbc${s}${p} $Rd, $Rn, $Rm",
4022 (t2SBCrr rGPR:$Rd, rGPR:$Rn, rGPR:$Rm, pred:$p, cc_out:$s)>;
4023def : t2InstAlias<"sbc${s}${p} $Rd, $Rn, $ShiftedRm",
4024 (t2SBCrs rGPR:$Rd, rGPR:$Rn, t2_so_reg:$ShiftedRm,
4025 pred:$p, cc_out:$s)>;
4026
Jim Grosbachf0851e52011-09-02 18:14:46 +00004027// Aliases for ADD without the ".w" optional width specifier.
Jim Grosbach20ed2e72011-09-01 00:28:52 +00004028def : t2InstAlias<"add${s}${p} $Rd, $Rn, $imm",
Jim Grosbachb95ed6e2011-10-03 20:51:59 +00004029 (t2ADDri GPRnopc:$Rd, GPRnopc:$Rn, t2_so_imm:$imm, pred:$p, cc_out:$s)>;
Jim Grosbach20ed2e72011-09-01 00:28:52 +00004030def : t2InstAlias<"add${p} $Rd, $Rn, $imm",
Jim Grosbachb95ed6e2011-10-03 20:51:59 +00004031 (t2ADDri12 GPRnopc:$Rd, GPR:$Rn, imm0_4095:$imm, pred:$p)>;
Jim Grosbachf0851e52011-09-02 18:14:46 +00004032def : t2InstAlias<"add${s}${p} $Rd, $Rn, $Rm",
Jim Grosbachb95ed6e2011-10-03 20:51:59 +00004033 (t2ADDrr GPRnopc:$Rd, GPRnopc:$Rn, rGPR:$Rm, pred:$p, cc_out:$s)>;
Jim Grosbachf0851e52011-09-02 18:14:46 +00004034def : t2InstAlias<"add${s}${p} $Rd, $Rn, $ShiftedRm",
Jim Grosbachb95ed6e2011-10-03 20:51:59 +00004035 (t2ADDrs GPRnopc:$Rd, GPRnopc:$Rn, t2_so_reg:$ShiftedRm,
Jim Grosbachf0851e52011-09-02 18:14:46 +00004036 pred:$p, cc_out:$s)>;
Jim Grosbach5d0492c2011-10-28 16:57:07 +00004037// ... and with the destination and source register combined.
4038def : t2InstAlias<"add${s}${p} $Rdn, $imm",
4039 (t2ADDri GPRnopc:$Rdn, GPRnopc:$Rdn, t2_so_imm:$imm, pred:$p, cc_out:$s)>;
4040def : t2InstAlias<"add${p} $Rdn, $imm",
4041 (t2ADDri12 GPRnopc:$Rdn, GPRnopc:$Rdn, imm0_4095:$imm, pred:$p)>;
4042def : t2InstAlias<"add${s}${p} $Rdn, $Rm",
4043 (t2ADDrr GPRnopc:$Rdn, GPRnopc:$Rdn, rGPR:$Rm, pred:$p, cc_out:$s)>;
4044def : t2InstAlias<"add${s}${p} $Rdn, $ShiftedRm",
4045 (t2ADDrs GPRnopc:$Rdn, GPRnopc:$Rdn, t2_so_reg:$ShiftedRm,
4046 pred:$p, cc_out:$s)>;
Jim Grosbachef88a922011-09-06 21:44:58 +00004047
Jim Grosbach4e53fe82012-04-05 20:57:13 +00004048// add w/ negative immediates is just a sub.
4049def : t2InstAlias<"add${s}${p} $Rd, $Rn, $imm",
4050 (t2SUBri GPRnopc:$Rd, GPRnopc:$Rn, t2_so_imm_neg:$imm, pred:$p,
4051 cc_out:$s)>;
4052def : t2InstAlias<"add${p} $Rd, $Rn, $imm",
4053 (t2SUBri12 GPRnopc:$Rd, GPR:$Rn, imm0_4095_neg:$imm, pred:$p)>;
4054def : t2InstAlias<"add${s}${p} $Rdn, $imm",
4055 (t2SUBri GPRnopc:$Rdn, GPRnopc:$Rdn, t2_so_imm_neg:$imm, pred:$p,
4056 cc_out:$s)>;
4057def : t2InstAlias<"add${p} $Rdn, $imm",
4058 (t2SUBri12 GPRnopc:$Rdn, GPRnopc:$Rdn, imm0_4095_neg:$imm, pred:$p)>;
4059
Jim Grosbach54319e22012-05-01 21:17:34 +00004060def : t2InstAlias<"add${s}${p}.w $Rd, $Rn, $imm",
4061 (t2SUBri GPRnopc:$Rd, GPRnopc:$Rn, t2_so_imm_neg:$imm, pred:$p,
4062 cc_out:$s)>;
4063def : t2InstAlias<"addw${p} $Rd, $Rn, $imm",
4064 (t2SUBri12 GPRnopc:$Rd, GPR:$Rn, imm0_4095_neg:$imm, pred:$p)>;
4065def : t2InstAlias<"add${s}${p}.w $Rdn, $imm",
4066 (t2SUBri GPRnopc:$Rdn, GPRnopc:$Rdn, t2_so_imm_neg:$imm, pred:$p,
4067 cc_out:$s)>;
4068def : t2InstAlias<"addw${p} $Rdn, $imm",
4069 (t2SUBri12 GPRnopc:$Rdn, GPRnopc:$Rdn, imm0_4095_neg:$imm, pred:$p)>;
4070
Jim Grosbach4e53fe82012-04-05 20:57:13 +00004071
Jim Grosbachf67e8552011-09-16 22:58:42 +00004072// Aliases for SUB without the ".w" optional width specifier.
4073def : t2InstAlias<"sub${s}${p} $Rd, $Rn, $imm",
Jim Grosbachb95ed6e2011-10-03 20:51:59 +00004074 (t2SUBri GPRnopc:$Rd, GPRnopc:$Rn, t2_so_imm:$imm, pred:$p, cc_out:$s)>;
Jim Grosbachf67e8552011-09-16 22:58:42 +00004075def : t2InstAlias<"sub${p} $Rd, $Rn, $imm",
Jim Grosbachb95ed6e2011-10-03 20:51:59 +00004076 (t2SUBri12 GPRnopc:$Rd, GPR:$Rn, imm0_4095:$imm, pred:$p)>;
Jim Grosbachf67e8552011-09-16 22:58:42 +00004077def : t2InstAlias<"sub${s}${p} $Rd, $Rn, $Rm",
Jim Grosbachb95ed6e2011-10-03 20:51:59 +00004078 (t2SUBrr GPRnopc:$Rd, GPRnopc:$Rn, rGPR:$Rm, pred:$p, cc_out:$s)>;
Jim Grosbachf67e8552011-09-16 22:58:42 +00004079def : t2InstAlias<"sub${s}${p} $Rd, $Rn, $ShiftedRm",
Jim Grosbachb95ed6e2011-10-03 20:51:59 +00004080 (t2SUBrs GPRnopc:$Rd, GPRnopc:$Rn, t2_so_reg:$ShiftedRm,
Jim Grosbachf67e8552011-09-16 22:58:42 +00004081 pred:$p, cc_out:$s)>;
Jim Grosbach5d0492c2011-10-28 16:57:07 +00004082// ... and with the destination and source register combined.
4083def : t2InstAlias<"sub${s}${p} $Rdn, $imm",
4084 (t2SUBri GPRnopc:$Rdn, GPRnopc:$Rdn, t2_so_imm:$imm, pred:$p, cc_out:$s)>;
4085def : t2InstAlias<"sub${p} $Rdn, $imm",
4086 (t2SUBri12 GPRnopc:$Rdn, GPRnopc:$Rdn, imm0_4095:$imm, pred:$p)>;
Jim Grosbacha23ecc22012-04-10 17:31:55 +00004087def : t2InstAlias<"sub${s}${p}.w $Rdn, $Rm",
4088 (t2SUBrr GPRnopc:$Rdn, GPRnopc:$Rdn, rGPR:$Rm, pred:$p, cc_out:$s)>;
Jim Grosbach5d0492c2011-10-28 16:57:07 +00004089def : t2InstAlias<"sub${s}${p} $Rdn, $Rm",
4090 (t2SUBrr GPRnopc:$Rdn, GPRnopc:$Rdn, rGPR:$Rm, pred:$p, cc_out:$s)>;
4091def : t2InstAlias<"sub${s}${p} $Rdn, $ShiftedRm",
4092 (t2SUBrs GPRnopc:$Rdn, GPRnopc:$Rdn, t2_so_reg:$ShiftedRm,
4093 pred:$p, cc_out:$s)>;
4094
Jim Grosbachef88a922011-09-06 21:44:58 +00004095// Alias for compares without the ".w" optional width specifier.
4096def : t2InstAlias<"cmn${p} $Rn, $Rm",
4097 (t2CMNzrr GPRnopc:$Rn, rGPR:$Rm, pred:$p)>;
4098def : t2InstAlias<"teq${p} $Rn, $Rm",
4099 (t2TEQrr GPRnopc:$Rn, rGPR:$Rm, pred:$p)>;
4100def : t2InstAlias<"tst${p} $Rn, $Rm",
4101 (t2TSTrr GPRnopc:$Rn, rGPR:$Rm, pred:$p)>;
4102
Jim Grosbach06c1a512011-09-06 22:14:58 +00004103// Memory barriers
Evan Cheng97a45432012-04-27 01:27:19 +00004104def : InstAlias<"dmb", (t2DMB 0xf)>, Requires<[IsThumb, HasDB]>;
4105def : InstAlias<"dsb", (t2DSB 0xf)>, Requires<[IsThumb, HasDB]>;
4106def : InstAlias<"isb", (t2ISB 0xf)>, Requires<[IsThumb, HasDB]>;
Jim Grosbacha8307dd2011-09-07 20:58:57 +00004107
Jim Grosbach0811fe12011-09-09 19:42:40 +00004108// Alias for LDR, LDRB, LDRH, LDRSB, and LDRSH without the ".w" optional
4109// width specifier.
Jim Grosbach8bb5a862011-09-07 21:41:25 +00004110def : t2InstAlias<"ldr${p} $Rt, $addr",
4111 (t2LDRi12 GPR:$Rt, t2addrmode_imm12:$addr, pred:$p)>;
4112def : t2InstAlias<"ldrb${p} $Rt, $addr",
4113 (t2LDRBi12 rGPR:$Rt, t2addrmode_imm12:$addr, pred:$p)>;
4114def : t2InstAlias<"ldrh${p} $Rt, $addr",
4115 (t2LDRHi12 rGPR:$Rt, t2addrmode_imm12:$addr, pred:$p)>;
Jim Grosbach0811fe12011-09-09 19:42:40 +00004116def : t2InstAlias<"ldrsb${p} $Rt, $addr",
4117 (t2LDRSBi12 rGPR:$Rt, t2addrmode_imm12:$addr, pred:$p)>;
4118def : t2InstAlias<"ldrsh${p} $Rt, $addr",
4119 (t2LDRSHi12 rGPR:$Rt, t2addrmode_imm12:$addr, pred:$p)>;
4120
Jim Grosbachab899c12011-09-07 23:10:15 +00004121def : t2InstAlias<"ldr${p} $Rt, $addr",
4122 (t2LDRs GPR:$Rt, t2addrmode_so_reg:$addr, pred:$p)>;
4123def : t2InstAlias<"ldrb${p} $Rt, $addr",
4124 (t2LDRBs rGPR:$Rt, t2addrmode_so_reg:$addr, pred:$p)>;
4125def : t2InstAlias<"ldrh${p} $Rt, $addr",
4126 (t2LDRHs rGPR:$Rt, t2addrmode_so_reg:$addr, pred:$p)>;
Jim Grosbach0811fe12011-09-09 19:42:40 +00004127def : t2InstAlias<"ldrsb${p} $Rt, $addr",
4128 (t2LDRSBs rGPR:$Rt, t2addrmode_so_reg:$addr, pred:$p)>;
4129def : t2InstAlias<"ldrsh${p} $Rt, $addr",
4130 (t2LDRSHs rGPR:$Rt, t2addrmode_so_reg:$addr, pred:$p)>;
Jim Grosbachd32872f2011-09-14 21:24:41 +00004131
Jim Grosbacha5813282011-10-26 22:22:01 +00004132def : t2InstAlias<"ldr${p} $Rt, $addr",
4133 (t2LDRpci GPR:$Rt, t2ldrlabel:$addr, pred:$p)>;
4134def : t2InstAlias<"ldrb${p} $Rt, $addr",
4135 (t2LDRBpci rGPR:$Rt, t2ldrlabel:$addr, pred:$p)>;
4136def : t2InstAlias<"ldrh${p} $Rt, $addr",
4137 (t2LDRHpci rGPR:$Rt, t2ldrlabel:$addr, pred:$p)>;
4138def : t2InstAlias<"ldrsb${p} $Rt, $addr",
4139 (t2LDRSBpci rGPR:$Rt, t2ldrlabel:$addr, pred:$p)>;
4140def : t2InstAlias<"ldrsh${p} $Rt, $addr",
4141 (t2LDRSHpci rGPR:$Rt, t2ldrlabel:$addr, pred:$p)>;
4142
Jim Grosbach036a67d2011-10-27 17:16:55 +00004143// Alias for MVN with(out) the ".w" optional width specifier.
4144def : t2InstAlias<"mvn${s}${p}.w $Rd, $imm",
4145 (t2MVNi rGPR:$Rd, t2_so_imm:$imm, pred:$p, cc_out:$s)>;
Jim Grosbachd32872f2011-09-14 21:24:41 +00004146def : t2InstAlias<"mvn${s}${p} $Rd, $Rm",
4147 (t2MVNr rGPR:$Rd, rGPR:$Rm, pred:$p, cc_out:$s)>;
4148def : t2InstAlias<"mvn${s}${p} $Rd, $ShiftedRm",
4149 (t2MVNs rGPR:$Rd, t2_so_reg:$ShiftedRm, pred:$p, cc_out:$s)>;
Jim Grosbach0b692472011-09-14 23:16:41 +00004150
4151// PKHBT/PKHTB with default shift amount. PKHTB is equivalent to PKHBT when the
4152// shift amount is zero (i.e., unspecified).
4153def : InstAlias<"pkhbt${p} $Rd, $Rn, $Rm",
4154 (t2PKHBT rGPR:$Rd, rGPR:$Rn, rGPR:$Rm, 0, pred:$p)>,
4155 Requires<[HasT2ExtractPack, IsThumb2]>;
4156def : InstAlias<"pkhtb${p} $Rd, $Rn, $Rm",
4157 (t2PKHBT rGPR:$Rd, rGPR:$Rn, rGPR:$Rm, 0, pred:$p)>,
4158 Requires<[HasT2ExtractPack, IsThumb2]>;
4159
Jim Grosbach57b21e42011-09-15 15:55:04 +00004160// PUSH/POP aliases for STM/LDM
4161def : t2InstAlias<"push${p}.w $regs", (t2STMDB_UPD SP, pred:$p, reglist:$regs)>;
4162def : t2InstAlias<"push${p} $regs", (t2STMDB_UPD SP, pred:$p, reglist:$regs)>;
4163def : t2InstAlias<"pop${p}.w $regs", (t2LDMIA_UPD SP, pred:$p, reglist:$regs)>;
4164def : t2InstAlias<"pop${p} $regs", (t2LDMIA_UPD SP, pred:$p, reglist:$regs)>;
4165
Jim Grosbach8524bca2011-12-07 18:32:28 +00004166// STMIA/STMIA_UPD aliases w/o the optional .w suffix
4167def : t2InstAlias<"stm${p} $Rn, $regs",
4168 (t2STMIA GPR:$Rn, pred:$p, reglist:$regs)>;
4169def : t2InstAlias<"stm${p} $Rn!, $regs",
4170 (t2STMIA_UPD GPR:$Rn, pred:$p, reglist:$regs)>;
4171
4172// LDMIA/LDMIA_UPD aliases w/o the optional .w suffix
4173def : t2InstAlias<"ldm${p} $Rn, $regs",
4174 (t2LDMIA GPR:$Rn, pred:$p, reglist:$regs)>;
4175def : t2InstAlias<"ldm${p} $Rn!, $regs",
4176 (t2LDMIA_UPD GPR:$Rn, pred:$p, reglist:$regs)>;
4177
Jim Grosbach3c5d6e42011-11-09 23:44:23 +00004178// STMDB/STMDB_UPD aliases w/ the optional .w suffix
4179def : t2InstAlias<"stmdb${p}.w $Rn, $regs",
4180 (t2STMDB GPR:$Rn, pred:$p, reglist:$regs)>;
4181def : t2InstAlias<"stmdb${p}.w $Rn!, $regs",
4182 (t2STMDB_UPD GPR:$Rn, pred:$p, reglist:$regs)>;
4183
Jim Grosbach88484c02011-10-27 17:33:59 +00004184// LDMDB/LDMDB_UPD aliases w/ the optional .w suffix
4185def : t2InstAlias<"ldmdb${p}.w $Rn, $regs",
4186 (t2LDMDB GPR:$Rn, pred:$p, reglist:$regs)>;
4187def : t2InstAlias<"ldmdb${p}.w $Rn!, $regs",
4188 (t2LDMDB_UPD GPR:$Rn, pred:$p, reglist:$regs)>;
4189
Jim Grosbach689b86e2011-09-15 19:46:13 +00004190// Alias for REV/REV16/REVSH without the ".w" optional width specifier.
Jim Grosbach1b69a122011-09-15 18:13:30 +00004191def : t2InstAlias<"rev${p} $Rd, $Rm", (t2REV rGPR:$Rd, rGPR:$Rm, pred:$p)>;
Jim Grosbach689b86e2011-09-15 19:46:13 +00004192def : t2InstAlias<"rev16${p} $Rd, $Rm", (t2REV16 rGPR:$Rd, rGPR:$Rm, pred:$p)>;
4193def : t2InstAlias<"revsh${p} $Rd, $Rm", (t2REVSH rGPR:$Rd, rGPR:$Rm, pred:$p)>;
Jim Grosbach191d33f2011-09-15 20:54:14 +00004194
4195
4196// Alias for RSB without the ".w" optional width specifier, and with optional
4197// implied destination register.
4198def : t2InstAlias<"rsb${s}${p} $Rd, $Rn, $imm",
4199 (t2RSBri rGPR:$Rd, rGPR:$Rn, t2_so_imm:$imm, pred:$p, cc_out:$s)>;
4200def : t2InstAlias<"rsb${s}${p} $Rdn, $imm",
4201 (t2RSBri rGPR:$Rdn, rGPR:$Rdn, t2_so_imm:$imm, pred:$p, cc_out:$s)>;
4202def : t2InstAlias<"rsb${s}${p} $Rdn, $Rm",
4203 (t2RSBrr rGPR:$Rdn, rGPR:$Rdn, rGPR:$Rm, pred:$p, cc_out:$s)>;
4204def : t2InstAlias<"rsb${s}${p} $Rdn, $ShiftedRm",
4205 (t2RSBrs rGPR:$Rdn, rGPR:$Rdn, t2_so_reg:$ShiftedRm, pred:$p,
4206 cc_out:$s)>;
Jim Grosbachb105b992011-09-16 18:32:30 +00004207
4208// SSAT/USAT optional shift operand.
4209def : t2InstAlias<"ssat${p} $Rd, $sat_imm, $Rn",
4210 (t2SSAT rGPR:$Rd, imm1_32:$sat_imm, rGPR:$Rn, 0, pred:$p)>;
4211def : t2InstAlias<"usat${p} $Rd, $sat_imm, $Rn",
4212 (t2USAT rGPR:$Rd, imm0_31:$sat_imm, rGPR:$Rn, 0, pred:$p)>;
4213
Jim Grosbach8213c962011-09-16 20:50:13 +00004214// STM w/o the .w suffix.
4215def : t2InstAlias<"stm${p} $Rn, $regs",
4216 (t2STMIA GPR:$Rn, pred:$p, reglist:$regs)>;
Jim Grosbach642caea2011-09-16 21:06:12 +00004217
4218// Alias for STR, STRB, and STRH without the ".w" optional
4219// width specifier.
4220def : t2InstAlias<"str${p} $Rt, $addr",
4221 (t2STRi12 GPR:$Rt, t2addrmode_imm12:$addr, pred:$p)>;
4222def : t2InstAlias<"strb${p} $Rt, $addr",
4223 (t2STRBi12 rGPR:$Rt, t2addrmode_imm12:$addr, pred:$p)>;
4224def : t2InstAlias<"strh${p} $Rt, $addr",
4225 (t2STRHi12 rGPR:$Rt, t2addrmode_imm12:$addr, pred:$p)>;
4226
4227def : t2InstAlias<"str${p} $Rt, $addr",
4228 (t2STRs GPR:$Rt, t2addrmode_so_reg:$addr, pred:$p)>;
4229def : t2InstAlias<"strb${p} $Rt, $addr",
4230 (t2STRBs rGPR:$Rt, t2addrmode_so_reg:$addr, pred:$p)>;
4231def : t2InstAlias<"strh${p} $Rt, $addr",
4232 (t2STRHs rGPR:$Rt, t2addrmode_so_reg:$addr, pred:$p)>;
Jim Grosbach8a8d28b2011-09-19 17:56:37 +00004233
4234// Extend instruction optional rotate operand.
4235def : t2InstAlias<"sxtab${p} $Rd, $Rn, $Rm",
4236 (t2SXTAB rGPR:$Rd, rGPR:$Rn, rGPR:$Rm, 0, pred:$p)>;
4237def : t2InstAlias<"sxtah${p} $Rd, $Rn, $Rm",
4238 (t2SXTAH rGPR:$Rd, rGPR:$Rn, rGPR:$Rm, 0, pred:$p)>;
4239def : t2InstAlias<"sxtab16${p} $Rd, $Rn, $Rm",
4240 (t2SXTAB16 rGPR:$Rd, rGPR:$Rn, rGPR:$Rm, 0, pred:$p)>;
Jim Grosbach25ddc2b2011-09-27 22:18:54 +00004241
Jim Grosbach326efe52011-09-19 20:29:33 +00004242def : t2InstAlias<"sxtb${p} $Rd, $Rm",
4243 (t2SXTB rGPR:$Rd, rGPR:$Rm, 0, pred:$p)>;
4244def : t2InstAlias<"sxtb16${p} $Rd, $Rm",
4245 (t2SXTB16 rGPR:$Rd, rGPR:$Rm, 0, pred:$p)>;
4246def : t2InstAlias<"sxth${p} $Rd, $Rm",
4247 (t2SXTH rGPR:$Rd, rGPR:$Rm, 0, pred:$p)>;
Jim Grosbach25ddc2b2011-09-27 22:18:54 +00004248def : t2InstAlias<"sxtb${p}.w $Rd, $Rm",
4249 (t2SXTB rGPR:$Rd, rGPR:$Rm, 0, pred:$p)>;
4250def : t2InstAlias<"sxth${p}.w $Rd, $Rm",
4251 (t2SXTH rGPR:$Rd, rGPR:$Rm, 0, pred:$p)>;
Jim Grosbach326efe52011-09-19 20:29:33 +00004252
Jim Grosbach50f1c372011-09-20 00:46:54 +00004253def : t2InstAlias<"uxtab${p} $Rd, $Rn, $Rm",
4254 (t2UXTAB rGPR:$Rd, rGPR:$Rn, rGPR:$Rm, 0, pred:$p)>;
4255def : t2InstAlias<"uxtah${p} $Rd, $Rn, $Rm",
4256 (t2UXTAH rGPR:$Rd, rGPR:$Rn, rGPR:$Rm, 0, pred:$p)>;
4257def : t2InstAlias<"uxtab16${p} $Rd, $Rn, $Rm",
4258 (t2UXTAB16 rGPR:$Rd, rGPR:$Rn, rGPR:$Rm, 0, pred:$p)>;
4259def : t2InstAlias<"uxtb${p} $Rd, $Rm",
4260 (t2UXTB rGPR:$Rd, rGPR:$Rm, 0, pred:$p)>;
4261def : t2InstAlias<"uxtb16${p} $Rd, $Rm",
4262 (t2UXTB16 rGPR:$Rd, rGPR:$Rm, 0, pred:$p)>;
4263def : t2InstAlias<"uxth${p} $Rd, $Rm",
4264 (t2UXTH rGPR:$Rd, rGPR:$Rm, 0, pred:$p)>;
4265
Jim Grosbach25ddc2b2011-09-27 22:18:54 +00004266def : t2InstAlias<"uxtb${p}.w $Rd, $Rm",
4267 (t2UXTB rGPR:$Rd, rGPR:$Rm, 0, pred:$p)>;
4268def : t2InstAlias<"uxth${p}.w $Rd, $Rm",
4269 (t2UXTH rGPR:$Rd, rGPR:$Rm, 0, pred:$p)>;
4270
Jim Grosbach326efe52011-09-19 20:29:33 +00004271// Extend instruction w/o the ".w" optional width specifier.
Jim Grosbach50f1c372011-09-20 00:46:54 +00004272def : t2InstAlias<"uxtb${p} $Rd, $Rm$rot",
4273 (t2UXTB rGPR:$Rd, rGPR:$Rm, rot_imm:$rot, pred:$p)>;
4274def : t2InstAlias<"uxtb16${p} $Rd, $Rm$rot",
4275 (t2UXTB16 rGPR:$Rd, rGPR:$Rm, rot_imm:$rot, pred:$p)>;
4276def : t2InstAlias<"uxth${p} $Rd, $Rm$rot",
4277 (t2UXTH rGPR:$Rd, rGPR:$Rm, rot_imm:$rot, pred:$p)>;
4278
Jim Grosbach326efe52011-09-19 20:29:33 +00004279def : t2InstAlias<"sxtb${p} $Rd, $Rm$rot",
4280 (t2SXTB rGPR:$Rd, rGPR:$Rm, rot_imm:$rot, pred:$p)>;
4281def : t2InstAlias<"sxtb16${p} $Rd, $Rm$rot",
4282 (t2SXTB16 rGPR:$Rd, rGPR:$Rm, rot_imm:$rot, pred:$p)>;
4283def : t2InstAlias<"sxth${p} $Rd, $Rm$rot",
4284 (t2SXTH rGPR:$Rd, rGPR:$Rm, rot_imm:$rot, pred:$p)>;
Jim Grosbach89a63372011-10-28 22:36:30 +00004285
4286
4287// "mov Rd, t2_so_imm_not" can be handled via "mvn" in assembly, just like
4288// for isel.
4289def : t2InstAlias<"mov${p} $Rd, $imm",
4290 (t2MVNi rGPR:$Rd, t2_so_imm_not:$imm, pred:$p, zero_reg)>;
Jim Grosbach46777082011-12-14 17:56:51 +00004291def : t2InstAlias<"mvn${p} $Rd, $imm",
4292 (t2MOVi rGPR:$Rd, t2_so_imm_not:$imm, pred:$p, zero_reg)>;
Jim Grosbach840bf7e2011-12-09 22:02:17 +00004293// Same for AND <--> BIC
4294def : t2InstAlias<"bic${s}${p} $Rd, $Rn, $imm",
4295 (t2ANDri rGPR:$Rd, rGPR:$Rn, so_imm_not:$imm,
4296 pred:$p, cc_out:$s)>;
4297def : t2InstAlias<"bic${s}${p} $Rdn, $imm",
4298 (t2ANDri rGPR:$Rdn, rGPR:$Rdn, so_imm_not:$imm,
4299 pred:$p, cc_out:$s)>;
4300def : t2InstAlias<"and${s}${p} $Rd, $Rn, $imm",
4301 (t2BICri rGPR:$Rd, rGPR:$Rn, so_imm_not:$imm,
4302 pred:$p, cc_out:$s)>;
4303def : t2InstAlias<"and${s}${p} $Rdn, $imm",
4304 (t2BICri rGPR:$Rdn, rGPR:$Rdn, so_imm_not:$imm,
4305 pred:$p, cc_out:$s)>;
Jim Grosbach8d11c632011-12-14 17:30:24 +00004306// Likewise, "add Rd, t2_so_imm_neg" -> sub
Jim Grosbach3bc8a3d2011-12-08 00:31:07 +00004307def : t2InstAlias<"add${s}${p} $Rd, $Rn, $imm",
4308 (t2SUBri GPRnopc:$Rd, GPRnopc:$Rn, t2_so_imm_neg:$imm,
4309 pred:$p, cc_out:$s)>;
4310def : t2InstAlias<"add${s}${p} $Rd, $imm",
4311 (t2SUBri GPRnopc:$Rd, GPRnopc:$Rd, t2_so_imm_neg:$imm,
4312 pred:$p, cc_out:$s)>;
Jim Grosbach8d11c632011-12-14 17:30:24 +00004313// Same for CMP <--> CMN via t2_so_imm_neg
4314def : t2InstAlias<"cmp${p} $Rd, $imm",
Bill Wendlingad5c8802012-06-11 08:07:26 +00004315 (t2CMNri rGPR:$Rd, t2_so_imm_neg:$imm, pred:$p)>;
Jim Grosbach8d11c632011-12-14 17:30:24 +00004316def : t2InstAlias<"cmn${p} $Rd, $imm",
4317 (t2CMPri rGPR:$Rd, t2_so_imm_neg:$imm, pred:$p)>;
Jim Grosbach7f1ec952011-11-15 19:55:16 +00004318
4319
4320// Wide 'mul' encoding can be specified with only two operands.
4321def : t2InstAlias<"mul${p} $Rn, $Rm",
Jim Grosbachcf9814d2011-12-06 05:03:45 +00004322 (t2MUL rGPR:$Rn, rGPR:$Rm, rGPR:$Rn, pred:$p)>;
Jim Grosbache91e7bc2011-12-13 20:23:22 +00004323
4324// "neg" is and alias for "rsb rd, rn, #0"
4325def : t2InstAlias<"neg${s}${p} $Rd, $Rm",
4326 (t2RSBri rGPR:$Rd, rGPR:$Rm, 0, pred:$p, cc_out:$s)>;
Jim Grosbach863d2af2011-12-13 22:45:11 +00004327
4328// MOV so_reg assembler pseudos. InstAlias isn't expressive enough for
4329// these, unfortunately.
4330def t2MOVsi: t2AsmPseudo<"mov${p} $Rd, $shift",
4331 (ins rGPR:$Rd, t2_so_reg:$shift, pred:$p)>;
4332def t2MOVSsi: t2AsmPseudo<"movs${p} $Rd, $shift",
4333 (ins rGPR:$Rd, t2_so_reg:$shift, pred:$p)>;
Jim Grosbachb6744db2011-12-15 23:52:17 +00004334
Jim Grosbach2cc5cda2011-12-21 20:54:00 +00004335def t2MOVsr: t2AsmPseudo<"mov${p} $Rd, $shift",
4336 (ins rGPR:$Rd, so_reg_reg:$shift, pred:$p)>;
4337def t2MOVSsr: t2AsmPseudo<"movs${p} $Rd, $shift",
4338 (ins rGPR:$Rd, so_reg_reg:$shift, pred:$p)>;
4339
Jim Grosbachb6744db2011-12-15 23:52:17 +00004340// ADR w/o the .w suffix
4341def : t2InstAlias<"adr${p} $Rd, $addr",
4342 (t2ADR rGPR:$Rd, t2adrlabel:$addr, pred:$p)>;
Jim Grosbach0b4c6732012-01-18 22:46:46 +00004343
4344// LDR(literal) w/ alternate [pc, #imm] syntax.
4345def t2LDRpcrel : t2AsmPseudo<"ldr${p} $Rt, $addr",
4346 (ins GPRnopc:$Rt, t2ldr_pcrel_imm12:$addr, pred:$p)>;
4347def t2LDRBpcrel : t2AsmPseudo<"ldrb${p} $Rt, $addr",
4348 (ins GPRnopc:$Rt, t2ldr_pcrel_imm12:$addr, pred:$p)>;
4349def t2LDRHpcrel : t2AsmPseudo<"ldrh${p} $Rt, $addr",
4350 (ins GPRnopc:$Rt, t2ldr_pcrel_imm12:$addr, pred:$p)>;
4351def t2LDRSBpcrel : t2AsmPseudo<"ldrsb${p} $Rt, $addr",
4352 (ins GPRnopc:$Rt, t2ldr_pcrel_imm12:$addr, pred:$p)>;
4353def t2LDRSHpcrel : t2AsmPseudo<"ldrsh${p} $Rt, $addr",
4354 (ins GPRnopc:$Rt, t2ldr_pcrel_imm12:$addr, pred:$p)>;
4355 // Version w/ the .w suffix.
4356def : t2InstAlias<"ldr${p}.w $Rt, $addr",
4357 (t2LDRpcrel GPRnopc:$Rt, t2ldr_pcrel_imm12:$addr, pred:$p)>;
4358def : t2InstAlias<"ldrb${p}.w $Rt, $addr",
4359 (t2LDRBpcrel GPRnopc:$Rt, t2ldr_pcrel_imm12:$addr, pred:$p)>;
4360def : t2InstAlias<"ldrh${p}.w $Rt, $addr",
4361 (t2LDRHpcrel GPRnopc:$Rt, t2ldr_pcrel_imm12:$addr, pred:$p)>;
4362def : t2InstAlias<"ldrsb${p}.w $Rt, $addr",
4363 (t2LDRSBpcrel GPRnopc:$Rt, t2ldr_pcrel_imm12:$addr, pred:$p)>;
4364def : t2InstAlias<"ldrsh${p}.w $Rt, $addr",
4365 (t2LDRSHpcrel GPRnopc:$Rt, t2ldr_pcrel_imm12:$addr, pred:$p)>;
Jim Grosbach12a88632012-01-21 00:07:56 +00004366
4367def : t2InstAlias<"add${p} $Rd, pc, $imm",
4368 (t2ADR rGPR:$Rd, imm0_4095:$imm, pred:$p)>;