blob: 307006f413a8e3e8732bd77d2aab1b3fcc91ad14 [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 }
Evan Chengf49810c2009-06-23 17:48:47 +0000760}
761
Jim Grosbach6935efc2009-11-24 00:20:27 +0000762/// T2I_adde_sube_irs - Defines a set of (op reg, {so_imm|r|so_reg}) patterns
Jim Grosbach39be8fc2010-02-16 20:42:29 +0000763/// for a binary operation that produces a value and use the carry
Jim Grosbach6935efc2009-11-24 00:20:27 +0000764/// bit. It's not predicable.
Evan Cheng342e3162011-08-30 01:34:54 +0000765let Defs = [CPSR], Uses = [CPSR] in {
Jim Grosbach80dc1162010-02-16 21:23:02 +0000766multiclass T2I_adde_sube_irs<bits<4> opcod, string opc, PatFrag opnode,
767 bit Commutable = 0> {
Anton Korobeynikov52237112009-06-17 18:13:58 +0000768 // shifted imm
Owen Anderson83da6cd2010-11-14 05:37:38 +0000769 def ri : T2sTwoRegImm<(outs rGPR:$Rd), (ins rGPR:$Rn, t2_so_imm:$imm),
Owen Anderson5de6d842010-11-12 21:12:40 +0000770 IIC_iALUi, opc, "\t$Rd, $Rn, $imm",
Evan Cheng342e3162011-08-30 01:34:54 +0000771 [(set rGPR:$Rd, CPSR, (opnode rGPR:$Rn, t2_so_imm:$imm, CPSR))]>,
Jim Grosbach39be8fc2010-02-16 20:42:29 +0000772 Requires<[IsThumb2]> {
Johnny Chend68e1192009-12-15 17:24:14 +0000773 let Inst{31-27} = 0b11110;
774 let Inst{25} = 0;
775 let Inst{24-21} = opcod;
Johnny Chend68e1192009-12-15 17:24:14 +0000776 let Inst{15} = 0;
777 }
Evan Chenga67efd12009-06-23 19:39:13 +0000778 // register
Owen Anderson83da6cd2010-11-14 05:37:38 +0000779 def rr : T2sThreeReg<(outs rGPR:$Rd), (ins rGPR:$Rn, rGPR:$Rm), IIC_iALUr,
Owen Anderson5de6d842010-11-12 21:12:40 +0000780 opc, ".w\t$Rd, $Rn, $Rm",
Evan Cheng342e3162011-08-30 01:34:54 +0000781 [(set rGPR:$Rd, CPSR, (opnode rGPR:$Rn, rGPR:$Rm, CPSR))]>,
Jim Grosbach39be8fc2010-02-16 20:42:29 +0000782 Requires<[IsThumb2]> {
Evan Cheng8de898a2009-06-26 00:19:44 +0000783 let isCommutable = Commutable;
Johnny Chend68e1192009-12-15 17:24:14 +0000784 let Inst{31-27} = 0b11101;
785 let Inst{26-25} = 0b01;
786 let Inst{24-21} = opcod;
Johnny Chend68e1192009-12-15 17:24:14 +0000787 let Inst{14-12} = 0b000; // imm3
788 let Inst{7-6} = 0b00; // imm2
789 let Inst{5-4} = 0b00; // type
Evan Cheng8de898a2009-06-26 00:19:44 +0000790 }
Anton Korobeynikov52237112009-06-17 18:13:58 +0000791 // shifted register
Owen Anderson83da6cd2010-11-14 05:37:38 +0000792 def rs : T2sTwoRegShiftedReg<
Jim Grosbach7a088642010-11-19 17:11:02 +0000793 (outs rGPR:$Rd), (ins rGPR:$Rn, t2_so_reg:$ShiftedRm),
Owen Anderson5de6d842010-11-12 21:12:40 +0000794 IIC_iALUsi, opc, ".w\t$Rd, $Rn, $ShiftedRm",
Evan Cheng342e3162011-08-30 01:34:54 +0000795 [(set rGPR:$Rd, CPSR, (opnode rGPR:$Rn, t2_so_reg:$ShiftedRm, CPSR))]>,
Jim Grosbach39be8fc2010-02-16 20:42:29 +0000796 Requires<[IsThumb2]> {
Johnny Chend68e1192009-12-15 17:24:14 +0000797 let Inst{31-27} = 0b11101;
798 let Inst{26-25} = 0b01;
799 let Inst{24-21} = opcod;
Johnny Chend68e1192009-12-15 17:24:14 +0000800 }
Jim Grosbach39be8fc2010-02-16 20:42:29 +0000801}
Andrew Trick1c3af772011-04-23 03:55:32 +0000802}
Jim Grosbach39be8fc2010-02-16 20:42:29 +0000803
Evan Chenga67efd12009-06-23 19:39:13 +0000804/// T2I_sh_ir - Defines a set of (op reg, {so_imm|r}) patterns for a shift /
805// rotate operation that produces a value.
Jim Grosbach9249ef32012-08-02 21:59:52 +0000806multiclass T2I_sh_ir<bits<2> opcod, string opc, Operand ty, PatFrag opnode> {
Evan Chenga67efd12009-06-23 19:39:13 +0000807 // 5-bit imm
Owen Andersonbb6315d2010-11-15 19:58:36 +0000808 def ri : T2sTwoRegShiftImm<
Owen Anderson6d746312011-08-08 20:42:17 +0000809 (outs rGPR:$Rd), (ins rGPR:$Rm, ty:$imm), IIC_iMOVsi,
Owen Andersonbb6315d2010-11-15 19:58:36 +0000810 opc, ".w\t$Rd, $Rm, $imm",
Jim Grosbach70939ee2011-08-17 21:51:27 +0000811 [(set rGPR:$Rd, (opnode rGPR:$Rm, (i32 ty:$imm)))]> {
Johnny Chend68e1192009-12-15 17:24:14 +0000812 let Inst{31-27} = 0b11101;
813 let Inst{26-21} = 0b010010;
814 let Inst{19-16} = 0b1111; // Rn
815 let Inst{5-4} = opcod;
816 }
Evan Chenga67efd12009-06-23 19:39:13 +0000817 // register
Owen Andersonbb6315d2010-11-15 19:58:36 +0000818 def rr : T2sThreeReg<
819 (outs rGPR:$Rd), (ins rGPR:$Rn, rGPR:$Rm), IIC_iMOVsr,
820 opc, ".w\t$Rd, $Rn, $Rm",
821 [(set rGPR:$Rd, (opnode rGPR:$Rn, rGPR:$Rm))]> {
Johnny Chend68e1192009-12-15 17:24:14 +0000822 let Inst{31-27} = 0b11111;
823 let Inst{26-23} = 0b0100;
824 let Inst{22-21} = opcod;
825 let Inst{15-12} = 0b1111;
826 let Inst{7-4} = 0b0000;
827 }
Jim Grosbach5f25fb02011-09-02 21:28:54 +0000828
829 // Optional destination register
830 def : t2InstAlias<!strconcat(opc, "${s}${p}", ".w $Rdn, $imm"),
Jim Grosbach9249ef32012-08-02 21:59:52 +0000831 (!cast<Instruction>(NAME#"ri") rGPR:$Rdn, rGPR:$Rdn, ty:$imm, pred:$p,
832 cc_out:$s)>;
Jim Grosbach5f25fb02011-09-02 21:28:54 +0000833 def : t2InstAlias<!strconcat(opc, "${s}${p}", ".w $Rdn, $Rm"),
Jim Grosbach9249ef32012-08-02 21:59:52 +0000834 (!cast<Instruction>(NAME#"rr") rGPR:$Rdn, rGPR:$Rdn, rGPR:$Rm, pred:$p,
835 cc_out:$s)>;
Jim Grosbach5f25fb02011-09-02 21:28:54 +0000836
837 // Assembler aliases w/o the ".w" suffix.
838 def : t2InstAlias<!strconcat(opc, "${s}${p}", " $Rd, $Rn, $imm"),
Jim Grosbach9249ef32012-08-02 21:59:52 +0000839 (!cast<Instruction>(NAME#"ri") rGPR:$Rd, rGPR:$Rn, ty:$imm, pred:$p,
840 cc_out:$s)>;
Jim Grosbach5f25fb02011-09-02 21:28:54 +0000841 def : t2InstAlias<!strconcat(opc, "${s}${p}", " $Rd, $Rn, $Rm"),
Jim Grosbach9249ef32012-08-02 21:59:52 +0000842 (!cast<Instruction>(NAME#"rr") rGPR:$Rd, rGPR:$Rn, rGPR:$Rm, pred:$p,
843 cc_out:$s)>;
Jim Grosbach5f25fb02011-09-02 21:28:54 +0000844
845 // and with the optional destination operand, too.
846 def : t2InstAlias<!strconcat(opc, "${s}${p}", " $Rdn, $imm"),
Jim Grosbach9249ef32012-08-02 21:59:52 +0000847 (!cast<Instruction>(NAME#"ri") rGPR:$Rdn, rGPR:$Rdn, ty:$imm, pred:$p,
848 cc_out:$s)>;
Jim Grosbach5f25fb02011-09-02 21:28:54 +0000849 def : t2InstAlias<!strconcat(opc, "${s}${p}", " $Rdn, $Rm"),
Jim Grosbach9249ef32012-08-02 21:59:52 +0000850 (!cast<Instruction>(NAME#"rr") rGPR:$Rdn, rGPR:$Rdn, rGPR:$Rm, pred:$p,
851 cc_out:$s)>;
Evan Chenga67efd12009-06-23 19:39:13 +0000852}
Evan Chengf49810c2009-06-23 17:48:47 +0000853
Johnny Chend68e1192009-12-15 17:24:14 +0000854/// T2I_cmp_irs - Defines a set of (op r, {so_imm|r|so_reg}) cmp / test
Evan Chenga67efd12009-06-23 19:39:13 +0000855/// patterns. Similar to T2I_bin_irs except the instruction does not produce
Evan Chengf49810c2009-06-23 17:48:47 +0000856/// a explicit result, only implicitly set CPSR.
Evan Cheng5d42c562010-09-29 00:49:25 +0000857multiclass T2I_cmp_irs<bits<4> opcod, string opc,
858 InstrItinClass iii, InstrItinClass iir, InstrItinClass iis,
Jim Grosbach9249ef32012-08-02 21:59:52 +0000859 PatFrag opnode> {
Jim Grosbachef88a922011-09-06 21:44:58 +0000860let isCompare = 1, Defs = [CPSR] in {
Evan Chengf49810c2009-06-23 17:48:47 +0000861 // shifted imm
Owen Andersonbb6315d2010-11-15 19:58:36 +0000862 def ri : T2OneRegCmpImm<
Jim Grosbachef88a922011-09-06 21:44:58 +0000863 (outs), (ins GPRnopc:$Rn, t2_so_imm:$imm), iii,
Owen Andersonbb6315d2010-11-15 19:58:36 +0000864 opc, ".w\t$Rn, $imm",
Jim Grosbachef88a922011-09-06 21:44:58 +0000865 [(opnode GPRnopc:$Rn, t2_so_imm:$imm)]> {
Johnny Chend68e1192009-12-15 17:24:14 +0000866 let Inst{31-27} = 0b11110;
867 let Inst{25} = 0;
868 let Inst{24-21} = opcod;
869 let Inst{20} = 1; // The S bit.
870 let Inst{15} = 0;
871 let Inst{11-8} = 0b1111; // Rd
872 }
Evan Chenga67efd12009-06-23 19:39:13 +0000873 // register
Owen Andersonbb6315d2010-11-15 19:58:36 +0000874 def rr : T2TwoRegCmp<
Jim Grosbachef88a922011-09-06 21:44:58 +0000875 (outs), (ins GPRnopc:$Rn, rGPR:$Rm), iir,
Owen Andersone732cb02011-08-23 17:37:32 +0000876 opc, ".w\t$Rn, $Rm",
Jim Grosbachef88a922011-09-06 21:44:58 +0000877 [(opnode GPRnopc:$Rn, rGPR:$Rm)]> {
Johnny Chend68e1192009-12-15 17:24:14 +0000878 let Inst{31-27} = 0b11101;
879 let Inst{26-25} = 0b01;
880 let Inst{24-21} = opcod;
881 let Inst{20} = 1; // The S bit.
882 let Inst{14-12} = 0b000; // imm3
883 let Inst{11-8} = 0b1111; // Rd
884 let Inst{7-6} = 0b00; // imm2
885 let Inst{5-4} = 0b00; // type
886 }
Evan Chengf49810c2009-06-23 17:48:47 +0000887 // shifted register
Owen Andersonbb6315d2010-11-15 19:58:36 +0000888 def rs : T2OneRegCmpShiftedReg<
Jim Grosbachef88a922011-09-06 21:44:58 +0000889 (outs), (ins GPRnopc:$Rn, t2_so_reg:$ShiftedRm), iis,
Owen Andersonbb6315d2010-11-15 19:58:36 +0000890 opc, ".w\t$Rn, $ShiftedRm",
Jim Grosbachef88a922011-09-06 21:44:58 +0000891 [(opnode GPRnopc:$Rn, t2_so_reg:$ShiftedRm)]> {
Johnny Chend68e1192009-12-15 17:24:14 +0000892 let Inst{31-27} = 0b11101;
893 let Inst{26-25} = 0b01;
894 let Inst{24-21} = opcod;
895 let Inst{20} = 1; // The S bit.
896 let Inst{11-8} = 0b1111; // Rd
897 }
Anton Korobeynikov52237112009-06-17 18:13:58 +0000898}
Jim Grosbachef88a922011-09-06 21:44:58 +0000899
900 // Assembler aliases w/o the ".w" suffix.
901 // No alias here for 'rr' version as not all instantiations of this
902 // multiclass want one (CMP in particular, does not).
903 def : t2InstAlias<!strconcat(opc, "${p}", " $Rn, $imm"),
Jim Grosbach9249ef32012-08-02 21:59:52 +0000904 (!cast<Instruction>(NAME#"ri") GPRnopc:$Rn, t2_so_imm:$imm, pred:$p)>;
Jim Grosbachef88a922011-09-06 21:44:58 +0000905 def : t2InstAlias<!strconcat(opc, "${p}", " $Rn, $shift"),
Jim Grosbach9249ef32012-08-02 21:59:52 +0000906 (!cast<Instruction>(NAME#"rs") GPRnopc:$Rn, t2_so_reg:$shift, pred:$p)>;
Anton Korobeynikov52237112009-06-17 18:13:58 +0000907}
908
Evan Chengf3c21b82009-06-30 02:15:48 +0000909/// T2I_ld - Defines a set of (op r, {imm12|imm8|so_reg}) load patterns.
Evan Cheng0e55fd62010-09-30 01:08:25 +0000910multiclass T2I_ld<bit signed, bits<2> opcod, string opc,
Owen Anderson9fe72bc2011-08-11 20:40:40 +0000911 InstrItinClass iii, InstrItinClass iis, RegisterClass target,
912 PatFrag opnode> {
913 def i12 : T2Ii12<(outs target:$Rt), (ins t2addrmode_imm12:$addr), iii,
Owen Anderson75579f72010-11-29 22:44:32 +0000914 opc, ".w\t$Rt, $addr",
Owen Anderson9fe72bc2011-08-11 20:40:40 +0000915 [(set target:$Rt, (opnode t2addrmode_imm12:$addr))]> {
Jim Grosbacha8307dd2011-09-07 20:58:57 +0000916 bits<4> Rt;
917 bits<17> addr;
918 let Inst{31-25} = 0b1111100;
Johnny Chend68e1192009-12-15 17:24:14 +0000919 let Inst{24} = signed;
920 let Inst{23} = 1;
921 let Inst{22-21} = opcod;
922 let Inst{20} = 1; // load
Owen Anderson80dd3e02010-11-30 22:45:47 +0000923 let Inst{19-16} = addr{16-13}; // Rn
Jim Grosbacha8307dd2011-09-07 20:58:57 +0000924 let Inst{15-12} = Rt;
Owen Anderson80dd3e02010-11-30 22:45:47 +0000925 let Inst{11-0} = addr{11-0}; // imm
Johnny Chend68e1192009-12-15 17:24:14 +0000926 }
Jim Grosbacha8307dd2011-09-07 20:58:57 +0000927 def i8 : T2Ii8 <(outs target:$Rt), (ins t2addrmode_negimm8:$addr), iii,
Owen Anderson75579f72010-11-29 22:44:32 +0000928 opc, "\t$Rt, $addr",
Jim Grosbacha8307dd2011-09-07 20:58:57 +0000929 [(set target:$Rt, (opnode t2addrmode_negimm8:$addr))]> {
930 bits<4> Rt;
931 bits<13> addr;
Johnny Chend68e1192009-12-15 17:24:14 +0000932 let Inst{31-27} = 0b11111;
933 let Inst{26-25} = 0b00;
934 let Inst{24} = signed;
935 let Inst{23} = 0;
936 let Inst{22-21} = opcod;
937 let Inst{20} = 1; // load
Jim Grosbacha8307dd2011-09-07 20:58:57 +0000938 let Inst{19-16} = addr{12-9}; // Rn
939 let Inst{15-12} = Rt;
Johnny Chend68e1192009-12-15 17:24:14 +0000940 let Inst{11} = 1;
941 // Offset: index==TRUE, wback==FALSE
942 let Inst{10} = 1; // The P bit.
Owen Anderson75579f72010-11-29 22:44:32 +0000943 let Inst{9} = addr{8}; // U
Jim Grosbacha8307dd2011-09-07 20:58:57 +0000944 let Inst{8} = 0; // The W bit.
Owen Anderson75579f72010-11-29 22:44:32 +0000945 let Inst{7-0} = addr{7-0}; // imm
Johnny Chend68e1192009-12-15 17:24:14 +0000946 }
Owen Anderson9fe72bc2011-08-11 20:40:40 +0000947 def s : T2Iso <(outs target:$Rt), (ins t2addrmode_so_reg:$addr), iis,
Owen Anderson75579f72010-11-29 22:44:32 +0000948 opc, ".w\t$Rt, $addr",
Owen Anderson9fe72bc2011-08-11 20:40:40 +0000949 [(set target:$Rt, (opnode t2addrmode_so_reg:$addr))]> {
Johnny Chend68e1192009-12-15 17:24:14 +0000950 let Inst{31-27} = 0b11111;
951 let Inst{26-25} = 0b00;
952 let Inst{24} = signed;
953 let Inst{23} = 0;
954 let Inst{22-21} = opcod;
955 let Inst{20} = 1; // load
956 let Inst{11-6} = 0b000000;
Jim Grosbach7721e7f2010-12-02 23:05:38 +0000957
Owen Anderson75579f72010-11-29 22:44:32 +0000958 bits<4> Rt;
Jim Grosbach86386922010-12-08 22:10:43 +0000959 let Inst{15-12} = Rt;
Jim Grosbach7721e7f2010-12-02 23:05:38 +0000960
Owen Anderson75579f72010-11-29 22:44:32 +0000961 bits<10> addr;
962 let Inst{19-16} = addr{9-6}; // Rn
963 let Inst{3-0} = addr{5-2}; // Rm
964 let Inst{5-4} = addr{1-0}; // imm
Owen Anderson8d7d2e12011-08-09 20:55:18 +0000965
966 let DecoderMethod = "DecodeT2LoadShift";
Johnny Chend68e1192009-12-15 17:24:14 +0000967 }
Evan Chengbc7deb02010-11-03 05:14:24 +0000968
Jim Grosbach5aa53682012-01-18 22:04:42 +0000969 // pci variant is very similar to i12, but supports negative offsets
970 // from the PC.
Owen Anderson9fe72bc2011-08-11 20:40:40 +0000971 def pci : T2Ipc <(outs target:$Rt), (ins t2ldrlabel:$addr), iii,
Owen Anderson971b83b2011-02-08 22:39:40 +0000972 opc, ".w\t$Rt, $addr",
Owen Anderson9fe72bc2011-08-11 20:40:40 +0000973 [(set target:$Rt, (opnode (ARMWrapper tconstpool:$addr)))]> {
Owen Anderson971b83b2011-02-08 22:39:40 +0000974 let isReMaterializable = 1;
975 let Inst{31-27} = 0b11111;
976 let Inst{26-25} = 0b00;
977 let Inst{24} = signed;
978 let Inst{23} = ?; // add = (U == '1')
979 let Inst{22-21} = opcod;
980 let Inst{20} = 1; // load
981 let Inst{19-16} = 0b1111; // Rn
982 bits<4> Rt;
983 bits<12> addr;
984 let Inst{15-12} = Rt{3-0};
985 let Inst{11-0} = addr{11-0};
986 }
Evan Chengf3c21b82009-06-30 02:15:48 +0000987}
988
David Goodwin73b8f162009-06-30 22:11:34 +0000989/// T2I_st - Defines a set of (op r, {imm12|imm8|so_reg}) store patterns.
Evan Cheng0e55fd62010-09-30 01:08:25 +0000990multiclass T2I_st<bits<2> opcod, string opc,
Owen Anderson9fe72bc2011-08-11 20:40:40 +0000991 InstrItinClass iii, InstrItinClass iis, RegisterClass target,
992 PatFrag opnode> {
993 def i12 : T2Ii12<(outs), (ins target:$Rt, t2addrmode_imm12:$addr), iii,
Owen Anderson75579f72010-11-29 22:44:32 +0000994 opc, ".w\t$Rt, $addr",
Owen Anderson9fe72bc2011-08-11 20:40:40 +0000995 [(opnode target:$Rt, t2addrmode_imm12:$addr)]> {
Johnny Chend68e1192009-12-15 17:24:14 +0000996 let Inst{31-27} = 0b11111;
997 let Inst{26-23} = 0b0001;
998 let Inst{22-21} = opcod;
999 let Inst{20} = 0; // !load
Jim Grosbach7721e7f2010-12-02 23:05:38 +00001000
Owen Anderson75579f72010-11-29 22:44:32 +00001001 bits<4> Rt;
Jim Grosbach86386922010-12-08 22:10:43 +00001002 let Inst{15-12} = Rt;
Jim Grosbach7721e7f2010-12-02 23:05:38 +00001003
Owen Anderson80dd3e02010-11-30 22:45:47 +00001004 bits<17> addr;
Johnny Chenf9ce2cb2011-04-12 18:48:00 +00001005 let addr{12} = 1; // add = TRUE
Owen Anderson80dd3e02010-11-30 22:45:47 +00001006 let Inst{19-16} = addr{16-13}; // Rn
1007 let Inst{23} = addr{12}; // U
1008 let Inst{11-0} = addr{11-0}; // imm
Johnny Chend68e1192009-12-15 17:24:14 +00001009 }
Jim Grosbacha8307dd2011-09-07 20:58:57 +00001010 def i8 : T2Ii8 <(outs), (ins target:$Rt, t2addrmode_negimm8:$addr), iii,
Owen Anderson75579f72010-11-29 22:44:32 +00001011 opc, "\t$Rt, $addr",
Jim Grosbacha8307dd2011-09-07 20:58:57 +00001012 [(opnode target:$Rt, t2addrmode_negimm8:$addr)]> {
Johnny Chend68e1192009-12-15 17:24:14 +00001013 let Inst{31-27} = 0b11111;
1014 let Inst{26-23} = 0b0000;
1015 let Inst{22-21} = opcod;
1016 let Inst{20} = 0; // !load
1017 let Inst{11} = 1;
1018 // Offset: index==TRUE, wback==FALSE
1019 let Inst{10} = 1; // The P bit.
1020 let Inst{8} = 0; // The W bit.
Jim Grosbach7721e7f2010-12-02 23:05:38 +00001021
Owen Anderson75579f72010-11-29 22:44:32 +00001022 bits<4> Rt;
Jim Grosbach86386922010-12-08 22:10:43 +00001023 let Inst{15-12} = Rt;
Jim Grosbach7721e7f2010-12-02 23:05:38 +00001024
Owen Anderson75579f72010-11-29 22:44:32 +00001025 bits<13> addr;
1026 let Inst{19-16} = addr{12-9}; // Rn
1027 let Inst{9} = addr{8}; // U
1028 let Inst{7-0} = addr{7-0}; // imm
Johnny Chend68e1192009-12-15 17:24:14 +00001029 }
Owen Anderson9fe72bc2011-08-11 20:40:40 +00001030 def s : T2Iso <(outs), (ins target:$Rt, t2addrmode_so_reg:$addr), iis,
Owen Anderson75579f72010-11-29 22:44:32 +00001031 opc, ".w\t$Rt, $addr",
Owen Anderson9fe72bc2011-08-11 20:40:40 +00001032 [(opnode target:$Rt, t2addrmode_so_reg:$addr)]> {
Johnny Chend68e1192009-12-15 17:24:14 +00001033 let Inst{31-27} = 0b11111;
1034 let Inst{26-23} = 0b0000;
1035 let Inst{22-21} = opcod;
1036 let Inst{20} = 0; // !load
1037 let Inst{11-6} = 0b000000;
Jim Grosbach7721e7f2010-12-02 23:05:38 +00001038
Owen Anderson75579f72010-11-29 22:44:32 +00001039 bits<4> Rt;
Jim Grosbach86386922010-12-08 22:10:43 +00001040 let Inst{15-12} = Rt;
Jim Grosbach7721e7f2010-12-02 23:05:38 +00001041
Owen Anderson75579f72010-11-29 22:44:32 +00001042 bits<10> addr;
1043 let Inst{19-16} = addr{9-6}; // Rn
1044 let Inst{3-0} = addr{5-2}; // Rm
1045 let Inst{5-4} = addr{1-0}; // imm
Johnny Chend68e1192009-12-15 17:24:14 +00001046 }
David Goodwin73b8f162009-06-30 22:11:34 +00001047}
1048
Evan Cheng0e55fd62010-09-30 01:08:25 +00001049/// T2I_ext_rrot - A unary operation with two forms: one whose operand is a
Evan Chengd27c9fc2009-07-03 01:43:10 +00001050/// register and one whose operand is a register rotated by 8/16/24.
Jim Grosbachc5a8c862011-07-27 16:47:19 +00001051class T2I_ext_rrot<bits<3> opcod, string opc, PatFrag opnode>
1052 : T2TwoReg<(outs rGPR:$Rd), (ins rGPR:$Rm, rot_imm:$rot), IIC_iEXTr,
1053 opc, ".w\t$Rd, $Rm$rot",
Eli Friedman2cb1dfa2011-08-08 19:49:37 +00001054 [(set rGPR:$Rd, (opnode (rotr rGPR:$Rm, rot_imm:$rot)))]>,
1055 Requires<[IsThumb2]> {
Jim Grosbachc5a8c862011-07-27 16:47:19 +00001056 let Inst{31-27} = 0b11111;
1057 let Inst{26-23} = 0b0100;
1058 let Inst{22-20} = opcod;
1059 let Inst{19-16} = 0b1111; // Rn
1060 let Inst{15-12} = 0b1111;
1061 let Inst{7} = 1;
Jim Grosbach7a088642010-11-19 17:11:02 +00001062
Jim Grosbachc5a8c862011-07-27 16:47:19 +00001063 bits<2> rot;
1064 let Inst{5-4} = rot{1-0}; // rotate
Evan Chengd27c9fc2009-07-03 01:43:10 +00001065}
1066
Eli Friedman761fa7a2010-06-24 18:20:04 +00001067// UXTB16 - Requres T2ExtractPack, does not need the .w qualifier.
Jim Grosbach70327412011-07-27 17:48:13 +00001068class T2I_ext_rrot_uxtb16<bits<3> opcod, string opc, PatFrag opnode>
Owen Andersone732cb02011-08-23 17:37:32 +00001069 : T2TwoReg<(outs rGPR:$Rd), (ins rGPR:$Rm, rot_imm:$rot),
1070 IIC_iEXTr, opc, "\t$Rd, $Rm$rot",
1071 [(set rGPR:$Rd, (opnode (rotr rGPR:$Rm, rot_imm:$rot)))]>,
Jim Grosbach70327412011-07-27 17:48:13 +00001072 Requires<[HasT2ExtractPack, IsThumb2]> {
1073 bits<2> rot;
1074 let Inst{31-27} = 0b11111;
1075 let Inst{26-23} = 0b0100;
1076 let Inst{22-20} = opcod;
1077 let Inst{19-16} = 0b1111; // Rn
1078 let Inst{15-12} = 0b1111;
1079 let Inst{7} = 1;
1080 let Inst{5-4} = rot;
Johnny Chen267124c2010-03-04 22:24:41 +00001081}
1082
Eli Friedman761fa7a2010-06-24 18:20:04 +00001083// SXTB16 - Requres T2ExtractPack, does not need the .w qualifier, no pattern
1084// supported yet.
Jim Grosbach70327412011-07-27 17:48:13 +00001085class T2I_ext_rrot_sxtb16<bits<3> opcod, string opc>
1086 : T2TwoReg<(outs rGPR:$Rd), (ins rGPR:$Rm, rot_imm:$rot), IIC_iEXTr,
1087 opc, "\t$Rd, $Rm$rot", []>,
Jim Grosbacha7603982011-07-01 21:12:19 +00001088 Requires<[IsThumb2, HasT2ExtractPack]> {
Jim Grosbach70327412011-07-27 17:48:13 +00001089 bits<2> rot;
1090 let Inst{31-27} = 0b11111;
1091 let Inst{26-23} = 0b0100;
1092 let Inst{22-20} = opcod;
1093 let Inst{19-16} = 0b1111; // Rn
1094 let Inst{15-12} = 0b1111;
1095 let Inst{7} = 1;
1096 let Inst{5-4} = rot;
Johnny Chen93042d12010-03-02 18:14:57 +00001097}
1098
Evan Cheng0e55fd62010-09-30 01:08:25 +00001099/// T2I_exta_rrot - A binary operation with two forms: one whose operand is a
Evan Chengd27c9fc2009-07-03 01:43:10 +00001100/// register and one whose operand is a register rotated by 8/16/24.
Jim Grosbach70327412011-07-27 17:48:13 +00001101class T2I_exta_rrot<bits<3> opcod, string opc, PatFrag opnode>
1102 : T2ThreeReg<(outs rGPR:$Rd),
1103 (ins rGPR:$Rn, rGPR:$Rm, rot_imm:$rot),
1104 IIC_iEXTAsr, opc, "\t$Rd, $Rn, $Rm$rot",
1105 [(set rGPR:$Rd, (opnode rGPR:$Rn, (rotr rGPR:$Rm,rot_imm:$rot)))]>,
1106 Requires<[HasT2ExtractPack, IsThumb2]> {
1107 bits<2> rot;
1108 let Inst{31-27} = 0b11111;
1109 let Inst{26-23} = 0b0100;
1110 let Inst{22-20} = opcod;
1111 let Inst{15-12} = 0b1111;
1112 let Inst{7} = 1;
1113 let Inst{5-4} = rot;
Evan Chengd27c9fc2009-07-03 01:43:10 +00001114}
1115
Jim Grosbach70327412011-07-27 17:48:13 +00001116class T2I_exta_rrot_np<bits<3> opcod, string opc>
1117 : T2ThreeReg<(outs rGPR:$Rd), (ins rGPR:$Rn, rGPR:$Rm,rot_imm:$rot),
1118 IIC_iEXTAsr, opc, "\t$Rd, $Rn, $Rm$rot", []> {
1119 bits<2> rot;
1120 let Inst{31-27} = 0b11111;
1121 let Inst{26-23} = 0b0100;
1122 let Inst{22-20} = opcod;
1123 let Inst{15-12} = 0b1111;
1124 let Inst{7} = 1;
1125 let Inst{5-4} = rot;
Johnny Chen93042d12010-03-02 18:14:57 +00001126}
1127
Anton Korobeynikov52237112009-06-17 18:13:58 +00001128//===----------------------------------------------------------------------===//
Evan Cheng9cb9e672009-06-27 02:26:13 +00001129// Instructions
1130//===----------------------------------------------------------------------===//
1131
1132//===----------------------------------------------------------------------===//
Evan Chenga09b9ca2009-06-24 23:47:58 +00001133// Miscellaneous Instructions.
1134//
1135
Owen Andersonda663f72010-11-15 21:30:39 +00001136class T2PCOneRegImm<dag oops, dag iops, InstrItinClass itin,
1137 string asm, list<dag> pattern>
1138 : T2XI<oops, iops, itin, asm, pattern> {
1139 bits<4> Rd;
1140 bits<12> label;
Jim Grosbach7a088642010-11-19 17:11:02 +00001141
Jim Grosbach86386922010-12-08 22:10:43 +00001142 let Inst{11-8} = Rd;
Owen Andersonda663f72010-11-15 21:30:39 +00001143 let Inst{26} = label{11};
1144 let Inst{14-12} = label{10-8};
1145 let Inst{7-0} = label{7-0};
1146}
1147
Evan Chenga09b9ca2009-06-24 23:47:58 +00001148// LEApcrel - Load a pc-relative address into a register without offending the
1149// assembler.
Owen Andersona838a252010-12-14 00:36:49 +00001150def t2ADR : T2PCOneRegImm<(outs rGPR:$Rd),
1151 (ins t2adrlabel:$addr, pred:$p),
Owen Anderson08fef882011-09-09 22:24:36 +00001152 IIC_iALUi, "adr{$p}.w\t$Rd, $addr", []> {
Johnny Chend68e1192009-12-15 17:24:14 +00001153 let Inst{31-27} = 0b11110;
1154 let Inst{25-24} = 0b10;
1155 // Inst{23:21} = '11' (add = FALSE) or '00' (add = TRUE)
1156 let Inst{22} = 0;
1157 let Inst{20} = 0;
1158 let Inst{19-16} = 0b1111; // Rn
1159 let Inst{15} = 0;
Jim Grosbach00f25fa2010-12-14 20:46:39 +00001160
Owen Andersona838a252010-12-14 00:36:49 +00001161 bits<4> Rd;
1162 bits<13> addr;
1163 let Inst{11-8} = Rd;
1164 let Inst{23} = addr{12};
1165 let Inst{21} = addr{12};
1166 let Inst{26} = addr{11};
1167 let Inst{14-12} = addr{10-8};
1168 let Inst{7-0} = addr{7-0};
Owen Anderson08fef882011-09-09 22:24:36 +00001169
1170 let DecoderMethod = "DecodeT2Adr";
Owen Anderson6b8719f2010-12-13 22:51:08 +00001171}
Owen Andersona838a252010-12-14 00:36:49 +00001172
1173let neverHasSideEffects = 1, isReMaterializable = 1 in
Jim Grosbach41b1d4e2010-12-15 18:48:45 +00001174def t2LEApcrel : t2PseudoInst<(outs rGPR:$Rd), (ins i32imm:$label, pred:$p),
Owen Anderson16884412011-07-13 23:22:26 +00001175 4, IIC_iALUi, []>;
Jim Grosbach41b1d4e2010-12-15 18:48:45 +00001176def t2LEApcrelJT : t2PseudoInst<(outs rGPR:$Rd),
1177 (ins i32imm:$label, nohash_imm:$id, pred:$p),
Owen Anderson16884412011-07-13 23:22:26 +00001178 4, IIC_iALUi,
Jim Grosbach41b1d4e2010-12-15 18:48:45 +00001179 []>;
Evan Chenga09b9ca2009-06-24 23:47:58 +00001180
Jim Grosbach60fc2ed2010-12-08 23:30:19 +00001181
Evan Chenga09b9ca2009-06-24 23:47:58 +00001182//===----------------------------------------------------------------------===//
Evan Cheng9cb9e672009-06-27 02:26:13 +00001183// Load / store Instructions.
1184//
1185
Evan Cheng055b0312009-06-29 07:51:04 +00001186// Load
Dan Gohmanbc9d98b2010-02-27 23:47:46 +00001187let canFoldAsLoad = 1, isReMaterializable = 1 in
Owen Anderson9fe72bc2011-08-11 20:40:40 +00001188defm t2LDR : T2I_ld<0, 0b10, "ldr", IIC_iLoad_i, IIC_iLoad_si, GPR,
Evan Cheng0e55fd62010-09-30 01:08:25 +00001189 UnOpFrag<(load node:$Src)>>;
Evan Cheng055b0312009-06-29 07:51:04 +00001190
Evan Chengf3c21b82009-06-30 02:15:48 +00001191// Loads with zero extension
Evan Cheng7e2fe912010-10-28 06:47:08 +00001192defm t2LDRH : T2I_ld<0, 0b01, "ldrh", IIC_iLoad_bh_i, IIC_iLoad_bh_si,
Owen Anderson9fe72bc2011-08-11 20:40:40 +00001193 rGPR, UnOpFrag<(zextloadi16 node:$Src)>>;
Evan Cheng7e2fe912010-10-28 06:47:08 +00001194defm t2LDRB : T2I_ld<0, 0b00, "ldrb", IIC_iLoad_bh_i, IIC_iLoad_bh_si,
Owen Anderson9fe72bc2011-08-11 20:40:40 +00001195 rGPR, UnOpFrag<(zextloadi8 node:$Src)>>;
Evan Cheng055b0312009-06-29 07:51:04 +00001196
Evan Chengf3c21b82009-06-30 02:15:48 +00001197// Loads with sign extension
Evan Cheng7e2fe912010-10-28 06:47:08 +00001198defm t2LDRSH : T2I_ld<1, 0b01, "ldrsh", IIC_iLoad_bh_i, IIC_iLoad_bh_si,
Owen Anderson9fe72bc2011-08-11 20:40:40 +00001199 rGPR, UnOpFrag<(sextloadi16 node:$Src)>>;
Evan Cheng7e2fe912010-10-28 06:47:08 +00001200defm t2LDRSB : T2I_ld<1, 0b00, "ldrsb", IIC_iLoad_bh_i, IIC_iLoad_bh_si,
Owen Anderson9fe72bc2011-08-11 20:40:40 +00001201 rGPR, UnOpFrag<(sextloadi8 node:$Src)>>;
Evan Cheng055b0312009-06-29 07:51:04 +00001202
Owen Anderson9d63d902010-12-01 19:18:46 +00001203let mayLoad = 1, neverHasSideEffects = 1, hasExtraDefRegAllocReq = 1 in {
Evan Chengf3c21b82009-06-30 02:15:48 +00001204// Load doubleword
Owen Anderson9d63d902010-12-01 19:18:46 +00001205def t2LDRDi8 : T2Ii8s4<1, 0, 1, (outs rGPR:$Rt, rGPR:$Rt2),
Evan Chenge298ab22009-09-27 09:46:04 +00001206 (ins t2addrmode_imm8s4:$addr),
Jim Grosbacha77295d2011-09-08 22:07:06 +00001207 IIC_iLoad_d_i, "ldrd", "\t$Rt, $Rt2, $addr", "", []>;
Evan Cheng5fd1c9b2010-05-19 06:07:03 +00001208} // mayLoad = 1, neverHasSideEffects = 1, hasExtraDefRegAllocReq = 1
Evan Chengf3c21b82009-06-30 02:15:48 +00001209
1210// zextload i1 -> zextload i8
1211def : T2Pat<(zextloadi1 t2addrmode_imm12:$addr),
1212 (t2LDRBi12 t2addrmode_imm12:$addr)>;
Jim Grosbacha8307dd2011-09-07 20:58:57 +00001213def : T2Pat<(zextloadi1 t2addrmode_negimm8:$addr),
1214 (t2LDRBi8 t2addrmode_negimm8:$addr)>;
Evan Chengf3c21b82009-06-30 02:15:48 +00001215def : T2Pat<(zextloadi1 t2addrmode_so_reg:$addr),
1216 (t2LDRBs t2addrmode_so_reg:$addr)>;
1217def : T2Pat<(zextloadi1 (ARMWrapper tconstpool:$addr)),
1218 (t2LDRBpci tconstpool:$addr)>;
1219
1220// extload -> zextload
1221// FIXME: Reduce the number of patterns by legalizing extload to zextload
1222// earlier?
1223def : T2Pat<(extloadi1 t2addrmode_imm12:$addr),
1224 (t2LDRBi12 t2addrmode_imm12:$addr)>;
Jim Grosbacha8307dd2011-09-07 20:58:57 +00001225def : T2Pat<(extloadi1 t2addrmode_negimm8:$addr),
1226 (t2LDRBi8 t2addrmode_negimm8:$addr)>;
Evan Chengf3c21b82009-06-30 02:15:48 +00001227def : T2Pat<(extloadi1 t2addrmode_so_reg:$addr),
1228 (t2LDRBs t2addrmode_so_reg:$addr)>;
1229def : T2Pat<(extloadi1 (ARMWrapper tconstpool:$addr)),
1230 (t2LDRBpci tconstpool:$addr)>;
1231
1232def : T2Pat<(extloadi8 t2addrmode_imm12:$addr),
1233 (t2LDRBi12 t2addrmode_imm12:$addr)>;
Jim Grosbacha8307dd2011-09-07 20:58:57 +00001234def : T2Pat<(extloadi8 t2addrmode_negimm8:$addr),
1235 (t2LDRBi8 t2addrmode_negimm8:$addr)>;
Evan Chengf3c21b82009-06-30 02:15:48 +00001236def : T2Pat<(extloadi8 t2addrmode_so_reg:$addr),
1237 (t2LDRBs t2addrmode_so_reg:$addr)>;
1238def : T2Pat<(extloadi8 (ARMWrapper tconstpool:$addr)),
1239 (t2LDRBpci tconstpool:$addr)>;
1240
1241def : T2Pat<(extloadi16 t2addrmode_imm12:$addr),
1242 (t2LDRHi12 t2addrmode_imm12:$addr)>;
Jim Grosbacha8307dd2011-09-07 20:58:57 +00001243def : T2Pat<(extloadi16 t2addrmode_negimm8:$addr),
1244 (t2LDRHi8 t2addrmode_negimm8:$addr)>;
Evan Chengf3c21b82009-06-30 02:15:48 +00001245def : T2Pat<(extloadi16 t2addrmode_so_reg:$addr),
1246 (t2LDRHs t2addrmode_so_reg:$addr)>;
1247def : T2Pat<(extloadi16 (ARMWrapper tconstpool:$addr)),
1248 (t2LDRHpci tconstpool:$addr)>;
Evan Cheng055b0312009-06-29 07:51:04 +00001249
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001250// FIXME: The destination register of the loads and stores can't be PC, but
1251// can be SP. We need another regclass (similar to rGPR) to represent
1252// that. Not a pressing issue since these are selected manually,
1253// not via pattern.
1254
Evan Chenge88d5ce2009-07-02 07:28:31 +00001255// Indexed loads
Owen Anderson6af50f72010-11-30 00:14:31 +00001256
Evan Cheng5fd1c9b2010-05-19 06:07:03 +00001257let mayLoad = 1, neverHasSideEffects = 1 in {
Jim Grosbacheeec0252011-09-08 00:39:19 +00001258def t2LDR_PRE : T2Ipreldst<0, 0b10, 1, 1, (outs GPR:$Rt, GPR:$Rn_wb),
Evan Chenge88d5ce2009-07-02 07:28:31 +00001259 (ins t2addrmode_imm8:$addr),
Evan Cheng0e55fd62010-09-30 01:08:25 +00001260 AddrModeT2_i8, IndexModePre, IIC_iLoad_iu,
Jim Grosbacheeec0252011-09-08 00:39:19 +00001261 "ldr", "\t$Rt, $addr!", "$addr.base = $Rn_wb",
1262 []> {
1263 let AsmMatchConverter = "cvtLdWriteBackRegT2AddrModeImm8";
1264}
Evan Chenge88d5ce2009-07-02 07:28:31 +00001265
Jim Grosbacheeec0252011-09-08 00:39:19 +00001266def t2LDR_POST : T2Ipostldst<0, 0b10, 1, 0, (outs GPR:$Rt, GPR:$Rn_wb),
Jim Grosbache64fb282011-09-08 01:01:32 +00001267 (ins addr_offset_none:$Rn, t2am_imm8_offset:$offset),
1268 AddrModeT2_i8, IndexModePost, IIC_iLoad_iu,
Owen Anderson0781c1f2011-09-23 21:26:40 +00001269 "ldr", "\t$Rt, $Rn$offset", "$Rn = $Rn_wb", []>;
Evan Chenge88d5ce2009-07-02 07:28:31 +00001270
Jim Grosbacheeec0252011-09-08 00:39:19 +00001271def t2LDRB_PRE : T2Ipreldst<0, 0b00, 1, 1, (outs GPR:$Rt, GPR:$Rn_wb),
Evan Chenge88d5ce2009-07-02 07:28:31 +00001272 (ins t2addrmode_imm8:$addr),
Evan Cheng0e55fd62010-09-30 01:08:25 +00001273 AddrModeT2_i8, IndexModePre, IIC_iLoad_bh_iu,
Jim Grosbacheeec0252011-09-08 00:39:19 +00001274 "ldrb", "\t$Rt, $addr!", "$addr.base = $Rn_wb",
1275 []> {
1276 let AsmMatchConverter = "cvtLdWriteBackRegT2AddrModeImm8";
1277}
1278def t2LDRB_POST : T2Ipostldst<0, 0b00, 1, 0, (outs GPR:$Rt, GPR:$Rn_wb),
Jim Grosbache64fb282011-09-08 01:01:32 +00001279 (ins addr_offset_none:$Rn, t2am_imm8_offset:$offset),
1280 AddrModeT2_i8, IndexModePost, IIC_iLoad_bh_iu,
Owen Anderson0781c1f2011-09-23 21:26:40 +00001281 "ldrb", "\t$Rt, $Rn$offset", "$Rn = $Rn_wb", []>;
Evan Chenge88d5ce2009-07-02 07:28:31 +00001282
Jim Grosbacheeec0252011-09-08 00:39:19 +00001283def t2LDRH_PRE : T2Ipreldst<0, 0b01, 1, 1, (outs GPR:$Rt, GPR:$Rn_wb),
Evan Chenge88d5ce2009-07-02 07:28:31 +00001284 (ins t2addrmode_imm8:$addr),
Evan Cheng0e55fd62010-09-30 01:08:25 +00001285 AddrModeT2_i8, IndexModePre, IIC_iLoad_bh_iu,
Jim Grosbacheeec0252011-09-08 00:39:19 +00001286 "ldrh", "\t$Rt, $addr!", "$addr.base = $Rn_wb",
1287 []> {
1288 let AsmMatchConverter = "cvtLdWriteBackRegT2AddrModeImm8";
1289}
1290def t2LDRH_POST : T2Ipostldst<0, 0b01, 1, 0, (outs GPR:$Rt, GPR:$Rn_wb),
Jim Grosbache64fb282011-09-08 01:01:32 +00001291 (ins addr_offset_none:$Rn, t2am_imm8_offset:$offset),
1292 AddrModeT2_i8, IndexModePost, IIC_iLoad_bh_iu,
Owen Anderson0781c1f2011-09-23 21:26:40 +00001293 "ldrh", "\t$Rt, $Rn$offset", "$Rn = $Rn_wb", []>;
Evan Chenge88d5ce2009-07-02 07:28:31 +00001294
Jim Grosbacheeec0252011-09-08 00:39:19 +00001295def t2LDRSB_PRE : T2Ipreldst<1, 0b00, 1, 1, (outs GPR:$Rt, GPR:$Rn_wb),
Evan Cheng4fbb9962009-07-02 23:16:11 +00001296 (ins t2addrmode_imm8:$addr),
Evan Cheng0e55fd62010-09-30 01:08:25 +00001297 AddrModeT2_i8, IndexModePre, IIC_iLoad_bh_iu,
Jim Grosbacheeec0252011-09-08 00:39:19 +00001298 "ldrsb", "\t$Rt, $addr!", "$addr.base = $Rn_wb",
1299 []> {
1300 let AsmMatchConverter = "cvtLdWriteBackRegT2AddrModeImm8";
1301}
1302def t2LDRSB_POST : T2Ipostldst<1, 0b00, 1, 0, (outs GPR:$Rt, GPR:$Rn_wb),
Jim Grosbache64fb282011-09-08 01:01:32 +00001303 (ins addr_offset_none:$Rn, t2am_imm8_offset:$offset),
1304 AddrModeT2_i8, IndexModePost, IIC_iLoad_bh_iu,
Owen Anderson0781c1f2011-09-23 21:26:40 +00001305 "ldrsb", "\t$Rt, $Rn$offset", "$Rn = $Rn_wb", []>;
Evan Cheng4fbb9962009-07-02 23:16:11 +00001306
Jim Grosbacheeec0252011-09-08 00:39:19 +00001307def t2LDRSH_PRE : T2Ipreldst<1, 0b01, 1, 1, (outs GPR:$Rt, GPR:$Rn_wb),
Evan Cheng4fbb9962009-07-02 23:16:11 +00001308 (ins t2addrmode_imm8:$addr),
Evan Cheng0e55fd62010-09-30 01:08:25 +00001309 AddrModeT2_i8, IndexModePre, IIC_iLoad_bh_iu,
Jim Grosbacheeec0252011-09-08 00:39:19 +00001310 "ldrsh", "\t$Rt, $addr!", "$addr.base = $Rn_wb",
1311 []> {
1312 let AsmMatchConverter = "cvtLdWriteBackRegT2AddrModeImm8";
1313}
1314def t2LDRSH_POST : T2Ipostldst<1, 0b01, 1, 0, (outs GPR:$Rt, GPR:$Rn_wb),
Jim Grosbache64fb282011-09-08 01:01:32 +00001315 (ins addr_offset_none:$Rn, t2am_imm8_offset:$offset),
1316 AddrModeT2_i8, IndexModePost, IIC_iLoad_bh_iu,
Owen Anderson0781c1f2011-09-23 21:26:40 +00001317 "ldrsh", "\t$Rt, $Rn$offset", "$Rn = $Rn_wb", []>;
Jim Grosbach7a088642010-11-19 17:11:02 +00001318} // mayLoad = 1, neverHasSideEffects = 1
Evan Cheng4fbb9962009-07-02 23:16:11 +00001319
Jim Grosbachf0eee6e2011-09-07 23:39:14 +00001320// LDRT, LDRBT, LDRHT, LDRSBT, LDRSHT all have offset mode (PUW=0b110).
Johnny Chene54a3ef2010-03-03 18:45:36 +00001321// Ref: A8.6.57 LDR (immediate, Thumb) Encoding T4
Evan Cheng0e55fd62010-09-30 01:08:25 +00001322class T2IldT<bit signed, bits<2> type, string opc, InstrItinClass ii>
Jim Grosbachf0eee6e2011-09-07 23:39:14 +00001323 : T2Ii8<(outs rGPR:$Rt), (ins t2addrmode_posimm8:$addr), ii, opc,
Owen Andersoneb05a8d2010-11-30 18:38:28 +00001324 "\t$Rt, $addr", []> {
Jim Grosbachf0eee6e2011-09-07 23:39:14 +00001325 bits<4> Rt;
1326 bits<13> addr;
Johnny Chene54a3ef2010-03-03 18:45:36 +00001327 let Inst{31-27} = 0b11111;
1328 let Inst{26-25} = 0b00;
1329 let Inst{24} = signed;
1330 let Inst{23} = 0;
1331 let Inst{22-21} = type;
1332 let Inst{20} = 1; // load
Jim Grosbachf0eee6e2011-09-07 23:39:14 +00001333 let Inst{19-16} = addr{12-9};
1334 let Inst{15-12} = Rt;
Johnny Chene54a3ef2010-03-03 18:45:36 +00001335 let Inst{11} = 1;
1336 let Inst{10-8} = 0b110; // PUW.
Jim Grosbachf0eee6e2011-09-07 23:39:14 +00001337 let Inst{7-0} = addr{7-0};
Johnny Chene54a3ef2010-03-03 18:45:36 +00001338}
1339
Evan Cheng0e55fd62010-09-30 01:08:25 +00001340def t2LDRT : T2IldT<0, 0b10, "ldrt", IIC_iLoad_i>;
1341def t2LDRBT : T2IldT<0, 0b00, "ldrbt", IIC_iLoad_bh_i>;
1342def t2LDRHT : T2IldT<0, 0b01, "ldrht", IIC_iLoad_bh_i>;
1343def t2LDRSBT : T2IldT<1, 0b00, "ldrsbt", IIC_iLoad_bh_i>;
1344def t2LDRSHT : T2IldT<1, 0b01, "ldrsht", IIC_iLoad_bh_i>;
Johnny Chene54a3ef2010-03-03 18:45:36 +00001345
David Goodwin73b8f162009-06-30 22:11:34 +00001346// Store
Owen Anderson9fe72bc2011-08-11 20:40:40 +00001347defm t2STR :T2I_st<0b10,"str", IIC_iStore_i, IIC_iStore_si, GPR,
Evan Cheng0e55fd62010-09-30 01:08:25 +00001348 BinOpFrag<(store node:$LHS, node:$RHS)>>;
Evan Cheng7e2fe912010-10-28 06:47:08 +00001349defm t2STRB:T2I_st<0b00,"strb", IIC_iStore_bh_i, IIC_iStore_bh_si,
Owen Anderson9fe72bc2011-08-11 20:40:40 +00001350 rGPR, BinOpFrag<(truncstorei8 node:$LHS, node:$RHS)>>;
Evan Cheng7e2fe912010-10-28 06:47:08 +00001351defm t2STRH:T2I_st<0b01,"strh", IIC_iStore_bh_i, IIC_iStore_bh_si,
Owen Anderson9fe72bc2011-08-11 20:40:40 +00001352 rGPR, BinOpFrag<(truncstorei16 node:$LHS, node:$RHS)>>;
David Goodwin73b8f162009-06-30 22:11:34 +00001353
David Goodwin6647cea2009-06-30 22:50:01 +00001354// Store doubleword
Cameron Zwarichd5751372011-10-16 06:38:06 +00001355let mayStore = 1, neverHasSideEffects = 1, hasExtraSrcRegAllocReq = 1 in
Johnny Chend68e1192009-12-15 17:24:14 +00001356def t2STRDi8 : T2Ii8s4<1, 0, 0, (outs),
Owen Anderson9d63d902010-12-01 19:18:46 +00001357 (ins GPR:$Rt, GPR:$Rt2, t2addrmode_imm8s4:$addr),
Jim Grosbacha77295d2011-09-08 22:07:06 +00001358 IIC_iStore_d_r, "strd", "\t$Rt, $Rt2, $addr", "", []>;
David Goodwin6647cea2009-06-30 22:50:01 +00001359
Evan Cheng6d94f112009-07-03 00:06:39 +00001360// Indexed stores
Cameron Zwarichdaada342011-10-16 06:38:10 +00001361
1362let mayStore = 1, neverHasSideEffects = 1 in {
Jim Grosbacheeec0252011-09-08 00:39:19 +00001363def t2STR_PRE : T2Ipreldst<0, 0b10, 0, 1, (outs GPRnopc:$Rn_wb),
Jim Grosbachb0659872011-12-13 21:10:25 +00001364 (ins GPRnopc:$Rt, t2addrmode_imm8:$addr),
Evan Cheng0e55fd62010-09-30 01:08:25 +00001365 AddrModeT2_i8, IndexModePre, IIC_iStore_iu,
Jim Grosbachee2c2a42011-09-16 21:55:56 +00001366 "str", "\t$Rt, $addr!",
1367 "$addr.base = $Rn_wb,@earlyclobber $Rn_wb", []> {
1368 let AsmMatchConverter = "cvtStWriteBackRegT2AddrModeImm8";
1369}
1370def t2STRH_PRE : T2Ipreldst<0, 0b01, 0, 1, (outs GPRnopc:$Rn_wb),
1371 (ins rGPR:$Rt, t2addrmode_imm8:$addr),
1372 AddrModeT2_i8, IndexModePre, IIC_iStore_iu,
1373 "strh", "\t$Rt, $addr!",
1374 "$addr.base = $Rn_wb,@earlyclobber $Rn_wb", []> {
1375 let AsmMatchConverter = "cvtStWriteBackRegT2AddrModeImm8";
1376}
1377
1378def t2STRB_PRE : T2Ipreldst<0, 0b00, 0, 1, (outs GPRnopc:$Rn_wb),
1379 (ins rGPR:$Rt, t2addrmode_imm8:$addr),
1380 AddrModeT2_i8, IndexModePre, IIC_iStore_bh_iu,
1381 "strb", "\t$Rt, $addr!",
1382 "$addr.base = $Rn_wb,@earlyclobber $Rn_wb", []> {
1383 let AsmMatchConverter = "cvtStWriteBackRegT2AddrModeImm8";
1384}
Eli Friedman0851a292011-10-18 03:17:34 +00001385} // mayStore = 1, neverHasSideEffects = 1
Evan Cheng6d94f112009-07-03 00:06:39 +00001386
Jim Grosbacheeec0252011-09-08 00:39:19 +00001387def t2STR_POST : T2Ipostldst<0, 0b10, 0, 0, (outs GPRnopc:$Rn_wb),
Jim Grosbachb0659872011-12-13 21:10:25 +00001388 (ins GPRnopc:$Rt, addr_offset_none:$Rn,
Jim Grosbach947a24c2011-09-16 21:09:00 +00001389 t2am_imm8_offset:$offset),
Evan Cheng0e55fd62010-09-30 01:08:25 +00001390 AddrModeT2_i8, IndexModePost, IIC_iStore_iu,
Owen Anderson0781c1f2011-09-23 21:26:40 +00001391 "str", "\t$Rt, $Rn$offset",
Jim Grosbacheeec0252011-09-08 00:39:19 +00001392 "$Rn = $Rn_wb,@earlyclobber $Rn_wb",
1393 [(set GPRnopc:$Rn_wb,
Jim Grosbachb0659872011-12-13 21:10:25 +00001394 (post_store GPRnopc:$Rt, addr_offset_none:$Rn,
Jim Grosbach947a24c2011-09-16 21:09:00 +00001395 t2am_imm8_offset:$offset))]>;
Evan Cheng6d94f112009-07-03 00:06:39 +00001396
Jim Grosbacheeec0252011-09-08 00:39:19 +00001397def t2STRH_POST : T2Ipostldst<0, 0b01, 0, 0, (outs GPRnopc:$Rn_wb),
Jim Grosbach947a24c2011-09-16 21:09:00 +00001398 (ins rGPR:$Rt, addr_offset_none:$Rn,
1399 t2am_imm8_offset:$offset),
Evan Cheng0e55fd62010-09-30 01:08:25 +00001400 AddrModeT2_i8, IndexModePost, IIC_iStore_bh_iu,
Owen Anderson0781c1f2011-09-23 21:26:40 +00001401 "strh", "\t$Rt, $Rn$offset",
Jim Grosbacheeec0252011-09-08 00:39:19 +00001402 "$Rn = $Rn_wb,@earlyclobber $Rn_wb",
1403 [(set GPRnopc:$Rn_wb,
Jim Grosbach947a24c2011-09-16 21:09:00 +00001404 (post_truncsti16 rGPR:$Rt, addr_offset_none:$Rn,
1405 t2am_imm8_offset:$offset))]>;
Evan Cheng6d94f112009-07-03 00:06:39 +00001406
Jim Grosbacheeec0252011-09-08 00:39:19 +00001407def t2STRB_POST : T2Ipostldst<0, 0b00, 0, 0, (outs GPRnopc:$Rn_wb),
Jim Grosbach947a24c2011-09-16 21:09:00 +00001408 (ins rGPR:$Rt, addr_offset_none:$Rn,
1409 t2am_imm8_offset:$offset),
Evan Cheng0e55fd62010-09-30 01:08:25 +00001410 AddrModeT2_i8, IndexModePost, IIC_iStore_bh_iu,
Owen Anderson0781c1f2011-09-23 21:26:40 +00001411 "strb", "\t$Rt, $Rn$offset",
Jim Grosbacheeec0252011-09-08 00:39:19 +00001412 "$Rn = $Rn_wb,@earlyclobber $Rn_wb",
1413 [(set GPRnopc:$Rn_wb,
Jim Grosbach947a24c2011-09-16 21:09:00 +00001414 (post_truncsti8 rGPR:$Rt, addr_offset_none:$Rn,
1415 t2am_imm8_offset:$offset))]>;
Evan Cheng6d94f112009-07-03 00:06:39 +00001416
Jim Grosbachee2c2a42011-09-16 21:55:56 +00001417// Pseudo-instructions for pattern matching the pre-indexed stores. We can't
1418// put the patterns on the instruction definitions directly as ISel wants
1419// the address base and offset to be separate operands, not a single
1420// complex operand like we represent the instructions themselves. The
1421// pseudos map between the two.
1422let usesCustomInserter = 1,
1423 Constraints = "$Rn = $Rn_wb,@earlyclobber $Rn_wb" in {
1424def t2STR_preidx: t2PseudoInst<(outs GPRnopc:$Rn_wb),
1425 (ins rGPR:$Rt, GPRnopc:$Rn, t2am_imm8_offset:$offset, pred:$p),
1426 4, IIC_iStore_ru,
1427 [(set GPRnopc:$Rn_wb,
1428 (pre_store rGPR:$Rt, GPRnopc:$Rn, t2am_imm8_offset:$offset))]>;
1429def t2STRB_preidx: t2PseudoInst<(outs GPRnopc:$Rn_wb),
1430 (ins rGPR:$Rt, GPRnopc:$Rn, t2am_imm8_offset:$offset, pred:$p),
1431 4, IIC_iStore_ru,
1432 [(set GPRnopc:$Rn_wb,
1433 (pre_truncsti8 rGPR:$Rt, GPRnopc:$Rn, t2am_imm8_offset:$offset))]>;
1434def t2STRH_preidx: t2PseudoInst<(outs GPRnopc:$Rn_wb),
1435 (ins rGPR:$Rt, GPRnopc:$Rn, t2am_imm8_offset:$offset, pred:$p),
1436 4, IIC_iStore_ru,
1437 [(set GPRnopc:$Rn_wb,
1438 (pre_truncsti16 rGPR:$Rt, GPRnopc:$Rn, t2am_imm8_offset:$offset))]>;
1439}
Jim Grosbachee2c2a42011-09-16 21:55:56 +00001440
Johnny Chene54a3ef2010-03-03 18:45:36 +00001441// STRT, STRBT, STRHT all have offset mode (PUW=0b110) and are for disassembly
1442// only.
1443// Ref: A8.6.193 STR (immediate, Thumb) Encoding T4
Evan Cheng0e55fd62010-09-30 01:08:25 +00001444class T2IstT<bits<2> type, string opc, InstrItinClass ii>
Johnny Chen471d73d2011-04-13 21:04:32 +00001445 : T2Ii8<(outs rGPR:$Rt), (ins t2addrmode_imm8:$addr), ii, opc,
Owen Andersoneb05a8d2010-11-30 18:38:28 +00001446 "\t$Rt, $addr", []> {
Johnny Chene54a3ef2010-03-03 18:45:36 +00001447 let Inst{31-27} = 0b11111;
1448 let Inst{26-25} = 0b00;
1449 let Inst{24} = 0; // not signed
1450 let Inst{23} = 0;
1451 let Inst{22-21} = type;
1452 let Inst{20} = 0; // store
1453 let Inst{11} = 1;
1454 let Inst{10-8} = 0b110; // PUW
Jim Grosbach7721e7f2010-12-02 23:05:38 +00001455
Owen Andersoneb05a8d2010-11-30 18:38:28 +00001456 bits<4> Rt;
1457 bits<13> addr;
Jim Grosbach86386922010-12-08 22:10:43 +00001458 let Inst{15-12} = Rt;
Owen Andersoneb05a8d2010-11-30 18:38:28 +00001459 let Inst{19-16} = addr{12-9};
1460 let Inst{7-0} = addr{7-0};
Johnny Chene54a3ef2010-03-03 18:45:36 +00001461}
1462
Evan Cheng0e55fd62010-09-30 01:08:25 +00001463def t2STRT : T2IstT<0b10, "strt", IIC_iStore_i>;
1464def t2STRBT : T2IstT<0b00, "strbt", IIC_iStore_bh_i>;
1465def t2STRHT : T2IstT<0b01, "strht", IIC_iStore_bh_i>;
David Goodwind1fa1202009-07-01 00:01:13 +00001466
Johnny Chenae1757b2010-03-11 01:13:36 +00001467// ldrd / strd pre / post variants
1468// For disassembly only.
1469
Jim Grosbacha77295d2011-09-08 22:07:06 +00001470def t2LDRD_PRE : T2Ii8s4<1, 1, 1, (outs rGPR:$Rt, rGPR:$Rt2, GPR:$wb),
1471 (ins t2addrmode_imm8s4:$addr), IIC_iLoad_d_ru,
1472 "ldrd", "\t$Rt, $Rt2, $addr!", "$addr.base = $wb", []> {
1473 let AsmMatchConverter = "cvtT2LdrdPre";
1474 let DecoderMethod = "DecodeT2LDRDPreInstruction";
1475}
Johnny Chenae1757b2010-03-11 01:13:36 +00001476
Jim Grosbacha77295d2011-09-08 22:07:06 +00001477def t2LDRD_POST : T2Ii8s4post<0, 1, 1, (outs rGPR:$Rt, rGPR:$Rt2, GPR:$wb),
1478 (ins addr_offset_none:$addr, t2am_imm8s4_offset:$imm),
Owen Anderson7782a582011-09-13 20:46:26 +00001479 IIC_iLoad_d_ru, "ldrd", "\t$Rt, $Rt2, $addr$imm",
Jim Grosbacha77295d2011-09-08 22:07:06 +00001480 "$addr.base = $wb", []>;
Johnny Chenae1757b2010-03-11 01:13:36 +00001481
Jim Grosbacha77295d2011-09-08 22:07:06 +00001482def t2STRD_PRE : T2Ii8s4<1, 1, 0, (outs GPR:$wb),
1483 (ins rGPR:$Rt, rGPR:$Rt2, t2addrmode_imm8s4:$addr),
1484 IIC_iStore_d_ru, "strd", "\t$Rt, $Rt2, $addr!",
1485 "$addr.base = $wb", []> {
1486 let AsmMatchConverter = "cvtT2StrdPre";
1487 let DecoderMethod = "DecodeT2STRDPreInstruction";
1488}
Johnny Chenae1757b2010-03-11 01:13:36 +00001489
Jim Grosbacha77295d2011-09-08 22:07:06 +00001490def t2STRD_POST : T2Ii8s4post<0, 1, 0, (outs GPR:$wb),
1491 (ins rGPR:$Rt, rGPR:$Rt2, addr_offset_none:$addr,
1492 t2am_imm8s4_offset:$imm),
Owen Anderson7782a582011-09-13 20:46:26 +00001493 IIC_iStore_d_ru, "strd", "\t$Rt, $Rt2, $addr$imm",
Jim Grosbacha77295d2011-09-08 22:07:06 +00001494 "$addr.base = $wb", []>;
Evan Cheng2889cce2009-07-03 00:18:36 +00001495
Johnny Chen0635fc52010-03-04 17:40:44 +00001496// T2Ipl (Preload Data/Instruction) signals the memory system of possible future
Jim Grosbacha5813282011-10-26 22:22:01 +00001497// data/instruction access.
Evan Chengdfed19f2010-11-03 06:34:55 +00001498// instr_write is inverted for Thumb mode: (prefetch 3) -> (preload 0),
1499// (prefetch 1) -> (preload 2), (prefetch 2) -> (preload 1).
Evan Cheng416941d2010-11-04 05:19:35 +00001500multiclass T2Ipl<bits<1> write, bits<1> instr, string opc> {
Johnny Chen0635fc52010-03-04 17:40:44 +00001501
Evan Chengdfed19f2010-11-03 06:34:55 +00001502 def i12 : T2Ii12<(outs), (ins t2addrmode_imm12:$addr), IIC_Preload, opc,
Evan Chengbc7deb02010-11-03 05:14:24 +00001503 "\t$addr",
Evan Cheng416941d2010-11-04 05:19:35 +00001504 [(ARMPreload t2addrmode_imm12:$addr, (i32 write), (i32 instr))]> {
Johnny Chen0635fc52010-03-04 17:40:44 +00001505 let Inst{31-25} = 0b1111100;
Evan Cheng416941d2010-11-04 05:19:35 +00001506 let Inst{24} = instr;
Johnny Chen0635fc52010-03-04 17:40:44 +00001507 let Inst{22} = 0;
Evan Cheng416941d2010-11-04 05:19:35 +00001508 let Inst{21} = write;
Johnny Chen0635fc52010-03-04 17:40:44 +00001509 let Inst{20} = 1;
1510 let Inst{15-12} = 0b1111;
Jim Grosbach7721e7f2010-12-02 23:05:38 +00001511
Owen Anderson80dd3e02010-11-30 22:45:47 +00001512 bits<17> addr;
Johnny Chenf9ce2cb2011-04-12 18:48:00 +00001513 let addr{12} = 1; // add = TRUE
Owen Anderson80dd3e02010-11-30 22:45:47 +00001514 let Inst{19-16} = addr{16-13}; // Rn
1515 let Inst{23} = addr{12}; // U
Owen Anderson0e1bcdf2010-11-30 19:19:31 +00001516 let Inst{11-0} = addr{11-0}; // imm12
Johnny Chen0635fc52010-03-04 17:40:44 +00001517 }
1518
Jim Grosbacha8307dd2011-09-07 20:58:57 +00001519 def i8 : T2Ii8<(outs), (ins t2addrmode_negimm8:$addr), IIC_Preload, opc,
Evan Chengbc7deb02010-11-03 05:14:24 +00001520 "\t$addr",
Jim Grosbacha8307dd2011-09-07 20:58:57 +00001521 [(ARMPreload t2addrmode_negimm8:$addr, (i32 write), (i32 instr))]> {
Johnny Chen0635fc52010-03-04 17:40:44 +00001522 let Inst{31-25} = 0b1111100;
Evan Cheng416941d2010-11-04 05:19:35 +00001523 let Inst{24} = instr;
Johnny Chen0635fc52010-03-04 17:40:44 +00001524 let Inst{23} = 0; // U = 0
1525 let Inst{22} = 0;
Evan Cheng416941d2010-11-04 05:19:35 +00001526 let Inst{21} = write;
Johnny Chen0635fc52010-03-04 17:40:44 +00001527 let Inst{20} = 1;
1528 let Inst{15-12} = 0b1111;
1529 let Inst{11-8} = 0b1100;
Jim Grosbach7721e7f2010-12-02 23:05:38 +00001530
Owen Anderson0e1bcdf2010-11-30 19:19:31 +00001531 bits<13> addr;
1532 let Inst{19-16} = addr{12-9}; // Rn
1533 let Inst{7-0} = addr{7-0}; // imm8
Johnny Chen0635fc52010-03-04 17:40:44 +00001534 }
1535
Evan Chengdfed19f2010-11-03 06:34:55 +00001536 def s : T2Iso<(outs), (ins t2addrmode_so_reg:$addr), IIC_Preload, opc,
Evan Chengbc7deb02010-11-03 05:14:24 +00001537 "\t$addr",
Evan Cheng416941d2010-11-04 05:19:35 +00001538 [(ARMPreload t2addrmode_so_reg:$addr, (i32 write), (i32 instr))]> {
Evan Chengbc7deb02010-11-03 05:14:24 +00001539 let Inst{31-25} = 0b1111100;
Evan Cheng416941d2010-11-04 05:19:35 +00001540 let Inst{24} = instr;
Evan Chengbc7deb02010-11-03 05:14:24 +00001541 let Inst{23} = 0; // add = TRUE for T1
1542 let Inst{22} = 0;
Evan Cheng416941d2010-11-04 05:19:35 +00001543 let Inst{21} = write;
Evan Chengbc7deb02010-11-03 05:14:24 +00001544 let Inst{20} = 1;
1545 let Inst{15-12} = 0b1111;
1546 let Inst{11-6} = 0000000;
Jim Grosbach7721e7f2010-12-02 23:05:38 +00001547
Owen Anderson0e1bcdf2010-11-30 19:19:31 +00001548 bits<10> addr;
1549 let Inst{19-16} = addr{9-6}; // Rn
1550 let Inst{3-0} = addr{5-2}; // Rm
1551 let Inst{5-4} = addr{1-0}; // imm2
Owen Anderson8d7d2e12011-08-09 20:55:18 +00001552
1553 let DecoderMethod = "DecodeT2LoadShift";
Evan Chengbc7deb02010-11-03 05:14:24 +00001554 }
Jim Grosbacha5813282011-10-26 22:22:01 +00001555 // FIXME: We should have a separate 'pci' variant here. As-is we represent
1556 // it via the i12 variant, which it's related to, but that means we can
1557 // represent negative immediates, which aren't legal for anything except
1558 // the 'pci' case (Rn == 15).
Johnny Chen0635fc52010-03-04 17:40:44 +00001559}
1560
Evan Cheng416941d2010-11-04 05:19:35 +00001561defm t2PLD : T2Ipl<0, 0, "pld">, Requires<[IsThumb2]>;
1562defm t2PLDW : T2Ipl<1, 0, "pldw">, Requires<[IsThumb2,HasV7,HasMP]>;
1563defm t2PLI : T2Ipl<0, 1, "pli">, Requires<[IsThumb2,HasV7]>;
Johnny Chen0635fc52010-03-04 17:40:44 +00001564
Evan Cheng2889cce2009-07-03 00:18:36 +00001565//===----------------------------------------------------------------------===//
1566// Load / store multiple Instructions.
1567//
1568
Owen Andersoncd00dc62011-09-12 21:28:46 +00001569multiclass thumb2_ld_mult<string asm, InstrItinClass itin,
Bill Wendling6c470b82010-11-13 09:09:38 +00001570 InstrItinClass itin_upd, bit L_bit> {
Bill Wendling73fe34a2010-11-16 01:16:36 +00001571 def IA :
Bill Wendling6c470b82010-11-13 09:09:38 +00001572 T2XI<(outs), (ins GPR:$Rn, pred:$p, reglist:$regs, variable_ops),
Jim Grosbachffa5a762011-09-07 16:22:42 +00001573 itin, !strconcat(asm, "${p}.w\t$Rn, $regs"), []> {
Bill Wendling6c470b82010-11-13 09:09:38 +00001574 bits<4> Rn;
1575 bits<16> regs;
Jim Grosbach7a088642010-11-19 17:11:02 +00001576
Bill Wendling6c470b82010-11-13 09:09:38 +00001577 let Inst{31-27} = 0b11101;
1578 let Inst{26-25} = 0b00;
1579 let Inst{24-23} = 0b01; // Increment After
1580 let Inst{22} = 0;
1581 let Inst{21} = 0; // No writeback
1582 let Inst{20} = L_bit;
1583 let Inst{19-16} = Rn;
Jim Grosbachf8e74f82011-10-24 17:16:24 +00001584 let Inst{15-0} = regs;
Bill Wendling6c470b82010-11-13 09:09:38 +00001585 }
Bill Wendling73fe34a2010-11-16 01:16:36 +00001586 def IA_UPD :
Bill Wendling6c470b82010-11-13 09:09:38 +00001587 T2XIt<(outs GPR:$wb), (ins GPR:$Rn, pred:$p, reglist:$regs, variable_ops),
Jim Grosbachffa5a762011-09-07 16:22:42 +00001588 itin_upd, !strconcat(asm, "${p}.w\t$Rn!, $regs"), "$Rn = $wb", []> {
Bill Wendling6c470b82010-11-13 09:09:38 +00001589 bits<4> Rn;
1590 bits<16> regs;
Jim Grosbach7a088642010-11-19 17:11:02 +00001591
Bill Wendling6c470b82010-11-13 09:09:38 +00001592 let Inst{31-27} = 0b11101;
1593 let Inst{26-25} = 0b00;
1594 let Inst{24-23} = 0b01; // Increment After
1595 let Inst{22} = 0;
1596 let Inst{21} = 1; // Writeback
1597 let Inst{20} = L_bit;
1598 let Inst{19-16} = Rn;
Jim Grosbachf8e74f82011-10-24 17:16:24 +00001599 let Inst{15-0} = regs;
Bill Wendling6c470b82010-11-13 09:09:38 +00001600 }
Bill Wendling73fe34a2010-11-16 01:16:36 +00001601 def DB :
Bill Wendling6c470b82010-11-13 09:09:38 +00001602 T2XI<(outs), (ins GPR:$Rn, pred:$p, reglist:$regs, variable_ops),
Jim Grosbachcfbb3a72011-09-07 18:39:47 +00001603 itin, !strconcat(asm, "db${p}\t$Rn, $regs"), []> {
Bill Wendling6c470b82010-11-13 09:09:38 +00001604 bits<4> Rn;
1605 bits<16> regs;
1606
1607 let Inst{31-27} = 0b11101;
1608 let Inst{26-25} = 0b00;
1609 let Inst{24-23} = 0b10; // Decrement Before
1610 let Inst{22} = 0;
1611 let Inst{21} = 0; // No writeback
1612 let Inst{20} = L_bit;
1613 let Inst{19-16} = Rn;
Jim Grosbachf8e74f82011-10-24 17:16:24 +00001614 let Inst{15-0} = regs;
Bill Wendling6c470b82010-11-13 09:09:38 +00001615 }
Bill Wendling73fe34a2010-11-16 01:16:36 +00001616 def DB_UPD :
Bill Wendling6c470b82010-11-13 09:09:38 +00001617 T2XIt<(outs GPR:$wb), (ins GPR:$Rn, pred:$p, reglist:$regs, variable_ops),
Jim Grosbachcfbb3a72011-09-07 18:39:47 +00001618 itin_upd, !strconcat(asm, "db${p}\t$Rn!, $regs"), "$Rn = $wb", []> {
Bill Wendling6c470b82010-11-13 09:09:38 +00001619 bits<4> Rn;
1620 bits<16> regs;
1621
1622 let Inst{31-27} = 0b11101;
1623 let Inst{26-25} = 0b00;
1624 let Inst{24-23} = 0b10; // Decrement Before
1625 let Inst{22} = 0;
1626 let Inst{21} = 1; // Writeback
1627 let Inst{20} = L_bit;
1628 let Inst{19-16} = Rn;
Jim Grosbachf8e74f82011-10-24 17:16:24 +00001629 let Inst{15-0} = regs;
Bill Wendling6c470b82010-11-13 09:09:38 +00001630 }
1631}
1632
Bill Wendlingc93989a2010-11-13 11:20:05 +00001633let neverHasSideEffects = 1 in {
Bill Wendlingddc918b2010-11-13 10:57:02 +00001634
1635let mayLoad = 1, hasExtraDefRegAllocReq = 1 in
Owen Andersoncd00dc62011-09-12 21:28:46 +00001636defm t2LDM : thumb2_ld_mult<"ldm", IIC_iLoad_m, IIC_iLoad_mu, 1>;
1637
1638multiclass thumb2_st_mult<string asm, InstrItinClass itin,
1639 InstrItinClass itin_upd, bit L_bit> {
1640 def IA :
1641 T2XI<(outs), (ins GPR:$Rn, pred:$p, reglist:$regs, variable_ops),
1642 itin, !strconcat(asm, "${p}.w\t$Rn, $regs"), []> {
1643 bits<4> Rn;
1644 bits<16> regs;
1645
1646 let Inst{31-27} = 0b11101;
1647 let Inst{26-25} = 0b00;
1648 let Inst{24-23} = 0b01; // Increment After
1649 let Inst{22} = 0;
1650 let Inst{21} = 0; // No writeback
1651 let Inst{20} = L_bit;
1652 let Inst{19-16} = Rn;
1653 let Inst{15} = 0;
1654 let Inst{14} = regs{14};
1655 let Inst{13} = 0;
1656 let Inst{12-0} = regs{12-0};
1657 }
1658 def IA_UPD :
1659 T2XIt<(outs GPR:$wb), (ins GPR:$Rn, pred:$p, reglist:$regs, variable_ops),
1660 itin_upd, !strconcat(asm, "${p}.w\t$Rn!, $regs"), "$Rn = $wb", []> {
1661 bits<4> Rn;
1662 bits<16> regs;
1663
1664 let Inst{31-27} = 0b11101;
1665 let Inst{26-25} = 0b00;
1666 let Inst{24-23} = 0b01; // Increment After
1667 let Inst{22} = 0;
1668 let Inst{21} = 1; // Writeback
1669 let Inst{20} = L_bit;
1670 let Inst{19-16} = Rn;
1671 let Inst{15} = 0;
1672 let Inst{14} = regs{14};
1673 let Inst{13} = 0;
1674 let Inst{12-0} = regs{12-0};
1675 }
1676 def DB :
1677 T2XI<(outs), (ins GPR:$Rn, pred:$p, reglist:$regs, variable_ops),
1678 itin, !strconcat(asm, "db${p}\t$Rn, $regs"), []> {
1679 bits<4> Rn;
1680 bits<16> regs;
1681
1682 let Inst{31-27} = 0b11101;
1683 let Inst{26-25} = 0b00;
1684 let Inst{24-23} = 0b10; // Decrement Before
1685 let Inst{22} = 0;
1686 let Inst{21} = 0; // No writeback
1687 let Inst{20} = L_bit;
1688 let Inst{19-16} = Rn;
1689 let Inst{15} = 0;
1690 let Inst{14} = regs{14};
1691 let Inst{13} = 0;
1692 let Inst{12-0} = regs{12-0};
1693 }
1694 def DB_UPD :
1695 T2XIt<(outs GPR:$wb), (ins GPR:$Rn, pred:$p, reglist:$regs, variable_ops),
1696 itin_upd, !strconcat(asm, "db${p}\t$Rn!, $regs"), "$Rn = $wb", []> {
1697 bits<4> Rn;
1698 bits<16> regs;
1699
1700 let Inst{31-27} = 0b11101;
1701 let Inst{26-25} = 0b00;
1702 let Inst{24-23} = 0b10; // Decrement Before
1703 let Inst{22} = 0;
1704 let Inst{21} = 1; // Writeback
1705 let Inst{20} = L_bit;
1706 let Inst{19-16} = Rn;
1707 let Inst{15} = 0;
1708 let Inst{14} = regs{14};
1709 let Inst{13} = 0;
1710 let Inst{12-0} = regs{12-0};
1711 }
1712}
1713
Bill Wendlingddc918b2010-11-13 10:57:02 +00001714
1715let mayStore = 1, hasExtraSrcRegAllocReq = 1 in
Owen Andersoncd00dc62011-09-12 21:28:46 +00001716defm t2STM : thumb2_st_mult<"stm", IIC_iStore_m, IIC_iStore_mu, 0>;
Bill Wendlingddc918b2010-11-13 10:57:02 +00001717
1718} // neverHasSideEffects
1719
Bob Wilson815baeb2010-03-13 01:08:20 +00001720
Evan Cheng9cb9e672009-06-27 02:26:13 +00001721//===----------------------------------------------------------------------===//
Anton Korobeynikov52237112009-06-17 18:13:58 +00001722// Move Instructions.
1723//
Anton Korobeynikov52237112009-06-17 18:13:58 +00001724
Evan Chengf49810c2009-06-23 17:48:47 +00001725let neverHasSideEffects = 1 in
Jim Grosbach1ad60c22011-09-10 00:15:36 +00001726def t2MOVr : T2sTwoReg<(outs GPRnopc:$Rd), (ins GPR:$Rm), IIC_iMOVr,
Owen Andersonc56dcbf2010-11-16 00:29:56 +00001727 "mov", ".w\t$Rd, $Rm", []> {
Johnny Chend68e1192009-12-15 17:24:14 +00001728 let Inst{31-27} = 0b11101;
1729 let Inst{26-25} = 0b01;
1730 let Inst{24-21} = 0b0010;
Johnny Chend68e1192009-12-15 17:24:14 +00001731 let Inst{19-16} = 0b1111; // Rn
1732 let Inst{14-12} = 0b000;
1733 let Inst{7-4} = 0b0000;
1734}
Jim Grosbach9858a482011-10-18 17:09:35 +00001735def : t2InstAlias<"mov${p}.w $Rd, $Rm", (t2MOVr GPRnopc:$Rd, GPR:$Rm,
1736 pred:$p, zero_reg)>;
Jim Grosbach1ad60c22011-09-10 00:15:36 +00001737def : t2InstAlias<"movs${p}.w $Rd, $Rm", (t2MOVr GPRnopc:$Rd, GPR:$Rm,
1738 pred:$p, CPSR)>;
1739def : t2InstAlias<"movs${p} $Rd, $Rm", (t2MOVr GPRnopc:$Rd, GPR:$Rm,
1740 pred:$p, CPSR)>;
Evan Chengf49810c2009-06-23 17:48:47 +00001741
Evan Cheng5adb66a2009-09-28 09:14:39 +00001742// AddedComplexity to ensure isel tries t2MOVi before t2MOVi16.
Evan Chengc4af4632010-11-17 20:13:28 +00001743let isReMaterializable = 1, isAsCheapAsAMove = 1, isMoveImm = 1,
1744 AddedComplexity = 1 in
Owen Andersonc56dcbf2010-11-16 00:29:56 +00001745def t2MOVi : T2sOneRegImm<(outs rGPR:$Rd), (ins t2_so_imm:$imm), IIC_iMOVi,
1746 "mov", ".w\t$Rd, $imm",
1747 [(set rGPR:$Rd, t2_so_imm:$imm)]> {
Johnny Chend68e1192009-12-15 17:24:14 +00001748 let Inst{31-27} = 0b11110;
1749 let Inst{25} = 0;
1750 let Inst{24-21} = 0b0010;
Johnny Chend68e1192009-12-15 17:24:14 +00001751 let Inst{19-16} = 0b1111; // Rn
1752 let Inst{15} = 0;
1753}
David Goodwin83b35932009-06-26 16:10:07 +00001754
Jim Grosbach1ad60c22011-09-10 00:15:36 +00001755// cc_out is handled as part of the explicit mnemonic in the parser for 'mov'.
1756// Use aliases to get that to play nice here.
1757def : t2InstAlias<"movs${p}.w $Rd, $imm", (t2MOVi rGPR:$Rd, t2_so_imm:$imm,
1758 pred:$p, CPSR)>;
1759def : t2InstAlias<"movs${p} $Rd, $imm", (t2MOVi rGPR:$Rd, t2_so_imm:$imm,
1760 pred:$p, CPSR)>;
1761
1762def : t2InstAlias<"mov${p}.w $Rd, $imm", (t2MOVi rGPR:$Rd, t2_so_imm:$imm,
1763 pred:$p, zero_reg)>;
1764def : t2InstAlias<"mov${p} $Rd, $imm", (t2MOVi rGPR:$Rd, t2_so_imm:$imm,
1765 pred:$p, zero_reg)>;
Jim Grosbach6b8f1e32011-06-27 23:54:06 +00001766
Evan Chengc4af4632010-11-17 20:13:28 +00001767let isReMaterializable = 1, isAsCheapAsAMove = 1, isMoveImm = 1 in
Jim Grosbachffa32252011-07-19 19:13:28 +00001768def t2MOVi16 : T2I<(outs rGPR:$Rd), (ins imm0_65535_expr:$imm), IIC_iMOVi,
Owen Andersonc56dcbf2010-11-16 00:29:56 +00001769 "movw", "\t$Rd, $imm",
1770 [(set rGPR:$Rd, imm0_65535:$imm)]> {
Johnny Chend68e1192009-12-15 17:24:14 +00001771 let Inst{31-27} = 0b11110;
1772 let Inst{25} = 1;
1773 let Inst{24-21} = 0b0010;
1774 let Inst{20} = 0; // The S bit.
1775 let Inst{15} = 0;
Jim Grosbach7a088642010-11-19 17:11:02 +00001776
Owen Andersonc56dcbf2010-11-16 00:29:56 +00001777 bits<4> Rd;
1778 bits<16> imm;
Jim Grosbach7a088642010-11-19 17:11:02 +00001779
Jim Grosbach86386922010-12-08 22:10:43 +00001780 let Inst{11-8} = Rd;
Owen Andersonc56dcbf2010-11-16 00:29:56 +00001781 let Inst{19-16} = imm{15-12};
1782 let Inst{26} = imm{11};
1783 let Inst{14-12} = imm{10-8};
1784 let Inst{7-0} = imm{7-0};
Kevin Enderby9e5887b2011-10-04 22:44:48 +00001785 let DecoderMethod = "DecodeT2MOVTWInstruction";
Johnny Chend68e1192009-12-15 17:24:14 +00001786}
Evan Chengf49810c2009-06-23 17:48:47 +00001787
Evan Cheng53519f02011-01-21 18:55:51 +00001788def t2MOVi16_ga_pcrel : PseudoInst<(outs rGPR:$Rd),
Evan Cheng5de5d4b2011-01-17 08:03:18 +00001789 (ins i32imm:$addr, pclabel:$id), IIC_iMOVi, []>;
1790
1791let Constraints = "$src = $Rd" in {
Evan Cheng75972122011-01-13 07:58:56 +00001792def t2MOVTi16 : T2I<(outs rGPR:$Rd),
Jim Grosbachffa32252011-07-19 19:13:28 +00001793 (ins rGPR:$src, imm0_65535_expr:$imm), IIC_iMOVi,
Owen Andersonc56dcbf2010-11-16 00:29:56 +00001794 "movt", "\t$Rd, $imm",
1795 [(set rGPR:$Rd,
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001796 (or (and rGPR:$src, 0xffff), lo16AllZero:$imm))]> {
Johnny Chend68e1192009-12-15 17:24:14 +00001797 let Inst{31-27} = 0b11110;
1798 let Inst{25} = 1;
1799 let Inst{24-21} = 0b0110;
1800 let Inst{20} = 0; // The S bit.
1801 let Inst{15} = 0;
Jim Grosbach7a088642010-11-19 17:11:02 +00001802
Owen Andersonc56dcbf2010-11-16 00:29:56 +00001803 bits<4> Rd;
1804 bits<16> imm;
Jim Grosbach7a088642010-11-19 17:11:02 +00001805
Jim Grosbach86386922010-12-08 22:10:43 +00001806 let Inst{11-8} = Rd;
Owen Andersonc56dcbf2010-11-16 00:29:56 +00001807 let Inst{19-16} = imm{15-12};
1808 let Inst{26} = imm{11};
1809 let Inst{14-12} = imm{10-8};
1810 let Inst{7-0} = imm{7-0};
Kevin Enderby9e5887b2011-10-04 22:44:48 +00001811 let DecoderMethod = "DecodeT2MOVTWInstruction";
Johnny Chend68e1192009-12-15 17:24:14 +00001812}
Anton Korobeynikov52237112009-06-17 18:13:58 +00001813
Evan Cheng53519f02011-01-21 18:55:51 +00001814def t2MOVTi16_ga_pcrel : PseudoInst<(outs rGPR:$Rd),
Evan Cheng5de5d4b2011-01-17 08:03:18 +00001815 (ins rGPR:$src, i32imm:$addr, pclabel:$id), IIC_iMOVi, []>;
1816} // Constraints
1817
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001818def : T2Pat<(or rGPR:$src, 0xffff0000), (t2MOVTi16 rGPR:$src, 0xffff)>;
Evan Cheng20956592009-10-21 08:15:52 +00001819
Anton Korobeynikov52237112009-06-17 18:13:58 +00001820//===----------------------------------------------------------------------===//
Evan Chengd27c9fc2009-07-03 01:43:10 +00001821// Extend Instructions.
1822//
1823
1824// Sign extenders
1825
Jim Grosbachc5a8c862011-07-27 16:47:19 +00001826def t2SXTB : T2I_ext_rrot<0b100, "sxtb",
Johnny Chend68e1192009-12-15 17:24:14 +00001827 UnOpFrag<(sext_inreg node:$Src, i8)>>;
Jim Grosbachc5a8c862011-07-27 16:47:19 +00001828def t2SXTH : T2I_ext_rrot<0b000, "sxth",
Johnny Chend68e1192009-12-15 17:24:14 +00001829 UnOpFrag<(sext_inreg node:$Src, i16)>>;
Jim Grosbach70327412011-07-27 17:48:13 +00001830def t2SXTB16 : T2I_ext_rrot_sxtb16<0b010, "sxtb16">;
Evan Chengd27c9fc2009-07-03 01:43:10 +00001831
Jim Grosbach70327412011-07-27 17:48:13 +00001832def t2SXTAB : T2I_exta_rrot<0b100, "sxtab",
Evan Chengd27c9fc2009-07-03 01:43:10 +00001833 BinOpFrag<(add node:$LHS, (sext_inreg node:$RHS, i8))>>;
Jim Grosbach70327412011-07-27 17:48:13 +00001834def t2SXTAH : T2I_exta_rrot<0b000, "sxtah",
Evan Chengd27c9fc2009-07-03 01:43:10 +00001835 BinOpFrag<(add node:$LHS, (sext_inreg node:$RHS,i16))>>;
Jim Grosbach70327412011-07-27 17:48:13 +00001836def t2SXTAB16 : T2I_exta_rrot_np<0b010, "sxtab16">;
Evan Chengd27c9fc2009-07-03 01:43:10 +00001837
Evan Chengd27c9fc2009-07-03 01:43:10 +00001838// Zero extenders
1839
1840let AddedComplexity = 16 in {
Jim Grosbachc5a8c862011-07-27 16:47:19 +00001841def t2UXTB : T2I_ext_rrot<0b101, "uxtb",
Johnny Chend68e1192009-12-15 17:24:14 +00001842 UnOpFrag<(and node:$Src, 0x000000FF)>>;
Jim Grosbachc5a8c862011-07-27 16:47:19 +00001843def t2UXTH : T2I_ext_rrot<0b001, "uxth",
Johnny Chend68e1192009-12-15 17:24:14 +00001844 UnOpFrag<(and node:$Src, 0x0000FFFF)>>;
Jim Grosbach70327412011-07-27 17:48:13 +00001845def t2UXTB16 : T2I_ext_rrot_uxtb16<0b011, "uxtb16",
Johnny Chend68e1192009-12-15 17:24:14 +00001846 UnOpFrag<(and node:$Src, 0x00FF00FF)>>;
Evan Chengd27c9fc2009-07-03 01:43:10 +00001847
Jim Grosbach79464942010-07-28 23:17:45 +00001848// FIXME: This pattern incorrectly assumes the shl operator is a rotate.
1849// The transformation should probably be done as a combiner action
1850// instead so we can include a check for masking back in the upper
1851// eight bits of the source into the lower eight bits of the result.
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001852//def : T2Pat<(and (shl rGPR:$Src, (i32 8)), 0xFF00FF),
Jim Grosbach70327412011-07-27 17:48:13 +00001853// (t2UXTB16 rGPR:$Src, 3)>,
Jim Grosbach9729d2e2010-11-01 15:59:52 +00001854// Requires<[HasT2ExtractPack, IsThumb2]>;
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001855def : T2Pat<(and (srl rGPR:$Src, (i32 8)), 0xFF00FF),
Jim Grosbach70327412011-07-27 17:48:13 +00001856 (t2UXTB16 rGPR:$Src, 1)>,
Jim Grosbach9729d2e2010-11-01 15:59:52 +00001857 Requires<[HasT2ExtractPack, IsThumb2]>;
Evan Chengd27c9fc2009-07-03 01:43:10 +00001858
Jim Grosbach70327412011-07-27 17:48:13 +00001859def t2UXTAB : T2I_exta_rrot<0b101, "uxtab",
Jim Grosbach6935efc2009-11-24 00:20:27 +00001860 BinOpFrag<(add node:$LHS, (and node:$RHS, 0x00FF))>>;
Jim Grosbach70327412011-07-27 17:48:13 +00001861def t2UXTAH : T2I_exta_rrot<0b001, "uxtah",
Jim Grosbach6935efc2009-11-24 00:20:27 +00001862 BinOpFrag<(add node:$LHS, (and node:$RHS, 0xFFFF))>>;
Jim Grosbach70327412011-07-27 17:48:13 +00001863def t2UXTAB16 : T2I_exta_rrot_np<0b011, "uxtab16">;
Evan Chengd27c9fc2009-07-03 01:43:10 +00001864}
1865
1866//===----------------------------------------------------------------------===//
Anton Korobeynikov52237112009-06-17 18:13:58 +00001867// Arithmetic Instructions.
1868//
Anton Korobeynikov52237112009-06-17 18:13:58 +00001869
Johnny Chend68e1192009-12-15 17:24:14 +00001870defm t2ADD : T2I_bin_ii12rs<0b000, "add",
1871 BinOpFrag<(add node:$LHS, node:$RHS)>, 1>;
1872defm t2SUB : T2I_bin_ii12rs<0b101, "sub",
1873 BinOpFrag<(sub node:$LHS, node:$RHS)>>;
Anton Korobeynikov52237112009-06-17 18:13:58 +00001874
Evan Chengf49810c2009-06-23 17:48:47 +00001875// ADD and SUB with 's' bit set. No 12-bit immediate (T4) variants.
Andrew Trick3be654f2011-09-21 02:20:46 +00001876//
1877// Currently, t2ADDS/t2SUBS are pseudo opcodes that exist only in the
1878// selection DAG. They are "lowered" to real t2ADD/t2SUB opcodes by
1879// AdjustInstrPostInstrSelection where we determine whether or not to
1880// set the "s" bit based on CPSR liveness.
1881//
1882// FIXME: Eliminate t2ADDS/t2SUBS pseudo opcodes after adding tablegen
1883// support for an optional CPSR definition that corresponds to the DAG
1884// node's second value. We can then eliminate the implicit def of CPSR.
Andrew Trick90b7b122011-10-18 19:18:52 +00001885defm t2ADDS : T2I_bin_s_irs <IIC_iALUi, IIC_iALUr, IIC_iALUsi,
Evan Cheng342e3162011-08-30 01:34:54 +00001886 BinOpFrag<(ARMaddc node:$LHS, node:$RHS)>, 1>;
Andrew Trick90b7b122011-10-18 19:18:52 +00001887defm t2SUBS : T2I_bin_s_irs <IIC_iALUi, IIC_iALUr, IIC_iALUsi,
Evan Cheng342e3162011-08-30 01:34:54 +00001888 BinOpFrag<(ARMsubc node:$LHS, node:$RHS)>>;
Anton Korobeynikov52237112009-06-17 18:13:58 +00001889
Andrew Trick83a80312011-09-20 18:22:31 +00001890let hasPostISelHook = 1 in {
Johnny Chend68e1192009-12-15 17:24:14 +00001891defm t2ADC : T2I_adde_sube_irs<0b1010, "adc",
Evan Cheng342e3162011-08-30 01:34:54 +00001892 BinOpWithFlagFrag<(ARMadde node:$LHS, node:$RHS, node:$FLAG)>, 1>;
Johnny Chend68e1192009-12-15 17:24:14 +00001893defm t2SBC : T2I_adde_sube_irs<0b1011, "sbc",
Evan Cheng342e3162011-08-30 01:34:54 +00001894 BinOpWithFlagFrag<(ARMsube node:$LHS, node:$RHS, node:$FLAG)>>;
Andrew Trick83a80312011-09-20 18:22:31 +00001895}
Evan Chengf49810c2009-06-23 17:48:47 +00001896
David Goodwin752aa7d2009-07-27 16:39:05 +00001897// RSB
Bob Wilson20d8e4e2010-08-13 23:24:25 +00001898defm t2RSB : T2I_rbin_irs <0b1110, "rsb",
Johnny Chend68e1192009-12-15 17:24:14 +00001899 BinOpFrag<(sub node:$LHS, node:$RHS)>>;
Evan Cheng4a517082011-09-06 18:52:20 +00001900
1901// FIXME: Eliminate them if we can write def : Pat patterns which defines
1902// CPSR and the implicit def of CPSR is not needed.
Andrew Trick90b7b122011-10-18 19:18:52 +00001903defm t2RSBS : T2I_rbin_s_is <BinOpFrag<(ARMsubc node:$LHS, node:$RHS)>>;
Evan Chengf49810c2009-06-23 17:48:47 +00001904
1905// (sub X, imm) gets canonicalized to (add X, -imm). Match this form.
Jim Grosbach502e0aa2010-07-14 17:45:16 +00001906// The assume-no-carry-in form uses the negation of the input since add/sub
1907// assume opposite meanings of the carry flag (i.e., carry == !borrow).
1908// See the definition of AddWithCarry() in the ARM ARM A2.2.1 for the gory
1909// details.
1910// The AddedComplexity preferences the first variant over the others since
1911// it can be shrunk to a 16-bit wide encoding, while the others cannot.
Evan Chengfa2ea1a2009-08-04 01:41:15 +00001912let AddedComplexity = 1 in
Jim Grosbach502e0aa2010-07-14 17:45:16 +00001913def : T2Pat<(add GPR:$src, imm0_255_neg:$imm),
1914 (t2SUBri GPR:$src, imm0_255_neg:$imm)>;
1915def : T2Pat<(add GPR:$src, t2_so_imm_neg:$imm),
1916 (t2SUBri GPR:$src, t2_so_imm_neg:$imm)>;
1917def : T2Pat<(add GPR:$src, imm0_4095_neg:$imm),
1918 (t2SUBri12 GPR:$src, imm0_4095_neg:$imm)>;
Evan Chengfc472532012-06-23 00:29:06 +00001919def : T2Pat<(add GPR:$src, imm0_65535_neg:$imm),
1920 (t2SUBrr GPR:$src, (t2MOVi16 (imm_neg_XFORM imm:$imm)))>;
1921
Jim Grosbach502e0aa2010-07-14 17:45:16 +00001922let AddedComplexity = 1 in
Evan Cheng342e3162011-08-30 01:34:54 +00001923def : T2Pat<(ARMaddc rGPR:$src, imm0_255_neg:$imm),
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001924 (t2SUBSri rGPR:$src, imm0_255_neg:$imm)>;
Evan Cheng342e3162011-08-30 01:34:54 +00001925def : T2Pat<(ARMaddc rGPR:$src, t2_so_imm_neg:$imm),
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001926 (t2SUBSri rGPR:$src, t2_so_imm_neg:$imm)>;
Evan Chengfc472532012-06-23 00:29:06 +00001927def : T2Pat<(ARMaddc rGPR:$src, imm0_65535_neg:$imm),
1928 (t2SUBSrr rGPR:$src, (t2MOVi16 (imm_neg_XFORM imm:$imm)))>;
Jim Grosbach502e0aa2010-07-14 17:45:16 +00001929// The with-carry-in form matches bitwise not instead of the negation.
1930// Effectively, the inverse interpretation of the carry flag already accounts
1931// for part of the negation.
1932let AddedComplexity = 1 in
Evan Cheng342e3162011-08-30 01:34:54 +00001933def : T2Pat<(ARMadde rGPR:$src, imm0_255_not:$imm, CPSR),
Andrew Trick1c3af772011-04-23 03:55:32 +00001934 (t2SBCri rGPR:$src, imm0_255_not:$imm)>;
Evan Cheng342e3162011-08-30 01:34:54 +00001935def : T2Pat<(ARMadde rGPR:$src, t2_so_imm_not:$imm, CPSR),
Andrew Trick1c3af772011-04-23 03:55:32 +00001936 (t2SBCri rGPR:$src, t2_so_imm_not:$imm)>;
Evan Chengfc472532012-06-23 00:29:06 +00001937def : T2Pat<(ARMadde rGPR:$src, imm0_65535_neg:$imm, CPSR),
1938 (t2SBCrr rGPR:$src, (t2MOVi16 (imm_neg_XFORM imm:$imm)))>;
Anton Korobeynikov52237112009-06-17 18:13:58 +00001939
Johnny Chen93042d12010-03-02 18:14:57 +00001940// Select Bytes -- for disassembly only
1941
Owen Andersonc7373f82010-11-30 20:00:01 +00001942def t2SEL : T2ThreeReg<(outs GPR:$Rd), (ins GPR:$Rn, GPR:$Rm),
Jim Grosbacha7603982011-07-01 21:12:19 +00001943 NoItinerary, "sel", "\t$Rd, $Rn, $Rm", []>,
1944 Requires<[IsThumb2, HasThumb2DSP]> {
Johnny Chen93042d12010-03-02 18:14:57 +00001945 let Inst{31-27} = 0b11111;
1946 let Inst{26-24} = 0b010;
1947 let Inst{23} = 0b1;
1948 let Inst{22-20} = 0b010;
1949 let Inst{15-12} = 0b1111;
1950 let Inst{7} = 0b1;
1951 let Inst{6-4} = 0b000;
1952}
1953
Johnny Chenadc77332010-02-26 22:04:29 +00001954// A6.3.13, A6.3.14, A6.3.15 Parallel addition and subtraction (signed/unsigned)
1955// And Miscellaneous operations -- for disassembly only
Nate Begeman692433b2010-07-29 17:56:55 +00001956class T2I_pam<bits<3> op22_20, bits<4> op7_4, string opc,
Bruno Cardoso Lopes03016002011-01-21 14:07:40 +00001957 list<dag> pat = [/* For disassembly only; pattern left blank */],
1958 dag iops = (ins rGPR:$Rn, rGPR:$Rm),
1959 string asm = "\t$Rd, $Rn, $Rm">
Jim Grosbacha7603982011-07-01 21:12:19 +00001960 : T2I<(outs rGPR:$Rd), iops, NoItinerary, opc, asm, pat>,
1961 Requires<[IsThumb2, HasThumb2DSP]> {
Johnny Chenadc77332010-02-26 22:04:29 +00001962 let Inst{31-27} = 0b11111;
1963 let Inst{26-23} = 0b0101;
1964 let Inst{22-20} = op22_20;
1965 let Inst{15-12} = 0b1111;
1966 let Inst{7-4} = op7_4;
Jim Grosbach7a088642010-11-19 17:11:02 +00001967
Owen Anderson46c478e2010-11-17 19:57:38 +00001968 bits<4> Rd;
1969 bits<4> Rn;
1970 bits<4> Rm;
Jim Grosbach7a088642010-11-19 17:11:02 +00001971
Jim Grosbach86386922010-12-08 22:10:43 +00001972 let Inst{11-8} = Rd;
1973 let Inst{19-16} = Rn;
1974 let Inst{3-0} = Rm;
Johnny Chenadc77332010-02-26 22:04:29 +00001975}
1976
1977// Saturating add/subtract -- for disassembly only
1978
Nate Begeman692433b2010-07-29 17:56:55 +00001979def t2QADD : T2I_pam<0b000, 0b1000, "qadd",
Bruno Cardoso Lopes03016002011-01-21 14:07:40 +00001980 [(set rGPR:$Rd, (int_arm_qadd rGPR:$Rn, rGPR:$Rm))],
1981 (ins rGPR:$Rm, rGPR:$Rn), "\t$Rd, $Rm, $Rn">;
Johnny Chenadc77332010-02-26 22:04:29 +00001982def t2QADD16 : T2I_pam<0b001, 0b0001, "qadd16">;
1983def t2QADD8 : T2I_pam<0b000, 0b0001, "qadd8">;
1984def t2QASX : T2I_pam<0b010, 0b0001, "qasx">;
Bruno Cardoso Lopes03016002011-01-21 14:07:40 +00001985def t2QDADD : T2I_pam<0b000, 0b1001, "qdadd", [],
1986 (ins rGPR:$Rm, rGPR:$Rn), "\t$Rd, $Rm, $Rn">;
1987def t2QDSUB : T2I_pam<0b000, 0b1011, "qdsub", [],
1988 (ins rGPR:$Rm, rGPR:$Rn), "\t$Rd, $Rm, $Rn">;
Johnny Chenadc77332010-02-26 22:04:29 +00001989def t2QSAX : T2I_pam<0b110, 0b0001, "qsax">;
Nate Begeman692433b2010-07-29 17:56:55 +00001990def t2QSUB : T2I_pam<0b000, 0b1010, "qsub",
Bruno Cardoso Lopes03016002011-01-21 14:07:40 +00001991 [(set rGPR:$Rd, (int_arm_qsub rGPR:$Rn, rGPR:$Rm))],
1992 (ins rGPR:$Rm, rGPR:$Rn), "\t$Rd, $Rm, $Rn">;
Johnny Chenadc77332010-02-26 22:04:29 +00001993def t2QSUB16 : T2I_pam<0b101, 0b0001, "qsub16">;
1994def t2QSUB8 : T2I_pam<0b100, 0b0001, "qsub8">;
1995def t2UQADD16 : T2I_pam<0b001, 0b0101, "uqadd16">;
1996def t2UQADD8 : T2I_pam<0b000, 0b0101, "uqadd8">;
1997def t2UQASX : T2I_pam<0b010, 0b0101, "uqasx">;
1998def t2UQSAX : T2I_pam<0b110, 0b0101, "uqsax">;
1999def t2UQSUB16 : T2I_pam<0b101, 0b0101, "uqsub16">;
2000def t2UQSUB8 : T2I_pam<0b100, 0b0101, "uqsub8">;
2001
2002// Signed/Unsigned add/subtract -- for disassembly only
2003
2004def t2SASX : T2I_pam<0b010, 0b0000, "sasx">;
2005def t2SADD16 : T2I_pam<0b001, 0b0000, "sadd16">;
2006def t2SADD8 : T2I_pam<0b000, 0b0000, "sadd8">;
2007def t2SSAX : T2I_pam<0b110, 0b0000, "ssax">;
2008def t2SSUB16 : T2I_pam<0b101, 0b0000, "ssub16">;
2009def t2SSUB8 : T2I_pam<0b100, 0b0000, "ssub8">;
2010def t2UASX : T2I_pam<0b010, 0b0100, "uasx">;
2011def t2UADD16 : T2I_pam<0b001, 0b0100, "uadd16">;
2012def t2UADD8 : T2I_pam<0b000, 0b0100, "uadd8">;
2013def t2USAX : T2I_pam<0b110, 0b0100, "usax">;
2014def t2USUB16 : T2I_pam<0b101, 0b0100, "usub16">;
2015def t2USUB8 : T2I_pam<0b100, 0b0100, "usub8">;
2016
2017// Signed/Unsigned halving add/subtract -- for disassembly only
2018
2019def t2SHASX : T2I_pam<0b010, 0b0010, "shasx">;
2020def t2SHADD16 : T2I_pam<0b001, 0b0010, "shadd16">;
2021def t2SHADD8 : T2I_pam<0b000, 0b0010, "shadd8">;
2022def t2SHSAX : T2I_pam<0b110, 0b0010, "shsax">;
2023def t2SHSUB16 : T2I_pam<0b101, 0b0010, "shsub16">;
2024def t2SHSUB8 : T2I_pam<0b100, 0b0010, "shsub8">;
2025def t2UHASX : T2I_pam<0b010, 0b0110, "uhasx">;
2026def t2UHADD16 : T2I_pam<0b001, 0b0110, "uhadd16">;
2027def t2UHADD8 : T2I_pam<0b000, 0b0110, "uhadd8">;
2028def t2UHSAX : T2I_pam<0b110, 0b0110, "uhsax">;
2029def t2UHSUB16 : T2I_pam<0b101, 0b0110, "uhsub16">;
2030def t2UHSUB8 : T2I_pam<0b100, 0b0110, "uhsub8">;
2031
Owen Anderson821752e2010-11-18 20:32:18 +00002032// Helper class for disassembly only
2033// A6.3.16 & A6.3.17
2034// T2Imac - Thumb2 multiply [accumulate, and absolute difference] instructions.
2035class T2ThreeReg_mac<bit long, bits<3> op22_20, bits<4> op7_4, dag oops,
2036 dag iops, InstrItinClass itin, string opc, string asm, list<dag> pattern>
2037 : T2ThreeReg<oops, iops, itin, opc, asm, pattern> {
2038 let Inst{31-27} = 0b11111;
2039 let Inst{26-24} = 0b011;
2040 let Inst{23} = long;
2041 let Inst{22-20} = op22_20;
2042 let Inst{7-4} = op7_4;
2043}
2044
2045class T2FourReg_mac<bit long, bits<3> op22_20, bits<4> op7_4, dag oops,
2046 dag iops, InstrItinClass itin, string opc, string asm, list<dag> pattern>
2047 : T2FourReg<oops, iops, itin, opc, asm, pattern> {
2048 let Inst{31-27} = 0b11111;
2049 let Inst{26-24} = 0b011;
2050 let Inst{23} = long;
2051 let Inst{22-20} = op22_20;
2052 let Inst{7-4} = op7_4;
2053}
2054
Jim Grosbach8c989842011-09-20 00:26:34 +00002055// Unsigned Sum of Absolute Differences [and Accumulate].
Owen Anderson821752e2010-11-18 20:32:18 +00002056def t2USAD8 : T2ThreeReg_mac<0, 0b111, 0b0000, (outs rGPR:$Rd),
2057 (ins rGPR:$Rn, rGPR:$Rm),
Jim Grosbacha7603982011-07-01 21:12:19 +00002058 NoItinerary, "usad8", "\t$Rd, $Rn, $Rm", []>,
2059 Requires<[IsThumb2, HasThumb2DSP]> {
Johnny Chenadc77332010-02-26 22:04:29 +00002060 let Inst{15-12} = 0b1111;
2061}
Owen Anderson821752e2010-11-18 20:32:18 +00002062def t2USADA8 : T2FourReg_mac<0, 0b111, 0b0000, (outs rGPR:$Rd),
Jim Grosbach7a088642010-11-19 17:11:02 +00002063 (ins rGPR:$Rn, rGPR:$Rm, rGPR:$Ra), NoItinerary,
Jim Grosbacha7603982011-07-01 21:12:19 +00002064 "usada8", "\t$Rd, $Rn, $Rm, $Ra", []>,
2065 Requires<[IsThumb2, HasThumb2DSP]>;
Johnny Chenadc77332010-02-26 22:04:29 +00002066
Jim Grosbach8c989842011-09-20 00:26:34 +00002067// Signed/Unsigned saturate.
Owen Anderson46c478e2010-11-17 19:57:38 +00002068class T2SatI<dag oops, dag iops, InstrItinClass itin,
2069 string opc, string asm, list<dag> pattern>
Jim Grosbach7a088642010-11-19 17:11:02 +00002070 : T2I<oops, iops, itin, opc, asm, pattern> {
Owen Anderson46c478e2010-11-17 19:57:38 +00002071 bits<4> Rd;
2072 bits<4> Rn;
2073 bits<5> sat_imm;
2074 bits<7> sh;
Jim Grosbach7a088642010-11-19 17:11:02 +00002075
Jim Grosbach86386922010-12-08 22:10:43 +00002076 let Inst{11-8} = Rd;
2077 let Inst{19-16} = Rn;
Jim Grosbach580f4a92011-07-25 22:20:28 +00002078 let Inst{4-0} = sat_imm;
2079 let Inst{21} = sh{5};
Owen Anderson46c478e2010-11-17 19:57:38 +00002080 let Inst{14-12} = sh{4-2};
2081 let Inst{7-6} = sh{1-0};
2082}
2083
Owen Andersonc7373f82010-11-30 20:00:01 +00002084def t2SSAT: T2SatI<
Owen Anderson0afa0092011-09-26 21:06:22 +00002085 (outs rGPR:$Rd),
2086 (ins imm1_32:$sat_imm, rGPR:$Rn, t2_shift_imm:$sh),
Jim Grosbach8c989842011-09-20 00:26:34 +00002087 NoItinerary, "ssat", "\t$Rd, $sat_imm, $Rn$sh", []> {
Johnny Chenadc77332010-02-26 22:04:29 +00002088 let Inst{31-27} = 0b11110;
2089 let Inst{25-22} = 0b1100;
2090 let Inst{20} = 0;
2091 let Inst{15} = 0;
Owen Anderson061c3c42011-09-19 20:00:02 +00002092 let Inst{5} = 0;
Johnny Chenadc77332010-02-26 22:04:29 +00002093}
2094
Owen Andersonc7373f82010-11-30 20:00:01 +00002095def t2SSAT16: T2SatI<
Jim Grosbachf4943352011-07-25 23:09:14 +00002096 (outs rGPR:$Rd), (ins imm1_16:$sat_imm, rGPR:$Rn), NoItinerary,
Jim Grosbach8c989842011-09-20 00:26:34 +00002097 "ssat16", "\t$Rd, $sat_imm, $Rn", []>,
Jim Grosbacha7603982011-07-01 21:12:19 +00002098 Requires<[IsThumb2, HasThumb2DSP]> {
Johnny Chenadc77332010-02-26 22:04:29 +00002099 let Inst{31-27} = 0b11110;
2100 let Inst{25-22} = 0b1100;
2101 let Inst{20} = 0;
2102 let Inst{15} = 0;
2103 let Inst{21} = 1; // sh = '1'
2104 let Inst{14-12} = 0b000; // imm3 = '000'
2105 let Inst{7-6} = 0b00; // imm2 = '00'
Owen Anderson8a28bdc2011-09-16 22:17:02 +00002106 let Inst{5-4} = 0b00;
Johnny Chenadc77332010-02-26 22:04:29 +00002107}
2108
Owen Andersonc7373f82010-11-30 20:00:01 +00002109def t2USAT: T2SatI<
Owen Anderson0afa0092011-09-26 21:06:22 +00002110 (outs rGPR:$Rd),
2111 (ins imm0_31:$sat_imm, rGPR:$Rn, t2_shift_imm:$sh),
Jim Grosbach8c989842011-09-20 00:26:34 +00002112 NoItinerary, "usat", "\t$Rd, $sat_imm, $Rn$sh", []> {
Johnny Chenadc77332010-02-26 22:04:29 +00002113 let Inst{31-27} = 0b11110;
2114 let Inst{25-22} = 0b1110;
2115 let Inst{20} = 0;
2116 let Inst{15} = 0;
Johnny Chenadc77332010-02-26 22:04:29 +00002117}
2118
Jim Grosbachb105b992011-09-16 18:32:30 +00002119def t2USAT16: T2SatI<(outs rGPR:$Rd), (ins imm0_15:$sat_imm, rGPR:$Rn),
Jim Grosbachf921c0fe2011-06-13 22:54:22 +00002120 NoItinerary,
Jim Grosbach8c989842011-09-20 00:26:34 +00002121 "usat16", "\t$Rd, $sat_imm, $Rn", []>,
Jim Grosbacha7603982011-07-01 21:12:19 +00002122 Requires<[IsThumb2, HasThumb2DSP]> {
Owen Anderson4a713572011-09-23 21:57:50 +00002123 let Inst{31-22} = 0b1111001110;
Johnny Chenadc77332010-02-26 22:04:29 +00002124 let Inst{20} = 0;
2125 let Inst{15} = 0;
2126 let Inst{21} = 1; // sh = '1'
2127 let Inst{14-12} = 0b000; // imm3 = '000'
2128 let Inst{7-6} = 0b00; // imm2 = '00'
Owen Anderson4a713572011-09-23 21:57:50 +00002129 let Inst{5-4} = 0b00;
Johnny Chenadc77332010-02-26 22:04:29 +00002130}
Anton Korobeynikov52237112009-06-17 18:13:58 +00002131
Bob Wilson38aa2872010-08-13 21:48:10 +00002132def : T2Pat<(int_arm_ssat GPR:$a, imm:$pos), (t2SSAT imm:$pos, GPR:$a, 0)>;
2133def : T2Pat<(int_arm_usat GPR:$a, imm:$pos), (t2USAT imm:$pos, GPR:$a, 0)>;
Nate Begeman0e0a20e2010-07-29 22:48:09 +00002134
Evan Chengf49810c2009-06-23 17:48:47 +00002135//===----------------------------------------------------------------------===//
Evan Chenga67efd12009-06-23 19:39:13 +00002136// Shift and rotate Instructions.
2137//
2138
Jim Grosbach5f25fb02011-09-02 21:28:54 +00002139defm t2LSL : T2I_sh_ir<0b00, "lsl", imm0_31,
Jim Grosbach9249ef32012-08-02 21:59:52 +00002140 BinOpFrag<(shl node:$LHS, node:$RHS)>>;
Jim Grosbachd2990102011-09-02 18:43:25 +00002141defm t2LSR : T2I_sh_ir<0b01, "lsr", imm_sr,
Jim Grosbach9249ef32012-08-02 21:59:52 +00002142 BinOpFrag<(srl node:$LHS, node:$RHS)>>;
Jim Grosbachd2990102011-09-02 18:43:25 +00002143defm t2ASR : T2I_sh_ir<0b10, "asr", imm_sr,
Jim Grosbach9249ef32012-08-02 21:59:52 +00002144 BinOpFrag<(sra node:$LHS, node:$RHS)>>;
Jim Grosbach5f25fb02011-09-02 21:28:54 +00002145defm t2ROR : T2I_sh_ir<0b11, "ror", imm0_31,
Jim Grosbach9249ef32012-08-02 21:59:52 +00002146 BinOpFrag<(rotr node:$LHS, node:$RHS)>>;
Evan Chenga67efd12009-06-23 19:39:13 +00002147
Andrew Trickd49ffe82011-04-29 14:18:15 +00002148// (rotr x, (and y, 0x...1f)) ==> (ROR x, y)
Bob Wilsonac03af42012-07-02 17:22:47 +00002149def : T2Pat<(rotr rGPR:$lhs, (and rGPR:$rhs, lo5AllOne)),
2150 (t2RORrr rGPR:$lhs, rGPR:$rhs)>;
Andrew Trickd49ffe82011-04-29 14:18:15 +00002151
David Goodwinca01a8d2009-09-01 18:32:09 +00002152let Uses = [CPSR] in {
Owen Anderson46c478e2010-11-17 19:57:38 +00002153def t2RRX : T2sTwoReg<(outs rGPR:$Rd), (ins rGPR:$Rm), IIC_iMOVsi,
2154 "rrx", "\t$Rd, $Rm",
2155 [(set rGPR:$Rd, (ARMrrx rGPR:$Rm))]> {
Johnny Chend68e1192009-12-15 17:24:14 +00002156 let Inst{31-27} = 0b11101;
2157 let Inst{26-25} = 0b01;
2158 let Inst{24-21} = 0b0010;
Johnny Chend68e1192009-12-15 17:24:14 +00002159 let Inst{19-16} = 0b1111; // Rn
2160 let Inst{14-12} = 0b000;
2161 let Inst{7-4} = 0b0011;
2162}
David Goodwinca01a8d2009-09-01 18:32:09 +00002163}
Evan Chenga67efd12009-06-23 19:39:13 +00002164
Daniel Dunbar8d66b782011-01-10 15:26:39 +00002165let isCodeGenOnly = 1, Defs = [CPSR] in {
Owen Andersonbb6315d2010-11-15 19:58:36 +00002166def t2MOVsrl_flag : T2TwoRegShiftImm<
2167 (outs rGPR:$Rd), (ins rGPR:$Rm), IIC_iMOVsi,
2168 "lsrs", ".w\t$Rd, $Rm, #1",
2169 [(set rGPR:$Rd, (ARMsrl_flag rGPR:$Rm))]> {
Johnny Chend68e1192009-12-15 17:24:14 +00002170 let Inst{31-27} = 0b11101;
2171 let Inst{26-25} = 0b01;
2172 let Inst{24-21} = 0b0010;
2173 let Inst{20} = 1; // The S bit.
2174 let Inst{19-16} = 0b1111; // Rn
2175 let Inst{5-4} = 0b01; // Shift type.
2176 // Shift amount = Inst{14-12:7-6} = 1.
2177 let Inst{14-12} = 0b000;
2178 let Inst{7-6} = 0b01;
2179}
Owen Andersonbb6315d2010-11-15 19:58:36 +00002180def t2MOVsra_flag : T2TwoRegShiftImm<
2181 (outs rGPR:$Rd), (ins rGPR:$Rm), IIC_iMOVsi,
2182 "asrs", ".w\t$Rd, $Rm, #1",
2183 [(set rGPR:$Rd, (ARMsra_flag 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;
2187 let Inst{20} = 1; // The S bit.
2188 let Inst{19-16} = 0b1111; // Rn
2189 let Inst{5-4} = 0b10; // Shift type.
2190 // Shift amount = Inst{14-12:7-6} = 1.
2191 let Inst{14-12} = 0b000;
2192 let Inst{7-6} = 0b01;
2193}
David Goodwin3583df72009-07-28 17:06:49 +00002194}
2195
Evan Chenga67efd12009-06-23 19:39:13 +00002196//===----------------------------------------------------------------------===//
Evan Chengf49810c2009-06-23 17:48:47 +00002197// Bitwise Instructions.
2198//
Anton Korobeynikov52237112009-06-17 18:13:58 +00002199
Johnny Chend68e1192009-12-15 17:24:14 +00002200defm t2AND : T2I_bin_w_irs<0b0000, "and",
Evan Cheng7e1bf302010-09-29 00:27:46 +00002201 IIC_iBITi, IIC_iBITr, IIC_iBITsi,
Jim Grosbach5c6c1282012-08-02 21:50:41 +00002202 BinOpFrag<(and node:$LHS, node:$RHS)>, 1>;
Johnny Chend68e1192009-12-15 17:24:14 +00002203defm t2ORR : T2I_bin_w_irs<0b0010, "orr",
Evan Cheng7e1bf302010-09-29 00:27:46 +00002204 IIC_iBITi, IIC_iBITr, IIC_iBITsi,
Jim Grosbach5c6c1282012-08-02 21:50:41 +00002205 BinOpFrag<(or node:$LHS, node:$RHS)>, 1>;
Johnny Chend68e1192009-12-15 17:24:14 +00002206defm t2EOR : T2I_bin_w_irs<0b0100, "eor",
Evan Cheng7e1bf302010-09-29 00:27:46 +00002207 IIC_iBITi, IIC_iBITr, IIC_iBITsi,
Jim Grosbach5c6c1282012-08-02 21:50:41 +00002208 BinOpFrag<(xor node:$LHS, node:$RHS)>, 1>;
Evan Chengf49810c2009-06-23 17:48:47 +00002209
Johnny Chend68e1192009-12-15 17:24:14 +00002210defm t2BIC : T2I_bin_w_irs<0b0001, "bic",
Evan Cheng7e1bf302010-09-29 00:27:46 +00002211 IIC_iBITi, IIC_iBITr, IIC_iBITsi,
Jim Grosbach5c6c1282012-08-02 21:50:41 +00002212 BinOpFrag<(and node:$LHS, (not node:$RHS))>>;
Evan Chengf49810c2009-06-23 17:48:47 +00002213
Owen Anderson2f7aed32010-11-17 22:16:31 +00002214class T2BitFI<dag oops, dag iops, InstrItinClass itin,
2215 string opc, string asm, list<dag> pattern>
Jim Grosbach7a088642010-11-19 17:11:02 +00002216 : T2I<oops, iops, itin, opc, asm, pattern> {
Owen Anderson2f7aed32010-11-17 22:16:31 +00002217 bits<4> Rd;
2218 bits<5> msb;
2219 bits<5> lsb;
Jim Grosbach7a088642010-11-19 17:11:02 +00002220
Jim Grosbach86386922010-12-08 22:10:43 +00002221 let Inst{11-8} = Rd;
Owen Anderson2f7aed32010-11-17 22:16:31 +00002222 let Inst{4-0} = msb{4-0};
2223 let Inst{14-12} = lsb{4-2};
2224 let Inst{7-6} = lsb{1-0};
2225}
2226
2227class T2TwoRegBitFI<dag oops, dag iops, InstrItinClass itin,
2228 string opc, string asm, list<dag> pattern>
2229 : T2BitFI<oops, iops, itin, opc, asm, pattern> {
2230 bits<4> Rn;
Jim Grosbach7a088642010-11-19 17:11:02 +00002231
Jim Grosbach86386922010-12-08 22:10:43 +00002232 let Inst{19-16} = Rn;
Owen Anderson2f7aed32010-11-17 22:16:31 +00002233}
2234
2235let Constraints = "$src = $Rd" in
2236def t2BFC : T2BitFI<(outs rGPR:$Rd), (ins rGPR:$src, bf_inv_mask_imm:$imm),
2237 IIC_iUNAsi, "bfc", "\t$Rd, $imm",
2238 [(set rGPR:$Rd, (and rGPR:$src, bf_inv_mask_imm:$imm))]> {
Johnny Chend68e1192009-12-15 17:24:14 +00002239 let Inst{31-27} = 0b11110;
Johnny Chen3a961222011-04-15 22:52:15 +00002240 let Inst{26} = 0; // should be 0.
Johnny Chend68e1192009-12-15 17:24:14 +00002241 let Inst{25} = 1;
2242 let Inst{24-20} = 0b10110;
2243 let Inst{19-16} = 0b1111; // Rn
2244 let Inst{15} = 0;
Johnny Chen3a961222011-04-15 22:52:15 +00002245 let Inst{5} = 0; // should be 0.
Jim Grosbach7a088642010-11-19 17:11:02 +00002246
Owen Anderson2f7aed32010-11-17 22:16:31 +00002247 bits<10> imm;
2248 let msb{4-0} = imm{9-5};
2249 let lsb{4-0} = imm{4-0};
Johnny Chend68e1192009-12-15 17:24:14 +00002250}
Evan Chengf49810c2009-06-23 17:48:47 +00002251
Owen Anderson2f7aed32010-11-17 22:16:31 +00002252def t2SBFX: T2TwoRegBitFI<
Jim Grosbachfb8989e2011-07-27 21:09:25 +00002253 (outs rGPR:$Rd), (ins rGPR:$Rn, imm0_31:$lsb, imm1_32:$msb),
Owen Anderson2f7aed32010-11-17 22:16:31 +00002254 IIC_iUNAsi, "sbfx", "\t$Rd, $Rn, $lsb, $msb", []> {
Johnny Chend68e1192009-12-15 17:24:14 +00002255 let Inst{31-27} = 0b11110;
2256 let Inst{25} = 1;
2257 let Inst{24-20} = 0b10100;
2258 let Inst{15} = 0;
2259}
Sandeep Patel47eedaa2009-10-13 18:59:48 +00002260
Owen Anderson2f7aed32010-11-17 22:16:31 +00002261def t2UBFX: T2TwoRegBitFI<
Jim Grosbachfb8989e2011-07-27 21:09:25 +00002262 (outs rGPR:$Rd), (ins rGPR:$Rn, imm0_31:$lsb, imm1_32:$msb),
Owen Anderson2f7aed32010-11-17 22:16:31 +00002263 IIC_iUNAsi, "ubfx", "\t$Rd, $Rn, $lsb, $msb", []> {
Johnny Chend68e1192009-12-15 17:24:14 +00002264 let Inst{31-27} = 0b11110;
2265 let Inst{25} = 1;
2266 let Inst{24-20} = 0b11100;
2267 let Inst{15} = 0;
2268}
Sandeep Patel47eedaa2009-10-13 18:59:48 +00002269
Johnny Chen9474d552010-02-02 19:31:58 +00002270// A8.6.18 BFI - Bitfield insert (Encoding T1)
Bruno Cardoso Lopesa461d422011-01-18 20:45:56 +00002271let Constraints = "$src = $Rd" in {
2272 def t2BFI : T2TwoRegBitFI<(outs rGPR:$Rd),
2273 (ins rGPR:$src, rGPR:$Rn, bf_inv_mask_imm:$imm),
2274 IIC_iBITi, "bfi", "\t$Rd, $Rn, $imm",
2275 [(set rGPR:$Rd, (ARMbfi rGPR:$src, rGPR:$Rn,
2276 bf_inv_mask_imm:$imm))]> {
2277 let Inst{31-27} = 0b11110;
Johnny Chen188ce9c2011-04-15 00:35:08 +00002278 let Inst{26} = 0; // should be 0.
Bruno Cardoso Lopesa461d422011-01-18 20:45:56 +00002279 let Inst{25} = 1;
2280 let Inst{24-20} = 0b10110;
2281 let Inst{15} = 0;
Johnny Chen188ce9c2011-04-15 00:35:08 +00002282 let Inst{5} = 0; // should be 0.
Jim Grosbach7a088642010-11-19 17:11:02 +00002283
Bruno Cardoso Lopesa461d422011-01-18 20:45:56 +00002284 bits<10> imm;
2285 let msb{4-0} = imm{9-5};
2286 let lsb{4-0} = imm{4-0};
2287 }
Johnny Chen9474d552010-02-02 19:31:58 +00002288}
Evan Chengf49810c2009-06-23 17:48:47 +00002289
Evan Cheng7e1bf302010-09-29 00:27:46 +00002290defm t2ORN : T2I_bin_irs<0b0011, "orn",
2291 IIC_iBITi, IIC_iBITr, IIC_iBITsi,
Jim Grosbach5c6c1282012-08-02 21:50:41 +00002292 BinOpFrag<(or node:$LHS, (not node:$RHS))>, 0, "">;
Evan Cheng36a0aeb2009-07-06 22:23:46 +00002293
Jim Grosbachd32872f2011-09-14 21:24:41 +00002294/// T2I_un_irs - Defines a set of (op reg, {so_imm|r|so_reg}) patterns for a
2295/// unary operation that produces a value. These are predicable and can be
2296/// changed to modify CPSR.
2297multiclass T2I_un_irs<bits<4> opcod, string opc,
2298 InstrItinClass iii, InstrItinClass iir, InstrItinClass iis,
2299 PatFrag opnode, bit Cheap = 0, bit ReMat = 0> {
2300 // shifted imm
2301 def i : T2sOneRegImm<(outs rGPR:$Rd), (ins t2_so_imm:$imm), iii,
2302 opc, "\t$Rd, $imm",
2303 [(set rGPR:$Rd, (opnode t2_so_imm:$imm))]> {
2304 let isAsCheapAsAMove = Cheap;
2305 let isReMaterializable = ReMat;
2306 let Inst{31-27} = 0b11110;
2307 let Inst{25} = 0;
2308 let Inst{24-21} = opcod;
2309 let Inst{19-16} = 0b1111; // Rn
2310 let Inst{15} = 0;
2311 }
2312 // register
2313 def r : T2sTwoReg<(outs rGPR:$Rd), (ins rGPR:$Rm), iir,
2314 opc, ".w\t$Rd, $Rm",
2315 [(set rGPR:$Rd, (opnode rGPR:$Rm))]> {
2316 let Inst{31-27} = 0b11101;
2317 let Inst{26-25} = 0b01;
2318 let Inst{24-21} = opcod;
2319 let Inst{19-16} = 0b1111; // Rn
2320 let Inst{14-12} = 0b000; // imm3
2321 let Inst{7-6} = 0b00; // imm2
2322 let Inst{5-4} = 0b00; // type
2323 }
2324 // shifted register
2325 def s : T2sOneRegShiftedReg<(outs rGPR:$Rd), (ins t2_so_reg:$ShiftedRm), iis,
2326 opc, ".w\t$Rd, $ShiftedRm",
2327 [(set rGPR:$Rd, (opnode t2_so_reg:$ShiftedRm))]> {
2328 let Inst{31-27} = 0b11101;
2329 let Inst{26-25} = 0b01;
2330 let Inst{24-21} = opcod;
2331 let Inst{19-16} = 0b1111; // Rn
2332 }
2333}
2334
Evan Cheng36a0aeb2009-07-06 22:23:46 +00002335// Prefer over of t2EORri ra, rb, -1 because mvn has 16-bit version
2336let AddedComplexity = 1 in
Evan Cheng5d42c562010-09-29 00:49:25 +00002337defm t2MVN : T2I_un_irs <0b0011, "mvn",
Evan Cheng3881cb72010-09-29 22:42:35 +00002338 IIC_iMVNi, IIC_iMVNr, IIC_iMVNsi,
Evan Cheng5d42c562010-09-29 00:49:25 +00002339 UnOpFrag<(not node:$Src)>, 1, 1>;
Evan Cheng36a0aeb2009-07-06 22:23:46 +00002340
Jim Grosbachf084a5e2010-07-20 16:07:04 +00002341let AddedComplexity = 1 in
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002342def : T2Pat<(and rGPR:$src, t2_so_imm_not:$imm),
2343 (t2BICri rGPR:$src, t2_so_imm_not:$imm)>;
Evan Cheng36a0aeb2009-07-06 22:23:46 +00002344
Joel Jones96ef2842012-06-18 14:51:32 +00002345// top16Zero - answer true if the upper 16 bits of $src are 0, false otherwise
2346def top16Zero: PatLeaf<(i32 rGPR:$src), [{
2347 return CurDAG->MaskedValueIsZero(SDValue(N,0), APInt::getHighBitsSet(32, 16));
2348 }]>;
2349
2350// so_imm_notSext is needed instead of so_imm_not, as the value of imm
2351// will match the extended, not the original bitWidth for $src.
2352def : T2Pat<(and top16Zero:$src, t2_so_imm_notSext:$imm),
2353 (t2BICri rGPR:$src, t2_so_imm_notSext:$imm)>;
2354
2355
Evan Cheng25f7cfc2009-08-01 06:13:52 +00002356// FIXME: Disable this pattern on Darwin to workaround an assembler bug.
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002357def : T2Pat<(or rGPR:$src, t2_so_imm_not:$imm),
2358 (t2ORNri rGPR:$src, t2_so_imm_not:$imm)>,
Evan Chengea253b92009-08-12 01:56:42 +00002359 Requires<[IsThumb2]>;
Evan Cheng36a0aeb2009-07-06 22:23:46 +00002360
2361def : T2Pat<(t2_so_imm_not:$src),
2362 (t2MVNi t2_so_imm_not:$src)>;
2363
Evan Chengf49810c2009-06-23 17:48:47 +00002364//===----------------------------------------------------------------------===//
2365// Multiply Instructions.
2366//
Evan Cheng8de898a2009-06-26 00:19:44 +00002367let isCommutable = 1 in
Owen Anderson35141a92010-11-18 01:08:42 +00002368def t2MUL: T2ThreeReg<(outs rGPR:$Rd), (ins rGPR:$Rn, rGPR:$Rm), IIC_iMUL32,
2369 "mul", "\t$Rd, $Rn, $Rm",
2370 [(set rGPR:$Rd, (mul rGPR:$Rn, rGPR:$Rm))]> {
Johnny Chend68e1192009-12-15 17:24:14 +00002371 let Inst{31-27} = 0b11111;
2372 let Inst{26-23} = 0b0110;
2373 let Inst{22-20} = 0b000;
2374 let Inst{15-12} = 0b1111; // Ra = 0b1111 (no accumulate)
2375 let Inst{7-4} = 0b0000; // Multiply
2376}
Evan Chengf49810c2009-06-23 17:48:47 +00002377
Owen Anderson35141a92010-11-18 01:08:42 +00002378def t2MLA: T2FourReg<
2379 (outs rGPR:$Rd), (ins rGPR:$Rn, rGPR:$Rm, rGPR:$Ra), IIC_iMAC32,
2380 "mla", "\t$Rd, $Rn, $Rm, $Ra",
2381 [(set rGPR:$Rd, (add (mul rGPR:$Rn, rGPR:$Rm), rGPR:$Ra))]> {
Johnny Chend68e1192009-12-15 17:24:14 +00002382 let Inst{31-27} = 0b11111;
2383 let Inst{26-23} = 0b0110;
2384 let Inst{22-20} = 0b000;
Johnny Chend68e1192009-12-15 17:24:14 +00002385 let Inst{7-4} = 0b0000; // Multiply
2386}
Evan Chengf49810c2009-06-23 17:48:47 +00002387
Owen Anderson35141a92010-11-18 01:08:42 +00002388def t2MLS: T2FourReg<
2389 (outs rGPR:$Rd), (ins rGPR:$Rn, rGPR:$Rm, rGPR:$Ra), IIC_iMAC32,
2390 "mls", "\t$Rd, $Rn, $Rm, $Ra",
2391 [(set rGPR:$Rd, (sub rGPR:$Ra, (mul rGPR:$Rn, rGPR:$Rm)))]> {
Johnny Chend68e1192009-12-15 17:24:14 +00002392 let Inst{31-27} = 0b11111;
2393 let Inst{26-23} = 0b0110;
2394 let Inst{22-20} = 0b000;
Johnny Chend68e1192009-12-15 17:24:14 +00002395 let Inst{7-4} = 0b0001; // Multiply and Subtract
2396}
Evan Chengf49810c2009-06-23 17:48:47 +00002397
Evan Cheng5b9fcd12009-07-07 01:17:28 +00002398// Extra precision multiplies with low / high results
2399let neverHasSideEffects = 1 in {
2400let isCommutable = 1 in {
Jim Grosbach7c6d85a2010-12-08 22:38:41 +00002401def t2SMULL : T2MulLong<0b000, 0b0000,
Owen Anderson796c3652011-08-22 23:16:48 +00002402 (outs rGPR:$RdLo, rGPR:$RdHi),
Owen Anderson35141a92010-11-18 01:08:42 +00002403 (ins rGPR:$Rn, rGPR:$Rm), IIC_iMUL64,
Owen Anderson796c3652011-08-22 23:16:48 +00002404 "smull", "\t$RdLo, $RdHi, $Rn, $Rm", []>;
Evan Cheng5b9fcd12009-07-07 01:17:28 +00002405
Jim Grosbach7c6d85a2010-12-08 22:38:41 +00002406def t2UMULL : T2MulLong<0b010, 0b0000,
Jim Grosbach52082042010-12-08 22:29:28 +00002407 (outs rGPR:$RdLo, rGPR:$RdHi),
Owen Anderson35141a92010-11-18 01:08:42 +00002408 (ins rGPR:$Rn, rGPR:$Rm), IIC_iMUL64,
Jim Grosbach7c6d85a2010-12-08 22:38:41 +00002409 "umull", "\t$RdLo, $RdHi, $Rn, $Rm", []>;
Johnny Chend68e1192009-12-15 17:24:14 +00002410} // isCommutable
Evan Cheng5b9fcd12009-07-07 01:17:28 +00002411
2412// Multiply + accumulate
Arnold Schwaighofera7016d62012-08-12 05:11:56 +00002413def t2SMLAL : T2MulLong<0b100, 0b0000,
2414 (outs rGPR:$RdLo, rGPR:$RdHi),
Owen Anderson35141a92010-11-18 01:08:42 +00002415 (ins rGPR:$Rn, rGPR:$Rm), IIC_iMAC64,
Arnold Schwaighofera7016d62012-08-12 05:11:56 +00002416 "smlal", "\t$RdLo, $RdHi, $Rn, $Rm", []>;
Evan Cheng5b9fcd12009-07-07 01:17:28 +00002417
Arnold Schwaighofera7016d62012-08-12 05:11:56 +00002418def t2UMLAL : T2MulLong<0b110, 0b0000,
2419 (outs rGPR:$RdLo, rGPR:$RdHi),
Owen Anderson35141a92010-11-18 01:08:42 +00002420 (ins rGPR:$Rn, rGPR:$Rm), IIC_iMAC64,
Arnold Schwaighofera7016d62012-08-12 05:11:56 +00002421 "umlal", "\t$RdLo, $RdHi, $Rn, $Rm", []>;
Evan Cheng5b9fcd12009-07-07 01:17:28 +00002422
Jim Grosbach7c6d85a2010-12-08 22:38:41 +00002423def t2UMAAL : T2MulLong<0b110, 0b0110,
2424 (outs rGPR:$RdLo, rGPR:$RdHi),
Owen Anderson35141a92010-11-18 01:08:42 +00002425 (ins rGPR:$Rn, rGPR:$Rm), IIC_iMAC64,
Jim Grosbacha7603982011-07-01 21:12:19 +00002426 "umaal", "\t$RdLo, $RdHi, $Rn, $Rm", []>,
2427 Requires<[IsThumb2, HasThumb2DSP]>;
Evan Cheng5b9fcd12009-07-07 01:17:28 +00002428} // neverHasSideEffects
2429
Johnny Chen93042d12010-03-02 18:14:57 +00002430// Rounding variants of the below included for disassembly only
2431
Evan Cheng5b9fcd12009-07-07 01:17:28 +00002432// Most significant word multiply
Owen Anderson821752e2010-11-18 20:32:18 +00002433def t2SMMUL : T2ThreeReg<(outs rGPR:$Rd), (ins rGPR:$Rn, rGPR:$Rm), IIC_iMUL32,
2434 "smmul", "\t$Rd, $Rn, $Rm",
Jim Grosbacha7603982011-07-01 21:12:19 +00002435 [(set rGPR:$Rd, (mulhs rGPR:$Rn, rGPR:$Rm))]>,
2436 Requires<[IsThumb2, HasThumb2DSP]> {
Johnny Chend68e1192009-12-15 17:24:14 +00002437 let Inst{31-27} = 0b11111;
2438 let Inst{26-23} = 0b0110;
2439 let Inst{22-20} = 0b101;
2440 let Inst{15-12} = 0b1111; // Ra = 0b1111 (no accumulate)
2441 let Inst{7-4} = 0b0000; // No Rounding (Inst{4} = 0)
2442}
Evan Cheng5b9fcd12009-07-07 01:17:28 +00002443
Owen Anderson821752e2010-11-18 20:32:18 +00002444def t2SMMULR : T2ThreeReg<(outs rGPR:$Rd), (ins rGPR:$Rn, rGPR:$Rm), IIC_iMUL32,
Jim Grosbacha7603982011-07-01 21:12:19 +00002445 "smmulr", "\t$Rd, $Rn, $Rm", []>,
2446 Requires<[IsThumb2, HasThumb2DSP]> {
Johnny Chen93042d12010-03-02 18:14:57 +00002447 let Inst{31-27} = 0b11111;
2448 let Inst{26-23} = 0b0110;
2449 let Inst{22-20} = 0b101;
2450 let Inst{15-12} = 0b1111; // Ra = 0b1111 (no accumulate)
2451 let Inst{7-4} = 0b0001; // Rounding (Inst{4} = 1)
2452}
2453
Owen Anderson821752e2010-11-18 20:32:18 +00002454def t2SMMLA : T2FourReg<
2455 (outs rGPR:$Rd), (ins rGPR:$Rn, rGPR:$Rm, rGPR:$Ra), IIC_iMAC32,
2456 "smmla", "\t$Rd, $Rn, $Rm, $Ra",
Jim Grosbacha7603982011-07-01 21:12:19 +00002457 [(set rGPR:$Rd, (add (mulhs rGPR:$Rm, rGPR:$Rn), rGPR:$Ra))]>,
2458 Requires<[IsThumb2, HasThumb2DSP]> {
Johnny Chend68e1192009-12-15 17:24:14 +00002459 let Inst{31-27} = 0b11111;
2460 let Inst{26-23} = 0b0110;
2461 let Inst{22-20} = 0b101;
Johnny Chend68e1192009-12-15 17:24:14 +00002462 let Inst{7-4} = 0b0000; // No Rounding (Inst{4} = 0)
2463}
Evan Cheng5b9fcd12009-07-07 01:17:28 +00002464
Owen Anderson821752e2010-11-18 20:32:18 +00002465def t2SMMLAR: T2FourReg<
2466 (outs rGPR:$Rd), (ins rGPR:$Rn, rGPR:$Rm, rGPR:$Ra), IIC_iMAC32,
Jim Grosbacha7603982011-07-01 21:12:19 +00002467 "smmlar", "\t$Rd, $Rn, $Rm, $Ra", []>,
2468 Requires<[IsThumb2, HasThumb2DSP]> {
Johnny Chen93042d12010-03-02 18:14:57 +00002469 let Inst{31-27} = 0b11111;
2470 let Inst{26-23} = 0b0110;
2471 let Inst{22-20} = 0b101;
Johnny Chen93042d12010-03-02 18:14:57 +00002472 let Inst{7-4} = 0b0001; // Rounding (Inst{4} = 1)
2473}
Evan Cheng5b9fcd12009-07-07 01:17:28 +00002474
Owen Anderson821752e2010-11-18 20:32:18 +00002475def t2SMMLS: T2FourReg<
2476 (outs rGPR:$Rd), (ins rGPR:$Rn, rGPR:$Rm, rGPR:$Ra), IIC_iMAC32,
2477 "smmls", "\t$Rd, $Rn, $Rm, $Ra",
Jim Grosbacha7603982011-07-01 21:12:19 +00002478 [(set rGPR:$Rd, (sub rGPR:$Ra, (mulhs rGPR:$Rn, rGPR:$Rm)))]>,
2479 Requires<[IsThumb2, HasThumb2DSP]> {
Johnny Chend68e1192009-12-15 17:24:14 +00002480 let Inst{31-27} = 0b11111;
2481 let Inst{26-23} = 0b0110;
2482 let Inst{22-20} = 0b110;
Johnny Chend68e1192009-12-15 17:24:14 +00002483 let Inst{7-4} = 0b0000; // No Rounding (Inst{4} = 0)
2484}
Evan Cheng5b9fcd12009-07-07 01:17:28 +00002485
Owen Anderson821752e2010-11-18 20:32:18 +00002486def t2SMMLSR:T2FourReg<
2487 (outs rGPR:$Rd), (ins rGPR:$Rn, rGPR:$Rm, rGPR:$Ra), IIC_iMAC32,
Jim Grosbacha7603982011-07-01 21:12:19 +00002488 "smmlsr", "\t$Rd, $Rn, $Rm, $Ra", []>,
2489 Requires<[IsThumb2, HasThumb2DSP]> {
Johnny Chen93042d12010-03-02 18:14:57 +00002490 let Inst{31-27} = 0b11111;
2491 let Inst{26-23} = 0b0110;
2492 let Inst{22-20} = 0b110;
Johnny Chen93042d12010-03-02 18:14:57 +00002493 let Inst{7-4} = 0b0001; // Rounding (Inst{4} = 1)
2494}
2495
Evan Cheng5b9fcd12009-07-07 01:17:28 +00002496multiclass T2I_smul<string opc, PatFrag opnode> {
Owen Anderson821752e2010-11-18 20:32:18 +00002497 def BB : T2ThreeReg<(outs rGPR:$Rd), (ins rGPR:$Rn, rGPR:$Rm), IIC_iMUL16,
2498 !strconcat(opc, "bb"), "\t$Rd, $Rn, $Rm",
2499 [(set rGPR:$Rd, (opnode (sext_inreg rGPR:$Rn, i16),
Jim Grosbacha7603982011-07-01 21:12:19 +00002500 (sext_inreg rGPR:$Rm, i16)))]>,
2501 Requires<[IsThumb2, HasThumb2DSP]> {
Johnny Chend68e1192009-12-15 17:24:14 +00002502 let Inst{31-27} = 0b11111;
2503 let Inst{26-23} = 0b0110;
2504 let Inst{22-20} = 0b001;
2505 let Inst{15-12} = 0b1111; // Ra = 0b1111 (no accumulate)
2506 let Inst{7-6} = 0b00;
2507 let Inst{5-4} = 0b00;
2508 }
Evan Cheng5b9fcd12009-07-07 01:17:28 +00002509
Owen Anderson821752e2010-11-18 20:32:18 +00002510 def BT : T2ThreeReg<(outs rGPR:$Rd), (ins rGPR:$Rn, rGPR:$Rm), IIC_iMUL16,
2511 !strconcat(opc, "bt"), "\t$Rd, $Rn, $Rm",
2512 [(set rGPR:$Rd, (opnode (sext_inreg rGPR:$Rn, i16),
Jim Grosbacha7603982011-07-01 21:12:19 +00002513 (sra rGPR:$Rm, (i32 16))))]>,
2514 Requires<[IsThumb2, HasThumb2DSP]> {
Johnny Chend68e1192009-12-15 17:24:14 +00002515 let Inst{31-27} = 0b11111;
2516 let Inst{26-23} = 0b0110;
2517 let Inst{22-20} = 0b001;
2518 let Inst{15-12} = 0b1111; // Ra = 0b1111 (no accumulate)
2519 let Inst{7-6} = 0b00;
2520 let Inst{5-4} = 0b01;
2521 }
Evan Cheng5b9fcd12009-07-07 01:17:28 +00002522
Owen Anderson821752e2010-11-18 20:32:18 +00002523 def TB : T2ThreeReg<(outs rGPR:$Rd), (ins rGPR:$Rn, rGPR:$Rm), IIC_iMUL16,
2524 !strconcat(opc, "tb"), "\t$Rd, $Rn, $Rm",
2525 [(set rGPR:$Rd, (opnode (sra rGPR:$Rn, (i32 16)),
Jim Grosbacha7603982011-07-01 21:12:19 +00002526 (sext_inreg rGPR:$Rm, i16)))]>,
2527 Requires<[IsThumb2, HasThumb2DSP]> {
Johnny Chend68e1192009-12-15 17:24:14 +00002528 let Inst{31-27} = 0b11111;
2529 let Inst{26-23} = 0b0110;
2530 let Inst{22-20} = 0b001;
2531 let Inst{15-12} = 0b1111; // Ra = 0b1111 (no accumulate)
2532 let Inst{7-6} = 0b00;
2533 let Inst{5-4} = 0b10;
2534 }
Evan Cheng5b9fcd12009-07-07 01:17:28 +00002535
Owen Anderson821752e2010-11-18 20:32:18 +00002536 def TT : T2ThreeReg<(outs rGPR:$Rd), (ins rGPR:$Rn, rGPR:$Rm), IIC_iMUL16,
2537 !strconcat(opc, "tt"), "\t$Rd, $Rn, $Rm",
2538 [(set rGPR:$Rd, (opnode (sra rGPR:$Rn, (i32 16)),
Jim Grosbacha7603982011-07-01 21:12:19 +00002539 (sra rGPR:$Rm, (i32 16))))]>,
2540 Requires<[IsThumb2, HasThumb2DSP]> {
Johnny Chend68e1192009-12-15 17:24:14 +00002541 let Inst{31-27} = 0b11111;
2542 let Inst{26-23} = 0b0110;
2543 let Inst{22-20} = 0b001;
2544 let Inst{15-12} = 0b1111; // Ra = 0b1111 (no accumulate)
2545 let Inst{7-6} = 0b00;
2546 let Inst{5-4} = 0b11;
2547 }
Evan Cheng5b9fcd12009-07-07 01:17:28 +00002548
Owen Anderson821752e2010-11-18 20:32:18 +00002549 def WB : T2ThreeReg<(outs rGPR:$Rd), (ins rGPR:$Rn, rGPR:$Rm), IIC_iMUL16,
2550 !strconcat(opc, "wb"), "\t$Rd, $Rn, $Rm",
2551 [(set rGPR:$Rd, (sra (opnode rGPR:$Rn,
Jim Grosbacha7603982011-07-01 21:12:19 +00002552 (sext_inreg rGPR:$Rm, i16)), (i32 16)))]>,
2553 Requires<[IsThumb2, HasThumb2DSP]> {
Johnny Chend68e1192009-12-15 17:24:14 +00002554 let Inst{31-27} = 0b11111;
2555 let Inst{26-23} = 0b0110;
2556 let Inst{22-20} = 0b011;
2557 let Inst{15-12} = 0b1111; // Ra = 0b1111 (no accumulate)
2558 let Inst{7-6} = 0b00;
2559 let Inst{5-4} = 0b00;
2560 }
Evan Cheng5b9fcd12009-07-07 01:17:28 +00002561
Owen Anderson821752e2010-11-18 20:32:18 +00002562 def WT : T2ThreeReg<(outs rGPR:$Rd), (ins rGPR:$Rn, rGPR:$Rm), IIC_iMUL16,
2563 !strconcat(opc, "wt"), "\t$Rd, $Rn, $Rm",
2564 [(set rGPR:$Rd, (sra (opnode rGPR:$Rn,
Jim Grosbacha7603982011-07-01 21:12:19 +00002565 (sra rGPR:$Rm, (i32 16))), (i32 16)))]>,
2566 Requires<[IsThumb2, HasThumb2DSP]> {
Johnny Chend68e1192009-12-15 17:24:14 +00002567 let Inst{31-27} = 0b11111;
2568 let Inst{26-23} = 0b0110;
2569 let Inst{22-20} = 0b011;
2570 let Inst{15-12} = 0b1111; // Ra = 0b1111 (no accumulate)
2571 let Inst{7-6} = 0b00;
2572 let Inst{5-4} = 0b01;
2573 }
Evan Cheng5b9fcd12009-07-07 01:17:28 +00002574}
2575
2576
2577multiclass T2I_smla<string opc, PatFrag opnode> {
Owen Anderson821752e2010-11-18 20:32:18 +00002578 def BB : T2FourReg<
2579 (outs rGPR:$Rd), (ins rGPR:$Rn, rGPR:$Rm, rGPR:$Ra), IIC_iMAC16,
2580 !strconcat(opc, "bb"), "\t$Rd, $Rn, $Rm, $Ra",
2581 [(set rGPR:$Rd, (add rGPR:$Ra,
2582 (opnode (sext_inreg rGPR:$Rn, i16),
Jim Grosbacha7603982011-07-01 21:12:19 +00002583 (sext_inreg rGPR:$Rm, i16))))]>,
2584 Requires<[IsThumb2, HasThumb2DSP]> {
Johnny Chend68e1192009-12-15 17:24:14 +00002585 let Inst{31-27} = 0b11111;
2586 let Inst{26-23} = 0b0110;
2587 let Inst{22-20} = 0b001;
Johnny Chend68e1192009-12-15 17:24:14 +00002588 let Inst{7-6} = 0b00;
2589 let Inst{5-4} = 0b00;
2590 }
Evan Cheng5b9fcd12009-07-07 01:17:28 +00002591
Owen Anderson821752e2010-11-18 20:32:18 +00002592 def BT : T2FourReg<
2593 (outs rGPR:$Rd), (ins rGPR:$Rn, rGPR:$Rm, rGPR:$Ra), IIC_iMAC16,
2594 !strconcat(opc, "bt"), "\t$Rd, $Rn, $Rm, $Ra",
2595 [(set rGPR:$Rd, (add rGPR:$Ra, (opnode (sext_inreg rGPR:$Rn, i16),
Jim Grosbacha7603982011-07-01 21:12:19 +00002596 (sra rGPR:$Rm, (i32 16)))))]>,
2597 Requires<[IsThumb2, HasThumb2DSP]> {
Johnny Chend68e1192009-12-15 17:24:14 +00002598 let Inst{31-27} = 0b11111;
2599 let Inst{26-23} = 0b0110;
2600 let Inst{22-20} = 0b001;
Johnny Chend68e1192009-12-15 17:24:14 +00002601 let Inst{7-6} = 0b00;
2602 let Inst{5-4} = 0b01;
2603 }
Evan Cheng5b9fcd12009-07-07 01:17:28 +00002604
Owen Anderson821752e2010-11-18 20:32:18 +00002605 def TB : T2FourReg<
2606 (outs rGPR:$Rd), (ins rGPR:$Rn, rGPR:$Rm, rGPR:$Ra), IIC_iMAC16,
2607 !strconcat(opc, "tb"), "\t$Rd, $Rn, $Rm, $Ra",
2608 [(set rGPR:$Rd, (add rGPR:$Ra, (opnode (sra rGPR:$Rn, (i32 16)),
Jim Grosbacha7603982011-07-01 21:12:19 +00002609 (sext_inreg rGPR:$Rm, i16))))]>,
2610 Requires<[IsThumb2, HasThumb2DSP]> {
Johnny Chend68e1192009-12-15 17:24:14 +00002611 let Inst{31-27} = 0b11111;
2612 let Inst{26-23} = 0b0110;
2613 let Inst{22-20} = 0b001;
Johnny Chend68e1192009-12-15 17:24:14 +00002614 let Inst{7-6} = 0b00;
2615 let Inst{5-4} = 0b10;
2616 }
Evan Cheng5b9fcd12009-07-07 01:17:28 +00002617
Owen Anderson821752e2010-11-18 20:32:18 +00002618 def TT : T2FourReg<
2619 (outs rGPR:$Rd), (ins rGPR:$Rn, rGPR:$Rm, rGPR:$Ra), IIC_iMAC16,
2620 !strconcat(opc, "tt"), "\t$Rd, $Rn, $Rm, $Ra",
2621 [(set rGPR:$Rd, (add rGPR:$Ra, (opnode (sra rGPR:$Rn, (i32 16)),
Jim Grosbacha7603982011-07-01 21:12:19 +00002622 (sra rGPR:$Rm, (i32 16)))))]>,
2623 Requires<[IsThumb2, HasThumb2DSP]> {
Johnny Chend68e1192009-12-15 17:24:14 +00002624 let Inst{31-27} = 0b11111;
2625 let Inst{26-23} = 0b0110;
2626 let Inst{22-20} = 0b001;
Johnny Chend68e1192009-12-15 17:24:14 +00002627 let Inst{7-6} = 0b00;
2628 let Inst{5-4} = 0b11;
2629 }
Evan Cheng5b9fcd12009-07-07 01:17:28 +00002630
Owen Anderson821752e2010-11-18 20:32:18 +00002631 def WB : T2FourReg<
2632 (outs rGPR:$Rd), (ins rGPR:$Rn, rGPR:$Rm, rGPR:$Ra), IIC_iMAC16,
2633 !strconcat(opc, "wb"), "\t$Rd, $Rn, $Rm, $Ra",
2634 [(set rGPR:$Rd, (add rGPR:$Ra, (sra (opnode rGPR:$Rn,
Jim Grosbacha7603982011-07-01 21:12:19 +00002635 (sext_inreg rGPR:$Rm, i16)), (i32 16))))]>,
2636 Requires<[IsThumb2, HasThumb2DSP]> {
Johnny Chend68e1192009-12-15 17:24:14 +00002637 let Inst{31-27} = 0b11111;
2638 let Inst{26-23} = 0b0110;
2639 let Inst{22-20} = 0b011;
Johnny Chend68e1192009-12-15 17:24:14 +00002640 let Inst{7-6} = 0b00;
2641 let Inst{5-4} = 0b00;
2642 }
Evan Cheng5b9fcd12009-07-07 01:17:28 +00002643
Owen Anderson821752e2010-11-18 20:32:18 +00002644 def WT : T2FourReg<
2645 (outs rGPR:$Rd), (ins rGPR:$Rn, rGPR:$Rm, rGPR:$Ra), IIC_iMAC16,
2646 !strconcat(opc, "wt"), "\t$Rd, $Rn, $Rm, $Ra",
2647 [(set rGPR:$Rd, (add rGPR:$Ra, (sra (opnode rGPR:$Rn,
Jim Grosbacha7603982011-07-01 21:12:19 +00002648 (sra rGPR:$Rm, (i32 16))), (i32 16))))]>,
2649 Requires<[IsThumb2, HasThumb2DSP]> {
Johnny Chend68e1192009-12-15 17:24:14 +00002650 let Inst{31-27} = 0b11111;
2651 let Inst{26-23} = 0b0110;
2652 let Inst{22-20} = 0b011;
Johnny Chend68e1192009-12-15 17:24:14 +00002653 let Inst{7-6} = 0b00;
2654 let Inst{5-4} = 0b01;
2655 }
Evan Cheng5b9fcd12009-07-07 01:17:28 +00002656}
2657
2658defm t2SMUL : T2I_smul<"smul", BinOpFrag<(mul node:$LHS, node:$RHS)>>;
2659defm t2SMLA : T2I_smla<"smla", BinOpFrag<(mul node:$LHS, node:$RHS)>>;
2660
Jim Grosbacheeca7582011-09-15 23:45:50 +00002661// Halfword multiple accumulate long: SMLAL<x><y>
Owen Anderson821752e2010-11-18 20:32:18 +00002662def t2SMLALBB : T2FourReg_mac<1, 0b100, 0b1000, (outs rGPR:$Ra,rGPR:$Rd),
2663 (ins rGPR:$Rn,rGPR:$Rm), IIC_iMAC64, "smlalbb", "\t$Ra, $Rd, $Rn, $Rm",
Jim Grosbacha7603982011-07-01 21:12:19 +00002664 [/* For disassembly only; pattern left blank */]>,
2665 Requires<[IsThumb2, HasThumb2DSP]>;
Owen Anderson821752e2010-11-18 20:32:18 +00002666def t2SMLALBT : T2FourReg_mac<1, 0b100, 0b1001, (outs rGPR:$Ra,rGPR:$Rd),
2667 (ins rGPR:$Rn,rGPR:$Rm), IIC_iMAC64, "smlalbt", "\t$Ra, $Rd, $Rn, $Rm",
Jim Grosbacha7603982011-07-01 21:12:19 +00002668 [/* For disassembly only; pattern left blank */]>,
2669 Requires<[IsThumb2, HasThumb2DSP]>;
Owen Anderson821752e2010-11-18 20:32:18 +00002670def t2SMLALTB : T2FourReg_mac<1, 0b100, 0b1010, (outs rGPR:$Ra,rGPR:$Rd),
2671 (ins rGPR:$Rn,rGPR:$Rm), IIC_iMAC64, "smlaltb", "\t$Ra, $Rd, $Rn, $Rm",
Jim Grosbacha7603982011-07-01 21:12:19 +00002672 [/* For disassembly only; pattern left blank */]>,
2673 Requires<[IsThumb2, HasThumb2DSP]>;
Owen Anderson821752e2010-11-18 20:32:18 +00002674def t2SMLALTT : T2FourReg_mac<1, 0b100, 0b1011, (outs rGPR:$Ra,rGPR:$Rd),
2675 (ins rGPR:$Rn,rGPR:$Rm), IIC_iMAC64, "smlaltt", "\t$Ra, $Rd, $Rn, $Rm",
Jim Grosbacha7603982011-07-01 21:12:19 +00002676 [/* For disassembly only; pattern left blank */]>,
2677 Requires<[IsThumb2, HasThumb2DSP]>;
Evan Cheng5b9fcd12009-07-07 01:17:28 +00002678
Johnny Chenadc77332010-02-26 22:04:29 +00002679// Dual halfword multiple: SMUAD, SMUSD, SMLAD, SMLSD, SMLALD, SMLSLD
Owen Anderson821752e2010-11-18 20:32:18 +00002680def t2SMUAD: T2ThreeReg_mac<
2681 0, 0b010, 0b0000, (outs rGPR:$Rd), (ins rGPR:$Rn, rGPR:$Rm),
Jim Grosbacha7603982011-07-01 21:12:19 +00002682 IIC_iMAC32, "smuad", "\t$Rd, $Rn, $Rm", []>,
2683 Requires<[IsThumb2, HasThumb2DSP]> {
Johnny Chenadc77332010-02-26 22:04:29 +00002684 let Inst{15-12} = 0b1111;
2685}
Owen Anderson821752e2010-11-18 20:32:18 +00002686def t2SMUADX:T2ThreeReg_mac<
2687 0, 0b010, 0b0001, (outs rGPR:$Rd), (ins rGPR:$Rn, rGPR:$Rm),
Jim Grosbacha7603982011-07-01 21:12:19 +00002688 IIC_iMAC32, "smuadx", "\t$Rd, $Rn, $Rm", []>,
2689 Requires<[IsThumb2, HasThumb2DSP]> {
Johnny Chenadc77332010-02-26 22:04:29 +00002690 let Inst{15-12} = 0b1111;
2691}
Owen Anderson821752e2010-11-18 20:32:18 +00002692def t2SMUSD: T2ThreeReg_mac<
2693 0, 0b100, 0b0000, (outs rGPR:$Rd), (ins rGPR:$Rn, rGPR:$Rm),
Jim Grosbacha7603982011-07-01 21:12:19 +00002694 IIC_iMAC32, "smusd", "\t$Rd, $Rn, $Rm", []>,
2695 Requires<[IsThumb2, HasThumb2DSP]> {
Johnny Chenadc77332010-02-26 22:04:29 +00002696 let Inst{15-12} = 0b1111;
2697}
Owen Anderson821752e2010-11-18 20:32:18 +00002698def t2SMUSDX:T2ThreeReg_mac<
2699 0, 0b100, 0b0001, (outs rGPR:$Rd), (ins rGPR:$Rn, rGPR:$Rm),
Jim Grosbacha7603982011-07-01 21:12:19 +00002700 IIC_iMAC32, "smusdx", "\t$Rd, $Rn, $Rm", []>,
2701 Requires<[IsThumb2, HasThumb2DSP]> {
Johnny Chenadc77332010-02-26 22:04:29 +00002702 let Inst{15-12} = 0b1111;
2703}
Owen Andersonc6788c82011-08-22 23:31:45 +00002704def t2SMLAD : T2FourReg_mac<
Owen Anderson821752e2010-11-18 20:32:18 +00002705 0, 0b010, 0b0000, (outs rGPR:$Rd),
2706 (ins rGPR:$Rn, rGPR:$Rm, rGPR:$Ra), IIC_iMAC32, "smlad",
Jim Grosbacha7603982011-07-01 21:12:19 +00002707 "\t$Rd, $Rn, $Rm, $Ra", []>,
2708 Requires<[IsThumb2, HasThumb2DSP]>;
Owen Anderson821752e2010-11-18 20:32:18 +00002709def t2SMLADX : T2FourReg_mac<
2710 0, 0b010, 0b0001, (outs rGPR:$Rd),
2711 (ins rGPR:$Rn, rGPR:$Rm, rGPR:$Ra), IIC_iMAC32, "smladx",
Jim Grosbacha7603982011-07-01 21:12:19 +00002712 "\t$Rd, $Rn, $Rm, $Ra", []>,
2713 Requires<[IsThumb2, HasThumb2DSP]>;
Owen Anderson821752e2010-11-18 20:32:18 +00002714def t2SMLSD : T2FourReg_mac<0, 0b100, 0b0000, (outs rGPR:$Rd),
2715 (ins rGPR:$Rn, rGPR:$Rm, rGPR:$Ra), IIC_iMAC32, "smlsd",
Jim Grosbacha7603982011-07-01 21:12:19 +00002716 "\t$Rd, $Rn, $Rm, $Ra", []>,
2717 Requires<[IsThumb2, HasThumb2DSP]>;
Owen Anderson821752e2010-11-18 20:32:18 +00002718def t2SMLSDX : T2FourReg_mac<0, 0b100, 0b0001, (outs rGPR:$Rd),
2719 (ins rGPR:$Rn, rGPR:$Rm, rGPR:$Ra), IIC_iMAC32, "smlsdx",
Jim Grosbacha7603982011-07-01 21:12:19 +00002720 "\t$Rd, $Rn, $Rm, $Ra", []>,
2721 Requires<[IsThumb2, HasThumb2DSP]>;
Owen Anderson821752e2010-11-18 20:32:18 +00002722def t2SMLALD : T2FourReg_mac<1, 0b100, 0b1100, (outs rGPR:$Ra,rGPR:$Rd),
Jim Grosbach231948f2011-09-16 16:58:03 +00002723 (ins rGPR:$Rn, rGPR:$Rm), IIC_iMAC64, "smlald",
2724 "\t$Ra, $Rd, $Rn, $Rm", []>,
Jim Grosbacha7603982011-07-01 21:12:19 +00002725 Requires<[IsThumb2, HasThumb2DSP]>;
Owen Anderson821752e2010-11-18 20:32:18 +00002726def t2SMLALDX : T2FourReg_mac<1, 0b100, 0b1101, (outs rGPR:$Ra,rGPR:$Rd),
Jim Grosbach231948f2011-09-16 16:58:03 +00002727 (ins rGPR:$Rn,rGPR:$Rm), IIC_iMAC64, "smlaldx",
2728 "\t$Ra, $Rd, $Rn, $Rm", []>,
Jim Grosbacha7603982011-07-01 21:12:19 +00002729 Requires<[IsThumb2, HasThumb2DSP]>;
Owen Anderson821752e2010-11-18 20:32:18 +00002730def t2SMLSLD : T2FourReg_mac<1, 0b101, 0b1100, (outs rGPR:$Ra,rGPR:$Rd),
Jim Grosbach7ff24722011-09-16 17:10:44 +00002731 (ins rGPR:$Rn,rGPR:$Rm), IIC_iMAC64, "smlsld",
2732 "\t$Ra, $Rd, $Rn, $Rm", []>,
Jim Grosbacha7603982011-07-01 21:12:19 +00002733 Requires<[IsThumb2, HasThumb2DSP]>;
Owen Anderson821752e2010-11-18 20:32:18 +00002734def t2SMLSLDX : T2FourReg_mac<1, 0b101, 0b1101, (outs rGPR:$Ra,rGPR:$Rd),
2735 (ins rGPR:$Rm,rGPR:$Rn), IIC_iMAC64, "smlsldx",
Jim Grosbach7ff24722011-09-16 17:10:44 +00002736 "\t$Ra, $Rd, $Rn, $Rm", []>,
Jim Grosbacha7603982011-07-01 21:12:19 +00002737 Requires<[IsThumb2, HasThumb2DSP]>;
Evan Chengf49810c2009-06-23 17:48:47 +00002738
2739//===----------------------------------------------------------------------===//
Evan Cheng734f63b2011-06-21 19:00:54 +00002740// Division Instructions.
2741// Signed and unsigned division on v7-M
2742//
2743def t2SDIV : T2ThreeReg<(outs rGPR:$Rd), (ins rGPR:$Rn, rGPR:$Rm), IIC_iALUi,
2744 "sdiv", "\t$Rd, $Rn, $Rm",
2745 [(set rGPR:$Rd, (sdiv rGPR:$Rn, rGPR:$Rm))]>,
2746 Requires<[HasDivide, IsThumb2]> {
2747 let Inst{31-27} = 0b11111;
2748 let Inst{26-21} = 0b011100;
2749 let Inst{20} = 0b1;
2750 let Inst{15-12} = 0b1111;
2751 let Inst{7-4} = 0b1111;
2752}
2753
2754def t2UDIV : T2ThreeReg<(outs rGPR:$Rd), (ins rGPR:$Rn, rGPR:$Rm), IIC_iALUi,
2755 "udiv", "\t$Rd, $Rn, $Rm",
2756 [(set rGPR:$Rd, (udiv rGPR:$Rn, rGPR:$Rm))]>,
2757 Requires<[HasDivide, IsThumb2]> {
2758 let Inst{31-27} = 0b11111;
2759 let Inst{26-21} = 0b011101;
2760 let Inst{20} = 0b1;
2761 let Inst{15-12} = 0b1111;
2762 let Inst{7-4} = 0b1111;
2763}
2764
2765//===----------------------------------------------------------------------===//
Evan Chengf49810c2009-06-23 17:48:47 +00002766// Misc. Arithmetic Instructions.
2767//
2768
Jim Grosbach80dc1162010-02-16 21:23:02 +00002769class T2I_misc<bits<2> op1, bits<2> op2, dag oops, dag iops,
2770 InstrItinClass itin, string opc, string asm, list<dag> pattern>
Owen Anderson612fb5b2010-11-18 21:15:19 +00002771 : T2ThreeReg<oops, iops, itin, opc, asm, pattern> {
Johnny Chend68e1192009-12-15 17:24:14 +00002772 let Inst{31-27} = 0b11111;
2773 let Inst{26-22} = 0b01010;
2774 let Inst{21-20} = op1;
2775 let Inst{15-12} = 0b1111;
2776 let Inst{7-6} = 0b10;
2777 let Inst{5-4} = op2;
Jim Grosbach86386922010-12-08 22:10:43 +00002778 let Rn{3-0} = Rm;
Johnny Chend68e1192009-12-15 17:24:14 +00002779}
Evan Chengf49810c2009-06-23 17:48:47 +00002780
Owen Anderson612fb5b2010-11-18 21:15:19 +00002781def t2CLZ : T2I_misc<0b11, 0b00, (outs rGPR:$Rd), (ins rGPR:$Rm), IIC_iUNAr,
2782 "clz", "\t$Rd, $Rm", [(set rGPR:$Rd, (ctlz rGPR:$Rm))]>;
Evan Chengf49810c2009-06-23 17:48:47 +00002783
Owen Anderson612fb5b2010-11-18 21:15:19 +00002784def t2RBIT : T2I_misc<0b01, 0b10, (outs rGPR:$Rd), (ins rGPR:$Rm), IIC_iUNAr,
2785 "rbit", "\t$Rd, $Rm",
2786 [(set rGPR:$Rd, (ARMrbit rGPR:$Rm))]>;
Jim Grosbach3482c802010-01-18 19:58:49 +00002787
Owen Anderson612fb5b2010-11-18 21:15:19 +00002788def t2REV : T2I_misc<0b01, 0b00, (outs rGPR:$Rd), (ins rGPR:$Rm), IIC_iUNAr,
2789 "rev", ".w\t$Rd, $Rm", [(set rGPR:$Rd, (bswap rGPR:$Rm))]>;
Johnny Chend68e1192009-12-15 17:24:14 +00002790
Owen Anderson612fb5b2010-11-18 21:15:19 +00002791def t2REV16 : T2I_misc<0b01, 0b01, (outs rGPR:$Rd), (ins rGPR:$Rm), IIC_iUNAr,
2792 "rev16", ".w\t$Rd, $Rm",
Evan Cheng9568e5c2011-06-21 06:01:08 +00002793 [(set rGPR:$Rd, (rotr (bswap rGPR:$Rm), (i32 16)))]>;
Evan Cheng6d6c55b2011-06-17 20:47:21 +00002794
Owen Anderson612fb5b2010-11-18 21:15:19 +00002795def t2REVSH : T2I_misc<0b01, 0b11, (outs rGPR:$Rd), (ins rGPR:$Rm), IIC_iUNAr,
2796 "revsh", ".w\t$Rd, $Rm",
Evan Cheng9568e5c2011-06-21 06:01:08 +00002797 [(set rGPR:$Rd, (sra (bswap rGPR:$Rm), (i32 16)))]>;
Evan Cheng3f30af32011-03-18 21:52:42 +00002798
Evan Chengf60ceac2011-06-15 17:17:48 +00002799def : T2Pat<(or (sra (shl rGPR:$Rm, (i32 24)), (i32 16)),
Evan Cheng9568e5c2011-06-21 06:01:08 +00002800 (and (srl rGPR:$Rm, (i32 8)), 0xFF)),
Evan Chengf60ceac2011-06-15 17:17:48 +00002801 (t2REVSH rGPR:$Rm)>;
2802
Owen Anderson612fb5b2010-11-18 21:15:19 +00002803def t2PKHBT : T2ThreeReg<
Jim Grosbach0b692472011-09-14 23:16:41 +00002804 (outs rGPR:$Rd), (ins rGPR:$Rn, rGPR:$Rm, pkh_lsl_amt:$sh),
2805 IIC_iBITsi, "pkhbt", "\t$Rd, $Rn, $Rm$sh",
Owen Anderson612fb5b2010-11-18 21:15:19 +00002806 [(set rGPR:$Rd, (or (and rGPR:$Rn, 0xFFFF),
Jim Grosbach1769a3d2011-07-20 20:49:03 +00002807 (and (shl rGPR:$Rm, pkh_lsl_amt:$sh),
Jim Grosbachb1dc3932010-05-05 20:44:35 +00002808 0xFFFF0000)))]>,
Jim Grosbach9729d2e2010-11-01 15:59:52 +00002809 Requires<[HasT2ExtractPack, IsThumb2]> {
Johnny Chend68e1192009-12-15 17:24:14 +00002810 let Inst{31-27} = 0b11101;
2811 let Inst{26-25} = 0b01;
2812 let Inst{24-20} = 0b01100;
2813 let Inst{5} = 0; // BT form
2814 let Inst{4} = 0;
Jim Grosbach7a088642010-11-19 17:11:02 +00002815
Jim Grosbacha0472dc2011-07-20 20:32:09 +00002816 bits<5> sh;
2817 let Inst{14-12} = sh{4-2};
2818 let Inst{7-6} = sh{1-0};
Johnny Chend68e1192009-12-15 17:24:14 +00002819}
Evan Cheng40289b02009-07-07 05:35:52 +00002820
2821// Alternate cases for PKHBT where identities eliminate some nodes.
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002822def : T2Pat<(or (and rGPR:$src1, 0xFFFF), (and rGPR:$src2, 0xFFFF0000)),
2823 (t2PKHBT rGPR:$src1, rGPR:$src2, 0)>,
Jim Grosbach9729d2e2010-11-01 15:59:52 +00002824 Requires<[HasT2ExtractPack, IsThumb2]>;
Bob Wilsonf955f292010-08-17 17:23:19 +00002825def : T2Pat<(or (and rGPR:$src1, 0xFFFF), (shl rGPR:$src2, imm16_31:$sh)),
Jim Grosbacha0472dc2011-07-20 20:32:09 +00002826 (t2PKHBT rGPR:$src1, rGPR:$src2, imm16_31:$sh)>,
Jim Grosbach9729d2e2010-11-01 15:59:52 +00002827 Requires<[HasT2ExtractPack, IsThumb2]>;
Evan Cheng40289b02009-07-07 05:35:52 +00002828
Bob Wilsondc66eda2010-08-16 22:26:55 +00002829// Note: Shifts of 1-15 bits will be transformed to srl instead of sra and
2830// will match the pattern below.
Owen Anderson612fb5b2010-11-18 21:15:19 +00002831def t2PKHTB : T2ThreeReg<
Jim Grosbach0b692472011-09-14 23:16:41 +00002832 (outs rGPR:$Rd), (ins rGPR:$Rn, rGPR:$Rm, pkh_asr_amt:$sh),
2833 IIC_iBITsi, "pkhtb", "\t$Rd, $Rn, $Rm$sh",
Owen Anderson612fb5b2010-11-18 21:15:19 +00002834 [(set rGPR:$Rd, (or (and rGPR:$Rn, 0xFFFF0000),
Jim Grosbach1769a3d2011-07-20 20:49:03 +00002835 (and (sra rGPR:$Rm, pkh_asr_amt:$sh),
Bob Wilsonf955f292010-08-17 17:23:19 +00002836 0xFFFF)))]>,
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} = 1; // TB 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 PKHTB where identities eliminate some nodes. Note that
2850// a shift amount of 0 is *not legal* here, it is PKHBT instead.
Bob Wilsondc66eda2010-08-16 22:26:55 +00002851def : T2Pat<(or (and rGPR:$src1, 0xFFFF0000), (srl rGPR:$src2, imm16_31:$sh)),
Jim Grosbacha0472dc2011-07-20 20:32:09 +00002852 (t2PKHTB rGPR:$src1, rGPR:$src2, imm16_31:$sh)>,
Jim Grosbach9729d2e2010-11-01 15:59:52 +00002853 Requires<[HasT2ExtractPack, IsThumb2]>;
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002854def : T2Pat<(or (and rGPR:$src1, 0xFFFF0000),
Bob Wilsonf955f292010-08-17 17:23:19 +00002855 (and (srl rGPR:$src2, imm1_15:$sh), 0xFFFF)),
Jim Grosbacha0472dc2011-07-20 20:32:09 +00002856 (t2PKHTB rGPR:$src1, rGPR:$src2, imm1_15:$sh)>,
Jim Grosbach9729d2e2010-11-01 15:59:52 +00002857 Requires<[HasT2ExtractPack, IsThumb2]>;
Evan Chengf49810c2009-06-23 17:48:47 +00002858
2859//===----------------------------------------------------------------------===//
2860// Comparison Instructions...
2861//
Johnny Chend68e1192009-12-15 17:24:14 +00002862defm t2CMP : T2I_cmp_irs<0b1101, "cmp",
Evan Cheng5d42c562010-09-29 00:49:25 +00002863 IIC_iCMPi, IIC_iCMPr, IIC_iCMPsi,
Jim Grosbach9249ef32012-08-02 21:59:52 +00002864 BinOpFrag<(ARMcmp node:$LHS, node:$RHS)>>;
Jim Grosbach97a884d2010-12-07 20:41:06 +00002865
Jim Grosbachef88a922011-09-06 21:44:58 +00002866def : T2Pat<(ARMcmpZ GPRnopc:$lhs, t2_so_imm:$imm),
2867 (t2CMPri GPRnopc:$lhs, t2_so_imm:$imm)>;
2868def : T2Pat<(ARMcmpZ GPRnopc:$lhs, rGPR:$rhs),
2869 (t2CMPrr GPRnopc:$lhs, rGPR:$rhs)>;
2870def : T2Pat<(ARMcmpZ GPRnopc:$lhs, t2_so_reg:$rhs),
2871 (t2CMPrs GPRnopc:$lhs, t2_so_reg:$rhs)>;
Evan Chengf49810c2009-06-23 17:48:47 +00002872
Bill Wendlingad5c8802012-06-11 08:07:26 +00002873let isCompare = 1, Defs = [CPSR] in {
2874 // shifted imm
2875 def t2CMNri : T2OneRegCmpImm<
2876 (outs), (ins GPRnopc:$Rn, t2_so_imm:$imm), IIC_iCMPi,
2877 "cmn", ".w\t$Rn, $imm",
2878 [(ARMcmn GPRnopc:$Rn, (ineg t2_so_imm:$imm))]> {
2879 let Inst{31-27} = 0b11110;
2880 let Inst{25} = 0;
2881 let Inst{24-21} = 0b1000;
2882 let Inst{20} = 1; // The S bit.
2883 let Inst{15} = 0;
2884 let Inst{11-8} = 0b1111; // Rd
2885 }
2886 // register
2887 def t2CMNzrr : T2TwoRegCmp<
2888 (outs), (ins GPRnopc:$Rn, rGPR:$Rm), IIC_iCMPr,
2889 "cmn", ".w\t$Rn, $Rm",
2890 [(BinOpFrag<(ARMcmpZ node:$LHS,(ineg node:$RHS))>
2891 GPRnopc:$Rn, rGPR:$Rm)]> {
2892 let Inst{31-27} = 0b11101;
2893 let Inst{26-25} = 0b01;
2894 let Inst{24-21} = 0b1000;
2895 let Inst{20} = 1; // The S bit.
2896 let Inst{14-12} = 0b000; // imm3
2897 let Inst{11-8} = 0b1111; // Rd
2898 let Inst{7-6} = 0b00; // imm2
2899 let Inst{5-4} = 0b00; // type
2900 }
2901 // shifted register
2902 def t2CMNzrs : T2OneRegCmpShiftedReg<
2903 (outs), (ins GPRnopc:$Rn, t2_so_reg:$ShiftedRm), IIC_iCMPsi,
2904 "cmn", ".w\t$Rn, $ShiftedRm",
2905 [(BinOpFrag<(ARMcmpZ node:$LHS,(ineg node:$RHS))>
2906 GPRnopc:$Rn, t2_so_reg:$ShiftedRm)]> {
2907 let Inst{31-27} = 0b11101;
2908 let Inst{26-25} = 0b01;
2909 let Inst{24-21} = 0b1000;
2910 let Inst{20} = 1; // The S bit.
2911 let Inst{11-8} = 0b1111; // Rd
2912 }
2913}
Dan Gohman4b7dff92010-08-26 15:50:25 +00002914
Bill Wendlingad5c8802012-06-11 08:07:26 +00002915// Assembler aliases w/o the ".w" suffix.
2916// No alias here for 'rr' version as not all instantiations of this multiclass
2917// want one (CMP in particular, does not).
Jim Grosbach9249ef32012-08-02 21:59:52 +00002918def : t2InstAlias<"cmn${p} $Rn, $imm",
2919 (t2CMNri GPRnopc:$Rn, t2_so_imm:$imm, pred:$p)>;
2920def : t2InstAlias<"cmn${p} $Rn, $shift",
2921 (t2CMNzrs GPRnopc:$Rn, t2_so_reg:$shift, pred:$p)>;
Dan Gohman4b7dff92010-08-26 15:50:25 +00002922
Bill Wendlingad5c8802012-06-11 08:07:26 +00002923def : T2Pat<(ARMcmp GPR:$src, t2_so_imm_neg:$imm),
2924 (t2CMNri GPR:$src, t2_so_imm_neg:$imm)>;
2925
2926def : T2Pat<(ARMcmpZ GPRnopc:$src, t2_so_imm_neg:$imm),
2927 (t2CMNri GPRnopc:$src, t2_so_imm_neg:$imm)>;
Evan Chengf49810c2009-06-23 17:48:47 +00002928
Johnny Chend68e1192009-12-15 17:24:14 +00002929defm t2TST : T2I_cmp_irs<0b0000, "tst",
Evan Cheng5d42c562010-09-29 00:49:25 +00002930 IIC_iTSTi, IIC_iTSTr, IIC_iTSTsi,
Jim Grosbach9249ef32012-08-02 21:59:52 +00002931 BinOpFrag<(ARMcmpZ (and_su node:$LHS, node:$RHS), 0)>>;
Johnny Chend68e1192009-12-15 17:24:14 +00002932defm t2TEQ : T2I_cmp_irs<0b0100, "teq",
Evan Cheng5d42c562010-09-29 00:49:25 +00002933 IIC_iTSTi, IIC_iTSTr, IIC_iTSTsi,
Jim Grosbach9249ef32012-08-02 21:59:52 +00002934 BinOpFrag<(ARMcmpZ (xor_su node:$LHS, node:$RHS), 0)>>;
Evan Chengf49810c2009-06-23 17:48:47 +00002935
Evan Chenge253c952009-07-07 20:39:03 +00002936// Conditional moves
2937// FIXME: should be able to write a pattern for ARMcmov, but can't use
Jim Grosbach64171712010-02-16 21:07:46 +00002938// a two-value operand where a dag node expects two operands. :(
Evan Cheng63f35442010-11-13 02:25:14 +00002939let neverHasSideEffects = 1 in {
Jakob Stoklund Olesenc5041ca2012-04-04 18:23:42 +00002940
2941let isCommutable = 1 in
Jim Grosbachefeedce2011-07-01 17:14:11 +00002942def t2MOVCCr : t2PseudoInst<(outs rGPR:$Rd),
2943 (ins rGPR:$false, rGPR:$Rm, pred:$p),
Owen Anderson16884412011-07-13 23:22:26 +00002944 4, IIC_iCMOVr,
Owen Anderson8ee97792010-11-18 21:46:31 +00002945 [/*(set rGPR:$Rd, (ARMcmov rGPR:$false, rGPR:$Rm, imm:$cc, CCR:$ccr))*/]>,
Jim Grosbachefeedce2011-07-01 17:14:11 +00002946 RegConstraint<"$false = $Rd">;
2947
2948let isMoveImm = 1 in
2949def t2MOVCCi : t2PseudoInst<(outs rGPR:$Rd),
2950 (ins rGPR:$false, t2_so_imm:$imm, pred:$p),
Owen Anderson16884412011-07-13 23:22:26 +00002951 4, IIC_iCMOVi,
Jim Grosbachefeedce2011-07-01 17:14:11 +00002952[/*(set rGPR:$Rd,(ARMcmov rGPR:$false,t2_so_imm:$imm, imm:$cc, CCR:$ccr))*/]>,
2953 RegConstraint<"$false = $Rd">;
Evan Chenge253c952009-07-07 20:39:03 +00002954
Jim Grosbach6b8f1e32011-06-27 23:54:06 +00002955// FIXME: Pseudo-ize these. For now, just mark codegen only.
2956let isCodeGenOnly = 1 in {
Evan Chengc4af4632010-11-17 20:13:28 +00002957let isMoveImm = 1 in
Jim Grosbachffa32252011-07-19 19:13:28 +00002958def t2MOVCCi16 : T2I<(outs rGPR:$Rd), (ins rGPR:$false, imm0_65535_expr:$imm),
Evan Cheng875a6ac2010-11-12 22:42:47 +00002959 IIC_iCMOVi,
Owen Andersonc56dcbf2010-11-16 00:29:56 +00002960 "movw", "\t$Rd, $imm", []>,
2961 RegConstraint<"$false = $Rd"> {
Jim Grosbacha4257162010-10-07 00:53:56 +00002962 let Inst{31-27} = 0b11110;
2963 let Inst{25} = 1;
2964 let Inst{24-21} = 0b0010;
2965 let Inst{20} = 0; // The S bit.
2966 let Inst{15} = 0;
Jim Grosbach7a088642010-11-19 17:11:02 +00002967
Owen Andersonc56dcbf2010-11-16 00:29:56 +00002968 bits<4> Rd;
2969 bits<16> imm;
Jim Grosbach7a088642010-11-19 17:11:02 +00002970
Jim Grosbach86386922010-12-08 22:10:43 +00002971 let Inst{11-8} = Rd;
Owen Andersonc56dcbf2010-11-16 00:29:56 +00002972 let Inst{19-16} = imm{15-12};
2973 let Inst{26} = imm{11};
2974 let Inst{14-12} = imm{10-8};
2975 let Inst{7-0} = imm{7-0};
Jim Grosbacha4257162010-10-07 00:53:56 +00002976}
2977
Evan Chengc4af4632010-11-17 20:13:28 +00002978let isMoveImm = 1 in
Evan Cheng63f35442010-11-13 02:25:14 +00002979def t2MOVCCi32imm : PseudoInst<(outs rGPR:$dst),
2980 (ins rGPR:$false, i32imm:$src, pred:$p),
Jim Grosbach99594eb2010-11-18 01:38:26 +00002981 IIC_iCMOVix2, []>, RegConstraint<"$false = $dst">;
Evan Cheng63f35442010-11-13 02:25:14 +00002982
Evan Chengc4af4632010-11-17 20:13:28 +00002983let isMoveImm = 1 in
Owen Anderson8ee97792010-11-18 21:46:31 +00002984def t2MVNCCi : T2OneRegImm<(outs rGPR:$Rd), (ins rGPR:$false, t2_so_imm:$imm),
Jim Grosbach9c5edc02011-10-26 17:28:15 +00002985 IIC_iCMOVi, "mvn", "\t$Rd, $imm",
Owen Anderson8ee97792010-11-18 21:46:31 +00002986[/*(set rGPR:$Rd,(ARMcmov rGPR:$false,t2_so_imm_not:$imm,
Evan Cheng875a6ac2010-11-12 22:42:47 +00002987 imm:$cc, CCR:$ccr))*/]>,
Owen Anderson8ee97792010-11-18 21:46:31 +00002988 RegConstraint<"$false = $Rd"> {
Evan Cheng875a6ac2010-11-12 22:42:47 +00002989 let Inst{31-27} = 0b11110;
2990 let Inst{25} = 0;
2991 let Inst{24-21} = 0b0011;
2992 let Inst{20} = 0; // The S bit.
2993 let Inst{19-16} = 0b1111; // Rn
2994 let Inst{15} = 0;
2995}
2996
Johnny Chend68e1192009-12-15 17:24:14 +00002997class T2I_movcc_sh<bits<2> opcod, dag oops, dag iops, InstrItinClass itin,
2998 string opc, string asm, list<dag> pattern>
Owen Andersonbb6315d2010-11-15 19:58:36 +00002999 : T2TwoRegShiftImm<oops, iops, itin, opc, asm, pattern> {
Johnny Chend68e1192009-12-15 17:24:14 +00003000 let Inst{31-27} = 0b11101;
3001 let Inst{26-25} = 0b01;
3002 let Inst{24-21} = 0b0010;
3003 let Inst{20} = 0; // The S bit.
3004 let Inst{19-16} = 0b1111; // Rn
3005 let Inst{5-4} = opcod; // Shift type.
3006}
Owen Andersonbb6315d2010-11-15 19:58:36 +00003007def t2MOVCClsl : T2I_movcc_sh<0b00, (outs rGPR:$Rd),
3008 (ins rGPR:$false, rGPR:$Rm, i32imm:$imm),
3009 IIC_iCMOVsi, "lsl", ".w\t$Rd, $Rm, $imm", []>,
3010 RegConstraint<"$false = $Rd">;
3011def t2MOVCClsr : T2I_movcc_sh<0b01, (outs rGPR:$Rd),
3012 (ins rGPR:$false, rGPR:$Rm, i32imm:$imm),
3013 IIC_iCMOVsi, "lsr", ".w\t$Rd, $Rm, $imm", []>,
3014 RegConstraint<"$false = $Rd">;
3015def t2MOVCCasr : T2I_movcc_sh<0b10, (outs rGPR:$Rd),
3016 (ins rGPR:$false, rGPR:$Rm, i32imm:$imm),
3017 IIC_iCMOVsi, "asr", ".w\t$Rd, $Rm, $imm", []>,
3018 RegConstraint<"$false = $Rd">;
3019def t2MOVCCror : T2I_movcc_sh<0b11, (outs rGPR:$Rd),
3020 (ins rGPR:$false, rGPR:$Rm, i32imm:$imm),
3021 IIC_iCMOVsi, "ror", ".w\t$Rd, $Rm, $imm", []>,
3022 RegConstraint<"$false = $Rd">;
Evan Cheng03a18522012-03-20 21:28:05 +00003023} // isCodeGenOnly = 1
Evan Chengc892aeb2012-02-23 01:19:06 +00003024
Evan Cheng03a18522012-03-20 21:28:05 +00003025multiclass T2I_bincc_irs<Instruction iri, Instruction irr, Instruction irs,
Evan Chengc892aeb2012-02-23 01:19:06 +00003026 InstrItinClass iii, InstrItinClass iir, InstrItinClass iis> {
3027 // shifted imm
Evan Cheng03a18522012-03-20 21:28:05 +00003028 def ri : t2PseudoExpand<(outs rGPR:$Rd),
3029 (ins rGPR:$Rn, t2_so_imm:$imm, pred:$p, cc_out:$s),
3030 4, iii, [],
3031 (iri rGPR:$Rd, rGPR:$Rn, t2_so_imm:$imm, pred:$p, cc_out:$s)>,
3032 RegConstraint<"$Rn = $Rd">;
Evan Chengc892aeb2012-02-23 01:19:06 +00003033 // register
Evan Cheng03a18522012-03-20 21:28:05 +00003034 def rr : t2PseudoExpand<(outs rGPR:$Rd),
3035 (ins rGPR:$Rn, rGPR:$Rm, pred:$p, cc_out:$s),
3036 4, iir, [],
3037 (irr rGPR:$Rd, rGPR:$Rn, rGPR:$Rm, pred:$p, cc_out:$s)>,
3038 RegConstraint<"$Rn = $Rd">;
Evan Chengc892aeb2012-02-23 01:19:06 +00003039 // shifted register
Evan Cheng03a18522012-03-20 21:28:05 +00003040 def rs : t2PseudoExpand<(outs rGPR:$Rd),
3041 (ins rGPR:$Rn, t2_so_reg:$ShiftedRm, pred:$p, cc_out:$s),
3042 4, iis, [],
3043 (irs rGPR:$Rd, rGPR:$Rn, t2_so_reg:$ShiftedRm, pred:$p, cc_out:$s)>,
3044 RegConstraint<"$Rn = $Rd">;
Evan Chengc892aeb2012-02-23 01:19:06 +00003045} // T2I_bincc_irs
3046
Evan Cheng03a18522012-03-20 21:28:05 +00003047defm t2ANDCC : T2I_bincc_irs<t2ANDri, t2ANDrr, t2ANDrs,
3048 IIC_iBITi, IIC_iBITr, IIC_iBITsi>;
3049defm t2ORRCC : T2I_bincc_irs<t2ORRri, t2ORRrr, t2ORRrs,
3050 IIC_iBITi, IIC_iBITr, IIC_iBITsi>;
3051defm t2EORCC : T2I_bincc_irs<t2EORri, t2EORrr, t2EORrs,
3052 IIC_iBITi, IIC_iBITr, IIC_iBITsi>;
Jim Grosbachefeedce2011-07-01 17:14:11 +00003053} // neverHasSideEffects
Evan Cheng13f8b362009-08-01 01:43:45 +00003054
David Goodwin5e47a9a2009-06-30 18:04:13 +00003055//===----------------------------------------------------------------------===//
Jim Grosbachc219e4d2009-12-14 18:56:47 +00003056// Atomic operations intrinsics
3057//
3058
3059// memory barriers protect the atomic sequences
3060let hasSideEffects = 1 in {
Bob Wilsonf74a4292010-10-30 00:54:37 +00003061def t2DMB : AInoP<(outs), (ins memb_opt:$opt), ThumbFrm, NoItinerary,
3062 "dmb", "\t$opt", [(ARMMemBarrier (i32 imm:$opt))]>,
3063 Requires<[IsThumb, HasDB]> {
3064 bits<4> opt;
3065 let Inst{31-4} = 0xf3bf8f5;
3066 let Inst{3-0} = opt;
Jim Grosbachc219e4d2009-12-14 18:56:47 +00003067}
3068}
3069
Bob Wilsonf74a4292010-10-30 00:54:37 +00003070def t2DSB : AInoP<(outs), (ins memb_opt:$opt), ThumbFrm, NoItinerary,
Jim Grosbachaa833e52011-09-06 22:53:27 +00003071 "dsb", "\t$opt", []>,
Bob Wilsonf74a4292010-10-30 00:54:37 +00003072 Requires<[IsThumb, HasDB]> {
3073 bits<4> opt;
3074 let Inst{31-4} = 0xf3bf8f4;
3075 let Inst{3-0} = opt;
Johnny Chena4339822010-03-03 00:16:28 +00003076}
3077
Jim Grosbachaa833e52011-09-06 22:53:27 +00003078def t2ISB : AInoP<(outs), (ins memb_opt:$opt), ThumbFrm, NoItinerary,
3079 "isb", "\t$opt",
Evan Cheng97a45432012-04-27 01:27:19 +00003080 []>, Requires<[IsThumb, HasDB]> {
Jim Grosbachaa833e52011-09-06 22:53:27 +00003081 bits<4> opt;
Bob Wilsonf74a4292010-10-30 00:54:37 +00003082 let Inst{31-4} = 0xf3bf8f6;
Jim Grosbachaa833e52011-09-06 22:53:27 +00003083 let Inst{3-0} = opt;
Johnny Chena4339822010-03-03 00:16:28 +00003084}
3085
Owen Anderson16884412011-07-13 23:22:26 +00003086class T2I_ldrex<bits<2> opcod, dag oops, dag iops, AddrMode am, int sz,
Johnny Chend68e1192009-12-15 17:24:14 +00003087 InstrItinClass itin, string opc, string asm, string cstr,
3088 list<dag> pattern, bits<4> rt2 = 0b1111>
3089 : Thumb2I<oops, iops, am, sz, itin, opc, asm, cstr, pattern> {
3090 let Inst{31-27} = 0b11101;
3091 let Inst{26-20} = 0b0001101;
3092 let Inst{11-8} = rt2;
3093 let Inst{7-6} = 0b01;
3094 let Inst{5-4} = opcod;
3095 let Inst{3-0} = 0b1111;
Jim Grosbach7a088642010-11-19 17:11:02 +00003096
Bruno Cardoso Lopes505f3cd2011-03-24 21:04:58 +00003097 bits<4> addr;
Owen Anderson91a7c592010-11-19 00:28:38 +00003098 bits<4> Rt;
Bruno Cardoso Lopes505f3cd2011-03-24 21:04:58 +00003099 let Inst{19-16} = addr;
Jim Grosbach86386922010-12-08 22:10:43 +00003100 let Inst{15-12} = Rt;
Johnny Chend68e1192009-12-15 17:24:14 +00003101}
Owen Anderson16884412011-07-13 23:22:26 +00003102class T2I_strex<bits<2> opcod, dag oops, dag iops, AddrMode am, int sz,
Johnny Chend68e1192009-12-15 17:24:14 +00003103 InstrItinClass itin, string opc, string asm, string cstr,
3104 list<dag> pattern, bits<4> rt2 = 0b1111>
3105 : Thumb2I<oops, iops, am, sz, itin, opc, asm, cstr, pattern> {
3106 let Inst{31-27} = 0b11101;
3107 let Inst{26-20} = 0b0001100;
3108 let Inst{11-8} = rt2;
3109 let Inst{7-6} = 0b01;
3110 let Inst{5-4} = opcod;
Jim Grosbach7a088642010-11-19 17:11:02 +00003111
Owen Anderson91a7c592010-11-19 00:28:38 +00003112 bits<4> Rd;
Bruno Cardoso Lopes505f3cd2011-03-24 21:04:58 +00003113 bits<4> addr;
Owen Anderson91a7c592010-11-19 00:28:38 +00003114 bits<4> Rt;
Bruno Cardoso Lopes505f3cd2011-03-24 21:04:58 +00003115 let Inst{3-0} = Rd;
3116 let Inst{19-16} = addr;
Jim Grosbach86386922010-12-08 22:10:43 +00003117 let Inst{15-12} = Rt;
Johnny Chend68e1192009-12-15 17:24:14 +00003118}
3119
Jim Grosbachc219e4d2009-12-14 18:56:47 +00003120let mayLoad = 1 in {
Jim Grosbachb6aed502011-09-09 18:37:27 +00003121def t2LDREXB : T2I_ldrex<0b00, (outs rGPR:$Rt), (ins addr_offset_none:$addr),
Owen Anderson16884412011-07-13 23:22:26 +00003122 AddrModeNone, 4, NoItinerary,
Jim Grosbachf921c0fe2011-06-13 22:54:22 +00003123 "ldrexb", "\t$Rt, $addr", "", []>;
Jim Grosbachb6aed502011-09-09 18:37:27 +00003124def t2LDREXH : T2I_ldrex<0b01, (outs rGPR:$Rt), (ins addr_offset_none:$addr),
Owen Anderson16884412011-07-13 23:22:26 +00003125 AddrModeNone, 4, NoItinerary,
Jim Grosbachf921c0fe2011-06-13 22:54:22 +00003126 "ldrexh", "\t$Rt, $addr", "", []>;
Jim Grosbachb6aed502011-09-09 18:37:27 +00003127def t2LDREX : Thumb2I<(outs rGPR:$Rt), (ins t2addrmode_imm0_1020s4:$addr),
Owen Anderson16884412011-07-13 23:22:26 +00003128 AddrModeNone, 4, NoItinerary,
Jim Grosbachf921c0fe2011-06-13 22:54:22 +00003129 "ldrex", "\t$Rt, $addr", "", []> {
Jim Grosbachb6aed502011-09-09 18:37:27 +00003130 bits<4> Rt;
3131 bits<12> addr;
Johnny Chend68e1192009-12-15 17:24:14 +00003132 let Inst{31-27} = 0b11101;
3133 let Inst{26-20} = 0b0000101;
Jim Grosbachb6aed502011-09-09 18:37:27 +00003134 let Inst{19-16} = addr{11-8};
Owen Anderson808c7d12010-12-10 21:52:38 +00003135 let Inst{15-12} = Rt;
Jim Grosbachb6aed502011-09-09 18:37:27 +00003136 let Inst{11-8} = 0b1111;
3137 let Inst{7-0} = addr{7-0};
Johnny Chend68e1192009-12-15 17:24:14 +00003138}
Bruno Cardoso Lopesa0112d02011-05-28 04:07:29 +00003139let hasExtraDefRegAllocReq = 1 in
3140def t2LDREXD : T2I_ldrex<0b11, (outs rGPR:$Rt, rGPR:$Rt2),
Jim Grosbachb6aed502011-09-09 18:37:27 +00003141 (ins addr_offset_none:$addr),
Owen Anderson16884412011-07-13 23:22:26 +00003142 AddrModeNone, 4, NoItinerary,
Bruno Cardoso Lopes505f3cd2011-03-24 21:04:58 +00003143 "ldrexd", "\t$Rt, $Rt2, $addr", "",
Owen Anderson91a7c592010-11-19 00:28:38 +00003144 [], {?, ?, ?, ?}> {
3145 bits<4> Rt2;
Jim Grosbach86386922010-12-08 22:10:43 +00003146 let Inst{11-8} = Rt2;
Owen Anderson91a7c592010-11-19 00:28:38 +00003147}
Jim Grosbachc219e4d2009-12-14 18:56:47 +00003148}
3149
Owen Anderson91a7c592010-11-19 00:28:38 +00003150let mayStore = 1, Constraints = "@earlyclobber $Rd" in {
Jim Grosbachf921c0fe2011-06-13 22:54:22 +00003151def t2STREXB : T2I_strex<0b00, (outs rGPR:$Rd),
Jim Grosbachb6aed502011-09-09 18:37:27 +00003152 (ins rGPR:$Rt, addr_offset_none:$addr),
Owen Anderson16884412011-07-13 23:22:26 +00003153 AddrModeNone, 4, NoItinerary,
Jim Grosbachf921c0fe2011-06-13 22:54:22 +00003154 "strexb", "\t$Rd, $Rt, $addr", "", []>;
3155def t2STREXH : T2I_strex<0b01, (outs rGPR:$Rd),
Jim Grosbachb6aed502011-09-09 18:37:27 +00003156 (ins rGPR:$Rt, addr_offset_none:$addr),
Owen Anderson16884412011-07-13 23:22:26 +00003157 AddrModeNone, 4, NoItinerary,
Jim Grosbachf921c0fe2011-06-13 22:54:22 +00003158 "strexh", "\t$Rd, $Rt, $addr", "", []>;
Jim Grosbachb6aed502011-09-09 18:37:27 +00003159def t2STREX : Thumb2I<(outs rGPR:$Rd), (ins rGPR:$Rt,
3160 t2addrmode_imm0_1020s4:$addr),
Owen Anderson16884412011-07-13 23:22:26 +00003161 AddrModeNone, 4, NoItinerary,
Bruno Cardoso Lopes505f3cd2011-03-24 21:04:58 +00003162 "strex", "\t$Rd, $Rt, $addr", "",
3163 []> {
Jim Grosbachb6aed502011-09-09 18:37:27 +00003164 bits<4> Rd;
3165 bits<4> Rt;
3166 bits<12> addr;
Johnny Chend68e1192009-12-15 17:24:14 +00003167 let Inst{31-27} = 0b11101;
3168 let Inst{26-20} = 0b0000100;
Jim Grosbachb6aed502011-09-09 18:37:27 +00003169 let Inst{19-16} = addr{11-8};
Owen Anderson808c7d12010-12-10 21:52:38 +00003170 let Inst{15-12} = Rt;
Jim Grosbachb6aed502011-09-09 18:37:27 +00003171 let Inst{11-8} = Rd;
3172 let Inst{7-0} = addr{7-0};
Johnny Chend68e1192009-12-15 17:24:14 +00003173}
Anton Korobeynikov2c6d0f22012-01-23 22:57:52 +00003174let hasExtraSrcRegAllocReq = 1 in
Owen Anderson91a7c592010-11-19 00:28:38 +00003175def t2STREXD : T2I_strex<0b11, (outs rGPR:$Rd),
Jim Grosbachb6aed502011-09-09 18:37:27 +00003176 (ins rGPR:$Rt, rGPR:$Rt2, addr_offset_none:$addr),
Owen Anderson16884412011-07-13 23:22:26 +00003177 AddrModeNone, 4, NoItinerary,
Bruno Cardoso Lopes505f3cd2011-03-24 21:04:58 +00003178 "strexd", "\t$Rd, $Rt, $Rt2, $addr", "", [],
Owen Anderson91a7c592010-11-19 00:28:38 +00003179 {?, ?, ?, ?}> {
3180 bits<4> Rt2;
Jim Grosbach86386922010-12-08 22:10:43 +00003181 let Inst{11-8} = Rt2;
Owen Anderson91a7c592010-11-19 00:28:38 +00003182}
Anton Korobeynikov2c6d0f22012-01-23 22:57:52 +00003183}
Jim Grosbachc219e4d2009-12-14 18:56:47 +00003184
Jim Grosbachad2dad92011-09-06 20:27:04 +00003185def t2CLREX : T2I<(outs), (ins), NoItinerary, "clrex", "", []>,
Bruno Cardoso Lopese47f3752011-01-20 19:18:32 +00003186 Requires<[IsThumb2, HasV7]> {
3187 let Inst{31-16} = 0xf3bf;
Johnny Chen10a77e12010-03-02 22:11:06 +00003188 let Inst{15-14} = 0b10;
Bruno Cardoso Lopese47f3752011-01-20 19:18:32 +00003189 let Inst{13} = 0;
Johnny Chen10a77e12010-03-02 22:11:06 +00003190 let Inst{12} = 0;
Bruno Cardoso Lopese47f3752011-01-20 19:18:32 +00003191 let Inst{11-8} = 0b1111;
Johnny Chen10a77e12010-03-02 22:11:06 +00003192 let Inst{7-4} = 0b0010;
Bruno Cardoso Lopese47f3752011-01-20 19:18:32 +00003193 let Inst{3-0} = 0b1111;
Johnny Chen10a77e12010-03-02 22:11:06 +00003194}
3195
Jim Grosbachc219e4d2009-12-14 18:56:47 +00003196//===----------------------------------------------------------------------===//
Jim Grosbach5aa16842009-08-11 19:42:21 +00003197// SJLJ Exception handling intrinsics
Jim Grosbach1add6592009-08-13 15:11:43 +00003198// eh_sjlj_setjmp() is an instruction sequence to store the return
Jim Grosbach5aa16842009-08-11 19:42:21 +00003199// address and save #0 in R0 for the non-longjmp case.
3200// Since by its nature we may be coming from some other function to get
3201// here, and we're using the stack frame for the containing function to
3202// save/restore registers, we can't keep anything live in regs across
3203// the eh_sjlj_setjmp(), else it will almost certainly have been tromped upon
Chris Lattner7a2bdde2011-04-15 05:18:47 +00003204// when we get here from a longjmp(). We force everything out of registers
Jim Grosbach5aa16842009-08-11 19:42:21 +00003205// except for our own input by listing the relevant registers in Defs. By
3206// doing so, we also cause the prologue/epilogue code to actively preserve
3207// all of the callee-saved resgisters, which is exactly what we want.
Jim Grosbach0798edd2010-05-27 23:49:24 +00003208// $val is a scratch register for our use.
Jim Grosbacha87ded22010-02-08 23:22:00 +00003209let Defs =
Andrew Tricka1099f12011-06-07 00:08:49 +00003210 [ R0, R1, R2, R3, R4, R5, R6, R7, R8, R9, R10, R11, R12, LR, CPSR,
Jakob Stoklund Olesenece8b732012-01-13 22:55:42 +00003211 Q0, Q1, Q2, Q3, Q8, Q9, Q10, Q11, Q12, Q13, Q14, Q15],
Bill Wendling13a71212011-10-17 22:26:23 +00003212 hasSideEffects = 1, isBarrier = 1, isCodeGenOnly = 1,
3213 usesCustomInserter = 1 in {
Jim Grosbach9f134b52010-08-26 17:02:47 +00003214 def t2Int_eh_sjlj_setjmp : Thumb2XI<(outs), (ins tGPR:$src, tGPR:$val),
Owen Anderson16884412011-07-13 23:22:26 +00003215 AddrModeNone, 0, NoItinerary, "", "",
Jim Grosbach9f134b52010-08-26 17:02:47 +00003216 [(set R0, (ARMeh_sjlj_setjmp tGPR:$src, tGPR:$val))]>,
Bob Wilsonec80e262010-04-09 20:41:18 +00003217 Requires<[IsThumb2, HasVFP2]>;
Jim Grosbach5aa16842009-08-11 19:42:21 +00003218}
3219
Bob Wilsonec80e262010-04-09 20:41:18 +00003220let Defs =
Andrew Tricka1099f12011-06-07 00:08:49 +00003221 [ R0, R1, R2, R3, R4, R5, R6, R7, R8, R9, R10, R11, R12, LR, CPSR ],
Bill Wendling13a71212011-10-17 22:26:23 +00003222 hasSideEffects = 1, isBarrier = 1, isCodeGenOnly = 1,
3223 usesCustomInserter = 1 in {
Jim Grosbach9f134b52010-08-26 17:02:47 +00003224 def t2Int_eh_sjlj_setjmp_nofp : Thumb2XI<(outs), (ins tGPR:$src, tGPR:$val),
Owen Anderson16884412011-07-13 23:22:26 +00003225 AddrModeNone, 0, NoItinerary, "", "",
Jim Grosbach9f134b52010-08-26 17:02:47 +00003226 [(set R0, (ARMeh_sjlj_setjmp tGPR:$src, tGPR:$val))]>,
Bob Wilsonec80e262010-04-09 20:41:18 +00003227 Requires<[IsThumb2, NoVFP]>;
3228}
Jim Grosbach5aa16842009-08-11 19:42:21 +00003229
3230
3231//===----------------------------------------------------------------------===//
David Goodwin5e47a9a2009-06-30 18:04:13 +00003232// Control-Flow Instructions
3233//
3234
Evan Chengc50a1cb2009-07-09 22:58:39 +00003235// FIXME: remove when we have a way to marking a MI with these properties.
Evan Chengc50a1cb2009-07-09 22:58:39 +00003236// FIXME: Should pc be an implicit operand like PICADD, etc?
Evan Cheng0d92f5f2009-10-01 08:22:27 +00003237let isReturn = 1, isTerminator = 1, isBarrier = 1, mayLoad = 1,
Chris Lattner39ee0362010-10-31 19:10:56 +00003238 hasExtraDefRegAllocReq = 1, isCodeGenOnly = 1 in
Jim Grosbach53e3fc42011-07-08 17:40:42 +00003239def t2LDMIA_RET: t2PseudoExpand<(outs GPR:$wb), (ins GPR:$Rn, pred:$p,
Jim Grosbach16f99242011-06-30 18:25:42 +00003240 reglist:$regs, variable_ops),
Owen Anderson16884412011-07-13 23:22:26 +00003241 4, IIC_iLoad_mBr, [],
Jim Grosbach53e3fc42011-07-08 17:40:42 +00003242 (t2LDMIA_UPD GPR:$wb, GPR:$Rn, pred:$p, reglist:$regs)>,
Jim Grosbach16f99242011-06-30 18:25:42 +00003243 RegConstraint<"$Rn = $wb">;
Evan Chengc50a1cb2009-07-09 22:58:39 +00003244
David Goodwin5e47a9a2009-06-30 18:04:13 +00003245let isBranch = 1, isTerminator = 1, isBarrier = 1 in {
3246let isPredicable = 1 in
Owen Anderson51f6a7a2011-09-09 21:48:23 +00003247def t2B : T2I<(outs), (ins uncondbrtarget:$target), IIC_Br,
3248 "b", ".w\t$target",
Johnny Chend68e1192009-12-15 17:24:14 +00003249 [(br bb:$target)]> {
3250 let Inst{31-27} = 0b11110;
3251 let Inst{15-14} = 0b10;
3252 let Inst{12} = 1;
Owen Anderson05bf5952010-11-29 18:54:38 +00003253
3254 bits<20> target;
3255 let Inst{26} = target{19};
3256 let Inst{11} = target{18};
3257 let Inst{13} = target{17};
3258 let Inst{21-16} = target{16-11};
3259 let Inst{10-0} = target{10-0};
Kevin Enderby2a7d3a92012-04-12 23:13:34 +00003260 let DecoderMethod = "DecodeT2BInstruction";
Johnny Chend68e1192009-12-15 17:24:14 +00003261}
David Goodwin5e47a9a2009-06-30 18:04:13 +00003262
Jim Grosbacha0bb2532010-11-29 22:40:58 +00003263let isNotDuplicable = 1, isIndirectBranch = 1 in {
Jim Grosbachd4811102010-12-15 19:03:16 +00003264def t2BR_JT : t2PseudoInst<(outs),
Jim Grosbach5ca66692010-11-29 22:37:40 +00003265 (ins GPR:$target, GPR:$index, i32imm:$jt, i32imm:$id),
Owen Anderson16884412011-07-13 23:22:26 +00003266 0, IIC_Br,
Jim Grosbach5ca66692010-11-29 22:37:40 +00003267 [(ARMbr2jt GPR:$target, GPR:$index, tjumptable:$jt, imm:$id)]>;
Evan Cheng5657c012009-07-29 02:18:14 +00003268
Evan Cheng25f7cfc2009-08-01 06:13:52 +00003269// FIXME: Add a non-pc based case that can be predicated.
Jim Grosbachd4811102010-12-15 19:03:16 +00003270def t2TBB_JT : t2PseudoInst<(outs),
Jim Grosbachbc80e942011-09-19 20:31:59 +00003271 (ins GPR:$index, i32imm:$jt, i32imm:$id), 0, IIC_Br, []>;
Jim Grosbach5ca66692010-11-29 22:37:40 +00003272
Jim Grosbachd4811102010-12-15 19:03:16 +00003273def t2TBH_JT : t2PseudoInst<(outs),
Jim Grosbachbc80e942011-09-19 20:31:59 +00003274 (ins GPR:$index, i32imm:$jt, i32imm:$id), 0, IIC_Br, []>;
Jim Grosbach5ca66692010-11-29 22:37:40 +00003275
Jim Grosbach7f739be2011-09-19 22:21:13 +00003276def t2TBB : T2I<(outs), (ins addrmode_tbb:$addr), IIC_Br,
3277 "tbb", "\t$addr", []> {
Jim Grosbach5ca66692010-11-29 22:37:40 +00003278 bits<4> Rn;
3279 bits<4> Rm;
Jim Grosbachf0db2612010-12-17 18:42:56 +00003280 let Inst{31-20} = 0b111010001101;
Jim Grosbach5ca66692010-11-29 22:37:40 +00003281 let Inst{19-16} = Rn;
3282 let Inst{15-5} = 0b11110000000;
3283 let Inst{4} = 0; // B form
3284 let Inst{3-0} = Rm;
Jim Grosbach7f739be2011-09-19 22:21:13 +00003285
3286 let DecoderMethod = "DecodeThumbTableBranch";
Johnny Chend68e1192009-12-15 17:24:14 +00003287}
Evan Cheng5657c012009-07-29 02:18:14 +00003288
Jim Grosbach7f739be2011-09-19 22:21:13 +00003289def t2TBH : T2I<(outs), (ins addrmode_tbh:$addr), IIC_Br,
3290 "tbh", "\t$addr", []> {
Jim Grosbach5ca66692010-11-29 22:37:40 +00003291 bits<4> Rn;
3292 bits<4> Rm;
Jim Grosbachf0db2612010-12-17 18:42:56 +00003293 let Inst{31-20} = 0b111010001101;
Jim Grosbach5ca66692010-11-29 22:37:40 +00003294 let Inst{19-16} = Rn;
3295 let Inst{15-5} = 0b11110000000;
3296 let Inst{4} = 1; // H form
3297 let Inst{3-0} = Rm;
Jim Grosbach7f739be2011-09-19 22:21:13 +00003298
3299 let DecoderMethod = "DecodeThumbTableBranch";
Johnny Chen93042d12010-03-02 18:14:57 +00003300}
Evan Cheng5657c012009-07-29 02:18:14 +00003301} // isNotDuplicable, isIndirectBranch
3302
David Goodwinc9a59b52009-06-30 19:50:22 +00003303} // isBranch, isTerminator, isBarrier
David Goodwin5e47a9a2009-06-30 18:04:13 +00003304
3305// FIXME: should be able to write a pattern for ARMBrcond, but can't use
Owen Anderson51f6a7a2011-09-09 21:48:23 +00003306// a two-value operand where a dag node expects ", "two operands. :(
David Goodwin5e47a9a2009-06-30 18:04:13 +00003307let isBranch = 1, isTerminator = 1 in
David Goodwin8b7d7ad2009-08-06 16:52:47 +00003308def t2Bcc : T2I<(outs), (ins brtarget:$target), IIC_Br,
Evan Cheng699beba2009-10-27 00:08:59 +00003309 "b", ".w\t$target",
Johnny Chend68e1192009-12-15 17:24:14 +00003310 [/*(ARMbrcond bb:$target, imm:$cc)*/]> {
3311 let Inst{31-27} = 0b11110;
3312 let Inst{15-14} = 0b10;
3313 let Inst{12} = 0;
Jim Grosbach00f25fa2010-12-14 20:46:39 +00003314
Owen Andersonfb20d892010-12-09 00:27:41 +00003315 bits<4> p;
3316 let Inst{25-22} = p;
Jim Grosbach7721e7f2010-12-02 23:05:38 +00003317
Owen Andersonfb20d892010-12-09 00:27:41 +00003318 bits<21> target;
3319 let Inst{26} = target{20};
3320 let Inst{11} = target{19};
3321 let Inst{13} = target{18};
3322 let Inst{21-16} = target{17-12};
3323 let Inst{10-0} = target{11-1};
Owen Anderson8d7d2e12011-08-09 20:55:18 +00003324
3325 let DecoderMethod = "DecodeThumb2BCCInstruction";
Johnny Chend68e1192009-12-15 17:24:14 +00003326}
Evan Chengf49810c2009-06-23 17:48:47 +00003327
Evan Chengafff9412011-12-20 18:26:50 +00003328// Tail calls. The IOS version of thumb tail calls uses a t2 branch, so
Jim Grosbachaf7f2d62011-07-08 20:32:21 +00003329// it goes here.
3330let isCall = 1, isTerminator = 1, isReturn = 1, isBarrier = 1 in {
Evan Chengafff9412011-12-20 18:26:50 +00003331 // IOS version.
Jakob Stoklund Olesenc54f6342012-02-24 01:19:29 +00003332 let Uses = [SP] in
Owen Anderson51f6a7a2011-09-09 21:48:23 +00003333 def tTAILJMPd: tPseudoExpand<(outs),
Jakob Stoklund Olesen135fb452012-07-13 20:27:00 +00003334 (ins uncondbrtarget:$dst, pred:$p),
Owen Anderson16884412011-07-13 23:22:26 +00003335 4, IIC_Br, [],
Owen Anderson51f6a7a2011-09-09 21:48:23 +00003336 (t2B uncondbrtarget:$dst, pred:$p)>,
Evan Chengafff9412011-12-20 18:26:50 +00003337 Requires<[IsThumb2, IsIOS]>;
Jim Grosbachaf7f2d62011-07-08 20:32:21 +00003338}
Evan Cheng06e16582009-07-10 01:54:42 +00003339
Jakob Stoklund Olesenf16936e2012-04-06 00:04:58 +00003340let isCall = 1, Defs = [LR], Uses = [SP] in {
Evan Cheng4bfcd4a2012-02-28 18:51:51 +00003341 // mov lr, pc; b if callee is marked noreturn to avoid confusing the
3342 // return stack predictor.
3343 def t2BMOVPCB_CALL : tPseudoInst<(outs),
Jakob Stoklund Olesen135fb452012-07-13 20:27:00 +00003344 (ins t_bltarget:$func),
Evan Cheng4bfcd4a2012-02-28 18:51:51 +00003345 6, IIC_Br, [(ARMcall_nolink tglobaladdr:$func)]>,
Jakob Stoklund Olesenf16936e2012-04-06 00:04:58 +00003346 Requires<[IsThumb]>;
Evan Cheng4bfcd4a2012-02-28 18:51:51 +00003347}
3348
3349// Direct calls
3350def : T2Pat<(ARMcall_nolink texternalsym:$func),
3351 (t2BMOVPCB_CALL texternalsym:$func)>,
Jakob Stoklund Olesenf16936e2012-04-06 00:04:58 +00003352 Requires<[IsThumb]>;
Evan Cheng4bfcd4a2012-02-28 18:51:51 +00003353
Evan Cheng06e16582009-07-10 01:54:42 +00003354// IT block
Evan Cheng86050dc2010-06-18 23:09:54 +00003355let Defs = [ITSTATE] in
Evan Cheng06e16582009-07-10 01:54:42 +00003356def t2IT : Thumb2XI<(outs), (ins it_pred:$cc, it_mask:$mask),
Owen Anderson16884412011-07-13 23:22:26 +00003357 AddrModeNone, 2, IIC_iALUx,
Johnny Chend68e1192009-12-15 17:24:14 +00003358 "it$mask\t$cc", "", []> {
3359 // 16-bit instruction.
Johnny Chenbbc71b22009-12-16 02:32:54 +00003360 let Inst{31-16} = 0x0000;
Johnny Chend68e1192009-12-15 17:24:14 +00003361 let Inst{15-8} = 0b10111111;
Owen Anderson05bf5952010-11-29 18:54:38 +00003362
3363 bits<4> cc;
3364 bits<4> mask;
Jim Grosbach86386922010-12-08 22:10:43 +00003365 let Inst{7-4} = cc;
3366 let Inst{3-0} = mask;
Owen Andersoneaca9282011-08-30 22:58:27 +00003367
3368 let DecoderMethod = "DecodeIT";
Johnny Chend68e1192009-12-15 17:24:14 +00003369}
Evan Cheng06e16582009-07-10 01:54:42 +00003370
Johnny Chence6275f2010-02-25 19:05:29 +00003371// Branch and Exchange Jazelle -- for disassembly only
3372// Rm = Inst{19-16}
Jim Grosbach6c3e11e2011-09-02 23:43:09 +00003373def t2BXJ : T2I<(outs), (ins rGPR:$func), NoItinerary, "bxj", "\t$func", []> {
3374 bits<4> func;
Johnny Chence6275f2010-02-25 19:05:29 +00003375 let Inst{31-27} = 0b11110;
3376 let Inst{26} = 0;
3377 let Inst{25-20} = 0b111100;
Jim Grosbach86386922010-12-08 22:10:43 +00003378 let Inst{19-16} = func;
Jim Grosbach6c3e11e2011-09-02 23:43:09 +00003379 let Inst{15-0} = 0b1000111100000000;
Johnny Chence6275f2010-02-25 19:05:29 +00003380}
3381
Jim Grosbach11cca7a2011-08-18 17:51:36 +00003382// Compare and branch on zero / non-zero
3383let isBranch = 1, isTerminator = 1 in {
3384 def tCBZ : T1I<(outs), (ins tGPR:$Rn, t_cbtarget:$target), IIC_Br,
3385 "cbz\t$Rn, $target", []>,
3386 T1Misc<{0,0,?,1,?,?,?}>,
3387 Requires<[IsThumb2]> {
3388 // A8.6.27
3389 bits<6> target;
3390 bits<3> Rn;
3391 let Inst{9} = target{5};
3392 let Inst{7-3} = target{4-0};
3393 let Inst{2-0} = Rn;
3394 }
3395
3396 def tCBNZ : T1I<(outs), (ins tGPR:$Rn, t_cbtarget:$target), IIC_Br,
3397 "cbnz\t$Rn, $target", []>,
3398 T1Misc<{1,0,?,1,?,?,?}>,
3399 Requires<[IsThumb2]> {
3400 // A8.6.27
3401 bits<6> target;
3402 bits<3> Rn;
3403 let Inst{9} = target{5};
3404 let Inst{7-3} = target{4-0};
3405 let Inst{2-0} = Rn;
3406 }
3407}
3408
3409
Jim Grosbach32f36892011-09-19 23:38:34 +00003410// Change Processor State is a system instruction.
Bruno Cardoso Lopesa2b6e412011-02-14 13:09:44 +00003411// FIXME: Since the asm parser has currently no clean way to handle optional
3412// operands, create 3 versions of the same instruction. Once there's a clean
3413// framework to represent optional operands, change this behavior.
3414class t2CPS<dag iops, string asm_op> : T2XI<(outs), iops, NoItinerary,
Jim Grosbach32f36892011-09-19 23:38:34 +00003415 !strconcat("cps", asm_op), []> {
Bruno Cardoso Lopesa2b6e412011-02-14 13:09:44 +00003416 bits<2> imod;
3417 bits<3> iflags;
3418 bits<5> mode;
3419 bit M;
3420
Johnny Chen93042d12010-03-02 18:14:57 +00003421 let Inst{31-27} = 0b11110;
Bruno Cardoso Lopesa2b6e412011-02-14 13:09:44 +00003422 let Inst{26} = 0;
Johnny Chen93042d12010-03-02 18:14:57 +00003423 let Inst{25-20} = 0b111010;
Bruno Cardoso Lopesa2b6e412011-02-14 13:09:44 +00003424 let Inst{19-16} = 0b1111;
Johnny Chen93042d12010-03-02 18:14:57 +00003425 let Inst{15-14} = 0b10;
Bruno Cardoso Lopesa2b6e412011-02-14 13:09:44 +00003426 let Inst{12} = 0;
3427 let Inst{10-9} = imod;
3428 let Inst{8} = M;
3429 let Inst{7-5} = iflags;
3430 let Inst{4-0} = mode;
Owen Anderson6153a032011-08-23 17:45:18 +00003431 let DecoderMethod = "DecodeT2CPSInstruction";
Johnny Chen93042d12010-03-02 18:14:57 +00003432}
3433
Bruno Cardoso Lopesa2b6e412011-02-14 13:09:44 +00003434let M = 1 in
3435 def t2CPS3p : t2CPS<(ins imod_op:$imod, iflags_op:$iflags, i32imm:$mode),
3436 "$imod.w\t$iflags, $mode">;
3437let mode = 0, M = 0 in
3438 def t2CPS2p : t2CPS<(ins imod_op:$imod, iflags_op:$iflags),
3439 "$imod.w\t$iflags">;
3440let imod = 0, iflags = 0, M = 1 in
Jim Grosbach0efe2132011-09-19 23:58:31 +00003441 def t2CPS1p : t2CPS<(ins imm0_31:$mode), "\t$mode">;
Bruno Cardoso Lopesa2b6e412011-02-14 13:09:44 +00003442
Johnny Chen0f7866e2010-03-03 02:09:43 +00003443// A6.3.4 Branches and miscellaneous control
3444// Table A6-14 Change Processor State, and hint instructions
Jim Grosbach7e99a602012-06-18 19:45:50 +00003445def t2HINT : T2I<(outs), (ins imm0_255:$imm), NoItinerary, "hint", "\t$imm",[]>{
3446 bits<8> imm;
3447 let Inst{31-8} = 0b111100111010111110000000;
3448 let Inst{7-0} = imm;
Johnny Chen0f7866e2010-03-03 02:09:43 +00003449}
3450
Jim Grosbach7e99a602012-06-18 19:45:50 +00003451def : t2InstAlias<"hint$p.w $imm", (t2HINT imm0_255:$imm, pred:$p)>;
3452def : t2InstAlias<"nop$p.w", (t2HINT 0, pred:$p)>;
3453def : t2InstAlias<"yield$p.w", (t2HINT 1, pred:$p)>;
3454def : t2InstAlias<"wfe$p.w", (t2HINT 2, pred:$p)>;
3455def : t2InstAlias<"wfi$p.w", (t2HINT 3, pred:$p)>;
3456def : t2InstAlias<"sev$p.w", (t2HINT 4, pred:$p)>;
Johnny Chen0f7866e2010-03-03 02:09:43 +00003457
Jim Grosbach6f9f8842011-07-13 22:59:38 +00003458def t2DBG : T2I<(outs), (ins imm0_15:$opt), NoItinerary, "dbg", "\t$opt", []> {
Owen Andersonc7373f82010-11-30 20:00:01 +00003459 bits<4> opt;
Jim Grosbach77951902011-09-06 22:06:40 +00003460 let Inst{31-20} = 0b111100111010;
3461 let Inst{19-16} = 0b1111;
3462 let Inst{15-8} = 0b10000000;
3463 let Inst{7-4} = 0b1111;
Jim Grosbach86386922010-12-08 22:10:43 +00003464 let Inst{3-0} = opt;
Johnny Chen0f7866e2010-03-03 02:09:43 +00003465}
3466
Jim Grosbach32f36892011-09-19 23:38:34 +00003467// Secure Monitor Call is a system instruction.
Johnny Chen6341c5a2010-02-25 20:25:24 +00003468// Option = Inst{19-16}
Jim Grosbach32f36892011-09-19 23:38:34 +00003469def t2SMC : T2I<(outs), (ins imm0_15:$opt), NoItinerary, "smc", "\t$opt", []> {
Johnny Chen6341c5a2010-02-25 20:25:24 +00003470 let Inst{31-27} = 0b11110;
3471 let Inst{26-20} = 0b1111111;
3472 let Inst{15-12} = 0b1000;
Jim Grosbach7721e7f2010-12-02 23:05:38 +00003473
Owen Andersond18a9c92010-11-29 19:22:08 +00003474 bits<4> opt;
Jim Grosbach86386922010-12-08 22:10:43 +00003475 let Inst{19-16} = opt;
Owen Andersond18a9c92010-11-29 19:22:08 +00003476}
3477
Jim Grosbach05ec8f72011-09-16 18:25:22 +00003478class T2SRS<bits<2> Op, bit W, dag oops, dag iops, InstrItinClass itin,
3479 string opc, string asm, list<dag> pattern>
Owen Andersond18a9c92010-11-29 19:22:08 +00003480 : T2I<oops, iops, itin, opc, asm, pattern> {
3481 bits<5> mode;
Jim Grosbach05ec8f72011-09-16 18:25:22 +00003482 let Inst{31-25} = 0b1110100;
3483 let Inst{24-23} = Op;
3484 let Inst{22} = 0;
3485 let Inst{21} = W;
3486 let Inst{20-16} = 0b01101;
3487 let Inst{15-5} = 0b11000000000;
Owen Andersond18a9c92010-11-29 19:22:08 +00003488 let Inst{4-0} = mode{4-0};
Johnny Chen6341c5a2010-02-25 20:25:24 +00003489}
3490
Jim Grosbach05ec8f72011-09-16 18:25:22 +00003491// Store Return State is a system instruction.
3492def t2SRSDB_UPD : T2SRS<0b00, 1, (outs), (ins imm0_31:$mode), NoItinerary,
3493 "srsdb", "\tsp!, $mode", []>;
3494def t2SRSDB : T2SRS<0b00, 0, (outs), (ins imm0_31:$mode), NoItinerary,
3495 "srsdb","\tsp, $mode", []>;
3496def t2SRSIA_UPD : T2SRS<0b11, 1, (outs), (ins imm0_31:$mode), NoItinerary,
3497 "srsia","\tsp!, $mode", []>;
3498def t2SRSIA : T2SRS<0b11, 0, (outs), (ins imm0_31:$mode), NoItinerary,
3499 "srsia","\tsp, $mode", []>;
Johnny Chen6341c5a2010-02-25 20:25:24 +00003500
Jim Grosbach05ec8f72011-09-16 18:25:22 +00003501// Return From Exception is a system instruction.
Owen Anderson5404c2b2010-11-29 20:38:48 +00003502class T2RFE<bits<12> op31_20, dag oops, dag iops, InstrItinClass itin,
Owen Andersond18a9c92010-11-29 19:22:08 +00003503 string opc, string asm, list<dag> pattern>
3504 : T2I<oops, iops, itin, opc, asm, pattern> {
Owen Anderson5404c2b2010-11-29 20:38:48 +00003505 let Inst{31-20} = op31_20{11-0};
Jim Grosbach7721e7f2010-12-02 23:05:38 +00003506
Owen Andersond18a9c92010-11-29 19:22:08 +00003507 bits<4> Rn;
Jim Grosbach86386922010-12-08 22:10:43 +00003508 let Inst{19-16} = Rn;
Johnny Chenec51a622011-04-12 21:41:51 +00003509 let Inst{15-0} = 0xc000;
Owen Andersond18a9c92010-11-29 19:22:08 +00003510}
3511
Owen Anderson5404c2b2010-11-29 20:38:48 +00003512def t2RFEDBW : T2RFE<0b111010000011,
Johnny Chenec51a622011-04-12 21:41:51 +00003513 (outs), (ins GPR:$Rn), NoItinerary, "rfedb", "\t$Rn!",
Owen Anderson5404c2b2010-11-29 20:38:48 +00003514 [/* For disassembly only; pattern left blank */]>;
3515def t2RFEDB : T2RFE<0b111010000001,
Johnny Chenec51a622011-04-12 21:41:51 +00003516 (outs), (ins GPR:$Rn), NoItinerary, "rfedb", "\t$Rn",
Owen Anderson5404c2b2010-11-29 20:38:48 +00003517 [/* For disassembly only; pattern left blank */]>;
3518def t2RFEIAW : T2RFE<0b111010011011,
Johnny Chenec51a622011-04-12 21:41:51 +00003519 (outs), (ins GPR:$Rn), NoItinerary, "rfeia", "\t$Rn!",
Owen Anderson5404c2b2010-11-29 20:38:48 +00003520 [/* For disassembly only; pattern left blank */]>;
3521def t2RFEIA : T2RFE<0b111010011001,
Johnny Chenec51a622011-04-12 21:41:51 +00003522 (outs), (ins GPR:$Rn), NoItinerary, "rfeia", "\t$Rn",
Owen Anderson5404c2b2010-11-29 20:38:48 +00003523 [/* For disassembly only; pattern left blank */]>;
Johnny Chen6341c5a2010-02-25 20:25:24 +00003524
Evan Chengf49810c2009-06-23 17:48:47 +00003525//===----------------------------------------------------------------------===//
3526// Non-Instruction Patterns
3527//
3528
Evan Cheng5adb66a2009-09-28 09:14:39 +00003529// 32-bit immediate using movw + movt.
Evan Cheng5be39222010-09-24 22:03:46 +00003530// This is a single pseudo instruction to make it re-materializable.
3531// FIXME: Remove this when we can do generalized remat.
Evan Chengfc8475b2011-01-19 02:16:49 +00003532let isReMaterializable = 1, isMoveImm = 1 in
Jim Grosbach3c38f962010-10-06 22:01:26 +00003533def t2MOVi32imm : PseudoInst<(outs rGPR:$dst), (ins i32imm:$src), IIC_iMOVix2,
Jim Grosbach99594eb2010-11-18 01:38:26 +00003534 [(set rGPR:$dst, (i32 imm:$src))]>,
Jim Grosbach3c38f962010-10-06 22:01:26 +00003535 Requires<[IsThumb, HasV6T2]>;
Evan Chengb9803a82009-11-06 23:52:48 +00003536
Evan Cheng53519f02011-01-21 18:55:51 +00003537// Pseudo instruction that combines movw + movt + add pc (if pic).
Evan Cheng9fe20092011-01-20 08:34:58 +00003538// It also makes it possible to rematerialize the instructions.
3539// FIXME: Remove this when we can do generalized remat and when machine licm
3540// can properly the instructions.
Evan Cheng53519f02011-01-21 18:55:51 +00003541let isReMaterializable = 1 in {
3542def t2MOV_ga_pcrel : PseudoInst<(outs rGPR:$dst), (ins i32imm:$addr),
3543 IIC_iMOVix2addpc,
Evan Cheng9fe20092011-01-20 08:34:58 +00003544 [(set rGPR:$dst, (ARMWrapperPIC tglobaladdr:$addr))]>,
3545 Requires<[IsThumb2, UseMovt]>;
Evan Cheng5de5d4b2011-01-17 08:03:18 +00003546
Evan Cheng53519f02011-01-21 18:55:51 +00003547def t2MOV_ga_dyn : PseudoInst<(outs rGPR:$dst), (ins i32imm:$addr),
3548 IIC_iMOVix2,
3549 [(set rGPR:$dst, (ARMWrapperDYN tglobaladdr:$addr))]>,
3550 Requires<[IsThumb2, UseMovt]>;
3551}
3552
Anton Korobeynikov5cdc3a92009-11-24 00:44:37 +00003553// ConstantPool, GlobalAddress, and JumpTable
3554def : T2Pat<(ARMWrapper tglobaladdr :$dst), (t2LEApcrel tglobaladdr :$dst)>,
3555 Requires<[IsThumb2, DontUseMovt]>;
3556def : T2Pat<(ARMWrapper tconstpool :$dst), (t2LEApcrel tconstpool :$dst)>;
3557def : T2Pat<(ARMWrapper tglobaladdr :$dst), (t2MOVi32imm tglobaladdr :$dst)>,
3558 Requires<[IsThumb2, UseMovt]>;
3559
3560def : T2Pat<(ARMWrapperJT tjumptable:$dst, imm:$id),
3561 (t2LEApcrelJT tjumptable:$dst, imm:$id)>;
3562
Evan Chengb9803a82009-11-06 23:52:48 +00003563// Pseudo instruction that combines ldr from constpool and add pc. This should
3564// be expanded into two instructions late to allow if-conversion and
3565// scheduling.
Dan Gohmanbc9d98b2010-02-27 23:47:46 +00003566let canFoldAsLoad = 1, isReMaterializable = 1 in
Evan Cheng9fe20092011-01-20 08:34:58 +00003567def t2LDRpci_pic : PseudoInst<(outs rGPR:$dst), (ins i32imm:$addr, pclabel:$cp),
Jim Grosbach99594eb2010-11-18 01:38:26 +00003568 IIC_iLoadiALU,
Evan Cheng9fe20092011-01-20 08:34:58 +00003569 [(set rGPR:$dst, (ARMpic_add (load (ARMWrapper tconstpool:$addr)),
Evan Chengb9803a82009-11-06 23:52:48 +00003570 imm:$cp))]>,
3571 Requires<[IsThumb2]>;
Bill Wendlingef2c86f2011-10-10 22:59:55 +00003572
Andrew Trick7f5f0da2011-10-18 18:40:53 +00003573// Pseudo isntruction that combines movs + predicated rsbmi
Bill Wendlingef2c86f2011-10-10 22:59:55 +00003574// to implement integer ABS
3575let usesCustomInserter = 1, Defs = [CPSR] in {
3576def t2ABS : PseudoInst<(outs rGPR:$dst), (ins rGPR:$src),
3577 NoItinerary, []>, Requires<[IsThumb2]>;
3578}
3579
Owen Anderson8a83f712011-09-07 21:10:42 +00003580//===----------------------------------------------------------------------===//
3581// Coprocessor load/store -- for disassembly only
3582//
Jim Grosbachc66e7af2011-10-12 20:54:17 +00003583class T2CI<bits<4> op31_28, dag oops, dag iops, string opc, string asm>
Owen Anderson8a83f712011-09-07 21:10:42 +00003584 : T2I<oops, iops, NoItinerary, opc, asm, []> {
Jim Grosbachc66e7af2011-10-12 20:54:17 +00003585 let Inst{31-28} = op31_28;
Owen Anderson8a83f712011-09-07 21:10:42 +00003586 let Inst{27-25} = 0b110;
3587}
3588
Jim Grosbachc66e7af2011-10-12 20:54:17 +00003589multiclass t2LdStCop<bits<4> op31_28, bit load, bit Dbit, string asm> {
3590 def _OFFSET : T2CI<op31_28,
3591 (outs), (ins p_imm:$cop, c_imm:$CRd, addrmode5:$addr),
3592 asm, "\t$cop, $CRd, $addr"> {
3593 bits<13> addr;
3594 bits<4> cop;
3595 bits<4> CRd;
Owen Anderson8a83f712011-09-07 21:10:42 +00003596 let Inst{24} = 1; // P = 1
Jim Grosbachc66e7af2011-10-12 20:54:17 +00003597 let Inst{23} = addr{8};
3598 let Inst{22} = Dbit;
Owen Anderson8a83f712011-09-07 21:10:42 +00003599 let Inst{21} = 0; // W = 0
Owen Anderson8a83f712011-09-07 21:10:42 +00003600 let Inst{20} = load;
Jim Grosbachc66e7af2011-10-12 20:54:17 +00003601 let Inst{19-16} = addr{12-9};
3602 let Inst{15-12} = CRd;
3603 let Inst{11-8} = cop;
3604 let Inst{7-0} = addr{7-0};
Owen Anderson8a83f712011-09-07 21:10:42 +00003605 let DecoderMethod = "DecodeCopMemInstruction";
3606 }
Jim Grosbachc66e7af2011-10-12 20:54:17 +00003607 def _PRE : T2CI<op31_28,
3608 (outs), (ins p_imm:$cop, c_imm:$CRd, addrmode5:$addr),
3609 asm, "\t$cop, $CRd, $addr!"> {
3610 bits<13> addr;
3611 bits<4> cop;
3612 bits<4> CRd;
Owen Anderson8a83f712011-09-07 21:10:42 +00003613 let Inst{24} = 1; // P = 1
Jim Grosbachc66e7af2011-10-12 20:54:17 +00003614 let Inst{23} = addr{8};
3615 let Inst{22} = Dbit;
Owen Anderson8a83f712011-09-07 21:10:42 +00003616 let Inst{21} = 1; // W = 1
Owen Anderson8a83f712011-09-07 21:10:42 +00003617 let Inst{20} = load;
Jim Grosbachc66e7af2011-10-12 20:54:17 +00003618 let Inst{19-16} = addr{12-9};
3619 let Inst{15-12} = CRd;
3620 let Inst{11-8} = cop;
3621 let Inst{7-0} = addr{7-0};
Owen Anderson8a83f712011-09-07 21:10:42 +00003622 let DecoderMethod = "DecodeCopMemInstruction";
3623 }
Jim Grosbachc66e7af2011-10-12 20:54:17 +00003624 def _POST: T2CI<op31_28,
3625 (outs), (ins p_imm:$cop, c_imm:$CRd, addr_offset_none:$addr,
3626 postidx_imm8s4:$offset),
3627 asm, "\t$cop, $CRd, $addr, $offset"> {
3628 bits<9> offset;
3629 bits<4> addr;
3630 bits<4> cop;
3631 bits<4> CRd;
Owen Anderson8a83f712011-09-07 21:10:42 +00003632 let Inst{24} = 0; // P = 0
Jim Grosbachc66e7af2011-10-12 20:54:17 +00003633 let Inst{23} = offset{8};
3634 let Inst{22} = Dbit;
Owen Anderson8a83f712011-09-07 21:10:42 +00003635 let Inst{21} = 1; // W = 1
Owen Anderson8a83f712011-09-07 21:10:42 +00003636 let Inst{20} = load;
Jim Grosbachc66e7af2011-10-12 20:54:17 +00003637 let Inst{19-16} = addr;
3638 let Inst{15-12} = CRd;
3639 let Inst{11-8} = cop;
3640 let Inst{7-0} = offset{7-0};
Owen Anderson8a83f712011-09-07 21:10:42 +00003641 let DecoderMethod = "DecodeCopMemInstruction";
3642 }
Jim Grosbachc66e7af2011-10-12 20:54:17 +00003643 def _OPTION : T2CI<op31_28, (outs),
3644 (ins p_imm:$cop, c_imm:$CRd, addr_offset_none:$addr,
3645 coproc_option_imm:$option),
3646 asm, "\t$cop, $CRd, $addr, $option"> {
3647 bits<8> option;
3648 bits<4> addr;
3649 bits<4> cop;
3650 bits<4> CRd;
Owen Anderson8a83f712011-09-07 21:10:42 +00003651 let Inst{24} = 0; // P = 0
3652 let Inst{23} = 1; // U = 1
Jim Grosbachc66e7af2011-10-12 20:54:17 +00003653 let Inst{22} = Dbit;
Owen Anderson8a83f712011-09-07 21:10:42 +00003654 let Inst{21} = 0; // W = 0
Owen Anderson8a83f712011-09-07 21:10:42 +00003655 let Inst{20} = load;
Jim Grosbachc66e7af2011-10-12 20:54:17 +00003656 let Inst{19-16} = addr;
3657 let Inst{15-12} = CRd;
3658 let Inst{11-8} = cop;
3659 let Inst{7-0} = option;
Owen Anderson8a83f712011-09-07 21:10:42 +00003660 let DecoderMethod = "DecodeCopMemInstruction";
3661 }
3662}
3663
Jim Grosbachc66e7af2011-10-12 20:54:17 +00003664defm t2LDC : t2LdStCop<0b1110, 1, 0, "ldc">;
3665defm t2LDCL : t2LdStCop<0b1110, 1, 1, "ldcl">;
3666defm t2STC : t2LdStCop<0b1110, 0, 0, "stc">;
3667defm t2STCL : t2LdStCop<0b1110, 0, 1, "stcl">;
3668defm t2LDC2 : t2LdStCop<0b1111, 1, 0, "ldc2">;
3669defm t2LDC2L : t2LdStCop<0b1111, 1, 1, "ldc2l">;
3670defm t2STC2 : t2LdStCop<0b1111, 0, 0, "stc2">;
3671defm t2STC2L : t2LdStCop<0b1111, 0, 1, "stc2l">;
Owen Anderson8a83f712011-09-07 21:10:42 +00003672
Johnny Chen23336552010-02-25 18:46:43 +00003673
3674//===----------------------------------------------------------------------===//
3675// Move between special register and ARM core register -- for disassembly only
3676//
Jim Grosbachbf841cf2011-09-14 20:03:46 +00003677// Move to ARM core register from Special Register
James Molloyacad68d2011-09-28 14:21:38 +00003678
3679// A/R class MRS.
3680//
3681// A/R class can only move from CPSR or SPSR.
Jim Grosbachc92ba4e2012-04-23 22:04:10 +00003682def t2MRS_AR : T2I<(outs GPR:$Rd), (ins), NoItinerary, "mrs", "\t$Rd, apsr",
3683 []>, Requires<[IsThumb2,IsARClass]> {
Owen Anderson00a035f2010-11-29 19:29:15 +00003684 bits<4> Rd;
Jim Grosbachbf841cf2011-09-14 20:03:46 +00003685 let Inst{31-12} = 0b11110011111011111000;
Jim Grosbach86386922010-12-08 22:10:43 +00003686 let Inst{11-8} = Rd;
Jim Grosbachbf841cf2011-09-14 20:03:46 +00003687 let Inst{7-0} = 0b0000;
Owen Anderson00a035f2010-11-29 19:29:15 +00003688}
3689
James Molloyacad68d2011-09-28 14:21:38 +00003690def : t2InstAlias<"mrs${p} $Rd, cpsr", (t2MRS_AR GPR:$Rd, pred:$p)>;
Jim Grosbachbf841cf2011-09-14 20:03:46 +00003691
Jim Grosbachc92ba4e2012-04-23 22:04:10 +00003692def t2MRSsys_AR: T2I<(outs GPR:$Rd), (ins), NoItinerary, "mrs", "\t$Rd, spsr",
3693 []>, Requires<[IsThumb2,IsARClass]> {
Jim Grosbachbf841cf2011-09-14 20:03:46 +00003694 bits<4> Rd;
3695 let Inst{31-12} = 0b11110011111111111000;
3696 let Inst{11-8} = Rd;
3697 let Inst{7-0} = 0b0000;
3698}
Johnny Chen23336552010-02-25 18:46:43 +00003699
James Molloyacad68d2011-09-28 14:21:38 +00003700// M class MRS.
3701//
3702// This MRS has a mask field in bits 7-0 and can take more values than
3703// the A/R class (a full msr_mask).
3704def t2MRS_M : T2I<(outs rGPR:$Rd), (ins msr_mask:$mask), NoItinerary,
3705 "mrs", "\t$Rd, $mask", []>,
Evan Cheng97a45432012-04-27 01:27:19 +00003706 Requires<[IsThumb,IsMClass]> {
James Molloyacad68d2011-09-28 14:21:38 +00003707 bits<4> Rd;
3708 bits<8> mask;
3709 let Inst{31-12} = 0b11110011111011111000;
3710 let Inst{11-8} = Rd;
3711 let Inst{19-16} = 0b1111;
3712 let Inst{7-0} = mask;
3713}
3714
3715
Bruno Cardoso Lopes584bf7b2011-02-18 19:45:59 +00003716// Move from ARM core register to Special Register
3717//
James Molloyacad68d2011-09-28 14:21:38 +00003718// A/R class MSR.
3719//
Bruno Cardoso Lopes584bf7b2011-02-18 19:45:59 +00003720// No need to have both system and application versions, the encodings are the
3721// same and the assembly parser has no way to distinguish between them. The mask
3722// operand contains the special register (R Bit) in bit 4 and bits 3-0 contains
3723// the mask with the fields to be accessed in the special register.
James Molloyacad68d2011-09-28 14:21:38 +00003724def t2MSR_AR : T2I<(outs), (ins msr_mask:$mask, rGPR:$Rn),
3725 NoItinerary, "msr", "\t$mask, $Rn", []>,
3726 Requires<[IsThumb2,IsARClass]> {
Bruno Cardoso Lopes584bf7b2011-02-18 19:45:59 +00003727 bits<5> mask;
Owen Anderson00a035f2010-11-29 19:29:15 +00003728 bits<4> Rn;
Jim Grosbachbf841cf2011-09-14 20:03:46 +00003729 let Inst{31-21} = 0b11110011100;
Bruno Cardoso Lopes584bf7b2011-02-18 19:45:59 +00003730 let Inst{20} = mask{4}; // R Bit
Jim Grosbachbf841cf2011-09-14 20:03:46 +00003731 let Inst{19-16} = Rn;
3732 let Inst{15-12} = 0b1000;
Bruno Cardoso Lopes584bf7b2011-02-18 19:45:59 +00003733 let Inst{11-8} = mask{3-0};
Jim Grosbachbf841cf2011-09-14 20:03:46 +00003734 let Inst{7-0} = 0;
Owen Anderson00a035f2010-11-29 19:29:15 +00003735}
3736
James Molloyacad68d2011-09-28 14:21:38 +00003737// M class MSR.
3738//
3739// Move from ARM core register to Special Register
3740def t2MSR_M : T2I<(outs), (ins msr_mask:$SYSm, rGPR:$Rn),
3741 NoItinerary, "msr", "\t$SYSm, $Rn", []>,
Evan Cheng97a45432012-04-27 01:27:19 +00003742 Requires<[IsThumb,IsMClass]> {
Kevin Enderby0fd4f3c2012-05-17 22:18:01 +00003743 bits<12> SYSm;
James Molloyacad68d2011-09-28 14:21:38 +00003744 bits<4> Rn;
3745 let Inst{31-21} = 0b11110011100;
3746 let Inst{20} = 0b0;
3747 let Inst{19-16} = Rn;
3748 let Inst{15-12} = 0b1000;
Kevin Enderby0fd4f3c2012-05-17 22:18:01 +00003749 let Inst{11-0} = SYSm;
James Molloyacad68d2011-09-28 14:21:38 +00003750}
3751
3752
Bruno Cardoso Lopes6b3a9992011-01-20 16:58:48 +00003753//===----------------------------------------------------------------------===//
Jim Grosbach9bb098a2011-07-13 21:14:23 +00003754// Move between coprocessor and ARM core register
Bruno Cardoso Lopes6b3a9992011-01-20 16:58:48 +00003755//
3756
Jim Grosbache35c5e02011-07-13 21:35:10 +00003757class t2MovRCopro<bits<4> Op, string opc, bit direction, dag oops, dag iops,
3758 list<dag> pattern>
3759 : T2Cop<Op, oops, iops,
Jim Grosbach0d8dae22011-07-13 21:17:59 +00003760 !strconcat(opc, "\t$cop, $opc1, $Rt, $CRn, $CRm, $opc2"),
Jim Grosbach9bb098a2011-07-13 21:14:23 +00003761 pattern> {
3762 let Inst{27-24} = 0b1110;
3763 let Inst{20} = direction;
3764 let Inst{4} = 1;
3765
3766 bits<4> Rt;
3767 bits<4> cop;
3768 bits<3> opc1;
3769 bits<3> opc2;
3770 bits<4> CRm;
3771 bits<4> CRn;
3772
3773 let Inst{15-12} = Rt;
3774 let Inst{11-8} = cop;
3775 let Inst{23-21} = opc1;
3776 let Inst{7-5} = opc2;
3777 let Inst{3-0} = CRm;
3778 let Inst{19-16} = CRn;
3779}
3780
Jim Grosbache35c5e02011-07-13 21:35:10 +00003781class t2MovRRCopro<bits<4> Op, string opc, bit direction,
3782 list<dag> pattern = []>
3783 : T2Cop<Op, (outs),
Jim Grosbachc8ae39e2011-07-14 21:26:42 +00003784 (ins p_imm:$cop, imm0_15:$opc1, GPR:$Rt, GPR:$Rt2, c_imm:$CRm),
Jim Grosbache35c5e02011-07-13 21:35:10 +00003785 !strconcat(opc, "\t$cop, $opc1, $Rt, $Rt2, $CRm"), pattern> {
3786 let Inst{27-24} = 0b1100;
3787 let Inst{23-21} = 0b010;
3788 let Inst{20} = direction;
3789
3790 bits<4> Rt;
3791 bits<4> Rt2;
3792 bits<4> cop;
3793 bits<4> opc1;
3794 bits<4> CRm;
3795
3796 let Inst{15-12} = Rt;
3797 let Inst{19-16} = Rt2;
3798 let Inst{11-8} = cop;
3799 let Inst{7-4} = opc1;
3800 let Inst{3-0} = CRm;
3801}
3802
3803/* from ARM core register to coprocessor */
3804def t2MCR : t2MovRCopro<0b1110, "mcr", 0,
Jim Grosbach9bb098a2011-07-13 21:14:23 +00003805 (outs),
Jim Grosbache540c742011-07-14 21:19:17 +00003806 (ins p_imm:$cop, imm0_7:$opc1, GPR:$Rt, c_imm:$CRn,
3807 c_imm:$CRm, imm0_7:$opc2),
Jim Grosbach9bb098a2011-07-13 21:14:23 +00003808 [(int_arm_mcr imm:$cop, imm:$opc1, GPR:$Rt, imm:$CRn,
3809 imm:$CRm, imm:$opc2)]>;
Jim Grosbach213d2e72012-03-16 00:45:58 +00003810def : t2InstAlias<"mcr $cop, $opc1, $Rt, $CRn, $CRm",
3811 (t2MCR p_imm:$cop, imm0_7:$opc1, GPR:$Rt, c_imm:$CRn,
3812 c_imm:$CRm, 0)>;
Jim Grosbache35c5e02011-07-13 21:35:10 +00003813def t2MCR2 : t2MovRCopro<0b1111, "mcr2", 0,
Jim Grosbache540c742011-07-14 21:19:17 +00003814 (outs), (ins p_imm:$cop, imm0_7:$opc1, GPR:$Rt, c_imm:$CRn,
3815 c_imm:$CRm, imm0_7:$opc2),
Bruno Cardoso Lopes0a69ba32011-05-03 17:29:29 +00003816 [(int_arm_mcr2 imm:$cop, imm:$opc1, GPR:$Rt, imm:$CRn,
3817 imm:$CRm, imm:$opc2)]>;
Jim Grosbach213d2e72012-03-16 00:45:58 +00003818def : t2InstAlias<"mcr2 $cop, $opc1, $Rt, $CRn, $CRm",
3819 (t2MCR2 p_imm:$cop, imm0_7:$opc1, GPR:$Rt, c_imm:$CRn,
3820 c_imm:$CRm, 0)>;
Jim Grosbache35c5e02011-07-13 21:35:10 +00003821
3822/* from coprocessor to ARM core register */
3823def t2MRC : t2MovRCopro<0b1110, "mrc", 1,
Jim Grosbachccfd9312011-07-19 20:35:35 +00003824 (outs GPR:$Rt), (ins p_imm:$cop, imm0_7:$opc1, c_imm:$CRn,
3825 c_imm:$CRm, imm0_7:$opc2), []>;
Jim Grosbach213d2e72012-03-16 00:45:58 +00003826def : t2InstAlias<"mrc $cop, $opc1, $Rt, $CRn, $CRm",
3827 (t2MRC GPR:$Rt, p_imm:$cop, imm0_7:$opc1, c_imm:$CRn,
3828 c_imm:$CRm, 0)>;
Jim Grosbache35c5e02011-07-13 21:35:10 +00003829
3830def t2MRC2 : t2MovRCopro<0b1111, "mrc2", 1,
Jim Grosbachccfd9312011-07-19 20:35:35 +00003831 (outs GPR:$Rt), (ins p_imm:$cop, imm0_7:$opc1, c_imm:$CRn,
3832 c_imm:$CRm, imm0_7:$opc2), []>;
Jim Grosbach213d2e72012-03-16 00:45:58 +00003833def : t2InstAlias<"mrc2 $cop, $opc1, $Rt, $CRn, $CRm",
3834 (t2MRC2 GPR:$Rt, p_imm:$cop, imm0_7:$opc1, c_imm:$CRn,
3835 c_imm:$CRm, 0)>;
Bruno Cardoso Lopes6b3a9992011-01-20 16:58:48 +00003836
Jim Grosbache35c5e02011-07-13 21:35:10 +00003837def : T2v6Pat<(int_arm_mrc imm:$cop, imm:$opc1, imm:$CRn, imm:$CRm, imm:$opc2),
3838 (t2MRC imm:$cop, imm:$opc1, imm:$CRn, imm:$CRm, imm:$opc2)>;
3839
3840def : T2v6Pat<(int_arm_mrc2 imm:$cop, imm:$opc1, imm:$CRn, imm:$CRm, imm:$opc2),
Bruno Cardoso Lopes54ad87a2011-05-03 17:29:22 +00003841 (t2MRC2 imm:$cop, imm:$opc1, imm:$CRn, imm:$CRm, imm:$opc2)>;
3842
Bruno Cardoso Lopes6b3a9992011-01-20 16:58:48 +00003843
Jim Grosbache35c5e02011-07-13 21:35:10 +00003844/* from ARM core register to coprocessor */
3845def t2MCRR : t2MovRRCopro<0b1110, "mcrr", 0,
3846 [(int_arm_mcrr imm:$cop, imm:$opc1, GPR:$Rt, GPR:$Rt2,
3847 imm:$CRm)]>;
3848def t2MCRR2 : t2MovRRCopro<0b1111, "mcrr2", 0,
Bruno Cardoso Lopes0a69ba32011-05-03 17:29:29 +00003849 [(int_arm_mcrr2 imm:$cop, imm:$opc1, GPR:$Rt,
3850 GPR:$Rt2, imm:$CRm)]>;
Jim Grosbache35c5e02011-07-13 21:35:10 +00003851/* from coprocessor to ARM core register */
3852def t2MRRC : t2MovRRCopro<0b1110, "mrrc", 1>;
3853
3854def t2MRRC2 : t2MovRRCopro<0b1111, "mrrc2", 1>;
Bruno Cardoso Lopes6b3a9992011-01-20 16:58:48 +00003855
Bruno Cardoso Lopes8dd37f72011-01-20 18:32:09 +00003856//===----------------------------------------------------------------------===//
Jim Grosbach9bb098a2011-07-13 21:14:23 +00003857// Other Coprocessor Instructions.
Bruno Cardoso Lopes8dd37f72011-01-20 18:32:09 +00003858//
3859
Jim Grosbach1cbb0c12011-07-13 22:06:11 +00003860def tCDP : T2Cop<0b1110, (outs), (ins p_imm:$cop, imm0_15:$opc1,
Jim Grosbach83ab0702011-07-13 22:01:08 +00003861 c_imm:$CRd, c_imm:$CRn, c_imm:$CRm, imm0_7:$opc2),
Jim Grosbach9bb098a2011-07-13 21:14:23 +00003862 "cdp\t$cop, $opc1, $CRd, $CRn, $CRm, $opc2",
3863 [(int_arm_cdp imm:$cop, imm:$opc1, imm:$CRd, imm:$CRn,
3864 imm:$CRm, imm:$opc2)]> {
3865 let Inst{27-24} = 0b1110;
3866
3867 bits<4> opc1;
3868 bits<4> CRn;
3869 bits<4> CRd;
3870 bits<4> cop;
3871 bits<3> opc2;
3872 bits<4> CRm;
3873
3874 let Inst{3-0} = CRm;
3875 let Inst{4} = 0;
3876 let Inst{7-5} = opc2;
3877 let Inst{11-8} = cop;
3878 let Inst{15-12} = CRd;
3879 let Inst{19-16} = CRn;
3880 let Inst{23-20} = opc1;
3881}
3882
Jim Grosbach1cbb0c12011-07-13 22:06:11 +00003883def t2CDP2 : T2Cop<0b1111, (outs), (ins p_imm:$cop, imm0_15:$opc1,
Jim Grosbach83ab0702011-07-13 22:01:08 +00003884 c_imm:$CRd, c_imm:$CRn, c_imm:$CRm, imm0_7:$opc2),
Bruno Cardoso Lopes8dd37f72011-01-20 18:32:09 +00003885 "cdp2\t$cop, $opc1, $CRd, $CRn, $CRm, $opc2",
Bruno Cardoso Lopes0a69ba32011-05-03 17:29:29 +00003886 [(int_arm_cdp2 imm:$cop, imm:$opc1, imm:$CRd, imm:$CRn,
3887 imm:$CRm, imm:$opc2)]> {
Bruno Cardoso Lopes8dd37f72011-01-20 18:32:09 +00003888 let Inst{27-24} = 0b1110;
3889
3890 bits<4> opc1;
3891 bits<4> CRn;
3892 bits<4> CRd;
3893 bits<4> cop;
3894 bits<3> opc2;
3895 bits<4> CRm;
3896
3897 let Inst{3-0} = CRm;
3898 let Inst{4} = 0;
3899 let Inst{7-5} = opc2;
3900 let Inst{11-8} = cop;
3901 let Inst{15-12} = CRd;
3902 let Inst{19-16} = CRn;
3903 let Inst{23-20} = opc1;
3904}
Jim Grosbachc5a8c862011-07-27 16:47:19 +00003905
3906
3907
3908//===----------------------------------------------------------------------===//
3909// Non-Instruction Patterns
3910//
3911
3912// SXT/UXT with no rotate
Jim Grosbach70327412011-07-27 17:48:13 +00003913let AddedComplexity = 16 in {
3914def : T2Pat<(and rGPR:$Rm, 0x000000FF), (t2UXTB rGPR:$Rm, 0)>,
Eli Friedman2cb1dfa2011-08-08 19:49:37 +00003915 Requires<[IsThumb2]>;
Jim Grosbach70327412011-07-27 17:48:13 +00003916def : T2Pat<(and rGPR:$Rm, 0x0000FFFF), (t2UXTH rGPR:$Rm, 0)>,
Eli Friedman2cb1dfa2011-08-08 19:49:37 +00003917 Requires<[IsThumb2]>;
Jim Grosbach70327412011-07-27 17:48:13 +00003918def : T2Pat<(and rGPR:$Rm, 0x00FF00FF), (t2UXTB16 rGPR:$Rm, 0)>,
3919 Requires<[HasT2ExtractPack, IsThumb2]>;
3920def : T2Pat<(add rGPR:$Rn, (and rGPR:$Rm, 0x00FF)),
3921 (t2UXTAB rGPR:$Rn, rGPR:$Rm, 0)>,
3922 Requires<[HasT2ExtractPack, IsThumb2]>;
3923def : T2Pat<(add rGPR:$Rn, (and rGPR:$Rm, 0xFFFF)),
3924 (t2UXTAH rGPR:$Rn, rGPR:$Rm, 0)>,
3925 Requires<[HasT2ExtractPack, IsThumb2]>;
3926}
Jim Grosbachc5a8c862011-07-27 16:47:19 +00003927
Jim Grosbach70327412011-07-27 17:48:13 +00003928def : T2Pat<(sext_inreg rGPR:$Src, i8), (t2SXTB rGPR:$Src, 0)>,
Eli Friedman2cb1dfa2011-08-08 19:49:37 +00003929 Requires<[IsThumb2]>;
Jim Grosbach70327412011-07-27 17:48:13 +00003930def : T2Pat<(sext_inreg rGPR:$Src, i16), (t2SXTH rGPR:$Src, 0)>,
Eli Friedman2cb1dfa2011-08-08 19:49:37 +00003931 Requires<[IsThumb2]>;
Jim Grosbach70327412011-07-27 17:48:13 +00003932def : T2Pat<(add rGPR:$Rn, (sext_inreg rGPR:$Rm, i8)),
3933 (t2SXTAB rGPR:$Rn, rGPR:$Rm, 0)>,
3934 Requires<[HasT2ExtractPack, IsThumb2]>;
3935def : T2Pat<(add rGPR:$Rn, (sext_inreg rGPR:$Rm, i16)),
3936 (t2SXTAH rGPR:$Rn, rGPR:$Rm, 0)>,
3937 Requires<[HasT2ExtractPack, IsThumb2]>;
Eli Friedman069e2ed2011-08-26 02:59:24 +00003938
3939// Atomic load/store patterns
3940def : T2Pat<(atomic_load_8 t2addrmode_imm12:$addr),
3941 (t2LDRBi12 t2addrmode_imm12:$addr)>;
Jim Grosbacha8307dd2011-09-07 20:58:57 +00003942def : T2Pat<(atomic_load_8 t2addrmode_negimm8:$addr),
3943 (t2LDRBi8 t2addrmode_negimm8:$addr)>;
Eli Friedman069e2ed2011-08-26 02:59:24 +00003944def : T2Pat<(atomic_load_8 t2addrmode_so_reg:$addr),
3945 (t2LDRBs t2addrmode_so_reg:$addr)>;
3946def : T2Pat<(atomic_load_16 t2addrmode_imm12:$addr),
3947 (t2LDRHi12 t2addrmode_imm12:$addr)>;
Jim Grosbacha8307dd2011-09-07 20:58:57 +00003948def : T2Pat<(atomic_load_16 t2addrmode_negimm8:$addr),
3949 (t2LDRHi8 t2addrmode_negimm8:$addr)>;
Eli Friedman069e2ed2011-08-26 02:59:24 +00003950def : T2Pat<(atomic_load_16 t2addrmode_so_reg:$addr),
3951 (t2LDRHs t2addrmode_so_reg:$addr)>;
3952def : T2Pat<(atomic_load_32 t2addrmode_imm12:$addr),
3953 (t2LDRi12 t2addrmode_imm12:$addr)>;
Jim Grosbacha8307dd2011-09-07 20:58:57 +00003954def : T2Pat<(atomic_load_32 t2addrmode_negimm8:$addr),
3955 (t2LDRi8 t2addrmode_negimm8:$addr)>;
Eli Friedman069e2ed2011-08-26 02:59:24 +00003956def : T2Pat<(atomic_load_32 t2addrmode_so_reg:$addr),
3957 (t2LDRs t2addrmode_so_reg:$addr)>;
3958def : T2Pat<(atomic_store_8 t2addrmode_imm12:$addr, GPR:$val),
3959 (t2STRBi12 GPR:$val, t2addrmode_imm12:$addr)>;
Jim Grosbacha8307dd2011-09-07 20:58:57 +00003960def : T2Pat<(atomic_store_8 t2addrmode_negimm8:$addr, GPR:$val),
3961 (t2STRBi8 GPR:$val, t2addrmode_negimm8:$addr)>;
Eli Friedman069e2ed2011-08-26 02:59:24 +00003962def : T2Pat<(atomic_store_8 t2addrmode_so_reg:$addr, GPR:$val),
3963 (t2STRBs GPR:$val, t2addrmode_so_reg:$addr)>;
3964def : T2Pat<(atomic_store_16 t2addrmode_imm12:$addr, GPR:$val),
3965 (t2STRHi12 GPR:$val, t2addrmode_imm12:$addr)>;
Jim Grosbacha8307dd2011-09-07 20:58:57 +00003966def : T2Pat<(atomic_store_16 t2addrmode_negimm8:$addr, GPR:$val),
3967 (t2STRHi8 GPR:$val, t2addrmode_negimm8:$addr)>;
Eli Friedman069e2ed2011-08-26 02:59:24 +00003968def : T2Pat<(atomic_store_16 t2addrmode_so_reg:$addr, GPR:$val),
3969 (t2STRHs GPR:$val, t2addrmode_so_reg:$addr)>;
3970def : T2Pat<(atomic_store_32 t2addrmode_imm12:$addr, GPR:$val),
3971 (t2STRi12 GPR:$val, t2addrmode_imm12:$addr)>;
Jim Grosbacha8307dd2011-09-07 20:58:57 +00003972def : T2Pat<(atomic_store_32 t2addrmode_negimm8:$addr, GPR:$val),
3973 (t2STRi8 GPR:$val, t2addrmode_negimm8:$addr)>;
Eli Friedman069e2ed2011-08-26 02:59:24 +00003974def : T2Pat<(atomic_store_32 t2addrmode_so_reg:$addr, GPR:$val),
3975 (t2STRs GPR:$val, t2addrmode_so_reg:$addr)>;
Jim Grosbach72335d52011-08-31 18:23:08 +00003976
3977
3978//===----------------------------------------------------------------------===//
3979// Assembler aliases
3980//
3981
3982// Aliases for ADC without the ".w" optional width specifier.
3983def : t2InstAlias<"adc${s}${p} $Rd, $Rn, $Rm",
3984 (t2ADCrr rGPR:$Rd, rGPR:$Rn, rGPR:$Rm, pred:$p, cc_out:$s)>;
3985def : t2InstAlias<"adc${s}${p} $Rd, $Rn, $ShiftedRm",
3986 (t2ADCrs rGPR:$Rd, rGPR:$Rn, t2_so_reg:$ShiftedRm,
3987 pred:$p, cc_out:$s)>;
3988
3989// Aliases for SBC without the ".w" optional width specifier.
3990def : t2InstAlias<"sbc${s}${p} $Rd, $Rn, $Rm",
3991 (t2SBCrr rGPR:$Rd, rGPR:$Rn, rGPR:$Rm, pred:$p, cc_out:$s)>;
3992def : t2InstAlias<"sbc${s}${p} $Rd, $Rn, $ShiftedRm",
3993 (t2SBCrs rGPR:$Rd, rGPR:$Rn, t2_so_reg:$ShiftedRm,
3994 pred:$p, cc_out:$s)>;
3995
Jim Grosbachf0851e52011-09-02 18:14:46 +00003996// Aliases for ADD without the ".w" optional width specifier.
Jim Grosbach20ed2e72011-09-01 00:28:52 +00003997def : t2InstAlias<"add${s}${p} $Rd, $Rn, $imm",
Jim Grosbachb95ed6e2011-10-03 20:51:59 +00003998 (t2ADDri GPRnopc:$Rd, GPRnopc:$Rn, t2_so_imm:$imm, pred:$p, cc_out:$s)>;
Jim Grosbach20ed2e72011-09-01 00:28:52 +00003999def : t2InstAlias<"add${p} $Rd, $Rn, $imm",
Jim Grosbachb95ed6e2011-10-03 20:51:59 +00004000 (t2ADDri12 GPRnopc:$Rd, GPR:$Rn, imm0_4095:$imm, pred:$p)>;
Jim Grosbachf0851e52011-09-02 18:14:46 +00004001def : t2InstAlias<"add${s}${p} $Rd, $Rn, $Rm",
Jim Grosbachb95ed6e2011-10-03 20:51:59 +00004002 (t2ADDrr GPRnopc:$Rd, GPRnopc:$Rn, rGPR:$Rm, pred:$p, cc_out:$s)>;
Jim Grosbachf0851e52011-09-02 18:14:46 +00004003def : t2InstAlias<"add${s}${p} $Rd, $Rn, $ShiftedRm",
Jim Grosbachb95ed6e2011-10-03 20:51:59 +00004004 (t2ADDrs GPRnopc:$Rd, GPRnopc:$Rn, t2_so_reg:$ShiftedRm,
Jim Grosbachf0851e52011-09-02 18:14:46 +00004005 pred:$p, cc_out:$s)>;
Jim Grosbach5d0492c2011-10-28 16:57:07 +00004006// ... and with the destination and source register combined.
4007def : t2InstAlias<"add${s}${p} $Rdn, $imm",
4008 (t2ADDri GPRnopc:$Rdn, GPRnopc:$Rdn, t2_so_imm:$imm, pred:$p, cc_out:$s)>;
4009def : t2InstAlias<"add${p} $Rdn, $imm",
4010 (t2ADDri12 GPRnopc:$Rdn, GPRnopc:$Rdn, imm0_4095:$imm, pred:$p)>;
4011def : t2InstAlias<"add${s}${p} $Rdn, $Rm",
4012 (t2ADDrr GPRnopc:$Rdn, GPRnopc:$Rdn, rGPR:$Rm, pred:$p, cc_out:$s)>;
4013def : t2InstAlias<"add${s}${p} $Rdn, $ShiftedRm",
4014 (t2ADDrs GPRnopc:$Rdn, GPRnopc:$Rdn, t2_so_reg:$ShiftedRm,
4015 pred:$p, cc_out:$s)>;
Jim Grosbachef88a922011-09-06 21:44:58 +00004016
Jim Grosbach4e53fe82012-04-05 20:57:13 +00004017// add w/ negative immediates is just a sub.
4018def : t2InstAlias<"add${s}${p} $Rd, $Rn, $imm",
4019 (t2SUBri GPRnopc:$Rd, GPRnopc:$Rn, t2_so_imm_neg:$imm, pred:$p,
4020 cc_out:$s)>;
4021def : t2InstAlias<"add${p} $Rd, $Rn, $imm",
4022 (t2SUBri12 GPRnopc:$Rd, GPR:$Rn, imm0_4095_neg:$imm, pred:$p)>;
4023def : t2InstAlias<"add${s}${p} $Rdn, $imm",
4024 (t2SUBri GPRnopc:$Rdn, GPRnopc:$Rdn, t2_so_imm_neg:$imm, pred:$p,
4025 cc_out:$s)>;
4026def : t2InstAlias<"add${p} $Rdn, $imm",
4027 (t2SUBri12 GPRnopc:$Rdn, GPRnopc:$Rdn, imm0_4095_neg:$imm, pred:$p)>;
4028
Jim Grosbach54319e22012-05-01 21:17:34 +00004029def : t2InstAlias<"add${s}${p}.w $Rd, $Rn, $imm",
4030 (t2SUBri GPRnopc:$Rd, GPRnopc:$Rn, t2_so_imm_neg:$imm, pred:$p,
4031 cc_out:$s)>;
4032def : t2InstAlias<"addw${p} $Rd, $Rn, $imm",
4033 (t2SUBri12 GPRnopc:$Rd, GPR:$Rn, imm0_4095_neg:$imm, pred:$p)>;
4034def : t2InstAlias<"add${s}${p}.w $Rdn, $imm",
4035 (t2SUBri GPRnopc:$Rdn, GPRnopc:$Rdn, t2_so_imm_neg:$imm, pred:$p,
4036 cc_out:$s)>;
4037def : t2InstAlias<"addw${p} $Rdn, $imm",
4038 (t2SUBri12 GPRnopc:$Rdn, GPRnopc:$Rdn, imm0_4095_neg:$imm, pred:$p)>;
4039
Jim Grosbach4e53fe82012-04-05 20:57:13 +00004040
Jim Grosbachf67e8552011-09-16 22:58:42 +00004041// Aliases for SUB without the ".w" optional width specifier.
4042def : t2InstAlias<"sub${s}${p} $Rd, $Rn, $imm",
Jim Grosbachb95ed6e2011-10-03 20:51:59 +00004043 (t2SUBri GPRnopc:$Rd, GPRnopc:$Rn, t2_so_imm:$imm, pred:$p, cc_out:$s)>;
Jim Grosbachf67e8552011-09-16 22:58:42 +00004044def : t2InstAlias<"sub${p} $Rd, $Rn, $imm",
Jim Grosbachb95ed6e2011-10-03 20:51:59 +00004045 (t2SUBri12 GPRnopc:$Rd, GPR:$Rn, imm0_4095:$imm, pred:$p)>;
Jim Grosbachf67e8552011-09-16 22:58:42 +00004046def : t2InstAlias<"sub${s}${p} $Rd, $Rn, $Rm",
Jim Grosbachb95ed6e2011-10-03 20:51:59 +00004047 (t2SUBrr GPRnopc:$Rd, GPRnopc:$Rn, rGPR:$Rm, pred:$p, cc_out:$s)>;
Jim Grosbachf67e8552011-09-16 22:58:42 +00004048def : t2InstAlias<"sub${s}${p} $Rd, $Rn, $ShiftedRm",
Jim Grosbachb95ed6e2011-10-03 20:51:59 +00004049 (t2SUBrs GPRnopc:$Rd, GPRnopc:$Rn, t2_so_reg:$ShiftedRm,
Jim Grosbachf67e8552011-09-16 22:58:42 +00004050 pred:$p, cc_out:$s)>;
Jim Grosbach5d0492c2011-10-28 16:57:07 +00004051// ... and with the destination and source register combined.
4052def : t2InstAlias<"sub${s}${p} $Rdn, $imm",
4053 (t2SUBri GPRnopc:$Rdn, GPRnopc:$Rdn, t2_so_imm:$imm, pred:$p, cc_out:$s)>;
4054def : t2InstAlias<"sub${p} $Rdn, $imm",
4055 (t2SUBri12 GPRnopc:$Rdn, GPRnopc:$Rdn, imm0_4095:$imm, pred:$p)>;
Jim Grosbacha23ecc22012-04-10 17:31:55 +00004056def : t2InstAlias<"sub${s}${p}.w $Rdn, $Rm",
4057 (t2SUBrr GPRnopc:$Rdn, GPRnopc:$Rdn, rGPR:$Rm, pred:$p, cc_out:$s)>;
Jim Grosbach5d0492c2011-10-28 16:57:07 +00004058def : t2InstAlias<"sub${s}${p} $Rdn, $Rm",
4059 (t2SUBrr GPRnopc:$Rdn, GPRnopc:$Rdn, rGPR:$Rm, pred:$p, cc_out:$s)>;
4060def : t2InstAlias<"sub${s}${p} $Rdn, $ShiftedRm",
4061 (t2SUBrs GPRnopc:$Rdn, GPRnopc:$Rdn, t2_so_reg:$ShiftedRm,
4062 pred:$p, cc_out:$s)>;
4063
Jim Grosbachef88a922011-09-06 21:44:58 +00004064// Alias for compares without the ".w" optional width specifier.
4065def : t2InstAlias<"cmn${p} $Rn, $Rm",
4066 (t2CMNzrr GPRnopc:$Rn, rGPR:$Rm, pred:$p)>;
4067def : t2InstAlias<"teq${p} $Rn, $Rm",
4068 (t2TEQrr GPRnopc:$Rn, rGPR:$Rm, pred:$p)>;
4069def : t2InstAlias<"tst${p} $Rn, $Rm",
4070 (t2TSTrr GPRnopc:$Rn, rGPR:$Rm, pred:$p)>;
4071
Jim Grosbach06c1a512011-09-06 22:14:58 +00004072// Memory barriers
Evan Cheng97a45432012-04-27 01:27:19 +00004073def : InstAlias<"dmb", (t2DMB 0xf)>, Requires<[IsThumb, HasDB]>;
4074def : InstAlias<"dsb", (t2DSB 0xf)>, Requires<[IsThumb, HasDB]>;
4075def : InstAlias<"isb", (t2ISB 0xf)>, Requires<[IsThumb, HasDB]>;
Jim Grosbacha8307dd2011-09-07 20:58:57 +00004076
Jim Grosbach0811fe12011-09-09 19:42:40 +00004077// Alias for LDR, LDRB, LDRH, LDRSB, and LDRSH without the ".w" optional
4078// width specifier.
Jim Grosbach8bb5a862011-09-07 21:41:25 +00004079def : t2InstAlias<"ldr${p} $Rt, $addr",
4080 (t2LDRi12 GPR:$Rt, t2addrmode_imm12:$addr, pred:$p)>;
4081def : t2InstAlias<"ldrb${p} $Rt, $addr",
4082 (t2LDRBi12 rGPR:$Rt, t2addrmode_imm12:$addr, pred:$p)>;
4083def : t2InstAlias<"ldrh${p} $Rt, $addr",
4084 (t2LDRHi12 rGPR:$Rt, t2addrmode_imm12:$addr, pred:$p)>;
Jim Grosbach0811fe12011-09-09 19:42:40 +00004085def : t2InstAlias<"ldrsb${p} $Rt, $addr",
4086 (t2LDRSBi12 rGPR:$Rt, t2addrmode_imm12:$addr, pred:$p)>;
4087def : t2InstAlias<"ldrsh${p} $Rt, $addr",
4088 (t2LDRSHi12 rGPR:$Rt, t2addrmode_imm12:$addr, pred:$p)>;
4089
Jim Grosbachab899c12011-09-07 23:10:15 +00004090def : t2InstAlias<"ldr${p} $Rt, $addr",
4091 (t2LDRs GPR:$Rt, t2addrmode_so_reg:$addr, pred:$p)>;
4092def : t2InstAlias<"ldrb${p} $Rt, $addr",
4093 (t2LDRBs rGPR:$Rt, t2addrmode_so_reg:$addr, pred:$p)>;
4094def : t2InstAlias<"ldrh${p} $Rt, $addr",
4095 (t2LDRHs rGPR:$Rt, t2addrmode_so_reg:$addr, pred:$p)>;
Jim Grosbach0811fe12011-09-09 19:42:40 +00004096def : t2InstAlias<"ldrsb${p} $Rt, $addr",
4097 (t2LDRSBs rGPR:$Rt, t2addrmode_so_reg:$addr, pred:$p)>;
4098def : t2InstAlias<"ldrsh${p} $Rt, $addr",
4099 (t2LDRSHs rGPR:$Rt, t2addrmode_so_reg:$addr, pred:$p)>;
Jim Grosbachd32872f2011-09-14 21:24:41 +00004100
Jim Grosbacha5813282011-10-26 22:22:01 +00004101def : t2InstAlias<"ldr${p} $Rt, $addr",
4102 (t2LDRpci GPR:$Rt, t2ldrlabel:$addr, pred:$p)>;
4103def : t2InstAlias<"ldrb${p} $Rt, $addr",
4104 (t2LDRBpci rGPR:$Rt, t2ldrlabel:$addr, pred:$p)>;
4105def : t2InstAlias<"ldrh${p} $Rt, $addr",
4106 (t2LDRHpci rGPR:$Rt, t2ldrlabel:$addr, pred:$p)>;
4107def : t2InstAlias<"ldrsb${p} $Rt, $addr",
4108 (t2LDRSBpci rGPR:$Rt, t2ldrlabel:$addr, pred:$p)>;
4109def : t2InstAlias<"ldrsh${p} $Rt, $addr",
4110 (t2LDRSHpci rGPR:$Rt, t2ldrlabel:$addr, pred:$p)>;
4111
Jim Grosbach036a67d2011-10-27 17:16:55 +00004112// Alias for MVN with(out) the ".w" optional width specifier.
4113def : t2InstAlias<"mvn${s}${p}.w $Rd, $imm",
4114 (t2MVNi rGPR:$Rd, t2_so_imm:$imm, pred:$p, cc_out:$s)>;
Jim Grosbachd32872f2011-09-14 21:24:41 +00004115def : t2InstAlias<"mvn${s}${p} $Rd, $Rm",
4116 (t2MVNr rGPR:$Rd, rGPR:$Rm, pred:$p, cc_out:$s)>;
4117def : t2InstAlias<"mvn${s}${p} $Rd, $ShiftedRm",
4118 (t2MVNs rGPR:$Rd, t2_so_reg:$ShiftedRm, pred:$p, cc_out:$s)>;
Jim Grosbach0b692472011-09-14 23:16:41 +00004119
4120// PKHBT/PKHTB with default shift amount. PKHTB is equivalent to PKHBT when the
4121// shift amount is zero (i.e., unspecified).
4122def : InstAlias<"pkhbt${p} $Rd, $Rn, $Rm",
4123 (t2PKHBT rGPR:$Rd, rGPR:$Rn, rGPR:$Rm, 0, pred:$p)>,
4124 Requires<[HasT2ExtractPack, IsThumb2]>;
4125def : InstAlias<"pkhtb${p} $Rd, $Rn, $Rm",
4126 (t2PKHBT rGPR:$Rd, rGPR:$Rn, rGPR:$Rm, 0, pred:$p)>,
4127 Requires<[HasT2ExtractPack, IsThumb2]>;
4128
Jim Grosbach57b21e42011-09-15 15:55:04 +00004129// PUSH/POP aliases for STM/LDM
4130def : t2InstAlias<"push${p}.w $regs", (t2STMDB_UPD SP, pred:$p, reglist:$regs)>;
4131def : t2InstAlias<"push${p} $regs", (t2STMDB_UPD SP, pred:$p, reglist:$regs)>;
4132def : t2InstAlias<"pop${p}.w $regs", (t2LDMIA_UPD SP, pred:$p, reglist:$regs)>;
4133def : t2InstAlias<"pop${p} $regs", (t2LDMIA_UPD SP, pred:$p, reglist:$regs)>;
4134
Jim Grosbach8524bca2011-12-07 18:32:28 +00004135// STMIA/STMIA_UPD aliases w/o the optional .w suffix
4136def : t2InstAlias<"stm${p} $Rn, $regs",
4137 (t2STMIA GPR:$Rn, pred:$p, reglist:$regs)>;
4138def : t2InstAlias<"stm${p} $Rn!, $regs",
4139 (t2STMIA_UPD GPR:$Rn, pred:$p, reglist:$regs)>;
4140
4141// LDMIA/LDMIA_UPD aliases w/o the optional .w suffix
4142def : t2InstAlias<"ldm${p} $Rn, $regs",
4143 (t2LDMIA GPR:$Rn, pred:$p, reglist:$regs)>;
4144def : t2InstAlias<"ldm${p} $Rn!, $regs",
4145 (t2LDMIA_UPD GPR:$Rn, pred:$p, reglist:$regs)>;
4146
Jim Grosbach3c5d6e42011-11-09 23:44:23 +00004147// STMDB/STMDB_UPD aliases w/ the optional .w suffix
4148def : t2InstAlias<"stmdb${p}.w $Rn, $regs",
4149 (t2STMDB GPR:$Rn, pred:$p, reglist:$regs)>;
4150def : t2InstAlias<"stmdb${p}.w $Rn!, $regs",
4151 (t2STMDB_UPD GPR:$Rn, pred:$p, reglist:$regs)>;
4152
Jim Grosbach88484c02011-10-27 17:33:59 +00004153// LDMDB/LDMDB_UPD aliases w/ the optional .w suffix
4154def : t2InstAlias<"ldmdb${p}.w $Rn, $regs",
4155 (t2LDMDB GPR:$Rn, pred:$p, reglist:$regs)>;
4156def : t2InstAlias<"ldmdb${p}.w $Rn!, $regs",
4157 (t2LDMDB_UPD GPR:$Rn, pred:$p, reglist:$regs)>;
4158
Jim Grosbach689b86e2011-09-15 19:46:13 +00004159// Alias for REV/REV16/REVSH without the ".w" optional width specifier.
Jim Grosbach1b69a122011-09-15 18:13:30 +00004160def : t2InstAlias<"rev${p} $Rd, $Rm", (t2REV rGPR:$Rd, rGPR:$Rm, pred:$p)>;
Jim Grosbach689b86e2011-09-15 19:46:13 +00004161def : t2InstAlias<"rev16${p} $Rd, $Rm", (t2REV16 rGPR:$Rd, rGPR:$Rm, pred:$p)>;
4162def : t2InstAlias<"revsh${p} $Rd, $Rm", (t2REVSH rGPR:$Rd, rGPR:$Rm, pred:$p)>;
Jim Grosbach191d33f2011-09-15 20:54:14 +00004163
4164
4165// Alias for RSB without the ".w" optional width specifier, and with optional
4166// implied destination register.
4167def : t2InstAlias<"rsb${s}${p} $Rd, $Rn, $imm",
4168 (t2RSBri rGPR:$Rd, rGPR:$Rn, t2_so_imm:$imm, pred:$p, cc_out:$s)>;
4169def : t2InstAlias<"rsb${s}${p} $Rdn, $imm",
4170 (t2RSBri rGPR:$Rdn, rGPR:$Rdn, t2_so_imm:$imm, pred:$p, cc_out:$s)>;
4171def : t2InstAlias<"rsb${s}${p} $Rdn, $Rm",
4172 (t2RSBrr rGPR:$Rdn, rGPR:$Rdn, rGPR:$Rm, pred:$p, cc_out:$s)>;
4173def : t2InstAlias<"rsb${s}${p} $Rdn, $ShiftedRm",
4174 (t2RSBrs rGPR:$Rdn, rGPR:$Rdn, t2_so_reg:$ShiftedRm, pred:$p,
4175 cc_out:$s)>;
Jim Grosbachb105b992011-09-16 18:32:30 +00004176
4177// SSAT/USAT optional shift operand.
4178def : t2InstAlias<"ssat${p} $Rd, $sat_imm, $Rn",
4179 (t2SSAT rGPR:$Rd, imm1_32:$sat_imm, rGPR:$Rn, 0, pred:$p)>;
4180def : t2InstAlias<"usat${p} $Rd, $sat_imm, $Rn",
4181 (t2USAT rGPR:$Rd, imm0_31:$sat_imm, rGPR:$Rn, 0, pred:$p)>;
4182
Jim Grosbach8213c962011-09-16 20:50:13 +00004183// STM w/o the .w suffix.
4184def : t2InstAlias<"stm${p} $Rn, $regs",
4185 (t2STMIA GPR:$Rn, pred:$p, reglist:$regs)>;
Jim Grosbach642caea2011-09-16 21:06:12 +00004186
4187// Alias for STR, STRB, and STRH without the ".w" optional
4188// width specifier.
4189def : t2InstAlias<"str${p} $Rt, $addr",
4190 (t2STRi12 GPR:$Rt, t2addrmode_imm12:$addr, pred:$p)>;
4191def : t2InstAlias<"strb${p} $Rt, $addr",
4192 (t2STRBi12 rGPR:$Rt, t2addrmode_imm12:$addr, pred:$p)>;
4193def : t2InstAlias<"strh${p} $Rt, $addr",
4194 (t2STRHi12 rGPR:$Rt, t2addrmode_imm12:$addr, pred:$p)>;
4195
4196def : t2InstAlias<"str${p} $Rt, $addr",
4197 (t2STRs GPR:$Rt, t2addrmode_so_reg:$addr, pred:$p)>;
4198def : t2InstAlias<"strb${p} $Rt, $addr",
4199 (t2STRBs rGPR:$Rt, t2addrmode_so_reg:$addr, pred:$p)>;
4200def : t2InstAlias<"strh${p} $Rt, $addr",
4201 (t2STRHs rGPR:$Rt, t2addrmode_so_reg:$addr, pred:$p)>;
Jim Grosbach8a8d28b2011-09-19 17:56:37 +00004202
4203// Extend instruction optional rotate operand.
4204def : t2InstAlias<"sxtab${p} $Rd, $Rn, $Rm",
4205 (t2SXTAB rGPR:$Rd, rGPR:$Rn, rGPR:$Rm, 0, pred:$p)>;
4206def : t2InstAlias<"sxtah${p} $Rd, $Rn, $Rm",
4207 (t2SXTAH rGPR:$Rd, rGPR:$Rn, rGPR:$Rm, 0, pred:$p)>;
4208def : t2InstAlias<"sxtab16${p} $Rd, $Rn, $Rm",
4209 (t2SXTAB16 rGPR:$Rd, rGPR:$Rn, rGPR:$Rm, 0, pred:$p)>;
Jim Grosbach25ddc2b2011-09-27 22:18:54 +00004210
Jim Grosbach326efe52011-09-19 20:29:33 +00004211def : t2InstAlias<"sxtb${p} $Rd, $Rm",
4212 (t2SXTB rGPR:$Rd, rGPR:$Rm, 0, pred:$p)>;
4213def : t2InstAlias<"sxtb16${p} $Rd, $Rm",
4214 (t2SXTB16 rGPR:$Rd, rGPR:$Rm, 0, pred:$p)>;
4215def : t2InstAlias<"sxth${p} $Rd, $Rm",
4216 (t2SXTH rGPR:$Rd, rGPR:$Rm, 0, pred:$p)>;
Jim Grosbach25ddc2b2011-09-27 22:18:54 +00004217def : t2InstAlias<"sxtb${p}.w $Rd, $Rm",
4218 (t2SXTB rGPR:$Rd, rGPR:$Rm, 0, pred:$p)>;
4219def : t2InstAlias<"sxth${p}.w $Rd, $Rm",
4220 (t2SXTH rGPR:$Rd, rGPR:$Rm, 0, pred:$p)>;
Jim Grosbach326efe52011-09-19 20:29:33 +00004221
Jim Grosbach50f1c372011-09-20 00:46:54 +00004222def : t2InstAlias<"uxtab${p} $Rd, $Rn, $Rm",
4223 (t2UXTAB rGPR:$Rd, rGPR:$Rn, rGPR:$Rm, 0, pred:$p)>;
4224def : t2InstAlias<"uxtah${p} $Rd, $Rn, $Rm",
4225 (t2UXTAH rGPR:$Rd, rGPR:$Rn, rGPR:$Rm, 0, pred:$p)>;
4226def : t2InstAlias<"uxtab16${p} $Rd, $Rn, $Rm",
4227 (t2UXTAB16 rGPR:$Rd, rGPR:$Rn, rGPR:$Rm, 0, pred:$p)>;
4228def : t2InstAlias<"uxtb${p} $Rd, $Rm",
4229 (t2UXTB rGPR:$Rd, rGPR:$Rm, 0, pred:$p)>;
4230def : t2InstAlias<"uxtb16${p} $Rd, $Rm",
4231 (t2UXTB16 rGPR:$Rd, rGPR:$Rm, 0, pred:$p)>;
4232def : t2InstAlias<"uxth${p} $Rd, $Rm",
4233 (t2UXTH rGPR:$Rd, rGPR:$Rm, 0, pred:$p)>;
4234
Jim Grosbach25ddc2b2011-09-27 22:18:54 +00004235def : t2InstAlias<"uxtb${p}.w $Rd, $Rm",
4236 (t2UXTB rGPR:$Rd, rGPR:$Rm, 0, pred:$p)>;
4237def : t2InstAlias<"uxth${p}.w $Rd, $Rm",
4238 (t2UXTH rGPR:$Rd, rGPR:$Rm, 0, pred:$p)>;
4239
Jim Grosbach326efe52011-09-19 20:29:33 +00004240// Extend instruction w/o the ".w" optional width specifier.
Jim Grosbach50f1c372011-09-20 00:46:54 +00004241def : t2InstAlias<"uxtb${p} $Rd, $Rm$rot",
4242 (t2UXTB rGPR:$Rd, rGPR:$Rm, rot_imm:$rot, pred:$p)>;
4243def : t2InstAlias<"uxtb16${p} $Rd, $Rm$rot",
4244 (t2UXTB16 rGPR:$Rd, rGPR:$Rm, rot_imm:$rot, pred:$p)>;
4245def : t2InstAlias<"uxth${p} $Rd, $Rm$rot",
4246 (t2UXTH rGPR:$Rd, rGPR:$Rm, rot_imm:$rot, pred:$p)>;
4247
Jim Grosbach326efe52011-09-19 20:29:33 +00004248def : t2InstAlias<"sxtb${p} $Rd, $Rm$rot",
4249 (t2SXTB rGPR:$Rd, rGPR:$Rm, rot_imm:$rot, pred:$p)>;
4250def : t2InstAlias<"sxtb16${p} $Rd, $Rm$rot",
4251 (t2SXTB16 rGPR:$Rd, rGPR:$Rm, rot_imm:$rot, pred:$p)>;
4252def : t2InstAlias<"sxth${p} $Rd, $Rm$rot",
4253 (t2SXTH rGPR:$Rd, rGPR:$Rm, rot_imm:$rot, pred:$p)>;
Jim Grosbach89a63372011-10-28 22:36:30 +00004254
4255
4256// "mov Rd, t2_so_imm_not" can be handled via "mvn" in assembly, just like
4257// for isel.
4258def : t2InstAlias<"mov${p} $Rd, $imm",
4259 (t2MVNi rGPR:$Rd, t2_so_imm_not:$imm, pred:$p, zero_reg)>;
Jim Grosbach46777082011-12-14 17:56:51 +00004260def : t2InstAlias<"mvn${p} $Rd, $imm",
4261 (t2MOVi rGPR:$Rd, t2_so_imm_not:$imm, pred:$p, zero_reg)>;
Jim Grosbach840bf7e2011-12-09 22:02:17 +00004262// Same for AND <--> BIC
4263def : t2InstAlias<"bic${s}${p} $Rd, $Rn, $imm",
4264 (t2ANDri rGPR:$Rd, rGPR:$Rn, so_imm_not:$imm,
4265 pred:$p, cc_out:$s)>;
4266def : t2InstAlias<"bic${s}${p} $Rdn, $imm",
4267 (t2ANDri rGPR:$Rdn, rGPR:$Rdn, so_imm_not:$imm,
4268 pred:$p, cc_out:$s)>;
4269def : t2InstAlias<"and${s}${p} $Rd, $Rn, $imm",
4270 (t2BICri rGPR:$Rd, rGPR:$Rn, so_imm_not:$imm,
4271 pred:$p, cc_out:$s)>;
4272def : t2InstAlias<"and${s}${p} $Rdn, $imm",
4273 (t2BICri rGPR:$Rdn, rGPR:$Rdn, so_imm_not:$imm,
4274 pred:$p, cc_out:$s)>;
Jim Grosbach8d11c632011-12-14 17:30:24 +00004275// Likewise, "add Rd, t2_so_imm_neg" -> sub
Jim Grosbach3bc8a3d2011-12-08 00:31:07 +00004276def : t2InstAlias<"add${s}${p} $Rd, $Rn, $imm",
4277 (t2SUBri GPRnopc:$Rd, GPRnopc:$Rn, t2_so_imm_neg:$imm,
4278 pred:$p, cc_out:$s)>;
4279def : t2InstAlias<"add${s}${p} $Rd, $imm",
4280 (t2SUBri GPRnopc:$Rd, GPRnopc:$Rd, t2_so_imm_neg:$imm,
4281 pred:$p, cc_out:$s)>;
Jim Grosbach8d11c632011-12-14 17:30:24 +00004282// Same for CMP <--> CMN via t2_so_imm_neg
4283def : t2InstAlias<"cmp${p} $Rd, $imm",
Bill Wendlingad5c8802012-06-11 08:07:26 +00004284 (t2CMNri rGPR:$Rd, t2_so_imm_neg:$imm, pred:$p)>;
Jim Grosbach8d11c632011-12-14 17:30:24 +00004285def : t2InstAlias<"cmn${p} $Rd, $imm",
4286 (t2CMPri rGPR:$Rd, t2_so_imm_neg:$imm, pred:$p)>;
Jim Grosbach7f1ec952011-11-15 19:55:16 +00004287
4288
4289// Wide 'mul' encoding can be specified with only two operands.
4290def : t2InstAlias<"mul${p} $Rn, $Rm",
Jim Grosbachcf9814d2011-12-06 05:03:45 +00004291 (t2MUL rGPR:$Rn, rGPR:$Rm, rGPR:$Rn, pred:$p)>;
Jim Grosbache91e7bc2011-12-13 20:23:22 +00004292
4293// "neg" is and alias for "rsb rd, rn, #0"
4294def : t2InstAlias<"neg${s}${p} $Rd, $Rm",
4295 (t2RSBri rGPR:$Rd, rGPR:$Rm, 0, pred:$p, cc_out:$s)>;
Jim Grosbach863d2af2011-12-13 22:45:11 +00004296
4297// MOV so_reg assembler pseudos. InstAlias isn't expressive enough for
4298// these, unfortunately.
4299def t2MOVsi: t2AsmPseudo<"mov${p} $Rd, $shift",
4300 (ins rGPR:$Rd, t2_so_reg:$shift, pred:$p)>;
4301def t2MOVSsi: t2AsmPseudo<"movs${p} $Rd, $shift",
4302 (ins rGPR:$Rd, t2_so_reg:$shift, pred:$p)>;
Jim Grosbachb6744db2011-12-15 23:52:17 +00004303
Jim Grosbach2cc5cda2011-12-21 20:54:00 +00004304def t2MOVsr: t2AsmPseudo<"mov${p} $Rd, $shift",
4305 (ins rGPR:$Rd, so_reg_reg:$shift, pred:$p)>;
4306def t2MOVSsr: t2AsmPseudo<"movs${p} $Rd, $shift",
4307 (ins rGPR:$Rd, so_reg_reg:$shift, pred:$p)>;
4308
Jim Grosbachb6744db2011-12-15 23:52:17 +00004309// ADR w/o the .w suffix
4310def : t2InstAlias<"adr${p} $Rd, $addr",
4311 (t2ADR rGPR:$Rd, t2adrlabel:$addr, pred:$p)>;
Jim Grosbach0b4c6732012-01-18 22:46:46 +00004312
4313// LDR(literal) w/ alternate [pc, #imm] syntax.
4314def t2LDRpcrel : t2AsmPseudo<"ldr${p} $Rt, $addr",
4315 (ins GPRnopc:$Rt, t2ldr_pcrel_imm12:$addr, pred:$p)>;
4316def t2LDRBpcrel : t2AsmPseudo<"ldrb${p} $Rt, $addr",
4317 (ins GPRnopc:$Rt, t2ldr_pcrel_imm12:$addr, pred:$p)>;
4318def t2LDRHpcrel : t2AsmPseudo<"ldrh${p} $Rt, $addr",
4319 (ins GPRnopc:$Rt, t2ldr_pcrel_imm12:$addr, pred:$p)>;
4320def t2LDRSBpcrel : t2AsmPseudo<"ldrsb${p} $Rt, $addr",
4321 (ins GPRnopc:$Rt, t2ldr_pcrel_imm12:$addr, pred:$p)>;
4322def t2LDRSHpcrel : t2AsmPseudo<"ldrsh${p} $Rt, $addr",
4323 (ins GPRnopc:$Rt, t2ldr_pcrel_imm12:$addr, pred:$p)>;
4324 // Version w/ the .w suffix.
4325def : t2InstAlias<"ldr${p}.w $Rt, $addr",
4326 (t2LDRpcrel GPRnopc:$Rt, t2ldr_pcrel_imm12:$addr, pred:$p)>;
4327def : t2InstAlias<"ldrb${p}.w $Rt, $addr",
4328 (t2LDRBpcrel GPRnopc:$Rt, t2ldr_pcrel_imm12:$addr, pred:$p)>;
4329def : t2InstAlias<"ldrh${p}.w $Rt, $addr",
4330 (t2LDRHpcrel GPRnopc:$Rt, t2ldr_pcrel_imm12:$addr, pred:$p)>;
4331def : t2InstAlias<"ldrsb${p}.w $Rt, $addr",
4332 (t2LDRSBpcrel GPRnopc:$Rt, t2ldr_pcrel_imm12:$addr, pred:$p)>;
4333def : t2InstAlias<"ldrsh${p}.w $Rt, $addr",
4334 (t2LDRSHpcrel GPRnopc:$Rt, t2ldr_pcrel_imm12:$addr, pred:$p)>;
Jim Grosbach12a88632012-01-21 00:07:56 +00004335
4336def : t2InstAlias<"add${p} $Rd, pc, $imm",
4337 (t2ADR rGPR:$Rd, imm0_4095:$imm, pred:$p)>;