blob: 6b0e6e526914daea0d224443fffc50ba52a5e1c2 [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}
Arnold Schwaighofer67514e92012-09-04 14:37:49 +0000526class T2MlaLong<bits<3> opc22_20, bits<4> opc7_4,
527 dag oops, dag iops, InstrItinClass itin,
528 string opc, string asm, list<dag> pattern>
529 : T2I<oops, iops, itin, opc, asm, pattern> {
530 bits<4> RdLo;
531 bits<4> RdHi;
532 bits<4> Rn;
533 bits<4> Rm;
534
535 let Inst{31-23} = 0b111110111;
536 let Inst{22-20} = opc22_20;
537 let Inst{19-16} = Rn;
538 let Inst{15-12} = RdLo;
539 let Inst{11-8} = RdHi;
540 let Inst{7-4} = opc7_4;
541 let Inst{3-0} = Rm;
542}
Jim Grosbach52082042010-12-08 22:29:28 +0000543
Owen Anderson35141a92010-11-18 01:08:42 +0000544
Evan Chenga67efd12009-06-23 19:39:13 +0000545/// T2I_bin_irs - Defines a set of (op reg, {so_imm|r|so_reg}) patterns for a
Bob Wilson4876bdb2010-05-25 04:43:08 +0000546/// binary operation that produces a value. These are predicable and can be
Evan Cheng0aa1d8c2009-06-25 02:08:06 +0000547/// changed to modify CPSR.
Evan Cheng7e1bf302010-09-29 00:27:46 +0000548multiclass T2I_bin_irs<bits<4> opcod, string opc,
549 InstrItinClass iii, InstrItinClass iir, InstrItinClass iis,
Jim Grosbach5c6c1282012-08-02 21:50:41 +0000550 PatFrag opnode, bit Commutable = 0,
Jim Grosbachadf73662011-06-28 00:19:13 +0000551 string wide = ""> {
Anton Korobeynikov52237112009-06-17 18:13:58 +0000552 // shifted imm
Owen Anderson83da6cd2010-11-14 05:37:38 +0000553 def ri : T2sTwoRegImm<
554 (outs rGPR:$Rd), (ins rGPR:$Rn, t2_so_imm:$imm), iii,
555 opc, "\t$Rd, $Rn, $imm",
556 [(set rGPR:$Rd, (opnode rGPR:$Rn, t2_so_imm:$imm))]> {
Johnny Chend68e1192009-12-15 17:24:14 +0000557 let Inst{31-27} = 0b11110;
558 let Inst{25} = 0;
559 let Inst{24-21} = opcod;
Johnny Chend68e1192009-12-15 17:24:14 +0000560 let Inst{15} = 0;
561 }
Evan Chenga67efd12009-06-23 19:39:13 +0000562 // register
Owen Anderson83da6cd2010-11-14 05:37:38 +0000563 def rr : T2sThreeReg<(outs rGPR:$Rd), (ins rGPR:$Rn, rGPR:$Rm), iir,
564 opc, !strconcat(wide, "\t$Rd, $Rn, $Rm"),
565 [(set rGPR:$Rd, (opnode rGPR:$Rn, rGPR:$Rm))]> {
Evan Cheng8de898a2009-06-26 00:19:44 +0000566 let isCommutable = Commutable;
Johnny Chend68e1192009-12-15 17:24:14 +0000567 let Inst{31-27} = 0b11101;
568 let Inst{26-25} = 0b01;
569 let Inst{24-21} = opcod;
Johnny Chend68e1192009-12-15 17:24:14 +0000570 let Inst{14-12} = 0b000; // imm3
571 let Inst{7-6} = 0b00; // imm2
572 let Inst{5-4} = 0b00; // type
Evan Cheng8de898a2009-06-26 00:19:44 +0000573 }
Anton Korobeynikov52237112009-06-17 18:13:58 +0000574 // shifted register
Owen Anderson83da6cd2010-11-14 05:37:38 +0000575 def rs : T2sTwoRegShiftedReg<
576 (outs rGPR:$Rd), (ins rGPR:$Rn, t2_so_reg:$ShiftedRm), iis,
577 opc, !strconcat(wide, "\t$Rd, $Rn, $ShiftedRm"),
578 [(set rGPR:$Rd, (opnode rGPR:$Rn, t2_so_reg:$ShiftedRm))]> {
Johnny Chend68e1192009-12-15 17:24:14 +0000579 let Inst{31-27} = 0b11101;
580 let Inst{26-25} = 0b01;
581 let Inst{24-21} = opcod;
Bill Wendling4822bce2010-08-30 01:47:35 +0000582 }
Jim Grosbachadf73662011-06-28 00:19:13 +0000583 // Assembly aliases for optional destination operand when it's the same
584 // as the source operand.
Jim Grosbacha33b31b2011-08-22 18:04:24 +0000585 def : t2InstAlias<!strconcat(opc, "${s}${p} $Rdn, $imm"),
Jim Grosbach5c6c1282012-08-02 21:50:41 +0000586 (!cast<Instruction>(NAME#"ri") rGPR:$Rdn, rGPR:$Rdn,
Jim Grosbachadf73662011-06-28 00:19:13 +0000587 t2_so_imm:$imm, pred:$p,
Jim Grosbacha33b31b2011-08-22 18:04:24 +0000588 cc_out:$s)>;
589 def : t2InstAlias<!strconcat(opc, "${s}${p}", wide, " $Rdn, $Rm"),
Jim Grosbach5c6c1282012-08-02 21:50:41 +0000590 (!cast<Instruction>(NAME#"rr") rGPR:$Rdn, rGPR:$Rdn,
Jim Grosbachadf73662011-06-28 00:19:13 +0000591 rGPR:$Rm, pred:$p,
Jim Grosbacha33b31b2011-08-22 18:04:24 +0000592 cc_out:$s)>;
593 def : t2InstAlias<!strconcat(opc, "${s}${p}", wide, " $Rdn, $shift"),
Jim Grosbach5c6c1282012-08-02 21:50:41 +0000594 (!cast<Instruction>(NAME#"rs") rGPR:$Rdn, rGPR:$Rdn,
Jim Grosbachadf73662011-06-28 00:19:13 +0000595 t2_so_reg:$shift, pred:$p,
Jim Grosbacha33b31b2011-08-22 18:04:24 +0000596 cc_out:$s)>;
Bill Wendling4822bce2010-08-30 01:47:35 +0000597}
598
David Goodwin1f096272009-07-27 23:34:12 +0000599/// T2I_bin_w_irs - Same as T2I_bin_irs except these operations need
Jim Grosbachadf73662011-06-28 00:19:13 +0000600// the ".w" suffix to indicate that they are wide.
Evan Cheng7e1bf302010-09-29 00:27:46 +0000601multiclass T2I_bin_w_irs<bits<4> opcod, string opc,
602 InstrItinClass iii, InstrItinClass iir, InstrItinClass iis,
Jim Grosbach5c6c1282012-08-02 21:50:41 +0000603 PatFrag opnode, bit Commutable = 0> :
604 T2I_bin_irs<opcod, opc, iii, iir, iis, opnode, Commutable, ".w"> {
Jim Grosbach9e931f62012-02-24 19:06:05 +0000605 // Assembler aliases w/ the ".w" suffix.
606 def : t2InstAlias<!strconcat(opc, "${s}${p}.w", " $Rd, $Rn, $imm"),
Jim Grosbach5c6c1282012-08-02 21:50:41 +0000607 (!cast<Instruction>(NAME#"ri") rGPR:$Rd, rGPR:$Rn, t2_so_imm:$imm, pred:$p,
608 cc_out:$s)>;
Jim Grosbach5c1ac552011-09-02 18:41:35 +0000609 // Assembler aliases w/o the ".w" suffix.
610 def : t2InstAlias<!strconcat(opc, "${s}${p}", " $Rd, $Rn, $Rm"),
Jim Grosbach5c6c1282012-08-02 21:50:41 +0000611 (!cast<Instruction>(NAME#"rr") rGPR:$Rd, rGPR:$Rn, rGPR:$Rm, pred:$p,
612 cc_out:$s)>;
Jim Grosbach5c1ac552011-09-02 18:41:35 +0000613 def : t2InstAlias<!strconcat(opc, "${s}${p}", " $Rd, $Rn, $shift"),
Jim Grosbach5c6c1282012-08-02 21:50:41 +0000614 (!cast<Instruction>(NAME#"rs") rGPR:$Rd, rGPR:$Rn, t2_so_reg:$shift,
615 pred:$p, cc_out:$s)>;
Jim Grosbach5c1ac552011-09-02 18:41:35 +0000616
617 // and with the optional destination operand, too.
Jim Grosbach11d5dc32012-03-16 22:18:29 +0000618 def : t2InstAlias<!strconcat(opc, "${s}${p}.w", " $Rdn, $imm"),
Jim Grosbach5c6c1282012-08-02 21:50:41 +0000619 (!cast<Instruction>(NAME#"ri") rGPR:$Rdn, rGPR:$Rdn, t2_so_imm:$imm,
620 pred:$p, cc_out:$s)>;
Jim Grosbach5c1ac552011-09-02 18:41:35 +0000621 def : t2InstAlias<!strconcat(opc, "${s}${p}", " $Rdn, $Rm"),
Jim Grosbach5c6c1282012-08-02 21:50:41 +0000622 (!cast<Instruction>(NAME#"rr") rGPR:$Rdn, rGPR:$Rdn, rGPR:$Rm, pred:$p,
623 cc_out:$s)>;
Jim Grosbach5c1ac552011-09-02 18:41:35 +0000624 def : t2InstAlias<!strconcat(opc, "${s}${p}", " $Rdn, $shift"),
Jim Grosbach5c6c1282012-08-02 21:50:41 +0000625 (!cast<Instruction>(NAME#"rs") rGPR:$Rdn, rGPR:$Rdn, t2_so_reg:$shift,
626 pred:$p, cc_out:$s)>;
Jim Grosbach5c1ac552011-09-02 18:41:35 +0000627}
Bill Wendling1f7bf0e2010-08-29 03:55:31 +0000628
Evan Cheng1e249e32009-06-25 20:59:23 +0000629/// T2I_rbin_is - Same as T2I_bin_irs except the order of operands are
Bob Wilson20d8e4e2010-08-13 23:24:25 +0000630/// reversed. The 'rr' form is only defined for the disassembler; for codegen
631/// it is equivalent to the T2I_bin_irs counterpart.
632multiclass T2I_rbin_irs<bits<4> opcod, string opc, PatFrag opnode> {
Evan Chengf49810c2009-06-23 17:48:47 +0000633 // shifted imm
Owen Anderson83da6cd2010-11-14 05:37:38 +0000634 def ri : T2sTwoRegImm<
635 (outs rGPR:$Rd), (ins rGPR:$Rn, t2_so_imm:$imm), IIC_iALUi,
636 opc, ".w\t$Rd, $Rn, $imm",
637 [(set rGPR:$Rd, (opnode t2_so_imm:$imm, rGPR:$Rn))]> {
Johnny Chend68e1192009-12-15 17:24:14 +0000638 let Inst{31-27} = 0b11110;
639 let Inst{25} = 0;
640 let Inst{24-21} = opcod;
Johnny Chend68e1192009-12-15 17:24:14 +0000641 let Inst{15} = 0;
642 }
Bob Wilson20d8e4e2010-08-13 23:24:25 +0000643 // register
Owen Anderson83da6cd2010-11-14 05:37:38 +0000644 def rr : T2sThreeReg<
645 (outs rGPR:$Rd), (ins rGPR:$Rn, rGPR:$Rm), IIC_iALUr,
646 opc, "\t$Rd, $Rn, $Rm",
Bob Wilson136e4912010-08-14 03:18:29 +0000647 [/* For disassembly only; pattern left blank */]> {
Bob Wilson20d8e4e2010-08-13 23:24:25 +0000648 let Inst{31-27} = 0b11101;
649 let Inst{26-25} = 0b01;
650 let Inst{24-21} = opcod;
Bob Wilson20d8e4e2010-08-13 23:24:25 +0000651 let Inst{14-12} = 0b000; // imm3
652 let Inst{7-6} = 0b00; // imm2
653 let Inst{5-4} = 0b00; // type
654 }
Evan Chengf49810c2009-06-23 17:48:47 +0000655 // shifted register
Owen Anderson83da6cd2010-11-14 05:37:38 +0000656 def rs : T2sTwoRegShiftedReg<
657 (outs rGPR:$Rd), (ins rGPR:$Rn, t2_so_reg:$ShiftedRm),
658 IIC_iALUsir, opc, "\t$Rd, $Rn, $ShiftedRm",
659 [(set rGPR:$Rd, (opnode t2_so_reg:$ShiftedRm, rGPR:$Rn))]> {
Johnny Chend68e1192009-12-15 17:24:14 +0000660 let Inst{31-27} = 0b11101;
661 let Inst{26-25} = 0b01;
662 let Inst{24-21} = opcod;
Johnny Chend68e1192009-12-15 17:24:14 +0000663 }
Evan Chengf49810c2009-06-23 17:48:47 +0000664}
665
Evan Chenga67efd12009-06-23 19:39:13 +0000666/// T2I_bin_s_irs - Similar to T2I_bin_irs except it sets the 's' bit so the
Anton Korobeynikov52237112009-06-17 18:13:58 +0000667/// instruction modifies the CPSR register.
Andrew Trick3be654f2011-09-21 02:20:46 +0000668///
669/// These opcodes will be converted to the real non-S opcodes by
670/// AdjustInstrPostInstrSelection after giving then an optional CPSR operand.
Andrew Trick90b7b122011-10-18 19:18:52 +0000671let hasPostISelHook = 1, Defs = [CPSR] in {
672multiclass T2I_bin_s_irs<InstrItinClass iii, InstrItinClass iir,
673 InstrItinClass iis, PatFrag opnode,
674 bit Commutable = 0> {
Anton Korobeynikov52237112009-06-17 18:13:58 +0000675 // shifted imm
Andrew Trick90b7b122011-10-18 19:18:52 +0000676 def ri : t2PseudoInst<(outs rGPR:$Rd),
677 (ins GPRnopc:$Rn, t2_so_imm:$imm, pred:$p),
678 4, iii,
679 [(set rGPR:$Rd, CPSR, (opnode GPRnopc:$Rn,
680 t2_so_imm:$imm))]>;
Evan Chenga67efd12009-06-23 19:39:13 +0000681 // register
Andrew Trick90b7b122011-10-18 19:18:52 +0000682 def rr : t2PseudoInst<(outs rGPR:$Rd), (ins GPRnopc:$Rn, rGPR:$Rm, pred:$p),
683 4, iir,
684 [(set rGPR:$Rd, CPSR, (opnode GPRnopc:$Rn,
685 rGPR:$Rm))]> {
686 let isCommutable = Commutable;
687 }
Anton Korobeynikov52237112009-06-17 18:13:58 +0000688 // shifted register
Andrew Trick90b7b122011-10-18 19:18:52 +0000689 def rs : t2PseudoInst<(outs rGPR:$Rd),
690 (ins GPRnopc:$Rn, t2_so_reg:$ShiftedRm, pred:$p),
691 4, iis,
692 [(set rGPR:$Rd, CPSR, (opnode GPRnopc:$Rn,
693 t2_so_reg:$ShiftedRm))]>;
694}
695}
696
697/// T2I_rbin_s_is - Same as T2I_bin_s_irs, except selection DAG
698/// operands are reversed.
699let hasPostISelHook = 1, Defs = [CPSR] in {
700multiclass T2I_rbin_s_is<PatFrag opnode> {
701 // shifted imm
702 def ri : t2PseudoInst<(outs rGPR:$Rd),
Jim Grosbachb551f0c2012-05-21 17:57:17 +0000703 (ins rGPR:$Rn, t2_so_imm:$imm, pred:$p),
Andrew Trick90b7b122011-10-18 19:18:52 +0000704 4, IIC_iALUi,
705 [(set rGPR:$Rd, CPSR, (opnode t2_so_imm:$imm,
Jim Grosbachb551f0c2012-05-21 17:57:17 +0000706 rGPR:$Rn))]>;
Andrew Trick90b7b122011-10-18 19:18:52 +0000707 // shifted register
708 def rs : t2PseudoInst<(outs rGPR:$Rd),
Jim Grosbachb551f0c2012-05-21 17:57:17 +0000709 (ins rGPR:$Rn, t2_so_reg:$ShiftedRm, pred:$p),
Andrew Trick90b7b122011-10-18 19:18:52 +0000710 4, IIC_iALUsi,
711 [(set rGPR:$Rd, CPSR, (opnode t2_so_reg:$ShiftedRm,
Jim Grosbachb551f0c2012-05-21 17:57:17 +0000712 rGPR:$Rn))]>;
Anton Korobeynikov52237112009-06-17 18:13:58 +0000713}
714}
715
Evan Chenga67efd12009-06-23 19:39:13 +0000716/// T2I_bin_ii12rs - Defines a set of (op reg, {so_imm|imm0_4095|r|so_reg})
717/// patterns for a binary operation that produces a value.
Johnny Chend68e1192009-12-15 17:24:14 +0000718multiclass T2I_bin_ii12rs<bits<3> op23_21, string opc, PatFrag opnode,
719 bit Commutable = 0> {
Evan Chengf49810c2009-06-23 17:48:47 +0000720 // shifted imm
Jim Grosbach663e3392010-08-30 19:49:58 +0000721 // The register-immediate version is re-materializable. This is useful
722 // in particular for taking the address of a local.
723 let isReMaterializable = 1 in {
Owen Anderson83da6cd2010-11-14 05:37:38 +0000724 def ri : T2sTwoRegImm<
Jim Grosbachb95ed6e2011-10-03 20:51:59 +0000725 (outs GPRnopc:$Rd), (ins GPRnopc:$Rn, t2_so_imm:$imm), IIC_iALUi,
726 opc, ".w\t$Rd, $Rn, $imm",
727 [(set GPRnopc:$Rd, (opnode GPRnopc:$Rn, t2_so_imm:$imm))]> {
Johnny Chend68e1192009-12-15 17:24:14 +0000728 let Inst{31-27} = 0b11110;
729 let Inst{25} = 0;
730 let Inst{24} = 1;
731 let Inst{23-21} = op23_21;
Johnny Chend68e1192009-12-15 17:24:14 +0000732 let Inst{15} = 0;
733 }
Jim Grosbach663e3392010-08-30 19:49:58 +0000734 }
Evan Chengf49810c2009-06-23 17:48:47 +0000735 // 12-bit imm
Jim Grosbach07e9b262010-12-08 23:04:16 +0000736 def ri12 : T2I<
Jim Grosbachb95ed6e2011-10-03 20:51:59 +0000737 (outs GPRnopc:$Rd), (ins GPR:$Rn, imm0_4095:$imm), IIC_iALUi,
Owen Anderson83da6cd2010-11-14 05:37:38 +0000738 !strconcat(opc, "w"), "\t$Rd, $Rn, $imm",
Jim Grosbachb95ed6e2011-10-03 20:51:59 +0000739 [(set GPRnopc:$Rd, (opnode GPR:$Rn, imm0_4095:$imm))]> {
Jim Grosbach07e9b262010-12-08 23:04:16 +0000740 bits<4> Rd;
741 bits<4> Rn;
742 bits<12> imm;
Johnny Chend68e1192009-12-15 17:24:14 +0000743 let Inst{31-27} = 0b11110;
Jim Grosbach07e9b262010-12-08 23:04:16 +0000744 let Inst{26} = imm{11};
745 let Inst{25-24} = 0b10;
Johnny Chend68e1192009-12-15 17:24:14 +0000746 let Inst{23-21} = op23_21;
747 let Inst{20} = 0; // The S bit.
Jim Grosbach07e9b262010-12-08 23:04:16 +0000748 let Inst{19-16} = Rn;
Johnny Chend68e1192009-12-15 17:24:14 +0000749 let Inst{15} = 0;
Jim Grosbach07e9b262010-12-08 23:04:16 +0000750 let Inst{14-12} = imm{10-8};
751 let Inst{11-8} = Rd;
752 let Inst{7-0} = imm{7-0};
Johnny Chend68e1192009-12-15 17:24:14 +0000753 }
Evan Chenga67efd12009-06-23 19:39:13 +0000754 // register
Jim Grosbachb95ed6e2011-10-03 20:51:59 +0000755 def rr : T2sThreeReg<(outs GPRnopc:$Rd), (ins GPRnopc:$Rn, rGPR:$Rm),
756 IIC_iALUr, opc, ".w\t$Rd, $Rn, $Rm",
757 [(set GPRnopc:$Rd, (opnode GPRnopc:$Rn, rGPR:$Rm))]> {
Evan Cheng8de898a2009-06-26 00:19:44 +0000758 let isCommutable = Commutable;
Johnny Chend68e1192009-12-15 17:24:14 +0000759 let Inst{31-27} = 0b11101;
760 let Inst{26-25} = 0b01;
761 let Inst{24} = 1;
762 let Inst{23-21} = op23_21;
Johnny Chend68e1192009-12-15 17:24:14 +0000763 let Inst{14-12} = 0b000; // imm3
764 let Inst{7-6} = 0b00; // imm2
765 let Inst{5-4} = 0b00; // type
Evan Cheng8de898a2009-06-26 00:19:44 +0000766 }
Evan Chengf49810c2009-06-23 17:48:47 +0000767 // shifted register
Owen Anderson83da6cd2010-11-14 05:37:38 +0000768 def rs : T2sTwoRegShiftedReg<
Jim Grosbachb95ed6e2011-10-03 20:51:59 +0000769 (outs GPRnopc:$Rd), (ins GPRnopc:$Rn, t2_so_reg:$ShiftedRm),
Owen Anderson83da6cd2010-11-14 05:37:38 +0000770 IIC_iALUsi, opc, ".w\t$Rd, $Rn, $ShiftedRm",
Jim Grosbachb95ed6e2011-10-03 20:51:59 +0000771 [(set GPRnopc:$Rd, (opnode GPRnopc:$Rn, t2_so_reg:$ShiftedRm))]> {
Johnny Chend68e1192009-12-15 17:24:14 +0000772 let Inst{31-27} = 0b11101;
Johnny Chend68e1192009-12-15 17:24:14 +0000773 let Inst{26-25} = 0b01;
Johnny Chend248ffb2010-01-08 17:41:33 +0000774 let Inst{24} = 1;
Johnny Chend68e1192009-12-15 17:24:14 +0000775 let Inst{23-21} = op23_21;
Johnny Chend68e1192009-12-15 17:24:14 +0000776 }
Jakob Stoklund Olesen083b48a2012-08-16 23:21:55 +0000777
778 // Predicated versions.
779 def CCri : t2PseudoExpand<(outs GPRnopc:$Rd),
780 (ins GPRnopc:$Rfalse, GPRnopc:$Rn, t2_so_imm:$imm,
781 pred:$p, cc_out:$s), 4, IIC_iALUi, [],
782 (!cast<Instruction>(NAME#ri) GPRnopc:$Rd,
783 GPRnopc:$Rn, t2_so_imm:$imm, pred:$p, cc_out:$s)>,
784 RegConstraint<"$Rfalse = $Rd">;
785 def CCri12 : t2PseudoExpand<(outs GPRnopc:$Rd),
786 (ins GPRnopc:$Rfalse, GPR:$Rn, imm0_4095:$imm,
787 pred:$p),
788 4, IIC_iALUi, [],
789 (!cast<Instruction>(NAME#ri12) GPRnopc:$Rd,
790 GPR:$Rn, imm0_4095:$imm, pred:$p)>,
791 RegConstraint<"$Rfalse = $Rd">;
792 def CCrr : t2PseudoExpand<(outs GPRnopc:$Rd),
793 (ins GPRnopc:$Rfalse, GPRnopc:$Rn, rGPR:$Rm,
794 pred:$p, cc_out:$s), 4, IIC_iALUr, [],
795 (!cast<Instruction>(NAME#rr) GPRnopc:$Rd,
796 GPRnopc:$Rn, rGPR:$Rm, pred:$p, cc_out:$s)>,
797 RegConstraint<"$Rfalse = $Rd">;
798 def CCrs : t2PseudoExpand<(outs GPRnopc:$Rd),
799 (ins GPRnopc:$Rfalse, GPRnopc:$Rn, t2_so_reg:$Rm,
800 pred:$p, cc_out:$s), 4, IIC_iALUsi, [],
801 (!cast<Instruction>(NAME#rs) GPRnopc:$Rd,
802 GPRnopc:$Rn, t2_so_reg:$Rm, pred:$p, cc_out:$s)>,
803 RegConstraint<"$Rfalse = $Rd">;
Evan Chengf49810c2009-06-23 17:48:47 +0000804}
805
Jim Grosbach6935efc2009-11-24 00:20:27 +0000806/// T2I_adde_sube_irs - Defines a set of (op reg, {so_imm|r|so_reg}) patterns
Jim Grosbach39be8fc2010-02-16 20:42:29 +0000807/// for a binary operation that produces a value and use the carry
Jim Grosbach6935efc2009-11-24 00:20:27 +0000808/// bit. It's not predicable.
Evan Cheng342e3162011-08-30 01:34:54 +0000809let Defs = [CPSR], Uses = [CPSR] in {
Jim Grosbach80dc1162010-02-16 21:23:02 +0000810multiclass T2I_adde_sube_irs<bits<4> opcod, string opc, PatFrag opnode,
811 bit Commutable = 0> {
Anton Korobeynikov52237112009-06-17 18:13:58 +0000812 // shifted imm
Owen Anderson83da6cd2010-11-14 05:37:38 +0000813 def ri : T2sTwoRegImm<(outs rGPR:$Rd), (ins rGPR:$Rn, t2_so_imm:$imm),
Owen Anderson5de6d842010-11-12 21:12:40 +0000814 IIC_iALUi, opc, "\t$Rd, $Rn, $imm",
Evan Cheng342e3162011-08-30 01:34:54 +0000815 [(set rGPR:$Rd, CPSR, (opnode rGPR:$Rn, t2_so_imm:$imm, CPSR))]>,
Jim Grosbach39be8fc2010-02-16 20:42:29 +0000816 Requires<[IsThumb2]> {
Johnny Chend68e1192009-12-15 17:24:14 +0000817 let Inst{31-27} = 0b11110;
818 let Inst{25} = 0;
819 let Inst{24-21} = opcod;
Johnny Chend68e1192009-12-15 17:24:14 +0000820 let Inst{15} = 0;
821 }
Evan Chenga67efd12009-06-23 19:39:13 +0000822 // register
Owen Anderson83da6cd2010-11-14 05:37:38 +0000823 def rr : T2sThreeReg<(outs rGPR:$Rd), (ins rGPR:$Rn, rGPR:$Rm), IIC_iALUr,
Owen Anderson5de6d842010-11-12 21:12:40 +0000824 opc, ".w\t$Rd, $Rn, $Rm",
Evan Cheng342e3162011-08-30 01:34:54 +0000825 [(set rGPR:$Rd, CPSR, (opnode rGPR:$Rn, rGPR:$Rm, CPSR))]>,
Jim Grosbach39be8fc2010-02-16 20:42:29 +0000826 Requires<[IsThumb2]> {
Evan Cheng8de898a2009-06-26 00:19:44 +0000827 let isCommutable = Commutable;
Johnny Chend68e1192009-12-15 17:24:14 +0000828 let Inst{31-27} = 0b11101;
829 let Inst{26-25} = 0b01;
830 let Inst{24-21} = opcod;
Johnny Chend68e1192009-12-15 17:24:14 +0000831 let Inst{14-12} = 0b000; // imm3
832 let Inst{7-6} = 0b00; // imm2
833 let Inst{5-4} = 0b00; // type
Evan Cheng8de898a2009-06-26 00:19:44 +0000834 }
Anton Korobeynikov52237112009-06-17 18:13:58 +0000835 // shifted register
Owen Anderson83da6cd2010-11-14 05:37:38 +0000836 def rs : T2sTwoRegShiftedReg<
Jim Grosbach7a088642010-11-19 17:11:02 +0000837 (outs rGPR:$Rd), (ins rGPR:$Rn, t2_so_reg:$ShiftedRm),
Owen Anderson5de6d842010-11-12 21:12:40 +0000838 IIC_iALUsi, opc, ".w\t$Rd, $Rn, $ShiftedRm",
Evan Cheng342e3162011-08-30 01:34:54 +0000839 [(set rGPR:$Rd, CPSR, (opnode rGPR:$Rn, t2_so_reg:$ShiftedRm, CPSR))]>,
Jim Grosbach39be8fc2010-02-16 20:42:29 +0000840 Requires<[IsThumb2]> {
Johnny Chend68e1192009-12-15 17:24:14 +0000841 let Inst{31-27} = 0b11101;
842 let Inst{26-25} = 0b01;
843 let Inst{24-21} = opcod;
Johnny Chend68e1192009-12-15 17:24:14 +0000844 }
Jim Grosbach39be8fc2010-02-16 20:42:29 +0000845}
Andrew Trick1c3af772011-04-23 03:55:32 +0000846}
Jim Grosbach39be8fc2010-02-16 20:42:29 +0000847
Evan Chenga67efd12009-06-23 19:39:13 +0000848/// T2I_sh_ir - Defines a set of (op reg, {so_imm|r}) patterns for a shift /
849// rotate operation that produces a value.
Jim Grosbach9249ef32012-08-02 21:59:52 +0000850multiclass T2I_sh_ir<bits<2> opcod, string opc, Operand ty, PatFrag opnode> {
Evan Chenga67efd12009-06-23 19:39:13 +0000851 // 5-bit imm
Owen Andersonbb6315d2010-11-15 19:58:36 +0000852 def ri : T2sTwoRegShiftImm<
Owen Anderson6d746312011-08-08 20:42:17 +0000853 (outs rGPR:$Rd), (ins rGPR:$Rm, ty:$imm), IIC_iMOVsi,
Owen Andersonbb6315d2010-11-15 19:58:36 +0000854 opc, ".w\t$Rd, $Rm, $imm",
Jim Grosbach70939ee2011-08-17 21:51:27 +0000855 [(set rGPR:$Rd, (opnode rGPR:$Rm, (i32 ty:$imm)))]> {
Johnny Chend68e1192009-12-15 17:24:14 +0000856 let Inst{31-27} = 0b11101;
857 let Inst{26-21} = 0b010010;
858 let Inst{19-16} = 0b1111; // Rn
859 let Inst{5-4} = opcod;
860 }
Evan Chenga67efd12009-06-23 19:39:13 +0000861 // register
Owen Andersonbb6315d2010-11-15 19:58:36 +0000862 def rr : T2sThreeReg<
863 (outs rGPR:$Rd), (ins rGPR:$Rn, rGPR:$Rm), IIC_iMOVsr,
864 opc, ".w\t$Rd, $Rn, $Rm",
865 [(set rGPR:$Rd, (opnode rGPR:$Rn, rGPR:$Rm))]> {
Johnny Chend68e1192009-12-15 17:24:14 +0000866 let Inst{31-27} = 0b11111;
867 let Inst{26-23} = 0b0100;
868 let Inst{22-21} = opcod;
869 let Inst{15-12} = 0b1111;
870 let Inst{7-4} = 0b0000;
871 }
Jim Grosbach5f25fb02011-09-02 21:28:54 +0000872
873 // Optional destination register
874 def : t2InstAlias<!strconcat(opc, "${s}${p}", ".w $Rdn, $imm"),
Jim Grosbach9249ef32012-08-02 21:59:52 +0000875 (!cast<Instruction>(NAME#"ri") rGPR:$Rdn, rGPR:$Rdn, ty:$imm, pred:$p,
876 cc_out:$s)>;
Jim Grosbach5f25fb02011-09-02 21:28:54 +0000877 def : t2InstAlias<!strconcat(opc, "${s}${p}", ".w $Rdn, $Rm"),
Jim Grosbach9249ef32012-08-02 21:59:52 +0000878 (!cast<Instruction>(NAME#"rr") rGPR:$Rdn, rGPR:$Rdn, rGPR:$Rm, pred:$p,
879 cc_out:$s)>;
Jim Grosbach5f25fb02011-09-02 21:28:54 +0000880
881 // Assembler aliases w/o the ".w" suffix.
882 def : t2InstAlias<!strconcat(opc, "${s}${p}", " $Rd, $Rn, $imm"),
Jim Grosbach9249ef32012-08-02 21:59:52 +0000883 (!cast<Instruction>(NAME#"ri") rGPR:$Rd, rGPR:$Rn, ty:$imm, pred:$p,
884 cc_out:$s)>;
Jim Grosbach5f25fb02011-09-02 21:28:54 +0000885 def : t2InstAlias<!strconcat(opc, "${s}${p}", " $Rd, $Rn, $Rm"),
Jim Grosbach9249ef32012-08-02 21:59:52 +0000886 (!cast<Instruction>(NAME#"rr") rGPR:$Rd, rGPR:$Rn, rGPR:$Rm, pred:$p,
887 cc_out:$s)>;
Jim Grosbach5f25fb02011-09-02 21:28:54 +0000888
889 // and with the optional destination operand, too.
890 def : t2InstAlias<!strconcat(opc, "${s}${p}", " $Rdn, $imm"),
Jim Grosbach9249ef32012-08-02 21:59:52 +0000891 (!cast<Instruction>(NAME#"ri") rGPR:$Rdn, rGPR:$Rdn, ty:$imm, pred:$p,
892 cc_out:$s)>;
Jim Grosbach5f25fb02011-09-02 21:28:54 +0000893 def : t2InstAlias<!strconcat(opc, "${s}${p}", " $Rdn, $Rm"),
Jim Grosbach9249ef32012-08-02 21:59:52 +0000894 (!cast<Instruction>(NAME#"rr") rGPR:$Rdn, rGPR:$Rdn, rGPR:$Rm, pred:$p,
895 cc_out:$s)>;
Evan Chenga67efd12009-06-23 19:39:13 +0000896}
Evan Chengf49810c2009-06-23 17:48:47 +0000897
Johnny Chend68e1192009-12-15 17:24:14 +0000898/// T2I_cmp_irs - Defines a set of (op r, {so_imm|r|so_reg}) cmp / test
Evan Chenga67efd12009-06-23 19:39:13 +0000899/// patterns. Similar to T2I_bin_irs except the instruction does not produce
Evan Chengf49810c2009-06-23 17:48:47 +0000900/// a explicit result, only implicitly set CPSR.
Evan Cheng5d42c562010-09-29 00:49:25 +0000901multiclass T2I_cmp_irs<bits<4> opcod, string opc,
902 InstrItinClass iii, InstrItinClass iir, InstrItinClass iis,
Jim Grosbach9249ef32012-08-02 21:59:52 +0000903 PatFrag opnode> {
Jim Grosbachef88a922011-09-06 21:44:58 +0000904let isCompare = 1, Defs = [CPSR] in {
Evan Chengf49810c2009-06-23 17:48:47 +0000905 // shifted imm
Owen Andersonbb6315d2010-11-15 19:58:36 +0000906 def ri : T2OneRegCmpImm<
Jim Grosbachef88a922011-09-06 21:44:58 +0000907 (outs), (ins GPRnopc:$Rn, t2_so_imm:$imm), iii,
Owen Andersonbb6315d2010-11-15 19:58:36 +0000908 opc, ".w\t$Rn, $imm",
Jim Grosbachef88a922011-09-06 21:44:58 +0000909 [(opnode GPRnopc:$Rn, t2_so_imm:$imm)]> {
Johnny Chend68e1192009-12-15 17:24:14 +0000910 let Inst{31-27} = 0b11110;
911 let Inst{25} = 0;
912 let Inst{24-21} = opcod;
913 let Inst{20} = 1; // The S bit.
914 let Inst{15} = 0;
915 let Inst{11-8} = 0b1111; // Rd
916 }
Evan Chenga67efd12009-06-23 19:39:13 +0000917 // register
Owen Andersonbb6315d2010-11-15 19:58:36 +0000918 def rr : T2TwoRegCmp<
Jim Grosbachef88a922011-09-06 21:44:58 +0000919 (outs), (ins GPRnopc:$Rn, rGPR:$Rm), iir,
Owen Andersone732cb02011-08-23 17:37:32 +0000920 opc, ".w\t$Rn, $Rm",
Jim Grosbachef88a922011-09-06 21:44:58 +0000921 [(opnode GPRnopc:$Rn, rGPR:$Rm)]> {
Johnny Chend68e1192009-12-15 17:24:14 +0000922 let Inst{31-27} = 0b11101;
923 let Inst{26-25} = 0b01;
924 let Inst{24-21} = opcod;
925 let Inst{20} = 1; // The S bit.
926 let Inst{14-12} = 0b000; // imm3
927 let Inst{11-8} = 0b1111; // Rd
928 let Inst{7-6} = 0b00; // imm2
929 let Inst{5-4} = 0b00; // type
930 }
Evan Chengf49810c2009-06-23 17:48:47 +0000931 // shifted register
Owen Andersonbb6315d2010-11-15 19:58:36 +0000932 def rs : T2OneRegCmpShiftedReg<
Jim Grosbachef88a922011-09-06 21:44:58 +0000933 (outs), (ins GPRnopc:$Rn, t2_so_reg:$ShiftedRm), iis,
Owen Andersonbb6315d2010-11-15 19:58:36 +0000934 opc, ".w\t$Rn, $ShiftedRm",
Jim Grosbachef88a922011-09-06 21:44:58 +0000935 [(opnode GPRnopc:$Rn, t2_so_reg:$ShiftedRm)]> {
Johnny Chend68e1192009-12-15 17:24:14 +0000936 let Inst{31-27} = 0b11101;
937 let Inst{26-25} = 0b01;
938 let Inst{24-21} = opcod;
939 let Inst{20} = 1; // The S bit.
940 let Inst{11-8} = 0b1111; // Rd
941 }
Anton Korobeynikov52237112009-06-17 18:13:58 +0000942}
Jim Grosbachef88a922011-09-06 21:44:58 +0000943
944 // Assembler aliases w/o the ".w" suffix.
945 // No alias here for 'rr' version as not all instantiations of this
946 // multiclass want one (CMP in particular, does not).
947 def : t2InstAlias<!strconcat(opc, "${p}", " $Rn, $imm"),
Jim Grosbach9249ef32012-08-02 21:59:52 +0000948 (!cast<Instruction>(NAME#"ri") GPRnopc:$Rn, t2_so_imm:$imm, pred:$p)>;
Jim Grosbachef88a922011-09-06 21:44:58 +0000949 def : t2InstAlias<!strconcat(opc, "${p}", " $Rn, $shift"),
Jim Grosbach9249ef32012-08-02 21:59:52 +0000950 (!cast<Instruction>(NAME#"rs") GPRnopc:$Rn, t2_so_reg:$shift, pred:$p)>;
Anton Korobeynikov52237112009-06-17 18:13:58 +0000951}
952
Evan Chengf3c21b82009-06-30 02:15:48 +0000953/// T2I_ld - Defines a set of (op r, {imm12|imm8|so_reg}) load patterns.
Evan Cheng0e55fd62010-09-30 01:08:25 +0000954multiclass T2I_ld<bit signed, bits<2> opcod, string opc,
Owen Anderson9fe72bc2011-08-11 20:40:40 +0000955 InstrItinClass iii, InstrItinClass iis, RegisterClass target,
956 PatFrag opnode> {
957 def i12 : T2Ii12<(outs target:$Rt), (ins t2addrmode_imm12:$addr), iii,
Owen Anderson75579f72010-11-29 22:44:32 +0000958 opc, ".w\t$Rt, $addr",
Owen Anderson9fe72bc2011-08-11 20:40:40 +0000959 [(set target:$Rt, (opnode t2addrmode_imm12:$addr))]> {
Jim Grosbacha8307dd2011-09-07 20:58:57 +0000960 bits<4> Rt;
961 bits<17> addr;
962 let Inst{31-25} = 0b1111100;
Johnny Chend68e1192009-12-15 17:24:14 +0000963 let Inst{24} = signed;
964 let Inst{23} = 1;
965 let Inst{22-21} = opcod;
966 let Inst{20} = 1; // load
Owen Anderson80dd3e02010-11-30 22:45:47 +0000967 let Inst{19-16} = addr{16-13}; // Rn
Jim Grosbacha8307dd2011-09-07 20:58:57 +0000968 let Inst{15-12} = Rt;
Owen Anderson80dd3e02010-11-30 22:45:47 +0000969 let Inst{11-0} = addr{11-0}; // imm
Johnny Chend68e1192009-12-15 17:24:14 +0000970 }
Jim Grosbacha8307dd2011-09-07 20:58:57 +0000971 def i8 : T2Ii8 <(outs target:$Rt), (ins t2addrmode_negimm8:$addr), iii,
Owen Anderson75579f72010-11-29 22:44:32 +0000972 opc, "\t$Rt, $addr",
Jim Grosbacha8307dd2011-09-07 20:58:57 +0000973 [(set target:$Rt, (opnode t2addrmode_negimm8:$addr))]> {
974 bits<4> Rt;
975 bits<13> addr;
Johnny Chend68e1192009-12-15 17:24:14 +0000976 let Inst{31-27} = 0b11111;
977 let Inst{26-25} = 0b00;
978 let Inst{24} = signed;
979 let Inst{23} = 0;
980 let Inst{22-21} = opcod;
981 let Inst{20} = 1; // load
Jim Grosbacha8307dd2011-09-07 20:58:57 +0000982 let Inst{19-16} = addr{12-9}; // Rn
983 let Inst{15-12} = Rt;
Johnny Chend68e1192009-12-15 17:24:14 +0000984 let Inst{11} = 1;
985 // Offset: index==TRUE, wback==FALSE
986 let Inst{10} = 1; // The P bit.
Owen Anderson75579f72010-11-29 22:44:32 +0000987 let Inst{9} = addr{8}; // U
Jim Grosbacha8307dd2011-09-07 20:58:57 +0000988 let Inst{8} = 0; // The W bit.
Owen Anderson75579f72010-11-29 22:44:32 +0000989 let Inst{7-0} = addr{7-0}; // imm
Johnny Chend68e1192009-12-15 17:24:14 +0000990 }
Owen Anderson9fe72bc2011-08-11 20:40:40 +0000991 def s : T2Iso <(outs target:$Rt), (ins t2addrmode_so_reg:$addr), iis,
Owen Anderson75579f72010-11-29 22:44:32 +0000992 opc, ".w\t$Rt, $addr",
Owen Anderson9fe72bc2011-08-11 20:40:40 +0000993 [(set target:$Rt, (opnode t2addrmode_so_reg:$addr))]> {
Johnny Chend68e1192009-12-15 17:24:14 +0000994 let Inst{31-27} = 0b11111;
995 let Inst{26-25} = 0b00;
996 let Inst{24} = signed;
997 let Inst{23} = 0;
998 let Inst{22-21} = opcod;
999 let Inst{20} = 1; // load
1000 let Inst{11-6} = 0b000000;
Jim Grosbach7721e7f2010-12-02 23:05:38 +00001001
Owen Anderson75579f72010-11-29 22:44:32 +00001002 bits<4> Rt;
Jim Grosbach86386922010-12-08 22:10:43 +00001003 let Inst{15-12} = Rt;
Jim Grosbach7721e7f2010-12-02 23:05:38 +00001004
Owen Anderson75579f72010-11-29 22:44:32 +00001005 bits<10> addr;
1006 let Inst{19-16} = addr{9-6}; // Rn
1007 let Inst{3-0} = addr{5-2}; // Rm
1008 let Inst{5-4} = addr{1-0}; // imm
Owen Anderson8d7d2e12011-08-09 20:55:18 +00001009
1010 let DecoderMethod = "DecodeT2LoadShift";
Johnny Chend68e1192009-12-15 17:24:14 +00001011 }
Evan Chengbc7deb02010-11-03 05:14:24 +00001012
Jim Grosbach5aa53682012-01-18 22:04:42 +00001013 // pci variant is very similar to i12, but supports negative offsets
1014 // from the PC.
Owen Anderson9fe72bc2011-08-11 20:40:40 +00001015 def pci : T2Ipc <(outs target:$Rt), (ins t2ldrlabel:$addr), iii,
Owen Anderson971b83b2011-02-08 22:39:40 +00001016 opc, ".w\t$Rt, $addr",
Owen Anderson9fe72bc2011-08-11 20:40:40 +00001017 [(set target:$Rt, (opnode (ARMWrapper tconstpool:$addr)))]> {
Owen Anderson971b83b2011-02-08 22:39:40 +00001018 let isReMaterializable = 1;
1019 let Inst{31-27} = 0b11111;
1020 let Inst{26-25} = 0b00;
1021 let Inst{24} = signed;
1022 let Inst{23} = ?; // add = (U == '1')
1023 let Inst{22-21} = opcod;
1024 let Inst{20} = 1; // load
1025 let Inst{19-16} = 0b1111; // Rn
1026 bits<4> Rt;
1027 bits<12> addr;
1028 let Inst{15-12} = Rt{3-0};
1029 let Inst{11-0} = addr{11-0};
1030 }
Evan Chengf3c21b82009-06-30 02:15:48 +00001031}
1032
David Goodwin73b8f162009-06-30 22:11:34 +00001033/// T2I_st - Defines a set of (op r, {imm12|imm8|so_reg}) store patterns.
Evan Cheng0e55fd62010-09-30 01:08:25 +00001034multiclass T2I_st<bits<2> opcod, string opc,
Owen Anderson9fe72bc2011-08-11 20:40:40 +00001035 InstrItinClass iii, InstrItinClass iis, RegisterClass target,
1036 PatFrag opnode> {
1037 def i12 : T2Ii12<(outs), (ins target:$Rt, t2addrmode_imm12:$addr), iii,
Owen Anderson75579f72010-11-29 22:44:32 +00001038 opc, ".w\t$Rt, $addr",
Owen Anderson9fe72bc2011-08-11 20:40:40 +00001039 [(opnode target:$Rt, t2addrmode_imm12:$addr)]> {
Johnny Chend68e1192009-12-15 17:24:14 +00001040 let Inst{31-27} = 0b11111;
1041 let Inst{26-23} = 0b0001;
1042 let Inst{22-21} = opcod;
1043 let Inst{20} = 0; // !load
Jim Grosbach7721e7f2010-12-02 23:05:38 +00001044
Owen Anderson75579f72010-11-29 22:44:32 +00001045 bits<4> Rt;
Jim Grosbach86386922010-12-08 22:10:43 +00001046 let Inst{15-12} = Rt;
Jim Grosbach7721e7f2010-12-02 23:05:38 +00001047
Owen Anderson80dd3e02010-11-30 22:45:47 +00001048 bits<17> addr;
Johnny Chenf9ce2cb2011-04-12 18:48:00 +00001049 let addr{12} = 1; // add = TRUE
Owen Anderson80dd3e02010-11-30 22:45:47 +00001050 let Inst{19-16} = addr{16-13}; // Rn
1051 let Inst{23} = addr{12}; // U
1052 let Inst{11-0} = addr{11-0}; // imm
Johnny Chend68e1192009-12-15 17:24:14 +00001053 }
Jim Grosbacha8307dd2011-09-07 20:58:57 +00001054 def i8 : T2Ii8 <(outs), (ins target:$Rt, t2addrmode_negimm8:$addr), iii,
Owen Anderson75579f72010-11-29 22:44:32 +00001055 opc, "\t$Rt, $addr",
Jim Grosbacha8307dd2011-09-07 20:58:57 +00001056 [(opnode target:$Rt, t2addrmode_negimm8:$addr)]> {
Johnny Chend68e1192009-12-15 17:24:14 +00001057 let Inst{31-27} = 0b11111;
1058 let Inst{26-23} = 0b0000;
1059 let Inst{22-21} = opcod;
1060 let Inst{20} = 0; // !load
1061 let Inst{11} = 1;
1062 // Offset: index==TRUE, wback==FALSE
1063 let Inst{10} = 1; // The P bit.
1064 let Inst{8} = 0; // The W bit.
Jim Grosbach7721e7f2010-12-02 23:05:38 +00001065
Owen Anderson75579f72010-11-29 22:44:32 +00001066 bits<4> Rt;
Jim Grosbach86386922010-12-08 22:10:43 +00001067 let Inst{15-12} = Rt;
Jim Grosbach7721e7f2010-12-02 23:05:38 +00001068
Owen Anderson75579f72010-11-29 22:44:32 +00001069 bits<13> addr;
1070 let Inst{19-16} = addr{12-9}; // Rn
1071 let Inst{9} = addr{8}; // U
1072 let Inst{7-0} = addr{7-0}; // imm
Johnny Chend68e1192009-12-15 17:24:14 +00001073 }
Owen Anderson9fe72bc2011-08-11 20:40:40 +00001074 def s : T2Iso <(outs), (ins target:$Rt, t2addrmode_so_reg:$addr), iis,
Owen Anderson75579f72010-11-29 22:44:32 +00001075 opc, ".w\t$Rt, $addr",
Owen Anderson9fe72bc2011-08-11 20:40:40 +00001076 [(opnode target:$Rt, t2addrmode_so_reg:$addr)]> {
Johnny Chend68e1192009-12-15 17:24:14 +00001077 let Inst{31-27} = 0b11111;
1078 let Inst{26-23} = 0b0000;
1079 let Inst{22-21} = opcod;
1080 let Inst{20} = 0; // !load
1081 let Inst{11-6} = 0b000000;
Jim Grosbach7721e7f2010-12-02 23:05:38 +00001082
Owen Anderson75579f72010-11-29 22:44:32 +00001083 bits<4> Rt;
Jim Grosbach86386922010-12-08 22:10:43 +00001084 let Inst{15-12} = Rt;
Jim Grosbach7721e7f2010-12-02 23:05:38 +00001085
Owen Anderson75579f72010-11-29 22:44:32 +00001086 bits<10> addr;
1087 let Inst{19-16} = addr{9-6}; // Rn
1088 let Inst{3-0} = addr{5-2}; // Rm
1089 let Inst{5-4} = addr{1-0}; // imm
Johnny Chend68e1192009-12-15 17:24:14 +00001090 }
David Goodwin73b8f162009-06-30 22:11:34 +00001091}
1092
Evan Cheng0e55fd62010-09-30 01:08:25 +00001093/// T2I_ext_rrot - A unary operation with two forms: one whose operand is a
Evan Chengd27c9fc2009-07-03 01:43:10 +00001094/// register and one whose operand is a register rotated by 8/16/24.
Jim Grosbachc5a8c862011-07-27 16:47:19 +00001095class T2I_ext_rrot<bits<3> opcod, string opc, PatFrag opnode>
1096 : T2TwoReg<(outs rGPR:$Rd), (ins rGPR:$Rm, rot_imm:$rot), IIC_iEXTr,
1097 opc, ".w\t$Rd, $Rm$rot",
Eli Friedman2cb1dfa2011-08-08 19:49:37 +00001098 [(set rGPR:$Rd, (opnode (rotr rGPR:$Rm, rot_imm:$rot)))]>,
1099 Requires<[IsThumb2]> {
Jim Grosbachc5a8c862011-07-27 16:47:19 +00001100 let Inst{31-27} = 0b11111;
1101 let Inst{26-23} = 0b0100;
1102 let Inst{22-20} = opcod;
1103 let Inst{19-16} = 0b1111; // Rn
1104 let Inst{15-12} = 0b1111;
1105 let Inst{7} = 1;
Jim Grosbach7a088642010-11-19 17:11:02 +00001106
Jim Grosbachc5a8c862011-07-27 16:47:19 +00001107 bits<2> rot;
1108 let Inst{5-4} = rot{1-0}; // rotate
Evan Chengd27c9fc2009-07-03 01:43:10 +00001109}
1110
Eli Friedman761fa7a2010-06-24 18:20:04 +00001111// UXTB16 - Requres T2ExtractPack, does not need the .w qualifier.
Jim Grosbach70327412011-07-27 17:48:13 +00001112class T2I_ext_rrot_uxtb16<bits<3> opcod, string opc, PatFrag opnode>
Owen Andersone732cb02011-08-23 17:37:32 +00001113 : T2TwoReg<(outs rGPR:$Rd), (ins rGPR:$Rm, rot_imm:$rot),
1114 IIC_iEXTr, opc, "\t$Rd, $Rm$rot",
1115 [(set rGPR:$Rd, (opnode (rotr rGPR:$Rm, rot_imm:$rot)))]>,
Jim Grosbach70327412011-07-27 17:48:13 +00001116 Requires<[HasT2ExtractPack, IsThumb2]> {
1117 bits<2> rot;
1118 let Inst{31-27} = 0b11111;
1119 let Inst{26-23} = 0b0100;
1120 let Inst{22-20} = opcod;
1121 let Inst{19-16} = 0b1111; // Rn
1122 let Inst{15-12} = 0b1111;
1123 let Inst{7} = 1;
1124 let Inst{5-4} = rot;
Johnny Chen267124c2010-03-04 22:24:41 +00001125}
1126
Eli Friedman761fa7a2010-06-24 18:20:04 +00001127// SXTB16 - Requres T2ExtractPack, does not need the .w qualifier, no pattern
1128// supported yet.
Jim Grosbach70327412011-07-27 17:48:13 +00001129class T2I_ext_rrot_sxtb16<bits<3> opcod, string opc>
1130 : T2TwoReg<(outs rGPR:$Rd), (ins rGPR:$Rm, rot_imm:$rot), IIC_iEXTr,
1131 opc, "\t$Rd, $Rm$rot", []>,
Jim Grosbacha7603982011-07-01 21:12:19 +00001132 Requires<[IsThumb2, HasT2ExtractPack]> {
Jim Grosbach70327412011-07-27 17:48:13 +00001133 bits<2> rot;
1134 let Inst{31-27} = 0b11111;
1135 let Inst{26-23} = 0b0100;
1136 let Inst{22-20} = opcod;
1137 let Inst{19-16} = 0b1111; // Rn
1138 let Inst{15-12} = 0b1111;
1139 let Inst{7} = 1;
1140 let Inst{5-4} = rot;
Johnny Chen93042d12010-03-02 18:14:57 +00001141}
1142
Evan Cheng0e55fd62010-09-30 01:08:25 +00001143/// T2I_exta_rrot - A binary operation with two forms: one whose operand is a
Evan Chengd27c9fc2009-07-03 01:43:10 +00001144/// register and one whose operand is a register rotated by 8/16/24.
Jim Grosbach70327412011-07-27 17:48:13 +00001145class T2I_exta_rrot<bits<3> opcod, string opc, PatFrag opnode>
1146 : T2ThreeReg<(outs rGPR:$Rd),
1147 (ins rGPR:$Rn, rGPR:$Rm, rot_imm:$rot),
1148 IIC_iEXTAsr, opc, "\t$Rd, $Rn, $Rm$rot",
1149 [(set rGPR:$Rd, (opnode rGPR:$Rn, (rotr rGPR:$Rm,rot_imm:$rot)))]>,
1150 Requires<[HasT2ExtractPack, IsThumb2]> {
1151 bits<2> rot;
1152 let Inst{31-27} = 0b11111;
1153 let Inst{26-23} = 0b0100;
1154 let Inst{22-20} = opcod;
1155 let Inst{15-12} = 0b1111;
1156 let Inst{7} = 1;
1157 let Inst{5-4} = rot;
Evan Chengd27c9fc2009-07-03 01:43:10 +00001158}
1159
Jim Grosbach70327412011-07-27 17:48:13 +00001160class T2I_exta_rrot_np<bits<3> opcod, string opc>
1161 : T2ThreeReg<(outs rGPR:$Rd), (ins rGPR:$Rn, rGPR:$Rm,rot_imm:$rot),
1162 IIC_iEXTAsr, opc, "\t$Rd, $Rn, $Rm$rot", []> {
1163 bits<2> rot;
1164 let Inst{31-27} = 0b11111;
1165 let Inst{26-23} = 0b0100;
1166 let Inst{22-20} = opcod;
1167 let Inst{15-12} = 0b1111;
1168 let Inst{7} = 1;
1169 let Inst{5-4} = rot;
Johnny Chen93042d12010-03-02 18:14:57 +00001170}
1171
Anton Korobeynikov52237112009-06-17 18:13:58 +00001172//===----------------------------------------------------------------------===//
Evan Cheng9cb9e672009-06-27 02:26:13 +00001173// Instructions
1174//===----------------------------------------------------------------------===//
1175
1176//===----------------------------------------------------------------------===//
Evan Chenga09b9ca2009-06-24 23:47:58 +00001177// Miscellaneous Instructions.
1178//
1179
Owen Andersonda663f72010-11-15 21:30:39 +00001180class T2PCOneRegImm<dag oops, dag iops, InstrItinClass itin,
1181 string asm, list<dag> pattern>
1182 : T2XI<oops, iops, itin, asm, pattern> {
1183 bits<4> Rd;
1184 bits<12> label;
Jim Grosbach7a088642010-11-19 17:11:02 +00001185
Jim Grosbach86386922010-12-08 22:10:43 +00001186 let Inst{11-8} = Rd;
Owen Andersonda663f72010-11-15 21:30:39 +00001187 let Inst{26} = label{11};
1188 let Inst{14-12} = label{10-8};
1189 let Inst{7-0} = label{7-0};
1190}
1191
Evan Chenga09b9ca2009-06-24 23:47:58 +00001192// LEApcrel - Load a pc-relative address into a register without offending the
1193// assembler.
Owen Andersona838a252010-12-14 00:36:49 +00001194def t2ADR : T2PCOneRegImm<(outs rGPR:$Rd),
1195 (ins t2adrlabel:$addr, pred:$p),
Owen Anderson08fef882011-09-09 22:24:36 +00001196 IIC_iALUi, "adr{$p}.w\t$Rd, $addr", []> {
Johnny Chend68e1192009-12-15 17:24:14 +00001197 let Inst{31-27} = 0b11110;
1198 let Inst{25-24} = 0b10;
1199 // Inst{23:21} = '11' (add = FALSE) or '00' (add = TRUE)
1200 let Inst{22} = 0;
1201 let Inst{20} = 0;
1202 let Inst{19-16} = 0b1111; // Rn
1203 let Inst{15} = 0;
Jim Grosbach00f25fa2010-12-14 20:46:39 +00001204
Owen Andersona838a252010-12-14 00:36:49 +00001205 bits<4> Rd;
1206 bits<13> addr;
1207 let Inst{11-8} = Rd;
1208 let Inst{23} = addr{12};
1209 let Inst{21} = addr{12};
1210 let Inst{26} = addr{11};
1211 let Inst{14-12} = addr{10-8};
1212 let Inst{7-0} = addr{7-0};
Owen Anderson08fef882011-09-09 22:24:36 +00001213
1214 let DecoderMethod = "DecodeT2Adr";
Owen Anderson6b8719f2010-12-13 22:51:08 +00001215}
Owen Andersona838a252010-12-14 00:36:49 +00001216
1217let neverHasSideEffects = 1, isReMaterializable = 1 in
Jim Grosbach41b1d4e2010-12-15 18:48:45 +00001218def t2LEApcrel : t2PseudoInst<(outs rGPR:$Rd), (ins i32imm:$label, pred:$p),
Owen Anderson16884412011-07-13 23:22:26 +00001219 4, IIC_iALUi, []>;
Jakob Stoklund Olesen7778ee12012-08-24 21:44:11 +00001220let hasSideEffects = 1 in
Jim Grosbach41b1d4e2010-12-15 18:48:45 +00001221def t2LEApcrelJT : t2PseudoInst<(outs rGPR:$Rd),
1222 (ins i32imm:$label, nohash_imm:$id, pred:$p),
Owen Anderson16884412011-07-13 23:22:26 +00001223 4, IIC_iALUi,
Jim Grosbach41b1d4e2010-12-15 18:48:45 +00001224 []>;
Evan Chenga09b9ca2009-06-24 23:47:58 +00001225
Jim Grosbach60fc2ed2010-12-08 23:30:19 +00001226
Evan Chenga09b9ca2009-06-24 23:47:58 +00001227//===----------------------------------------------------------------------===//
Evan Cheng9cb9e672009-06-27 02:26:13 +00001228// Load / store Instructions.
1229//
1230
Evan Cheng055b0312009-06-29 07:51:04 +00001231// Load
Dan Gohmanbc9d98b2010-02-27 23:47:46 +00001232let canFoldAsLoad = 1, isReMaterializable = 1 in
Owen Anderson9fe72bc2011-08-11 20:40:40 +00001233defm t2LDR : T2I_ld<0, 0b10, "ldr", IIC_iLoad_i, IIC_iLoad_si, GPR,
Evan Cheng0e55fd62010-09-30 01:08:25 +00001234 UnOpFrag<(load node:$Src)>>;
Evan Cheng055b0312009-06-29 07:51:04 +00001235
Evan Chengf3c21b82009-06-30 02:15:48 +00001236// Loads with zero extension
Evan Cheng7e2fe912010-10-28 06:47:08 +00001237defm t2LDRH : T2I_ld<0, 0b01, "ldrh", IIC_iLoad_bh_i, IIC_iLoad_bh_si,
Owen Anderson9fe72bc2011-08-11 20:40:40 +00001238 rGPR, UnOpFrag<(zextloadi16 node:$Src)>>;
Evan Cheng7e2fe912010-10-28 06:47:08 +00001239defm t2LDRB : T2I_ld<0, 0b00, "ldrb", IIC_iLoad_bh_i, IIC_iLoad_bh_si,
Owen Anderson9fe72bc2011-08-11 20:40:40 +00001240 rGPR, UnOpFrag<(zextloadi8 node:$Src)>>;
Evan Cheng055b0312009-06-29 07:51:04 +00001241
Evan Chengf3c21b82009-06-30 02:15:48 +00001242// Loads with sign extension
Evan Cheng7e2fe912010-10-28 06:47:08 +00001243defm t2LDRSH : T2I_ld<1, 0b01, "ldrsh", IIC_iLoad_bh_i, IIC_iLoad_bh_si,
Owen Anderson9fe72bc2011-08-11 20:40:40 +00001244 rGPR, UnOpFrag<(sextloadi16 node:$Src)>>;
Evan Cheng7e2fe912010-10-28 06:47:08 +00001245defm t2LDRSB : T2I_ld<1, 0b00, "ldrsb", IIC_iLoad_bh_i, IIC_iLoad_bh_si,
Owen Anderson9fe72bc2011-08-11 20:40:40 +00001246 rGPR, UnOpFrag<(sextloadi8 node:$Src)>>;
Evan Cheng055b0312009-06-29 07:51:04 +00001247
Owen Anderson9d63d902010-12-01 19:18:46 +00001248let mayLoad = 1, neverHasSideEffects = 1, hasExtraDefRegAllocReq = 1 in {
Evan Chengf3c21b82009-06-30 02:15:48 +00001249// Load doubleword
Owen Anderson9d63d902010-12-01 19:18:46 +00001250def t2LDRDi8 : T2Ii8s4<1, 0, 1, (outs rGPR:$Rt, rGPR:$Rt2),
Evan Chenge298ab22009-09-27 09:46:04 +00001251 (ins t2addrmode_imm8s4:$addr),
Jim Grosbacha77295d2011-09-08 22:07:06 +00001252 IIC_iLoad_d_i, "ldrd", "\t$Rt, $Rt2, $addr", "", []>;
Evan Cheng5fd1c9b2010-05-19 06:07:03 +00001253} // mayLoad = 1, neverHasSideEffects = 1, hasExtraDefRegAllocReq = 1
Evan Chengf3c21b82009-06-30 02:15:48 +00001254
1255// zextload i1 -> zextload i8
1256def : T2Pat<(zextloadi1 t2addrmode_imm12:$addr),
1257 (t2LDRBi12 t2addrmode_imm12:$addr)>;
Jim Grosbacha8307dd2011-09-07 20:58:57 +00001258def : T2Pat<(zextloadi1 t2addrmode_negimm8:$addr),
1259 (t2LDRBi8 t2addrmode_negimm8:$addr)>;
Evan Chengf3c21b82009-06-30 02:15:48 +00001260def : T2Pat<(zextloadi1 t2addrmode_so_reg:$addr),
1261 (t2LDRBs t2addrmode_so_reg:$addr)>;
1262def : T2Pat<(zextloadi1 (ARMWrapper tconstpool:$addr)),
1263 (t2LDRBpci tconstpool:$addr)>;
1264
1265// extload -> zextload
1266// FIXME: Reduce the number of patterns by legalizing extload to zextload
1267// earlier?
1268def : T2Pat<(extloadi1 t2addrmode_imm12:$addr),
1269 (t2LDRBi12 t2addrmode_imm12:$addr)>;
Jim Grosbacha8307dd2011-09-07 20:58:57 +00001270def : T2Pat<(extloadi1 t2addrmode_negimm8:$addr),
1271 (t2LDRBi8 t2addrmode_negimm8:$addr)>;
Evan Chengf3c21b82009-06-30 02:15:48 +00001272def : T2Pat<(extloadi1 t2addrmode_so_reg:$addr),
1273 (t2LDRBs t2addrmode_so_reg:$addr)>;
1274def : T2Pat<(extloadi1 (ARMWrapper tconstpool:$addr)),
1275 (t2LDRBpci tconstpool:$addr)>;
1276
1277def : T2Pat<(extloadi8 t2addrmode_imm12:$addr),
1278 (t2LDRBi12 t2addrmode_imm12:$addr)>;
Jim Grosbacha8307dd2011-09-07 20:58:57 +00001279def : T2Pat<(extloadi8 t2addrmode_negimm8:$addr),
1280 (t2LDRBi8 t2addrmode_negimm8:$addr)>;
Evan Chengf3c21b82009-06-30 02:15:48 +00001281def : T2Pat<(extloadi8 t2addrmode_so_reg:$addr),
1282 (t2LDRBs t2addrmode_so_reg:$addr)>;
1283def : T2Pat<(extloadi8 (ARMWrapper tconstpool:$addr)),
1284 (t2LDRBpci tconstpool:$addr)>;
1285
1286def : T2Pat<(extloadi16 t2addrmode_imm12:$addr),
1287 (t2LDRHi12 t2addrmode_imm12:$addr)>;
Jim Grosbacha8307dd2011-09-07 20:58:57 +00001288def : T2Pat<(extloadi16 t2addrmode_negimm8:$addr),
1289 (t2LDRHi8 t2addrmode_negimm8:$addr)>;
Evan Chengf3c21b82009-06-30 02:15:48 +00001290def : T2Pat<(extloadi16 t2addrmode_so_reg:$addr),
1291 (t2LDRHs t2addrmode_so_reg:$addr)>;
1292def : T2Pat<(extloadi16 (ARMWrapper tconstpool:$addr)),
1293 (t2LDRHpci tconstpool:$addr)>;
Evan Cheng055b0312009-06-29 07:51:04 +00001294
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001295// FIXME: The destination register of the loads and stores can't be PC, but
1296// can be SP. We need another regclass (similar to rGPR) to represent
1297// that. Not a pressing issue since these are selected manually,
1298// not via pattern.
1299
Evan Chenge88d5ce2009-07-02 07:28:31 +00001300// Indexed loads
Owen Anderson6af50f72010-11-30 00:14:31 +00001301
Evan Cheng5fd1c9b2010-05-19 06:07:03 +00001302let mayLoad = 1, neverHasSideEffects = 1 in {
Jim Grosbacheeec0252011-09-08 00:39:19 +00001303def t2LDR_PRE : T2Ipreldst<0, 0b10, 1, 1, (outs GPR:$Rt, GPR:$Rn_wb),
Evan Chenge88d5ce2009-07-02 07:28:31 +00001304 (ins t2addrmode_imm8:$addr),
Evan Cheng0e55fd62010-09-30 01:08:25 +00001305 AddrModeT2_i8, IndexModePre, IIC_iLoad_iu,
Jim Grosbacheeec0252011-09-08 00:39:19 +00001306 "ldr", "\t$Rt, $addr!", "$addr.base = $Rn_wb",
1307 []> {
1308 let AsmMatchConverter = "cvtLdWriteBackRegT2AddrModeImm8";
1309}
Evan Chenge88d5ce2009-07-02 07:28:31 +00001310
Jim Grosbacheeec0252011-09-08 00:39:19 +00001311def t2LDR_POST : T2Ipostldst<0, 0b10, 1, 0, (outs GPR:$Rt, GPR:$Rn_wb),
Jim Grosbache64fb282011-09-08 01:01:32 +00001312 (ins addr_offset_none:$Rn, t2am_imm8_offset:$offset),
1313 AddrModeT2_i8, IndexModePost, IIC_iLoad_iu,
Owen Anderson0781c1f2011-09-23 21:26:40 +00001314 "ldr", "\t$Rt, $Rn$offset", "$Rn = $Rn_wb", []>;
Evan Chenge88d5ce2009-07-02 07:28:31 +00001315
Jim Grosbacheeec0252011-09-08 00:39:19 +00001316def t2LDRB_PRE : T2Ipreldst<0, 0b00, 1, 1, (outs GPR:$Rt, GPR:$Rn_wb),
Evan Chenge88d5ce2009-07-02 07:28:31 +00001317 (ins t2addrmode_imm8:$addr),
Evan Cheng0e55fd62010-09-30 01:08:25 +00001318 AddrModeT2_i8, IndexModePre, IIC_iLoad_bh_iu,
Jim Grosbacheeec0252011-09-08 00:39:19 +00001319 "ldrb", "\t$Rt, $addr!", "$addr.base = $Rn_wb",
1320 []> {
1321 let AsmMatchConverter = "cvtLdWriteBackRegT2AddrModeImm8";
1322}
1323def t2LDRB_POST : T2Ipostldst<0, 0b00, 1, 0, (outs GPR:$Rt, GPR:$Rn_wb),
Jim Grosbache64fb282011-09-08 01:01:32 +00001324 (ins addr_offset_none:$Rn, t2am_imm8_offset:$offset),
1325 AddrModeT2_i8, IndexModePost, IIC_iLoad_bh_iu,
Owen Anderson0781c1f2011-09-23 21:26:40 +00001326 "ldrb", "\t$Rt, $Rn$offset", "$Rn = $Rn_wb", []>;
Evan Chenge88d5ce2009-07-02 07:28:31 +00001327
Jim Grosbacheeec0252011-09-08 00:39:19 +00001328def t2LDRH_PRE : T2Ipreldst<0, 0b01, 1, 1, (outs GPR:$Rt, GPR:$Rn_wb),
Evan Chenge88d5ce2009-07-02 07:28:31 +00001329 (ins t2addrmode_imm8:$addr),
Evan Cheng0e55fd62010-09-30 01:08:25 +00001330 AddrModeT2_i8, IndexModePre, IIC_iLoad_bh_iu,
Jim Grosbacheeec0252011-09-08 00:39:19 +00001331 "ldrh", "\t$Rt, $addr!", "$addr.base = $Rn_wb",
1332 []> {
1333 let AsmMatchConverter = "cvtLdWriteBackRegT2AddrModeImm8";
1334}
1335def t2LDRH_POST : T2Ipostldst<0, 0b01, 1, 0, (outs GPR:$Rt, GPR:$Rn_wb),
Jim Grosbache64fb282011-09-08 01:01:32 +00001336 (ins addr_offset_none:$Rn, t2am_imm8_offset:$offset),
1337 AddrModeT2_i8, IndexModePost, IIC_iLoad_bh_iu,
Owen Anderson0781c1f2011-09-23 21:26:40 +00001338 "ldrh", "\t$Rt, $Rn$offset", "$Rn = $Rn_wb", []>;
Evan Chenge88d5ce2009-07-02 07:28:31 +00001339
Jim Grosbacheeec0252011-09-08 00:39:19 +00001340def t2LDRSB_PRE : T2Ipreldst<1, 0b00, 1, 1, (outs GPR:$Rt, GPR:$Rn_wb),
Evan Cheng4fbb9962009-07-02 23:16:11 +00001341 (ins t2addrmode_imm8:$addr),
Evan Cheng0e55fd62010-09-30 01:08:25 +00001342 AddrModeT2_i8, IndexModePre, IIC_iLoad_bh_iu,
Jim Grosbacheeec0252011-09-08 00:39:19 +00001343 "ldrsb", "\t$Rt, $addr!", "$addr.base = $Rn_wb",
1344 []> {
1345 let AsmMatchConverter = "cvtLdWriteBackRegT2AddrModeImm8";
1346}
1347def t2LDRSB_POST : T2Ipostldst<1, 0b00, 1, 0, (outs GPR:$Rt, GPR:$Rn_wb),
Jim Grosbache64fb282011-09-08 01:01:32 +00001348 (ins addr_offset_none:$Rn, t2am_imm8_offset:$offset),
1349 AddrModeT2_i8, IndexModePost, IIC_iLoad_bh_iu,
Owen Anderson0781c1f2011-09-23 21:26:40 +00001350 "ldrsb", "\t$Rt, $Rn$offset", "$Rn = $Rn_wb", []>;
Evan Cheng4fbb9962009-07-02 23:16:11 +00001351
Jim Grosbacheeec0252011-09-08 00:39:19 +00001352def t2LDRSH_PRE : T2Ipreldst<1, 0b01, 1, 1, (outs GPR:$Rt, GPR:$Rn_wb),
Evan Cheng4fbb9962009-07-02 23:16:11 +00001353 (ins t2addrmode_imm8:$addr),
Evan Cheng0e55fd62010-09-30 01:08:25 +00001354 AddrModeT2_i8, IndexModePre, IIC_iLoad_bh_iu,
Jim Grosbacheeec0252011-09-08 00:39:19 +00001355 "ldrsh", "\t$Rt, $addr!", "$addr.base = $Rn_wb",
1356 []> {
1357 let AsmMatchConverter = "cvtLdWriteBackRegT2AddrModeImm8";
1358}
1359def t2LDRSH_POST : T2Ipostldst<1, 0b01, 1, 0, (outs GPR:$Rt, GPR:$Rn_wb),
Jim Grosbache64fb282011-09-08 01:01:32 +00001360 (ins addr_offset_none:$Rn, t2am_imm8_offset:$offset),
1361 AddrModeT2_i8, IndexModePost, IIC_iLoad_bh_iu,
Owen Anderson0781c1f2011-09-23 21:26:40 +00001362 "ldrsh", "\t$Rt, $Rn$offset", "$Rn = $Rn_wb", []>;
Jim Grosbach7a088642010-11-19 17:11:02 +00001363} // mayLoad = 1, neverHasSideEffects = 1
Evan Cheng4fbb9962009-07-02 23:16:11 +00001364
Jim Grosbachf0eee6e2011-09-07 23:39:14 +00001365// LDRT, LDRBT, LDRHT, LDRSBT, LDRSHT all have offset mode (PUW=0b110).
Johnny Chene54a3ef2010-03-03 18:45:36 +00001366// Ref: A8.6.57 LDR (immediate, Thumb) Encoding T4
Evan Cheng0e55fd62010-09-30 01:08:25 +00001367class T2IldT<bit signed, bits<2> type, string opc, InstrItinClass ii>
Jim Grosbachf0eee6e2011-09-07 23:39:14 +00001368 : T2Ii8<(outs rGPR:$Rt), (ins t2addrmode_posimm8:$addr), ii, opc,
Owen Andersoneb05a8d2010-11-30 18:38:28 +00001369 "\t$Rt, $addr", []> {
Jim Grosbachf0eee6e2011-09-07 23:39:14 +00001370 bits<4> Rt;
1371 bits<13> addr;
Johnny Chene54a3ef2010-03-03 18:45:36 +00001372 let Inst{31-27} = 0b11111;
1373 let Inst{26-25} = 0b00;
1374 let Inst{24} = signed;
1375 let Inst{23} = 0;
1376 let Inst{22-21} = type;
1377 let Inst{20} = 1; // load
Jim Grosbachf0eee6e2011-09-07 23:39:14 +00001378 let Inst{19-16} = addr{12-9};
1379 let Inst{15-12} = Rt;
Johnny Chene54a3ef2010-03-03 18:45:36 +00001380 let Inst{11} = 1;
1381 let Inst{10-8} = 0b110; // PUW.
Jim Grosbachf0eee6e2011-09-07 23:39:14 +00001382 let Inst{7-0} = addr{7-0};
Johnny Chene54a3ef2010-03-03 18:45:36 +00001383}
1384
Evan Cheng0e55fd62010-09-30 01:08:25 +00001385def t2LDRT : T2IldT<0, 0b10, "ldrt", IIC_iLoad_i>;
1386def t2LDRBT : T2IldT<0, 0b00, "ldrbt", IIC_iLoad_bh_i>;
1387def t2LDRHT : T2IldT<0, 0b01, "ldrht", IIC_iLoad_bh_i>;
1388def t2LDRSBT : T2IldT<1, 0b00, "ldrsbt", IIC_iLoad_bh_i>;
1389def t2LDRSHT : T2IldT<1, 0b01, "ldrsht", IIC_iLoad_bh_i>;
Johnny Chene54a3ef2010-03-03 18:45:36 +00001390
David Goodwin73b8f162009-06-30 22:11:34 +00001391// Store
Owen Anderson9fe72bc2011-08-11 20:40:40 +00001392defm t2STR :T2I_st<0b10,"str", IIC_iStore_i, IIC_iStore_si, GPR,
Evan Cheng0e55fd62010-09-30 01:08:25 +00001393 BinOpFrag<(store node:$LHS, node:$RHS)>>;
Evan Cheng7e2fe912010-10-28 06:47:08 +00001394defm t2STRB:T2I_st<0b00,"strb", IIC_iStore_bh_i, IIC_iStore_bh_si,
Owen Anderson9fe72bc2011-08-11 20:40:40 +00001395 rGPR, BinOpFrag<(truncstorei8 node:$LHS, node:$RHS)>>;
Evan Cheng7e2fe912010-10-28 06:47:08 +00001396defm t2STRH:T2I_st<0b01,"strh", IIC_iStore_bh_i, IIC_iStore_bh_si,
Owen Anderson9fe72bc2011-08-11 20:40:40 +00001397 rGPR, BinOpFrag<(truncstorei16 node:$LHS, node:$RHS)>>;
David Goodwin73b8f162009-06-30 22:11:34 +00001398
David Goodwin6647cea2009-06-30 22:50:01 +00001399// Store doubleword
Cameron Zwarichd5751372011-10-16 06:38:06 +00001400let mayStore = 1, neverHasSideEffects = 1, hasExtraSrcRegAllocReq = 1 in
Johnny Chend68e1192009-12-15 17:24:14 +00001401def t2STRDi8 : T2Ii8s4<1, 0, 0, (outs),
Owen Anderson9d63d902010-12-01 19:18:46 +00001402 (ins GPR:$Rt, GPR:$Rt2, t2addrmode_imm8s4:$addr),
Jim Grosbacha77295d2011-09-08 22:07:06 +00001403 IIC_iStore_d_r, "strd", "\t$Rt, $Rt2, $addr", "", []>;
David Goodwin6647cea2009-06-30 22:50:01 +00001404
Evan Cheng6d94f112009-07-03 00:06:39 +00001405// Indexed stores
Cameron Zwarichdaada342011-10-16 06:38:10 +00001406
1407let mayStore = 1, neverHasSideEffects = 1 in {
Jim Grosbacheeec0252011-09-08 00:39:19 +00001408def t2STR_PRE : T2Ipreldst<0, 0b10, 0, 1, (outs GPRnopc:$Rn_wb),
Jim Grosbachb0659872011-12-13 21:10:25 +00001409 (ins GPRnopc:$Rt, t2addrmode_imm8:$addr),
Evan Cheng0e55fd62010-09-30 01:08:25 +00001410 AddrModeT2_i8, IndexModePre, IIC_iStore_iu,
Jim Grosbachee2c2a42011-09-16 21:55:56 +00001411 "str", "\t$Rt, $addr!",
1412 "$addr.base = $Rn_wb,@earlyclobber $Rn_wb", []> {
1413 let AsmMatchConverter = "cvtStWriteBackRegT2AddrModeImm8";
1414}
1415def t2STRH_PRE : T2Ipreldst<0, 0b01, 0, 1, (outs GPRnopc:$Rn_wb),
1416 (ins rGPR:$Rt, t2addrmode_imm8:$addr),
1417 AddrModeT2_i8, IndexModePre, IIC_iStore_iu,
1418 "strh", "\t$Rt, $addr!",
1419 "$addr.base = $Rn_wb,@earlyclobber $Rn_wb", []> {
1420 let AsmMatchConverter = "cvtStWriteBackRegT2AddrModeImm8";
1421}
1422
1423def t2STRB_PRE : T2Ipreldst<0, 0b00, 0, 1, (outs GPRnopc:$Rn_wb),
1424 (ins rGPR:$Rt, t2addrmode_imm8:$addr),
1425 AddrModeT2_i8, IndexModePre, IIC_iStore_bh_iu,
1426 "strb", "\t$Rt, $addr!",
1427 "$addr.base = $Rn_wb,@earlyclobber $Rn_wb", []> {
1428 let AsmMatchConverter = "cvtStWriteBackRegT2AddrModeImm8";
1429}
Eli Friedman0851a292011-10-18 03:17:34 +00001430} // mayStore = 1, neverHasSideEffects = 1
Evan Cheng6d94f112009-07-03 00:06:39 +00001431
Jim Grosbacheeec0252011-09-08 00:39:19 +00001432def t2STR_POST : T2Ipostldst<0, 0b10, 0, 0, (outs GPRnopc:$Rn_wb),
Jim Grosbachb0659872011-12-13 21:10:25 +00001433 (ins GPRnopc:$Rt, addr_offset_none:$Rn,
Jim Grosbach947a24c2011-09-16 21:09:00 +00001434 t2am_imm8_offset:$offset),
Evan Cheng0e55fd62010-09-30 01:08:25 +00001435 AddrModeT2_i8, IndexModePost, IIC_iStore_iu,
Owen Anderson0781c1f2011-09-23 21:26:40 +00001436 "str", "\t$Rt, $Rn$offset",
Jim Grosbacheeec0252011-09-08 00:39:19 +00001437 "$Rn = $Rn_wb,@earlyclobber $Rn_wb",
1438 [(set GPRnopc:$Rn_wb,
Jim Grosbachb0659872011-12-13 21:10:25 +00001439 (post_store GPRnopc:$Rt, addr_offset_none:$Rn,
Jim Grosbach947a24c2011-09-16 21:09:00 +00001440 t2am_imm8_offset:$offset))]>;
Evan Cheng6d94f112009-07-03 00:06:39 +00001441
Jim Grosbacheeec0252011-09-08 00:39:19 +00001442def t2STRH_POST : T2Ipostldst<0, 0b01, 0, 0, (outs GPRnopc:$Rn_wb),
Jim Grosbach947a24c2011-09-16 21:09:00 +00001443 (ins rGPR:$Rt, addr_offset_none:$Rn,
1444 t2am_imm8_offset:$offset),
Evan Cheng0e55fd62010-09-30 01:08:25 +00001445 AddrModeT2_i8, IndexModePost, IIC_iStore_bh_iu,
Owen Anderson0781c1f2011-09-23 21:26:40 +00001446 "strh", "\t$Rt, $Rn$offset",
Jim Grosbacheeec0252011-09-08 00:39:19 +00001447 "$Rn = $Rn_wb,@earlyclobber $Rn_wb",
1448 [(set GPRnopc:$Rn_wb,
Jim Grosbach947a24c2011-09-16 21:09:00 +00001449 (post_truncsti16 rGPR:$Rt, addr_offset_none:$Rn,
1450 t2am_imm8_offset:$offset))]>;
Evan Cheng6d94f112009-07-03 00:06:39 +00001451
Jim Grosbacheeec0252011-09-08 00:39:19 +00001452def t2STRB_POST : T2Ipostldst<0, 0b00, 0, 0, (outs GPRnopc:$Rn_wb),
Jim Grosbach947a24c2011-09-16 21:09:00 +00001453 (ins rGPR:$Rt, addr_offset_none:$Rn,
1454 t2am_imm8_offset:$offset),
Evan Cheng0e55fd62010-09-30 01:08:25 +00001455 AddrModeT2_i8, IndexModePost, IIC_iStore_bh_iu,
Owen Anderson0781c1f2011-09-23 21:26:40 +00001456 "strb", "\t$Rt, $Rn$offset",
Jim Grosbacheeec0252011-09-08 00:39:19 +00001457 "$Rn = $Rn_wb,@earlyclobber $Rn_wb",
1458 [(set GPRnopc:$Rn_wb,
Jim Grosbach947a24c2011-09-16 21:09:00 +00001459 (post_truncsti8 rGPR:$Rt, addr_offset_none:$Rn,
1460 t2am_imm8_offset:$offset))]>;
Evan Cheng6d94f112009-07-03 00:06:39 +00001461
Jim Grosbachee2c2a42011-09-16 21:55:56 +00001462// Pseudo-instructions for pattern matching the pre-indexed stores. We can't
1463// put the patterns on the instruction definitions directly as ISel wants
1464// the address base and offset to be separate operands, not a single
1465// complex operand like we represent the instructions themselves. The
1466// pseudos map between the two.
1467let usesCustomInserter = 1,
1468 Constraints = "$Rn = $Rn_wb,@earlyclobber $Rn_wb" in {
1469def t2STR_preidx: t2PseudoInst<(outs GPRnopc:$Rn_wb),
1470 (ins rGPR:$Rt, GPRnopc:$Rn, t2am_imm8_offset:$offset, pred:$p),
1471 4, IIC_iStore_ru,
1472 [(set GPRnopc:$Rn_wb,
1473 (pre_store rGPR:$Rt, GPRnopc:$Rn, t2am_imm8_offset:$offset))]>;
1474def t2STRB_preidx: t2PseudoInst<(outs GPRnopc:$Rn_wb),
1475 (ins rGPR:$Rt, GPRnopc:$Rn, t2am_imm8_offset:$offset, pred:$p),
1476 4, IIC_iStore_ru,
1477 [(set GPRnopc:$Rn_wb,
1478 (pre_truncsti8 rGPR:$Rt, GPRnopc:$Rn, t2am_imm8_offset:$offset))]>;
1479def t2STRH_preidx: t2PseudoInst<(outs GPRnopc:$Rn_wb),
1480 (ins rGPR:$Rt, GPRnopc:$Rn, t2am_imm8_offset:$offset, pred:$p),
1481 4, IIC_iStore_ru,
1482 [(set GPRnopc:$Rn_wb,
1483 (pre_truncsti16 rGPR:$Rt, GPRnopc:$Rn, t2am_imm8_offset:$offset))]>;
1484}
Jim Grosbachee2c2a42011-09-16 21:55:56 +00001485
Johnny Chene54a3ef2010-03-03 18:45:36 +00001486// STRT, STRBT, STRHT all have offset mode (PUW=0b110) and are for disassembly
1487// only.
1488// Ref: A8.6.193 STR (immediate, Thumb) Encoding T4
Evan Cheng0e55fd62010-09-30 01:08:25 +00001489class T2IstT<bits<2> type, string opc, InstrItinClass ii>
Johnny Chen471d73d2011-04-13 21:04:32 +00001490 : T2Ii8<(outs rGPR:$Rt), (ins t2addrmode_imm8:$addr), ii, opc,
Owen Andersoneb05a8d2010-11-30 18:38:28 +00001491 "\t$Rt, $addr", []> {
Johnny Chene54a3ef2010-03-03 18:45:36 +00001492 let Inst{31-27} = 0b11111;
1493 let Inst{26-25} = 0b00;
1494 let Inst{24} = 0; // not signed
1495 let Inst{23} = 0;
1496 let Inst{22-21} = type;
1497 let Inst{20} = 0; // store
1498 let Inst{11} = 1;
1499 let Inst{10-8} = 0b110; // PUW
Jim Grosbach7721e7f2010-12-02 23:05:38 +00001500
Owen Andersoneb05a8d2010-11-30 18:38:28 +00001501 bits<4> Rt;
1502 bits<13> addr;
Jim Grosbach86386922010-12-08 22:10:43 +00001503 let Inst{15-12} = Rt;
Owen Andersoneb05a8d2010-11-30 18:38:28 +00001504 let Inst{19-16} = addr{12-9};
1505 let Inst{7-0} = addr{7-0};
Johnny Chene54a3ef2010-03-03 18:45:36 +00001506}
1507
Evan Cheng0e55fd62010-09-30 01:08:25 +00001508def t2STRT : T2IstT<0b10, "strt", IIC_iStore_i>;
1509def t2STRBT : T2IstT<0b00, "strbt", IIC_iStore_bh_i>;
1510def t2STRHT : T2IstT<0b01, "strht", IIC_iStore_bh_i>;
David Goodwind1fa1202009-07-01 00:01:13 +00001511
Johnny Chenae1757b2010-03-11 01:13:36 +00001512// ldrd / strd pre / post variants
1513// For disassembly only.
1514
Jim Grosbacha77295d2011-09-08 22:07:06 +00001515def t2LDRD_PRE : T2Ii8s4<1, 1, 1, (outs rGPR:$Rt, rGPR:$Rt2, GPR:$wb),
1516 (ins t2addrmode_imm8s4:$addr), IIC_iLoad_d_ru,
1517 "ldrd", "\t$Rt, $Rt2, $addr!", "$addr.base = $wb", []> {
1518 let AsmMatchConverter = "cvtT2LdrdPre";
1519 let DecoderMethod = "DecodeT2LDRDPreInstruction";
1520}
Johnny Chenae1757b2010-03-11 01:13:36 +00001521
Jim Grosbacha77295d2011-09-08 22:07:06 +00001522def t2LDRD_POST : T2Ii8s4post<0, 1, 1, (outs rGPR:$Rt, rGPR:$Rt2, GPR:$wb),
1523 (ins addr_offset_none:$addr, t2am_imm8s4_offset:$imm),
Owen Anderson7782a582011-09-13 20:46:26 +00001524 IIC_iLoad_d_ru, "ldrd", "\t$Rt, $Rt2, $addr$imm",
Jim Grosbacha77295d2011-09-08 22:07:06 +00001525 "$addr.base = $wb", []>;
Johnny Chenae1757b2010-03-11 01:13:36 +00001526
Jim Grosbacha77295d2011-09-08 22:07:06 +00001527def t2STRD_PRE : T2Ii8s4<1, 1, 0, (outs GPR:$wb),
1528 (ins rGPR:$Rt, rGPR:$Rt2, t2addrmode_imm8s4:$addr),
1529 IIC_iStore_d_ru, "strd", "\t$Rt, $Rt2, $addr!",
1530 "$addr.base = $wb", []> {
1531 let AsmMatchConverter = "cvtT2StrdPre";
1532 let DecoderMethod = "DecodeT2STRDPreInstruction";
1533}
Johnny Chenae1757b2010-03-11 01:13:36 +00001534
Jim Grosbacha77295d2011-09-08 22:07:06 +00001535def t2STRD_POST : T2Ii8s4post<0, 1, 0, (outs GPR:$wb),
1536 (ins rGPR:$Rt, rGPR:$Rt2, addr_offset_none:$addr,
1537 t2am_imm8s4_offset:$imm),
Owen Anderson7782a582011-09-13 20:46:26 +00001538 IIC_iStore_d_ru, "strd", "\t$Rt, $Rt2, $addr$imm",
Jim Grosbacha77295d2011-09-08 22:07:06 +00001539 "$addr.base = $wb", []>;
Evan Cheng2889cce2009-07-03 00:18:36 +00001540
Johnny Chen0635fc52010-03-04 17:40:44 +00001541// T2Ipl (Preload Data/Instruction) signals the memory system of possible future
Jim Grosbacha5813282011-10-26 22:22:01 +00001542// data/instruction access.
Evan Chengdfed19f2010-11-03 06:34:55 +00001543// instr_write is inverted for Thumb mode: (prefetch 3) -> (preload 0),
1544// (prefetch 1) -> (preload 2), (prefetch 2) -> (preload 1).
Evan Cheng416941d2010-11-04 05:19:35 +00001545multiclass T2Ipl<bits<1> write, bits<1> instr, string opc> {
Johnny Chen0635fc52010-03-04 17:40:44 +00001546
Evan Chengdfed19f2010-11-03 06:34:55 +00001547 def i12 : T2Ii12<(outs), (ins t2addrmode_imm12:$addr), IIC_Preload, opc,
Evan Chengbc7deb02010-11-03 05:14:24 +00001548 "\t$addr",
Evan Cheng416941d2010-11-04 05:19:35 +00001549 [(ARMPreload t2addrmode_imm12:$addr, (i32 write), (i32 instr))]> {
Johnny Chen0635fc52010-03-04 17:40:44 +00001550 let Inst{31-25} = 0b1111100;
Evan Cheng416941d2010-11-04 05:19:35 +00001551 let Inst{24} = instr;
Johnny Chen0635fc52010-03-04 17:40:44 +00001552 let Inst{22} = 0;
Evan Cheng416941d2010-11-04 05:19:35 +00001553 let Inst{21} = write;
Johnny Chen0635fc52010-03-04 17:40:44 +00001554 let Inst{20} = 1;
1555 let Inst{15-12} = 0b1111;
Jim Grosbach7721e7f2010-12-02 23:05:38 +00001556
Owen Anderson80dd3e02010-11-30 22:45:47 +00001557 bits<17> addr;
Johnny Chenf9ce2cb2011-04-12 18:48:00 +00001558 let addr{12} = 1; // add = TRUE
Owen Anderson80dd3e02010-11-30 22:45:47 +00001559 let Inst{19-16} = addr{16-13}; // Rn
1560 let Inst{23} = addr{12}; // U
Owen Anderson0e1bcdf2010-11-30 19:19:31 +00001561 let Inst{11-0} = addr{11-0}; // imm12
Johnny Chen0635fc52010-03-04 17:40:44 +00001562 }
1563
Jim Grosbacha8307dd2011-09-07 20:58:57 +00001564 def i8 : T2Ii8<(outs), (ins t2addrmode_negimm8:$addr), IIC_Preload, opc,
Evan Chengbc7deb02010-11-03 05:14:24 +00001565 "\t$addr",
Jim Grosbacha8307dd2011-09-07 20:58:57 +00001566 [(ARMPreload t2addrmode_negimm8:$addr, (i32 write), (i32 instr))]> {
Johnny Chen0635fc52010-03-04 17:40:44 +00001567 let Inst{31-25} = 0b1111100;
Evan Cheng416941d2010-11-04 05:19:35 +00001568 let Inst{24} = instr;
Johnny Chen0635fc52010-03-04 17:40:44 +00001569 let Inst{23} = 0; // U = 0
1570 let Inst{22} = 0;
Evan Cheng416941d2010-11-04 05:19:35 +00001571 let Inst{21} = write;
Johnny Chen0635fc52010-03-04 17:40:44 +00001572 let Inst{20} = 1;
1573 let Inst{15-12} = 0b1111;
1574 let Inst{11-8} = 0b1100;
Jim Grosbach7721e7f2010-12-02 23:05:38 +00001575
Owen Anderson0e1bcdf2010-11-30 19:19:31 +00001576 bits<13> addr;
1577 let Inst{19-16} = addr{12-9}; // Rn
1578 let Inst{7-0} = addr{7-0}; // imm8
Johnny Chen0635fc52010-03-04 17:40:44 +00001579 }
1580
Evan Chengdfed19f2010-11-03 06:34:55 +00001581 def s : T2Iso<(outs), (ins t2addrmode_so_reg:$addr), IIC_Preload, opc,
Evan Chengbc7deb02010-11-03 05:14:24 +00001582 "\t$addr",
Evan Cheng416941d2010-11-04 05:19:35 +00001583 [(ARMPreload t2addrmode_so_reg:$addr, (i32 write), (i32 instr))]> {
Evan Chengbc7deb02010-11-03 05:14:24 +00001584 let Inst{31-25} = 0b1111100;
Evan Cheng416941d2010-11-04 05:19:35 +00001585 let Inst{24} = instr;
Evan Chengbc7deb02010-11-03 05:14:24 +00001586 let Inst{23} = 0; // add = TRUE for T1
1587 let Inst{22} = 0;
Evan Cheng416941d2010-11-04 05:19:35 +00001588 let Inst{21} = write;
Evan Chengbc7deb02010-11-03 05:14:24 +00001589 let Inst{20} = 1;
1590 let Inst{15-12} = 0b1111;
1591 let Inst{11-6} = 0000000;
Jim Grosbach7721e7f2010-12-02 23:05:38 +00001592
Owen Anderson0e1bcdf2010-11-30 19:19:31 +00001593 bits<10> addr;
1594 let Inst{19-16} = addr{9-6}; // Rn
1595 let Inst{3-0} = addr{5-2}; // Rm
1596 let Inst{5-4} = addr{1-0}; // imm2
Owen Anderson8d7d2e12011-08-09 20:55:18 +00001597
1598 let DecoderMethod = "DecodeT2LoadShift";
Evan Chengbc7deb02010-11-03 05:14:24 +00001599 }
Jim Grosbacha5813282011-10-26 22:22:01 +00001600 // FIXME: We should have a separate 'pci' variant here. As-is we represent
1601 // it via the i12 variant, which it's related to, but that means we can
1602 // represent negative immediates, which aren't legal for anything except
1603 // the 'pci' case (Rn == 15).
Johnny Chen0635fc52010-03-04 17:40:44 +00001604}
1605
Evan Cheng416941d2010-11-04 05:19:35 +00001606defm t2PLD : T2Ipl<0, 0, "pld">, Requires<[IsThumb2]>;
1607defm t2PLDW : T2Ipl<1, 0, "pldw">, Requires<[IsThumb2,HasV7,HasMP]>;
1608defm t2PLI : T2Ipl<0, 1, "pli">, Requires<[IsThumb2,HasV7]>;
Johnny Chen0635fc52010-03-04 17:40:44 +00001609
Evan Cheng2889cce2009-07-03 00:18:36 +00001610//===----------------------------------------------------------------------===//
1611// Load / store multiple Instructions.
1612//
1613
Owen Andersoncd00dc62011-09-12 21:28:46 +00001614multiclass thumb2_ld_mult<string asm, InstrItinClass itin,
Bill Wendling6c470b82010-11-13 09:09:38 +00001615 InstrItinClass itin_upd, bit L_bit> {
Bill Wendling73fe34a2010-11-16 01:16:36 +00001616 def IA :
Bill Wendling6c470b82010-11-13 09:09:38 +00001617 T2XI<(outs), (ins GPR:$Rn, pred:$p, reglist:$regs, variable_ops),
Jim Grosbachffa5a762011-09-07 16:22:42 +00001618 itin, !strconcat(asm, "${p}.w\t$Rn, $regs"), []> {
Bill Wendling6c470b82010-11-13 09:09:38 +00001619 bits<4> Rn;
1620 bits<16> regs;
Jim Grosbach7a088642010-11-19 17:11:02 +00001621
Bill Wendling6c470b82010-11-13 09:09:38 +00001622 let Inst{31-27} = 0b11101;
1623 let Inst{26-25} = 0b00;
1624 let Inst{24-23} = 0b01; // Increment After
1625 let Inst{22} = 0;
1626 let Inst{21} = 0; // No 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 }
Bill Wendling73fe34a2010-11-16 01:16:36 +00001631 def IA_UPD :
Bill Wendling6c470b82010-11-13 09:09:38 +00001632 T2XIt<(outs GPR:$wb), (ins GPR:$Rn, pred:$p, reglist:$regs, variable_ops),
Jim Grosbachffa5a762011-09-07 16:22:42 +00001633 itin_upd, !strconcat(asm, "${p}.w\t$Rn!, $regs"), "$Rn = $wb", []> {
Bill Wendling6c470b82010-11-13 09:09:38 +00001634 bits<4> Rn;
1635 bits<16> regs;
Jim Grosbach7a088642010-11-19 17:11:02 +00001636
Bill Wendling6c470b82010-11-13 09:09:38 +00001637 let Inst{31-27} = 0b11101;
1638 let Inst{26-25} = 0b00;
1639 let Inst{24-23} = 0b01; // Increment After
1640 let Inst{22} = 0;
1641 let Inst{21} = 1; // Writeback
1642 let Inst{20} = L_bit;
1643 let Inst{19-16} = Rn;
Jim Grosbachf8e74f82011-10-24 17:16:24 +00001644 let Inst{15-0} = regs;
Bill Wendling6c470b82010-11-13 09:09:38 +00001645 }
Bill Wendling73fe34a2010-11-16 01:16:36 +00001646 def DB :
Bill Wendling6c470b82010-11-13 09:09:38 +00001647 T2XI<(outs), (ins GPR:$Rn, pred:$p, reglist:$regs, variable_ops),
Jim Grosbachcfbb3a72011-09-07 18:39:47 +00001648 itin, !strconcat(asm, "db${p}\t$Rn, $regs"), []> {
Bill Wendling6c470b82010-11-13 09:09:38 +00001649 bits<4> Rn;
1650 bits<16> regs;
1651
1652 let Inst{31-27} = 0b11101;
1653 let Inst{26-25} = 0b00;
1654 let Inst{24-23} = 0b10; // Decrement Before
1655 let Inst{22} = 0;
1656 let Inst{21} = 0; // No writeback
1657 let Inst{20} = L_bit;
1658 let Inst{19-16} = Rn;
Jim Grosbachf8e74f82011-10-24 17:16:24 +00001659 let Inst{15-0} = regs;
Bill Wendling6c470b82010-11-13 09:09:38 +00001660 }
Bill Wendling73fe34a2010-11-16 01:16:36 +00001661 def DB_UPD :
Bill Wendling6c470b82010-11-13 09:09:38 +00001662 T2XIt<(outs GPR:$wb), (ins GPR:$Rn, pred:$p, reglist:$regs, variable_ops),
Jim Grosbachcfbb3a72011-09-07 18:39:47 +00001663 itin_upd, !strconcat(asm, "db${p}\t$Rn!, $regs"), "$Rn = $wb", []> {
Bill Wendling6c470b82010-11-13 09:09:38 +00001664 bits<4> Rn;
1665 bits<16> regs;
1666
1667 let Inst{31-27} = 0b11101;
1668 let Inst{26-25} = 0b00;
1669 let Inst{24-23} = 0b10; // Decrement Before
1670 let Inst{22} = 0;
1671 let Inst{21} = 1; // Writeback
1672 let Inst{20} = L_bit;
1673 let Inst{19-16} = Rn;
Jim Grosbachf8e74f82011-10-24 17:16:24 +00001674 let Inst{15-0} = regs;
Bill Wendling6c470b82010-11-13 09:09:38 +00001675 }
1676}
1677
Bill Wendlingc93989a2010-11-13 11:20:05 +00001678let neverHasSideEffects = 1 in {
Bill Wendlingddc918b2010-11-13 10:57:02 +00001679
1680let mayLoad = 1, hasExtraDefRegAllocReq = 1 in
Owen Andersoncd00dc62011-09-12 21:28:46 +00001681defm t2LDM : thumb2_ld_mult<"ldm", IIC_iLoad_m, IIC_iLoad_mu, 1>;
1682
1683multiclass thumb2_st_mult<string asm, InstrItinClass itin,
1684 InstrItinClass itin_upd, bit L_bit> {
1685 def IA :
1686 T2XI<(outs), (ins GPR:$Rn, pred:$p, reglist:$regs, variable_ops),
1687 itin, !strconcat(asm, "${p}.w\t$Rn, $regs"), []> {
1688 bits<4> Rn;
1689 bits<16> regs;
1690
1691 let Inst{31-27} = 0b11101;
1692 let Inst{26-25} = 0b00;
1693 let Inst{24-23} = 0b01; // Increment After
1694 let Inst{22} = 0;
1695 let Inst{21} = 0; // No writeback
1696 let Inst{20} = L_bit;
1697 let Inst{19-16} = Rn;
1698 let Inst{15} = 0;
1699 let Inst{14} = regs{14};
1700 let Inst{13} = 0;
1701 let Inst{12-0} = regs{12-0};
1702 }
1703 def IA_UPD :
1704 T2XIt<(outs GPR:$wb), (ins GPR:$Rn, pred:$p, reglist:$regs, variable_ops),
1705 itin_upd, !strconcat(asm, "${p}.w\t$Rn!, $regs"), "$Rn = $wb", []> {
1706 bits<4> Rn;
1707 bits<16> regs;
1708
1709 let Inst{31-27} = 0b11101;
1710 let Inst{26-25} = 0b00;
1711 let Inst{24-23} = 0b01; // Increment After
1712 let Inst{22} = 0;
1713 let Inst{21} = 1; // Writeback
1714 let Inst{20} = L_bit;
1715 let Inst{19-16} = Rn;
1716 let Inst{15} = 0;
1717 let Inst{14} = regs{14};
1718 let Inst{13} = 0;
1719 let Inst{12-0} = regs{12-0};
1720 }
1721 def DB :
1722 T2XI<(outs), (ins GPR:$Rn, pred:$p, reglist:$regs, variable_ops),
1723 itin, !strconcat(asm, "db${p}\t$Rn, $regs"), []> {
1724 bits<4> Rn;
1725 bits<16> regs;
1726
1727 let Inst{31-27} = 0b11101;
1728 let Inst{26-25} = 0b00;
1729 let Inst{24-23} = 0b10; // Decrement Before
1730 let Inst{22} = 0;
1731 let Inst{21} = 0; // No writeback
1732 let Inst{20} = L_bit;
1733 let Inst{19-16} = Rn;
1734 let Inst{15} = 0;
1735 let Inst{14} = regs{14};
1736 let Inst{13} = 0;
1737 let Inst{12-0} = regs{12-0};
1738 }
1739 def DB_UPD :
1740 T2XIt<(outs GPR:$wb), (ins GPR:$Rn, pred:$p, reglist:$regs, variable_ops),
1741 itin_upd, !strconcat(asm, "db${p}\t$Rn!, $regs"), "$Rn = $wb", []> {
1742 bits<4> Rn;
1743 bits<16> regs;
1744
1745 let Inst{31-27} = 0b11101;
1746 let Inst{26-25} = 0b00;
1747 let Inst{24-23} = 0b10; // Decrement Before
1748 let Inst{22} = 0;
1749 let Inst{21} = 1; // Writeback
1750 let Inst{20} = L_bit;
1751 let Inst{19-16} = Rn;
1752 let Inst{15} = 0;
1753 let Inst{14} = regs{14};
1754 let Inst{13} = 0;
1755 let Inst{12-0} = regs{12-0};
1756 }
1757}
1758
Bill Wendlingddc918b2010-11-13 10:57:02 +00001759
1760let mayStore = 1, hasExtraSrcRegAllocReq = 1 in
Owen Andersoncd00dc62011-09-12 21:28:46 +00001761defm t2STM : thumb2_st_mult<"stm", IIC_iStore_m, IIC_iStore_mu, 0>;
Bill Wendlingddc918b2010-11-13 10:57:02 +00001762
1763} // neverHasSideEffects
1764
Bob Wilson815baeb2010-03-13 01:08:20 +00001765
Evan Cheng9cb9e672009-06-27 02:26:13 +00001766//===----------------------------------------------------------------------===//
Anton Korobeynikov52237112009-06-17 18:13:58 +00001767// Move Instructions.
1768//
Anton Korobeynikov52237112009-06-17 18:13:58 +00001769
Evan Chengf49810c2009-06-23 17:48:47 +00001770let neverHasSideEffects = 1 in
Jim Grosbach1ad60c22011-09-10 00:15:36 +00001771def t2MOVr : T2sTwoReg<(outs GPRnopc:$Rd), (ins GPR:$Rm), IIC_iMOVr,
Owen Andersonc56dcbf2010-11-16 00:29:56 +00001772 "mov", ".w\t$Rd, $Rm", []> {
Johnny Chend68e1192009-12-15 17:24:14 +00001773 let Inst{31-27} = 0b11101;
1774 let Inst{26-25} = 0b01;
1775 let Inst{24-21} = 0b0010;
Johnny Chend68e1192009-12-15 17:24:14 +00001776 let Inst{19-16} = 0b1111; // Rn
1777 let Inst{14-12} = 0b000;
1778 let Inst{7-4} = 0b0000;
1779}
Jim Grosbach9858a482011-10-18 17:09:35 +00001780def : t2InstAlias<"mov${p}.w $Rd, $Rm", (t2MOVr GPRnopc:$Rd, GPR:$Rm,
1781 pred:$p, zero_reg)>;
Jim Grosbach1ad60c22011-09-10 00:15:36 +00001782def : t2InstAlias<"movs${p}.w $Rd, $Rm", (t2MOVr GPRnopc:$Rd, GPR:$Rm,
1783 pred:$p, CPSR)>;
1784def : t2InstAlias<"movs${p} $Rd, $Rm", (t2MOVr GPRnopc:$Rd, GPR:$Rm,
1785 pred:$p, CPSR)>;
Evan Chengf49810c2009-06-23 17:48:47 +00001786
Evan Cheng5adb66a2009-09-28 09:14:39 +00001787// AddedComplexity to ensure isel tries t2MOVi before t2MOVi16.
Evan Chengc4af4632010-11-17 20:13:28 +00001788let isReMaterializable = 1, isAsCheapAsAMove = 1, isMoveImm = 1,
1789 AddedComplexity = 1 in
Owen Andersonc56dcbf2010-11-16 00:29:56 +00001790def t2MOVi : T2sOneRegImm<(outs rGPR:$Rd), (ins t2_so_imm:$imm), IIC_iMOVi,
1791 "mov", ".w\t$Rd, $imm",
1792 [(set rGPR:$Rd, t2_so_imm:$imm)]> {
Johnny Chend68e1192009-12-15 17:24:14 +00001793 let Inst{31-27} = 0b11110;
1794 let Inst{25} = 0;
1795 let Inst{24-21} = 0b0010;
Johnny Chend68e1192009-12-15 17:24:14 +00001796 let Inst{19-16} = 0b1111; // Rn
1797 let Inst{15} = 0;
1798}
David Goodwin83b35932009-06-26 16:10:07 +00001799
Jim Grosbach1ad60c22011-09-10 00:15:36 +00001800// cc_out is handled as part of the explicit mnemonic in the parser for 'mov'.
1801// Use aliases to get that to play nice here.
1802def : t2InstAlias<"movs${p}.w $Rd, $imm", (t2MOVi rGPR:$Rd, t2_so_imm:$imm,
1803 pred:$p, CPSR)>;
1804def : t2InstAlias<"movs${p} $Rd, $imm", (t2MOVi rGPR:$Rd, t2_so_imm:$imm,
1805 pred:$p, CPSR)>;
1806
1807def : t2InstAlias<"mov${p}.w $Rd, $imm", (t2MOVi rGPR:$Rd, t2_so_imm:$imm,
1808 pred:$p, zero_reg)>;
1809def : t2InstAlias<"mov${p} $Rd, $imm", (t2MOVi rGPR:$Rd, t2_so_imm:$imm,
1810 pred:$p, zero_reg)>;
Jim Grosbach6b8f1e32011-06-27 23:54:06 +00001811
Evan Chengc4af4632010-11-17 20:13:28 +00001812let isReMaterializable = 1, isAsCheapAsAMove = 1, isMoveImm = 1 in
Jim Grosbachffa32252011-07-19 19:13:28 +00001813def t2MOVi16 : T2I<(outs rGPR:$Rd), (ins imm0_65535_expr:$imm), IIC_iMOVi,
Owen Andersonc56dcbf2010-11-16 00:29:56 +00001814 "movw", "\t$Rd, $imm",
1815 [(set rGPR:$Rd, imm0_65535:$imm)]> {
Johnny Chend68e1192009-12-15 17:24:14 +00001816 let Inst{31-27} = 0b11110;
1817 let Inst{25} = 1;
1818 let Inst{24-21} = 0b0010;
1819 let Inst{20} = 0; // The S bit.
1820 let Inst{15} = 0;
Jim Grosbach7a088642010-11-19 17:11:02 +00001821
Owen Andersonc56dcbf2010-11-16 00:29:56 +00001822 bits<4> Rd;
1823 bits<16> imm;
Jim Grosbach7a088642010-11-19 17:11:02 +00001824
Jim Grosbach86386922010-12-08 22:10:43 +00001825 let Inst{11-8} = Rd;
Owen Andersonc56dcbf2010-11-16 00:29:56 +00001826 let Inst{19-16} = imm{15-12};
1827 let Inst{26} = imm{11};
1828 let Inst{14-12} = imm{10-8};
1829 let Inst{7-0} = imm{7-0};
Kevin Enderby9e5887b2011-10-04 22:44:48 +00001830 let DecoderMethod = "DecodeT2MOVTWInstruction";
Johnny Chend68e1192009-12-15 17:24:14 +00001831}
Evan Chengf49810c2009-06-23 17:48:47 +00001832
Evan Cheng53519f02011-01-21 18:55:51 +00001833def t2MOVi16_ga_pcrel : PseudoInst<(outs rGPR:$Rd),
Evan Cheng5de5d4b2011-01-17 08:03:18 +00001834 (ins i32imm:$addr, pclabel:$id), IIC_iMOVi, []>;
1835
1836let Constraints = "$src = $Rd" in {
Evan Cheng75972122011-01-13 07:58:56 +00001837def t2MOVTi16 : T2I<(outs rGPR:$Rd),
Jim Grosbachffa32252011-07-19 19:13:28 +00001838 (ins rGPR:$src, imm0_65535_expr:$imm), IIC_iMOVi,
Owen Andersonc56dcbf2010-11-16 00:29:56 +00001839 "movt", "\t$Rd, $imm",
1840 [(set rGPR:$Rd,
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001841 (or (and rGPR:$src, 0xffff), lo16AllZero:$imm))]> {
Johnny Chend68e1192009-12-15 17:24:14 +00001842 let Inst{31-27} = 0b11110;
1843 let Inst{25} = 1;
1844 let Inst{24-21} = 0b0110;
1845 let Inst{20} = 0; // The S bit.
1846 let Inst{15} = 0;
Jim Grosbach7a088642010-11-19 17:11:02 +00001847
Owen Andersonc56dcbf2010-11-16 00:29:56 +00001848 bits<4> Rd;
1849 bits<16> imm;
Jim Grosbach7a088642010-11-19 17:11:02 +00001850
Jim Grosbach86386922010-12-08 22:10:43 +00001851 let Inst{11-8} = Rd;
Owen Andersonc56dcbf2010-11-16 00:29:56 +00001852 let Inst{19-16} = imm{15-12};
1853 let Inst{26} = imm{11};
1854 let Inst{14-12} = imm{10-8};
1855 let Inst{7-0} = imm{7-0};
Kevin Enderby9e5887b2011-10-04 22:44:48 +00001856 let DecoderMethod = "DecodeT2MOVTWInstruction";
Johnny Chend68e1192009-12-15 17:24:14 +00001857}
Anton Korobeynikov52237112009-06-17 18:13:58 +00001858
Evan Cheng53519f02011-01-21 18:55:51 +00001859def t2MOVTi16_ga_pcrel : PseudoInst<(outs rGPR:$Rd),
Evan Cheng5de5d4b2011-01-17 08:03:18 +00001860 (ins rGPR:$src, i32imm:$addr, pclabel:$id), IIC_iMOVi, []>;
1861} // Constraints
1862
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001863def : T2Pat<(or rGPR:$src, 0xffff0000), (t2MOVTi16 rGPR:$src, 0xffff)>;
Evan Cheng20956592009-10-21 08:15:52 +00001864
Anton Korobeynikov52237112009-06-17 18:13:58 +00001865//===----------------------------------------------------------------------===//
Evan Chengd27c9fc2009-07-03 01:43:10 +00001866// Extend Instructions.
1867//
1868
1869// Sign extenders
1870
Jim Grosbachc5a8c862011-07-27 16:47:19 +00001871def t2SXTB : T2I_ext_rrot<0b100, "sxtb",
Johnny Chend68e1192009-12-15 17:24:14 +00001872 UnOpFrag<(sext_inreg node:$Src, i8)>>;
Jim Grosbachc5a8c862011-07-27 16:47:19 +00001873def t2SXTH : T2I_ext_rrot<0b000, "sxth",
Johnny Chend68e1192009-12-15 17:24:14 +00001874 UnOpFrag<(sext_inreg node:$Src, i16)>>;
Jim Grosbach70327412011-07-27 17:48:13 +00001875def t2SXTB16 : T2I_ext_rrot_sxtb16<0b010, "sxtb16">;
Evan Chengd27c9fc2009-07-03 01:43:10 +00001876
Jim Grosbach70327412011-07-27 17:48:13 +00001877def t2SXTAB : T2I_exta_rrot<0b100, "sxtab",
Evan Chengd27c9fc2009-07-03 01:43:10 +00001878 BinOpFrag<(add node:$LHS, (sext_inreg node:$RHS, i8))>>;
Jim Grosbach70327412011-07-27 17:48:13 +00001879def t2SXTAH : T2I_exta_rrot<0b000, "sxtah",
Evan Chengd27c9fc2009-07-03 01:43:10 +00001880 BinOpFrag<(add node:$LHS, (sext_inreg node:$RHS,i16))>>;
Jim Grosbach70327412011-07-27 17:48:13 +00001881def t2SXTAB16 : T2I_exta_rrot_np<0b010, "sxtab16">;
Evan Chengd27c9fc2009-07-03 01:43:10 +00001882
Evan Chengd27c9fc2009-07-03 01:43:10 +00001883// Zero extenders
1884
1885let AddedComplexity = 16 in {
Jim Grosbachc5a8c862011-07-27 16:47:19 +00001886def t2UXTB : T2I_ext_rrot<0b101, "uxtb",
Johnny Chend68e1192009-12-15 17:24:14 +00001887 UnOpFrag<(and node:$Src, 0x000000FF)>>;
Jim Grosbachc5a8c862011-07-27 16:47:19 +00001888def t2UXTH : T2I_ext_rrot<0b001, "uxth",
Johnny Chend68e1192009-12-15 17:24:14 +00001889 UnOpFrag<(and node:$Src, 0x0000FFFF)>>;
Jim Grosbach70327412011-07-27 17:48:13 +00001890def t2UXTB16 : T2I_ext_rrot_uxtb16<0b011, "uxtb16",
Johnny Chend68e1192009-12-15 17:24:14 +00001891 UnOpFrag<(and node:$Src, 0x00FF00FF)>>;
Evan Chengd27c9fc2009-07-03 01:43:10 +00001892
Jim Grosbach79464942010-07-28 23:17:45 +00001893// FIXME: This pattern incorrectly assumes the shl operator is a rotate.
1894// The transformation should probably be done as a combiner action
1895// instead so we can include a check for masking back in the upper
1896// eight bits of the source into the lower eight bits of the result.
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001897//def : T2Pat<(and (shl rGPR:$Src, (i32 8)), 0xFF00FF),
Jim Grosbach70327412011-07-27 17:48:13 +00001898// (t2UXTB16 rGPR:$Src, 3)>,
Jim Grosbach9729d2e2010-11-01 15:59:52 +00001899// Requires<[HasT2ExtractPack, IsThumb2]>;
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001900def : T2Pat<(and (srl rGPR:$Src, (i32 8)), 0xFF00FF),
Jim Grosbach70327412011-07-27 17:48:13 +00001901 (t2UXTB16 rGPR:$Src, 1)>,
Jim Grosbach9729d2e2010-11-01 15:59:52 +00001902 Requires<[HasT2ExtractPack, IsThumb2]>;
Evan Chengd27c9fc2009-07-03 01:43:10 +00001903
Jim Grosbach70327412011-07-27 17:48:13 +00001904def t2UXTAB : T2I_exta_rrot<0b101, "uxtab",
Jim Grosbach6935efc2009-11-24 00:20:27 +00001905 BinOpFrag<(add node:$LHS, (and node:$RHS, 0x00FF))>>;
Jim Grosbach70327412011-07-27 17:48:13 +00001906def t2UXTAH : T2I_exta_rrot<0b001, "uxtah",
Jim Grosbach6935efc2009-11-24 00:20:27 +00001907 BinOpFrag<(add node:$LHS, (and node:$RHS, 0xFFFF))>>;
Jim Grosbach70327412011-07-27 17:48:13 +00001908def t2UXTAB16 : T2I_exta_rrot_np<0b011, "uxtab16">;
Evan Chengd27c9fc2009-07-03 01:43:10 +00001909}
1910
1911//===----------------------------------------------------------------------===//
Anton Korobeynikov52237112009-06-17 18:13:58 +00001912// Arithmetic Instructions.
1913//
Anton Korobeynikov52237112009-06-17 18:13:58 +00001914
Johnny Chend68e1192009-12-15 17:24:14 +00001915defm t2ADD : T2I_bin_ii12rs<0b000, "add",
1916 BinOpFrag<(add node:$LHS, node:$RHS)>, 1>;
1917defm t2SUB : T2I_bin_ii12rs<0b101, "sub",
1918 BinOpFrag<(sub node:$LHS, node:$RHS)>>;
Anton Korobeynikov52237112009-06-17 18:13:58 +00001919
Evan Chengf49810c2009-06-23 17:48:47 +00001920// ADD and SUB with 's' bit set. No 12-bit immediate (T4) variants.
Andrew Trick3be654f2011-09-21 02:20:46 +00001921//
1922// Currently, t2ADDS/t2SUBS are pseudo opcodes that exist only in the
1923// selection DAG. They are "lowered" to real t2ADD/t2SUB opcodes by
1924// AdjustInstrPostInstrSelection where we determine whether or not to
1925// set the "s" bit based on CPSR liveness.
1926//
1927// FIXME: Eliminate t2ADDS/t2SUBS pseudo opcodes after adding tablegen
1928// support for an optional CPSR definition that corresponds to the DAG
1929// node's second value. We can then eliminate the implicit def of CPSR.
Andrew Trick90b7b122011-10-18 19:18:52 +00001930defm t2ADDS : T2I_bin_s_irs <IIC_iALUi, IIC_iALUr, IIC_iALUsi,
Evan Cheng342e3162011-08-30 01:34:54 +00001931 BinOpFrag<(ARMaddc node:$LHS, node:$RHS)>, 1>;
Andrew Trick90b7b122011-10-18 19:18:52 +00001932defm t2SUBS : T2I_bin_s_irs <IIC_iALUi, IIC_iALUr, IIC_iALUsi,
Evan Cheng342e3162011-08-30 01:34:54 +00001933 BinOpFrag<(ARMsubc node:$LHS, node:$RHS)>>;
Anton Korobeynikov52237112009-06-17 18:13:58 +00001934
Andrew Trick83a80312011-09-20 18:22:31 +00001935let hasPostISelHook = 1 in {
Johnny Chend68e1192009-12-15 17:24:14 +00001936defm t2ADC : T2I_adde_sube_irs<0b1010, "adc",
Evan Cheng342e3162011-08-30 01:34:54 +00001937 BinOpWithFlagFrag<(ARMadde node:$LHS, node:$RHS, node:$FLAG)>, 1>;
Johnny Chend68e1192009-12-15 17:24:14 +00001938defm t2SBC : T2I_adde_sube_irs<0b1011, "sbc",
Evan Cheng342e3162011-08-30 01:34:54 +00001939 BinOpWithFlagFrag<(ARMsube node:$LHS, node:$RHS, node:$FLAG)>>;
Andrew Trick83a80312011-09-20 18:22:31 +00001940}
Evan Chengf49810c2009-06-23 17:48:47 +00001941
David Goodwin752aa7d2009-07-27 16:39:05 +00001942// RSB
Bob Wilson20d8e4e2010-08-13 23:24:25 +00001943defm t2RSB : T2I_rbin_irs <0b1110, "rsb",
Johnny Chend68e1192009-12-15 17:24:14 +00001944 BinOpFrag<(sub node:$LHS, node:$RHS)>>;
Evan Cheng4a517082011-09-06 18:52:20 +00001945
1946// FIXME: Eliminate them if we can write def : Pat patterns which defines
1947// CPSR and the implicit def of CPSR is not needed.
Andrew Trick90b7b122011-10-18 19:18:52 +00001948defm t2RSBS : T2I_rbin_s_is <BinOpFrag<(ARMsubc node:$LHS, node:$RHS)>>;
Evan Chengf49810c2009-06-23 17:48:47 +00001949
1950// (sub X, imm) gets canonicalized to (add X, -imm). Match this form.
Jim Grosbach502e0aa2010-07-14 17:45:16 +00001951// The assume-no-carry-in form uses the negation of the input since add/sub
1952// assume opposite meanings of the carry flag (i.e., carry == !borrow).
1953// See the definition of AddWithCarry() in the ARM ARM A2.2.1 for the gory
1954// details.
1955// The AddedComplexity preferences the first variant over the others since
1956// it can be shrunk to a 16-bit wide encoding, while the others cannot.
Evan Chengfa2ea1a2009-08-04 01:41:15 +00001957let AddedComplexity = 1 in
Jim Grosbach502e0aa2010-07-14 17:45:16 +00001958def : T2Pat<(add GPR:$src, imm0_255_neg:$imm),
1959 (t2SUBri GPR:$src, imm0_255_neg:$imm)>;
1960def : T2Pat<(add GPR:$src, t2_so_imm_neg:$imm),
1961 (t2SUBri GPR:$src, t2_so_imm_neg:$imm)>;
1962def : T2Pat<(add GPR:$src, imm0_4095_neg:$imm),
1963 (t2SUBri12 GPR:$src, imm0_4095_neg:$imm)>;
Evan Chengfc472532012-06-23 00:29:06 +00001964def : T2Pat<(add GPR:$src, imm0_65535_neg:$imm),
1965 (t2SUBrr GPR:$src, (t2MOVi16 (imm_neg_XFORM imm:$imm)))>;
1966
Jim Grosbach502e0aa2010-07-14 17:45:16 +00001967let AddedComplexity = 1 in
Evan Cheng342e3162011-08-30 01:34:54 +00001968def : T2Pat<(ARMaddc rGPR:$src, imm0_255_neg:$imm),
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001969 (t2SUBSri rGPR:$src, imm0_255_neg:$imm)>;
Evan Cheng342e3162011-08-30 01:34:54 +00001970def : T2Pat<(ARMaddc rGPR:$src, t2_so_imm_neg:$imm),
Jim Grosbach6ccfc502010-07-30 02:41:01 +00001971 (t2SUBSri rGPR:$src, t2_so_imm_neg:$imm)>;
Evan Chengfc472532012-06-23 00:29:06 +00001972def : T2Pat<(ARMaddc rGPR:$src, imm0_65535_neg:$imm),
1973 (t2SUBSrr rGPR:$src, (t2MOVi16 (imm_neg_XFORM imm:$imm)))>;
Jim Grosbach502e0aa2010-07-14 17:45:16 +00001974// The with-carry-in form matches bitwise not instead of the negation.
1975// Effectively, the inverse interpretation of the carry flag already accounts
1976// for part of the negation.
1977let AddedComplexity = 1 in
Evan Cheng342e3162011-08-30 01:34:54 +00001978def : T2Pat<(ARMadde rGPR:$src, imm0_255_not:$imm, CPSR),
Andrew Trick1c3af772011-04-23 03:55:32 +00001979 (t2SBCri rGPR:$src, imm0_255_not:$imm)>;
Evan Cheng342e3162011-08-30 01:34:54 +00001980def : T2Pat<(ARMadde rGPR:$src, t2_so_imm_not:$imm, CPSR),
Andrew Trick1c3af772011-04-23 03:55:32 +00001981 (t2SBCri rGPR:$src, t2_so_imm_not:$imm)>;
Evan Chengfc472532012-06-23 00:29:06 +00001982def : T2Pat<(ARMadde rGPR:$src, imm0_65535_neg:$imm, CPSR),
1983 (t2SBCrr rGPR:$src, (t2MOVi16 (imm_neg_XFORM imm:$imm)))>;
Anton Korobeynikov52237112009-06-17 18:13:58 +00001984
Johnny Chen93042d12010-03-02 18:14:57 +00001985// Select Bytes -- for disassembly only
1986
Owen Andersonc7373f82010-11-30 20:00:01 +00001987def t2SEL : T2ThreeReg<(outs GPR:$Rd), (ins GPR:$Rn, GPR:$Rm),
Jim Grosbacha7603982011-07-01 21:12:19 +00001988 NoItinerary, "sel", "\t$Rd, $Rn, $Rm", []>,
1989 Requires<[IsThumb2, HasThumb2DSP]> {
Johnny Chen93042d12010-03-02 18:14:57 +00001990 let Inst{31-27} = 0b11111;
1991 let Inst{26-24} = 0b010;
1992 let Inst{23} = 0b1;
1993 let Inst{22-20} = 0b010;
1994 let Inst{15-12} = 0b1111;
1995 let Inst{7} = 0b1;
1996 let Inst{6-4} = 0b000;
1997}
1998
Johnny Chenadc77332010-02-26 22:04:29 +00001999// A6.3.13, A6.3.14, A6.3.15 Parallel addition and subtraction (signed/unsigned)
2000// And Miscellaneous operations -- for disassembly only
Nate Begeman692433b2010-07-29 17:56:55 +00002001class T2I_pam<bits<3> op22_20, bits<4> op7_4, string opc,
Bruno Cardoso Lopes03016002011-01-21 14:07:40 +00002002 list<dag> pat = [/* For disassembly only; pattern left blank */],
2003 dag iops = (ins rGPR:$Rn, rGPR:$Rm),
2004 string asm = "\t$Rd, $Rn, $Rm">
Jim Grosbacha7603982011-07-01 21:12:19 +00002005 : T2I<(outs rGPR:$Rd), iops, NoItinerary, opc, asm, pat>,
2006 Requires<[IsThumb2, HasThumb2DSP]> {
Johnny Chenadc77332010-02-26 22:04:29 +00002007 let Inst{31-27} = 0b11111;
2008 let Inst{26-23} = 0b0101;
2009 let Inst{22-20} = op22_20;
2010 let Inst{15-12} = 0b1111;
2011 let Inst{7-4} = op7_4;
Jim Grosbach7a088642010-11-19 17:11:02 +00002012
Owen Anderson46c478e2010-11-17 19:57:38 +00002013 bits<4> Rd;
2014 bits<4> Rn;
2015 bits<4> Rm;
Jim Grosbach7a088642010-11-19 17:11:02 +00002016
Jim Grosbach86386922010-12-08 22:10:43 +00002017 let Inst{11-8} = Rd;
2018 let Inst{19-16} = Rn;
2019 let Inst{3-0} = Rm;
Johnny Chenadc77332010-02-26 22:04:29 +00002020}
2021
2022// Saturating add/subtract -- for disassembly only
2023
Nate Begeman692433b2010-07-29 17:56:55 +00002024def t2QADD : T2I_pam<0b000, 0b1000, "qadd",
Bruno Cardoso Lopes03016002011-01-21 14:07:40 +00002025 [(set rGPR:$Rd, (int_arm_qadd rGPR:$Rn, rGPR:$Rm))],
2026 (ins rGPR:$Rm, rGPR:$Rn), "\t$Rd, $Rm, $Rn">;
Johnny Chenadc77332010-02-26 22:04:29 +00002027def t2QADD16 : T2I_pam<0b001, 0b0001, "qadd16">;
2028def t2QADD8 : T2I_pam<0b000, 0b0001, "qadd8">;
2029def t2QASX : T2I_pam<0b010, 0b0001, "qasx">;
Bruno Cardoso Lopes03016002011-01-21 14:07:40 +00002030def t2QDADD : T2I_pam<0b000, 0b1001, "qdadd", [],
2031 (ins rGPR:$Rm, rGPR:$Rn), "\t$Rd, $Rm, $Rn">;
2032def t2QDSUB : T2I_pam<0b000, 0b1011, "qdsub", [],
2033 (ins rGPR:$Rm, rGPR:$Rn), "\t$Rd, $Rm, $Rn">;
Johnny Chenadc77332010-02-26 22:04:29 +00002034def t2QSAX : T2I_pam<0b110, 0b0001, "qsax">;
Nate Begeman692433b2010-07-29 17:56:55 +00002035def t2QSUB : T2I_pam<0b000, 0b1010, "qsub",
Bruno Cardoso Lopes03016002011-01-21 14:07:40 +00002036 [(set rGPR:$Rd, (int_arm_qsub rGPR:$Rn, rGPR:$Rm))],
2037 (ins rGPR:$Rm, rGPR:$Rn), "\t$Rd, $Rm, $Rn">;
Johnny Chenadc77332010-02-26 22:04:29 +00002038def t2QSUB16 : T2I_pam<0b101, 0b0001, "qsub16">;
2039def t2QSUB8 : T2I_pam<0b100, 0b0001, "qsub8">;
2040def t2UQADD16 : T2I_pam<0b001, 0b0101, "uqadd16">;
2041def t2UQADD8 : T2I_pam<0b000, 0b0101, "uqadd8">;
2042def t2UQASX : T2I_pam<0b010, 0b0101, "uqasx">;
2043def t2UQSAX : T2I_pam<0b110, 0b0101, "uqsax">;
2044def t2UQSUB16 : T2I_pam<0b101, 0b0101, "uqsub16">;
2045def t2UQSUB8 : T2I_pam<0b100, 0b0101, "uqsub8">;
2046
2047// Signed/Unsigned add/subtract -- for disassembly only
2048
2049def t2SASX : T2I_pam<0b010, 0b0000, "sasx">;
2050def t2SADD16 : T2I_pam<0b001, 0b0000, "sadd16">;
2051def t2SADD8 : T2I_pam<0b000, 0b0000, "sadd8">;
2052def t2SSAX : T2I_pam<0b110, 0b0000, "ssax">;
2053def t2SSUB16 : T2I_pam<0b101, 0b0000, "ssub16">;
2054def t2SSUB8 : T2I_pam<0b100, 0b0000, "ssub8">;
2055def t2UASX : T2I_pam<0b010, 0b0100, "uasx">;
2056def t2UADD16 : T2I_pam<0b001, 0b0100, "uadd16">;
2057def t2UADD8 : T2I_pam<0b000, 0b0100, "uadd8">;
2058def t2USAX : T2I_pam<0b110, 0b0100, "usax">;
2059def t2USUB16 : T2I_pam<0b101, 0b0100, "usub16">;
2060def t2USUB8 : T2I_pam<0b100, 0b0100, "usub8">;
2061
2062// Signed/Unsigned halving add/subtract -- for disassembly only
2063
2064def t2SHASX : T2I_pam<0b010, 0b0010, "shasx">;
2065def t2SHADD16 : T2I_pam<0b001, 0b0010, "shadd16">;
2066def t2SHADD8 : T2I_pam<0b000, 0b0010, "shadd8">;
2067def t2SHSAX : T2I_pam<0b110, 0b0010, "shsax">;
2068def t2SHSUB16 : T2I_pam<0b101, 0b0010, "shsub16">;
2069def t2SHSUB8 : T2I_pam<0b100, 0b0010, "shsub8">;
2070def t2UHASX : T2I_pam<0b010, 0b0110, "uhasx">;
2071def t2UHADD16 : T2I_pam<0b001, 0b0110, "uhadd16">;
2072def t2UHADD8 : T2I_pam<0b000, 0b0110, "uhadd8">;
2073def t2UHSAX : T2I_pam<0b110, 0b0110, "uhsax">;
2074def t2UHSUB16 : T2I_pam<0b101, 0b0110, "uhsub16">;
2075def t2UHSUB8 : T2I_pam<0b100, 0b0110, "uhsub8">;
2076
Owen Anderson821752e2010-11-18 20:32:18 +00002077// Helper class for disassembly only
2078// A6.3.16 & A6.3.17
2079// T2Imac - Thumb2 multiply [accumulate, and absolute difference] instructions.
2080class T2ThreeReg_mac<bit long, bits<3> op22_20, bits<4> op7_4, dag oops,
2081 dag iops, InstrItinClass itin, string opc, string asm, list<dag> pattern>
2082 : T2ThreeReg<oops, iops, itin, opc, asm, pattern> {
2083 let Inst{31-27} = 0b11111;
2084 let Inst{26-24} = 0b011;
2085 let Inst{23} = long;
2086 let Inst{22-20} = op22_20;
2087 let Inst{7-4} = op7_4;
2088}
2089
2090class T2FourReg_mac<bit long, bits<3> op22_20, bits<4> op7_4, dag oops,
2091 dag iops, InstrItinClass itin, string opc, string asm, list<dag> pattern>
2092 : T2FourReg<oops, iops, itin, opc, asm, pattern> {
2093 let Inst{31-27} = 0b11111;
2094 let Inst{26-24} = 0b011;
2095 let Inst{23} = long;
2096 let Inst{22-20} = op22_20;
2097 let Inst{7-4} = op7_4;
2098}
2099
Jim Grosbach8c989842011-09-20 00:26:34 +00002100// Unsigned Sum of Absolute Differences [and Accumulate].
Owen Anderson821752e2010-11-18 20:32:18 +00002101def t2USAD8 : T2ThreeReg_mac<0, 0b111, 0b0000, (outs rGPR:$Rd),
2102 (ins rGPR:$Rn, rGPR:$Rm),
Jim Grosbacha7603982011-07-01 21:12:19 +00002103 NoItinerary, "usad8", "\t$Rd, $Rn, $Rm", []>,
2104 Requires<[IsThumb2, HasThumb2DSP]> {
Johnny Chenadc77332010-02-26 22:04:29 +00002105 let Inst{15-12} = 0b1111;
2106}
Owen Anderson821752e2010-11-18 20:32:18 +00002107def t2USADA8 : T2FourReg_mac<0, 0b111, 0b0000, (outs rGPR:$Rd),
Jim Grosbach7a088642010-11-19 17:11:02 +00002108 (ins rGPR:$Rn, rGPR:$Rm, rGPR:$Ra), NoItinerary,
Jim Grosbacha7603982011-07-01 21:12:19 +00002109 "usada8", "\t$Rd, $Rn, $Rm, $Ra", []>,
2110 Requires<[IsThumb2, HasThumb2DSP]>;
Johnny Chenadc77332010-02-26 22:04:29 +00002111
Jim Grosbach8c989842011-09-20 00:26:34 +00002112// Signed/Unsigned saturate.
Owen Anderson46c478e2010-11-17 19:57:38 +00002113class T2SatI<dag oops, dag iops, InstrItinClass itin,
2114 string opc, string asm, list<dag> pattern>
Jim Grosbach7a088642010-11-19 17:11:02 +00002115 : T2I<oops, iops, itin, opc, asm, pattern> {
Owen Anderson46c478e2010-11-17 19:57:38 +00002116 bits<4> Rd;
2117 bits<4> Rn;
2118 bits<5> sat_imm;
2119 bits<7> sh;
Jim Grosbach7a088642010-11-19 17:11:02 +00002120
Jim Grosbach86386922010-12-08 22:10:43 +00002121 let Inst{11-8} = Rd;
2122 let Inst{19-16} = Rn;
Jim Grosbach580f4a92011-07-25 22:20:28 +00002123 let Inst{4-0} = sat_imm;
2124 let Inst{21} = sh{5};
Owen Anderson46c478e2010-11-17 19:57:38 +00002125 let Inst{14-12} = sh{4-2};
2126 let Inst{7-6} = sh{1-0};
2127}
2128
Owen Andersonc7373f82010-11-30 20:00:01 +00002129def t2SSAT: T2SatI<
Owen Anderson0afa0092011-09-26 21:06:22 +00002130 (outs rGPR:$Rd),
2131 (ins imm1_32:$sat_imm, rGPR:$Rn, t2_shift_imm:$sh),
Jim Grosbach8c989842011-09-20 00:26:34 +00002132 NoItinerary, "ssat", "\t$Rd, $sat_imm, $Rn$sh", []> {
Johnny Chenadc77332010-02-26 22:04:29 +00002133 let Inst{31-27} = 0b11110;
2134 let Inst{25-22} = 0b1100;
2135 let Inst{20} = 0;
2136 let Inst{15} = 0;
Owen Anderson061c3c42011-09-19 20:00:02 +00002137 let Inst{5} = 0;
Johnny Chenadc77332010-02-26 22:04:29 +00002138}
2139
Owen Andersonc7373f82010-11-30 20:00:01 +00002140def t2SSAT16: T2SatI<
Jim Grosbachf4943352011-07-25 23:09:14 +00002141 (outs rGPR:$Rd), (ins imm1_16:$sat_imm, rGPR:$Rn), NoItinerary,
Jim Grosbach8c989842011-09-20 00:26:34 +00002142 "ssat16", "\t$Rd, $sat_imm, $Rn", []>,
Jim Grosbacha7603982011-07-01 21:12:19 +00002143 Requires<[IsThumb2, HasThumb2DSP]> {
Johnny Chenadc77332010-02-26 22:04:29 +00002144 let Inst{31-27} = 0b11110;
2145 let Inst{25-22} = 0b1100;
2146 let Inst{20} = 0;
2147 let Inst{15} = 0;
2148 let Inst{21} = 1; // sh = '1'
2149 let Inst{14-12} = 0b000; // imm3 = '000'
2150 let Inst{7-6} = 0b00; // imm2 = '00'
Owen Anderson8a28bdc2011-09-16 22:17:02 +00002151 let Inst{5-4} = 0b00;
Johnny Chenadc77332010-02-26 22:04:29 +00002152}
2153
Owen Andersonc7373f82010-11-30 20:00:01 +00002154def t2USAT: T2SatI<
Owen Anderson0afa0092011-09-26 21:06:22 +00002155 (outs rGPR:$Rd),
2156 (ins imm0_31:$sat_imm, rGPR:$Rn, t2_shift_imm:$sh),
Jim Grosbach8c989842011-09-20 00:26:34 +00002157 NoItinerary, "usat", "\t$Rd, $sat_imm, $Rn$sh", []> {
Johnny Chenadc77332010-02-26 22:04:29 +00002158 let Inst{31-27} = 0b11110;
2159 let Inst{25-22} = 0b1110;
2160 let Inst{20} = 0;
2161 let Inst{15} = 0;
Johnny Chenadc77332010-02-26 22:04:29 +00002162}
2163
Jim Grosbachb105b992011-09-16 18:32:30 +00002164def t2USAT16: T2SatI<(outs rGPR:$Rd), (ins imm0_15:$sat_imm, rGPR:$Rn),
Jim Grosbachf921c0fe2011-06-13 22:54:22 +00002165 NoItinerary,
Jim Grosbach8c989842011-09-20 00:26:34 +00002166 "usat16", "\t$Rd, $sat_imm, $Rn", []>,
Jim Grosbacha7603982011-07-01 21:12:19 +00002167 Requires<[IsThumb2, HasThumb2DSP]> {
Owen Anderson4a713572011-09-23 21:57:50 +00002168 let Inst{31-22} = 0b1111001110;
Johnny Chenadc77332010-02-26 22:04:29 +00002169 let Inst{20} = 0;
2170 let Inst{15} = 0;
2171 let Inst{21} = 1; // sh = '1'
2172 let Inst{14-12} = 0b000; // imm3 = '000'
2173 let Inst{7-6} = 0b00; // imm2 = '00'
Owen Anderson4a713572011-09-23 21:57:50 +00002174 let Inst{5-4} = 0b00;
Johnny Chenadc77332010-02-26 22:04:29 +00002175}
Anton Korobeynikov52237112009-06-17 18:13:58 +00002176
Bob Wilson38aa2872010-08-13 21:48:10 +00002177def : T2Pat<(int_arm_ssat GPR:$a, imm:$pos), (t2SSAT imm:$pos, GPR:$a, 0)>;
2178def : T2Pat<(int_arm_usat GPR:$a, imm:$pos), (t2USAT imm:$pos, GPR:$a, 0)>;
Nate Begeman0e0a20e2010-07-29 22:48:09 +00002179
Evan Chengf49810c2009-06-23 17:48:47 +00002180//===----------------------------------------------------------------------===//
Evan Chenga67efd12009-06-23 19:39:13 +00002181// Shift and rotate Instructions.
2182//
2183
Jim Grosbach5f25fb02011-09-02 21:28:54 +00002184defm t2LSL : T2I_sh_ir<0b00, "lsl", imm0_31,
Jim Grosbach9249ef32012-08-02 21:59:52 +00002185 BinOpFrag<(shl node:$LHS, node:$RHS)>>;
Jim Grosbachd2990102011-09-02 18:43:25 +00002186defm t2LSR : T2I_sh_ir<0b01, "lsr", imm_sr,
Jim Grosbach9249ef32012-08-02 21:59:52 +00002187 BinOpFrag<(srl node:$LHS, node:$RHS)>>;
Jim Grosbachd2990102011-09-02 18:43:25 +00002188defm t2ASR : T2I_sh_ir<0b10, "asr", imm_sr,
Jim Grosbach9249ef32012-08-02 21:59:52 +00002189 BinOpFrag<(sra node:$LHS, node:$RHS)>>;
Jim Grosbach5f25fb02011-09-02 21:28:54 +00002190defm t2ROR : T2I_sh_ir<0b11, "ror", imm0_31,
Jim Grosbach9249ef32012-08-02 21:59:52 +00002191 BinOpFrag<(rotr node:$LHS, node:$RHS)>>;
Evan Chenga67efd12009-06-23 19:39:13 +00002192
Andrew Trickd49ffe82011-04-29 14:18:15 +00002193// (rotr x, (and y, 0x...1f)) ==> (ROR x, y)
Bob Wilsonac03af42012-07-02 17:22:47 +00002194def : T2Pat<(rotr rGPR:$lhs, (and rGPR:$rhs, lo5AllOne)),
2195 (t2RORrr rGPR:$lhs, rGPR:$rhs)>;
Andrew Trickd49ffe82011-04-29 14:18:15 +00002196
David Goodwinca01a8d2009-09-01 18:32:09 +00002197let Uses = [CPSR] in {
Owen Anderson46c478e2010-11-17 19:57:38 +00002198def t2RRX : T2sTwoReg<(outs rGPR:$Rd), (ins rGPR:$Rm), IIC_iMOVsi,
2199 "rrx", "\t$Rd, $Rm",
2200 [(set rGPR:$Rd, (ARMrrx rGPR:$Rm))]> {
Johnny Chend68e1192009-12-15 17:24:14 +00002201 let Inst{31-27} = 0b11101;
2202 let Inst{26-25} = 0b01;
2203 let Inst{24-21} = 0b0010;
Johnny Chend68e1192009-12-15 17:24:14 +00002204 let Inst{19-16} = 0b1111; // Rn
2205 let Inst{14-12} = 0b000;
2206 let Inst{7-4} = 0b0011;
2207}
David Goodwinca01a8d2009-09-01 18:32:09 +00002208}
Evan Chenga67efd12009-06-23 19:39:13 +00002209
Daniel Dunbar8d66b782011-01-10 15:26:39 +00002210let isCodeGenOnly = 1, Defs = [CPSR] in {
Owen Andersonbb6315d2010-11-15 19:58:36 +00002211def t2MOVsrl_flag : T2TwoRegShiftImm<
2212 (outs rGPR:$Rd), (ins rGPR:$Rm), IIC_iMOVsi,
2213 "lsrs", ".w\t$Rd, $Rm, #1",
2214 [(set rGPR:$Rd, (ARMsrl_flag rGPR:$Rm))]> {
Johnny Chend68e1192009-12-15 17:24:14 +00002215 let Inst{31-27} = 0b11101;
2216 let Inst{26-25} = 0b01;
2217 let Inst{24-21} = 0b0010;
2218 let Inst{20} = 1; // The S bit.
2219 let Inst{19-16} = 0b1111; // Rn
2220 let Inst{5-4} = 0b01; // Shift type.
2221 // Shift amount = Inst{14-12:7-6} = 1.
2222 let Inst{14-12} = 0b000;
2223 let Inst{7-6} = 0b01;
2224}
Owen Andersonbb6315d2010-11-15 19:58:36 +00002225def t2MOVsra_flag : T2TwoRegShiftImm<
2226 (outs rGPR:$Rd), (ins rGPR:$Rm), IIC_iMOVsi,
2227 "asrs", ".w\t$Rd, $Rm, #1",
2228 [(set rGPR:$Rd, (ARMsra_flag rGPR:$Rm))]> {
Johnny Chend68e1192009-12-15 17:24:14 +00002229 let Inst{31-27} = 0b11101;
2230 let Inst{26-25} = 0b01;
2231 let Inst{24-21} = 0b0010;
2232 let Inst{20} = 1; // The S bit.
2233 let Inst{19-16} = 0b1111; // Rn
2234 let Inst{5-4} = 0b10; // Shift type.
2235 // Shift amount = Inst{14-12:7-6} = 1.
2236 let Inst{14-12} = 0b000;
2237 let Inst{7-6} = 0b01;
2238}
David Goodwin3583df72009-07-28 17:06:49 +00002239}
2240
Evan Chenga67efd12009-06-23 19:39:13 +00002241//===----------------------------------------------------------------------===//
Evan Chengf49810c2009-06-23 17:48:47 +00002242// Bitwise Instructions.
2243//
Anton Korobeynikov52237112009-06-17 18:13:58 +00002244
Johnny Chend68e1192009-12-15 17:24:14 +00002245defm t2AND : T2I_bin_w_irs<0b0000, "and",
Evan Cheng7e1bf302010-09-29 00:27:46 +00002246 IIC_iBITi, IIC_iBITr, IIC_iBITsi,
Jim Grosbach5c6c1282012-08-02 21:50:41 +00002247 BinOpFrag<(and node:$LHS, node:$RHS)>, 1>;
Johnny Chend68e1192009-12-15 17:24:14 +00002248defm t2ORR : T2I_bin_w_irs<0b0010, "orr",
Evan Cheng7e1bf302010-09-29 00:27:46 +00002249 IIC_iBITi, IIC_iBITr, IIC_iBITsi,
Jim Grosbach5c6c1282012-08-02 21:50:41 +00002250 BinOpFrag<(or node:$LHS, node:$RHS)>, 1>;
Johnny Chend68e1192009-12-15 17:24:14 +00002251defm t2EOR : T2I_bin_w_irs<0b0100, "eor",
Evan Cheng7e1bf302010-09-29 00:27:46 +00002252 IIC_iBITi, IIC_iBITr, IIC_iBITsi,
Jim Grosbach5c6c1282012-08-02 21:50:41 +00002253 BinOpFrag<(xor node:$LHS, node:$RHS)>, 1>;
Evan Chengf49810c2009-06-23 17:48:47 +00002254
Johnny Chend68e1192009-12-15 17:24:14 +00002255defm t2BIC : T2I_bin_w_irs<0b0001, "bic",
Evan Cheng7e1bf302010-09-29 00:27:46 +00002256 IIC_iBITi, IIC_iBITr, IIC_iBITsi,
Jim Grosbach5c6c1282012-08-02 21:50:41 +00002257 BinOpFrag<(and node:$LHS, (not node:$RHS))>>;
Evan Chengf49810c2009-06-23 17:48:47 +00002258
Owen Anderson2f7aed32010-11-17 22:16:31 +00002259class T2BitFI<dag oops, dag iops, InstrItinClass itin,
2260 string opc, string asm, list<dag> pattern>
Jim Grosbach7a088642010-11-19 17:11:02 +00002261 : T2I<oops, iops, itin, opc, asm, pattern> {
Owen Anderson2f7aed32010-11-17 22:16:31 +00002262 bits<4> Rd;
2263 bits<5> msb;
2264 bits<5> lsb;
Jim Grosbach7a088642010-11-19 17:11:02 +00002265
Jim Grosbach86386922010-12-08 22:10:43 +00002266 let Inst{11-8} = Rd;
Owen Anderson2f7aed32010-11-17 22:16:31 +00002267 let Inst{4-0} = msb{4-0};
2268 let Inst{14-12} = lsb{4-2};
2269 let Inst{7-6} = lsb{1-0};
2270}
2271
2272class T2TwoRegBitFI<dag oops, dag iops, InstrItinClass itin,
2273 string opc, string asm, list<dag> pattern>
2274 : T2BitFI<oops, iops, itin, opc, asm, pattern> {
2275 bits<4> Rn;
Jim Grosbach7a088642010-11-19 17:11:02 +00002276
Jim Grosbach86386922010-12-08 22:10:43 +00002277 let Inst{19-16} = Rn;
Owen Anderson2f7aed32010-11-17 22:16:31 +00002278}
2279
2280let Constraints = "$src = $Rd" in
2281def t2BFC : T2BitFI<(outs rGPR:$Rd), (ins rGPR:$src, bf_inv_mask_imm:$imm),
2282 IIC_iUNAsi, "bfc", "\t$Rd, $imm",
2283 [(set rGPR:$Rd, (and rGPR:$src, bf_inv_mask_imm:$imm))]> {
Johnny Chend68e1192009-12-15 17:24:14 +00002284 let Inst{31-27} = 0b11110;
Johnny Chen3a961222011-04-15 22:52:15 +00002285 let Inst{26} = 0; // should be 0.
Johnny Chend68e1192009-12-15 17:24:14 +00002286 let Inst{25} = 1;
2287 let Inst{24-20} = 0b10110;
2288 let Inst{19-16} = 0b1111; // Rn
2289 let Inst{15} = 0;
Johnny Chen3a961222011-04-15 22:52:15 +00002290 let Inst{5} = 0; // should be 0.
Jim Grosbach7a088642010-11-19 17:11:02 +00002291
Owen Anderson2f7aed32010-11-17 22:16:31 +00002292 bits<10> imm;
2293 let msb{4-0} = imm{9-5};
2294 let lsb{4-0} = imm{4-0};
Johnny Chend68e1192009-12-15 17:24:14 +00002295}
Evan Chengf49810c2009-06-23 17:48:47 +00002296
Owen Anderson2f7aed32010-11-17 22:16:31 +00002297def t2SBFX: T2TwoRegBitFI<
Jim Grosbachfb8989e2011-07-27 21:09:25 +00002298 (outs rGPR:$Rd), (ins rGPR:$Rn, imm0_31:$lsb, imm1_32:$msb),
Owen Anderson2f7aed32010-11-17 22:16:31 +00002299 IIC_iUNAsi, "sbfx", "\t$Rd, $Rn, $lsb, $msb", []> {
Johnny Chend68e1192009-12-15 17:24:14 +00002300 let Inst{31-27} = 0b11110;
2301 let Inst{25} = 1;
2302 let Inst{24-20} = 0b10100;
2303 let Inst{15} = 0;
2304}
Sandeep Patel47eedaa2009-10-13 18:59:48 +00002305
Owen Anderson2f7aed32010-11-17 22:16:31 +00002306def t2UBFX: T2TwoRegBitFI<
Jim Grosbachfb8989e2011-07-27 21:09:25 +00002307 (outs rGPR:$Rd), (ins rGPR:$Rn, imm0_31:$lsb, imm1_32:$msb),
Owen Anderson2f7aed32010-11-17 22:16:31 +00002308 IIC_iUNAsi, "ubfx", "\t$Rd, $Rn, $lsb, $msb", []> {
Johnny Chend68e1192009-12-15 17:24:14 +00002309 let Inst{31-27} = 0b11110;
2310 let Inst{25} = 1;
2311 let Inst{24-20} = 0b11100;
2312 let Inst{15} = 0;
2313}
Sandeep Patel47eedaa2009-10-13 18:59:48 +00002314
Johnny Chen9474d552010-02-02 19:31:58 +00002315// A8.6.18 BFI - Bitfield insert (Encoding T1)
Bruno Cardoso Lopesa461d422011-01-18 20:45:56 +00002316let Constraints = "$src = $Rd" in {
2317 def t2BFI : T2TwoRegBitFI<(outs rGPR:$Rd),
2318 (ins rGPR:$src, rGPR:$Rn, bf_inv_mask_imm:$imm),
2319 IIC_iBITi, "bfi", "\t$Rd, $Rn, $imm",
2320 [(set rGPR:$Rd, (ARMbfi rGPR:$src, rGPR:$Rn,
2321 bf_inv_mask_imm:$imm))]> {
2322 let Inst{31-27} = 0b11110;
Johnny Chen188ce9c2011-04-15 00:35:08 +00002323 let Inst{26} = 0; // should be 0.
Bruno Cardoso Lopesa461d422011-01-18 20:45:56 +00002324 let Inst{25} = 1;
2325 let Inst{24-20} = 0b10110;
2326 let Inst{15} = 0;
Johnny Chen188ce9c2011-04-15 00:35:08 +00002327 let Inst{5} = 0; // should be 0.
Jim Grosbach7a088642010-11-19 17:11:02 +00002328
Bruno Cardoso Lopesa461d422011-01-18 20:45:56 +00002329 bits<10> imm;
2330 let msb{4-0} = imm{9-5};
2331 let lsb{4-0} = imm{4-0};
2332 }
Johnny Chen9474d552010-02-02 19:31:58 +00002333}
Evan Chengf49810c2009-06-23 17:48:47 +00002334
Evan Cheng7e1bf302010-09-29 00:27:46 +00002335defm t2ORN : T2I_bin_irs<0b0011, "orn",
2336 IIC_iBITi, IIC_iBITr, IIC_iBITsi,
Jim Grosbach5c6c1282012-08-02 21:50:41 +00002337 BinOpFrag<(or node:$LHS, (not node:$RHS))>, 0, "">;
Evan Cheng36a0aeb2009-07-06 22:23:46 +00002338
Jim Grosbachd32872f2011-09-14 21:24:41 +00002339/// T2I_un_irs - Defines a set of (op reg, {so_imm|r|so_reg}) patterns for a
2340/// unary operation that produces a value. These are predicable and can be
2341/// changed to modify CPSR.
2342multiclass T2I_un_irs<bits<4> opcod, string opc,
2343 InstrItinClass iii, InstrItinClass iir, InstrItinClass iis,
2344 PatFrag opnode, bit Cheap = 0, bit ReMat = 0> {
2345 // shifted imm
2346 def i : T2sOneRegImm<(outs rGPR:$Rd), (ins t2_so_imm:$imm), iii,
2347 opc, "\t$Rd, $imm",
2348 [(set rGPR:$Rd, (opnode t2_so_imm:$imm))]> {
2349 let isAsCheapAsAMove = Cheap;
2350 let isReMaterializable = ReMat;
2351 let Inst{31-27} = 0b11110;
2352 let Inst{25} = 0;
2353 let Inst{24-21} = opcod;
2354 let Inst{19-16} = 0b1111; // Rn
2355 let Inst{15} = 0;
2356 }
2357 // register
2358 def r : T2sTwoReg<(outs rGPR:$Rd), (ins rGPR:$Rm), iir,
2359 opc, ".w\t$Rd, $Rm",
2360 [(set rGPR:$Rd, (opnode rGPR:$Rm))]> {
2361 let Inst{31-27} = 0b11101;
2362 let Inst{26-25} = 0b01;
2363 let Inst{24-21} = opcod;
2364 let Inst{19-16} = 0b1111; // Rn
2365 let Inst{14-12} = 0b000; // imm3
2366 let Inst{7-6} = 0b00; // imm2
2367 let Inst{5-4} = 0b00; // type
2368 }
2369 // shifted register
2370 def s : T2sOneRegShiftedReg<(outs rGPR:$Rd), (ins t2_so_reg:$ShiftedRm), iis,
2371 opc, ".w\t$Rd, $ShiftedRm",
2372 [(set rGPR:$Rd, (opnode t2_so_reg:$ShiftedRm))]> {
2373 let Inst{31-27} = 0b11101;
2374 let Inst{26-25} = 0b01;
2375 let Inst{24-21} = opcod;
2376 let Inst{19-16} = 0b1111; // Rn
2377 }
2378}
2379
Evan Cheng36a0aeb2009-07-06 22:23:46 +00002380// Prefer over of t2EORri ra, rb, -1 because mvn has 16-bit version
2381let AddedComplexity = 1 in
Evan Cheng5d42c562010-09-29 00:49:25 +00002382defm t2MVN : T2I_un_irs <0b0011, "mvn",
Evan Cheng3881cb72010-09-29 22:42:35 +00002383 IIC_iMVNi, IIC_iMVNr, IIC_iMVNsi,
Evan Cheng5d42c562010-09-29 00:49:25 +00002384 UnOpFrag<(not node:$Src)>, 1, 1>;
Evan Cheng36a0aeb2009-07-06 22:23:46 +00002385
Jim Grosbachf084a5e2010-07-20 16:07:04 +00002386let AddedComplexity = 1 in
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002387def : T2Pat<(and rGPR:$src, t2_so_imm_not:$imm),
2388 (t2BICri rGPR:$src, t2_so_imm_not:$imm)>;
Evan Cheng36a0aeb2009-07-06 22:23:46 +00002389
Joel Jones96ef2842012-06-18 14:51:32 +00002390// top16Zero - answer true if the upper 16 bits of $src are 0, false otherwise
2391def top16Zero: PatLeaf<(i32 rGPR:$src), [{
2392 return CurDAG->MaskedValueIsZero(SDValue(N,0), APInt::getHighBitsSet(32, 16));
2393 }]>;
2394
2395// so_imm_notSext is needed instead of so_imm_not, as the value of imm
2396// will match the extended, not the original bitWidth for $src.
2397def : T2Pat<(and top16Zero:$src, t2_so_imm_notSext:$imm),
2398 (t2BICri rGPR:$src, t2_so_imm_notSext:$imm)>;
2399
2400
Evan Cheng25f7cfc2009-08-01 06:13:52 +00002401// FIXME: Disable this pattern on Darwin to workaround an assembler bug.
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002402def : T2Pat<(or rGPR:$src, t2_so_imm_not:$imm),
2403 (t2ORNri rGPR:$src, t2_so_imm_not:$imm)>,
Evan Chengea253b92009-08-12 01:56:42 +00002404 Requires<[IsThumb2]>;
Evan Cheng36a0aeb2009-07-06 22:23:46 +00002405
2406def : T2Pat<(t2_so_imm_not:$src),
2407 (t2MVNi t2_so_imm_not:$src)>;
2408
Evan Chengf49810c2009-06-23 17:48:47 +00002409//===----------------------------------------------------------------------===//
2410// Multiply Instructions.
2411//
Evan Cheng8de898a2009-06-26 00:19:44 +00002412let isCommutable = 1 in
Owen Anderson35141a92010-11-18 01:08:42 +00002413def t2MUL: T2ThreeReg<(outs rGPR:$Rd), (ins rGPR:$Rn, rGPR:$Rm), IIC_iMUL32,
2414 "mul", "\t$Rd, $Rn, $Rm",
2415 [(set rGPR:$Rd, (mul rGPR:$Rn, rGPR:$Rm))]> {
Johnny Chend68e1192009-12-15 17:24:14 +00002416 let Inst{31-27} = 0b11111;
2417 let Inst{26-23} = 0b0110;
2418 let Inst{22-20} = 0b000;
2419 let Inst{15-12} = 0b1111; // Ra = 0b1111 (no accumulate)
2420 let Inst{7-4} = 0b0000; // Multiply
2421}
Evan Chengf49810c2009-06-23 17:48:47 +00002422
Owen Anderson35141a92010-11-18 01:08:42 +00002423def t2MLA: T2FourReg<
2424 (outs rGPR:$Rd), (ins rGPR:$Rn, rGPR:$Rm, rGPR:$Ra), IIC_iMAC32,
2425 "mla", "\t$Rd, $Rn, $Rm, $Ra",
2426 [(set rGPR:$Rd, (add (mul rGPR:$Rn, rGPR:$Rm), rGPR:$Ra))]> {
Johnny Chend68e1192009-12-15 17:24:14 +00002427 let Inst{31-27} = 0b11111;
2428 let Inst{26-23} = 0b0110;
2429 let Inst{22-20} = 0b000;
Johnny Chend68e1192009-12-15 17:24:14 +00002430 let Inst{7-4} = 0b0000; // Multiply
2431}
Evan Chengf49810c2009-06-23 17:48:47 +00002432
Owen Anderson35141a92010-11-18 01:08:42 +00002433def t2MLS: T2FourReg<
2434 (outs rGPR:$Rd), (ins rGPR:$Rn, rGPR:$Rm, rGPR:$Ra), IIC_iMAC32,
2435 "mls", "\t$Rd, $Rn, $Rm, $Ra",
2436 [(set rGPR:$Rd, (sub rGPR:$Ra, (mul rGPR:$Rn, rGPR:$Rm)))]> {
Johnny Chend68e1192009-12-15 17:24:14 +00002437 let Inst{31-27} = 0b11111;
2438 let Inst{26-23} = 0b0110;
2439 let Inst{22-20} = 0b000;
Johnny Chend68e1192009-12-15 17:24:14 +00002440 let Inst{7-4} = 0b0001; // Multiply and Subtract
2441}
Evan Chengf49810c2009-06-23 17:48:47 +00002442
Evan Cheng5b9fcd12009-07-07 01:17:28 +00002443// Extra precision multiplies with low / high results
2444let neverHasSideEffects = 1 in {
2445let isCommutable = 1 in {
Jim Grosbach7c6d85a2010-12-08 22:38:41 +00002446def t2SMULL : T2MulLong<0b000, 0b0000,
Owen Anderson796c3652011-08-22 23:16:48 +00002447 (outs rGPR:$RdLo, rGPR:$RdHi),
Owen Anderson35141a92010-11-18 01:08:42 +00002448 (ins rGPR:$Rn, rGPR:$Rm), IIC_iMUL64,
Owen Anderson796c3652011-08-22 23:16:48 +00002449 "smull", "\t$RdLo, $RdHi, $Rn, $Rm", []>;
Evan Cheng5b9fcd12009-07-07 01:17:28 +00002450
Jim Grosbach7c6d85a2010-12-08 22:38:41 +00002451def t2UMULL : T2MulLong<0b010, 0b0000,
Jim Grosbach52082042010-12-08 22:29:28 +00002452 (outs rGPR:$RdLo, rGPR:$RdHi),
Owen Anderson35141a92010-11-18 01:08:42 +00002453 (ins rGPR:$Rn, rGPR:$Rm), IIC_iMUL64,
Jim Grosbach7c6d85a2010-12-08 22:38:41 +00002454 "umull", "\t$RdLo, $RdHi, $Rn, $Rm", []>;
Johnny Chend68e1192009-12-15 17:24:14 +00002455} // isCommutable
Evan Cheng5b9fcd12009-07-07 01:17:28 +00002456
2457// Multiply + accumulate
Arnold Schwaighofer67514e92012-09-04 14:37:49 +00002458def t2SMLAL : T2MlaLong<0b100, 0b0000,
Arnold Schwaighofera7016d62012-08-12 05:11:56 +00002459 (outs rGPR:$RdLo, rGPR:$RdHi),
Arnold Schwaighofer67514e92012-09-04 14:37:49 +00002460 (ins rGPR:$Rn, rGPR:$Rm, rGPR:$RLo, rGPR:$RHi), IIC_iMAC64,
2461 "smlal", "\t$RdLo, $RdHi, $Rn, $Rm", []>,
2462 RegConstraint<"$RLo = $RdLo, $RHi = $RdHi">;
Evan Cheng5b9fcd12009-07-07 01:17:28 +00002463
Arnold Schwaighofer67514e92012-09-04 14:37:49 +00002464def t2UMLAL : T2MlaLong<0b110, 0b0000,
Arnold Schwaighofera7016d62012-08-12 05:11:56 +00002465 (outs rGPR:$RdLo, rGPR:$RdHi),
Arnold Schwaighofer67514e92012-09-04 14:37:49 +00002466 (ins rGPR:$Rn, rGPR:$Rm, rGPR:$RLo, rGPR:$RHi), IIC_iMAC64,
2467 "umlal", "\t$RdLo, $RdHi, $Rn, $Rm", []>,
2468 RegConstraint<"$RLo = $RdLo, $RHi = $RdHi">;
Evan Cheng5b9fcd12009-07-07 01:17:28 +00002469
Jim Grosbach7c6d85a2010-12-08 22:38:41 +00002470def t2UMAAL : T2MulLong<0b110, 0b0110,
2471 (outs rGPR:$RdLo, rGPR:$RdHi),
Owen Anderson35141a92010-11-18 01:08:42 +00002472 (ins rGPR:$Rn, rGPR:$Rm), IIC_iMAC64,
Jim Grosbacha7603982011-07-01 21:12:19 +00002473 "umaal", "\t$RdLo, $RdHi, $Rn, $Rm", []>,
2474 Requires<[IsThumb2, HasThumb2DSP]>;
Evan Cheng5b9fcd12009-07-07 01:17:28 +00002475} // neverHasSideEffects
2476
Johnny Chen93042d12010-03-02 18:14:57 +00002477// Rounding variants of the below included for disassembly only
2478
Evan Cheng5b9fcd12009-07-07 01:17:28 +00002479// Most significant word multiply
Owen Anderson821752e2010-11-18 20:32:18 +00002480def t2SMMUL : T2ThreeReg<(outs rGPR:$Rd), (ins rGPR:$Rn, rGPR:$Rm), IIC_iMUL32,
2481 "smmul", "\t$Rd, $Rn, $Rm",
Jim Grosbacha7603982011-07-01 21:12:19 +00002482 [(set rGPR:$Rd, (mulhs rGPR:$Rn, rGPR:$Rm))]>,
2483 Requires<[IsThumb2, HasThumb2DSP]> {
Johnny Chend68e1192009-12-15 17:24:14 +00002484 let Inst{31-27} = 0b11111;
2485 let Inst{26-23} = 0b0110;
2486 let Inst{22-20} = 0b101;
2487 let Inst{15-12} = 0b1111; // Ra = 0b1111 (no accumulate)
2488 let Inst{7-4} = 0b0000; // No Rounding (Inst{4} = 0)
2489}
Evan Cheng5b9fcd12009-07-07 01:17:28 +00002490
Owen Anderson821752e2010-11-18 20:32:18 +00002491def t2SMMULR : T2ThreeReg<(outs rGPR:$Rd), (ins rGPR:$Rn, rGPR:$Rm), IIC_iMUL32,
Jim Grosbacha7603982011-07-01 21:12:19 +00002492 "smmulr", "\t$Rd, $Rn, $Rm", []>,
2493 Requires<[IsThumb2, HasThumb2DSP]> {
Johnny Chen93042d12010-03-02 18:14:57 +00002494 let Inst{31-27} = 0b11111;
2495 let Inst{26-23} = 0b0110;
2496 let Inst{22-20} = 0b101;
2497 let Inst{15-12} = 0b1111; // Ra = 0b1111 (no accumulate)
2498 let Inst{7-4} = 0b0001; // Rounding (Inst{4} = 1)
2499}
2500
Owen Anderson821752e2010-11-18 20:32:18 +00002501def t2SMMLA : T2FourReg<
2502 (outs rGPR:$Rd), (ins rGPR:$Rn, rGPR:$Rm, rGPR:$Ra), IIC_iMAC32,
2503 "smmla", "\t$Rd, $Rn, $Rm, $Ra",
Jim Grosbacha7603982011-07-01 21:12:19 +00002504 [(set rGPR:$Rd, (add (mulhs rGPR:$Rm, rGPR:$Rn), rGPR:$Ra))]>,
2505 Requires<[IsThumb2, HasThumb2DSP]> {
Johnny Chend68e1192009-12-15 17:24:14 +00002506 let Inst{31-27} = 0b11111;
2507 let Inst{26-23} = 0b0110;
2508 let Inst{22-20} = 0b101;
Johnny Chend68e1192009-12-15 17:24:14 +00002509 let Inst{7-4} = 0b0000; // No Rounding (Inst{4} = 0)
2510}
Evan Cheng5b9fcd12009-07-07 01:17:28 +00002511
Owen Anderson821752e2010-11-18 20:32:18 +00002512def t2SMMLAR: T2FourReg<
2513 (outs rGPR:$Rd), (ins rGPR:$Rn, rGPR:$Rm, rGPR:$Ra), IIC_iMAC32,
Jim Grosbacha7603982011-07-01 21:12:19 +00002514 "smmlar", "\t$Rd, $Rn, $Rm, $Ra", []>,
2515 Requires<[IsThumb2, HasThumb2DSP]> {
Johnny Chen93042d12010-03-02 18:14:57 +00002516 let Inst{31-27} = 0b11111;
2517 let Inst{26-23} = 0b0110;
2518 let Inst{22-20} = 0b101;
Johnny Chen93042d12010-03-02 18:14:57 +00002519 let Inst{7-4} = 0b0001; // Rounding (Inst{4} = 1)
2520}
Evan Cheng5b9fcd12009-07-07 01:17:28 +00002521
Owen Anderson821752e2010-11-18 20:32:18 +00002522def t2SMMLS: T2FourReg<
2523 (outs rGPR:$Rd), (ins rGPR:$Rn, rGPR:$Rm, rGPR:$Ra), IIC_iMAC32,
2524 "smmls", "\t$Rd, $Rn, $Rm, $Ra",
Jim Grosbacha7603982011-07-01 21:12:19 +00002525 [(set rGPR:$Rd, (sub rGPR:$Ra, (mulhs rGPR:$Rn, rGPR:$Rm)))]>,
2526 Requires<[IsThumb2, HasThumb2DSP]> {
Johnny Chend68e1192009-12-15 17:24:14 +00002527 let Inst{31-27} = 0b11111;
2528 let Inst{26-23} = 0b0110;
2529 let Inst{22-20} = 0b110;
Johnny Chend68e1192009-12-15 17:24:14 +00002530 let Inst{7-4} = 0b0000; // No Rounding (Inst{4} = 0)
2531}
Evan Cheng5b9fcd12009-07-07 01:17:28 +00002532
Owen Anderson821752e2010-11-18 20:32:18 +00002533def t2SMMLSR:T2FourReg<
2534 (outs rGPR:$Rd), (ins rGPR:$Rn, rGPR:$Rm, rGPR:$Ra), IIC_iMAC32,
Jim Grosbacha7603982011-07-01 21:12:19 +00002535 "smmlsr", "\t$Rd, $Rn, $Rm, $Ra", []>,
2536 Requires<[IsThumb2, HasThumb2DSP]> {
Johnny Chen93042d12010-03-02 18:14:57 +00002537 let Inst{31-27} = 0b11111;
2538 let Inst{26-23} = 0b0110;
2539 let Inst{22-20} = 0b110;
Johnny Chen93042d12010-03-02 18:14:57 +00002540 let Inst{7-4} = 0b0001; // Rounding (Inst{4} = 1)
2541}
2542
Evan Cheng5b9fcd12009-07-07 01:17:28 +00002543multiclass T2I_smul<string opc, PatFrag opnode> {
Owen Anderson821752e2010-11-18 20:32:18 +00002544 def BB : T2ThreeReg<(outs rGPR:$Rd), (ins rGPR:$Rn, rGPR:$Rm), IIC_iMUL16,
2545 !strconcat(opc, "bb"), "\t$Rd, $Rn, $Rm",
2546 [(set rGPR:$Rd, (opnode (sext_inreg rGPR:$Rn, i16),
Jim Grosbacha7603982011-07-01 21:12:19 +00002547 (sext_inreg rGPR:$Rm, i16)))]>,
2548 Requires<[IsThumb2, HasThumb2DSP]> {
Johnny Chend68e1192009-12-15 17:24:14 +00002549 let Inst{31-27} = 0b11111;
2550 let Inst{26-23} = 0b0110;
2551 let Inst{22-20} = 0b001;
2552 let Inst{15-12} = 0b1111; // Ra = 0b1111 (no accumulate)
2553 let Inst{7-6} = 0b00;
2554 let Inst{5-4} = 0b00;
2555 }
Evan Cheng5b9fcd12009-07-07 01:17:28 +00002556
Owen Anderson821752e2010-11-18 20:32:18 +00002557 def BT : T2ThreeReg<(outs rGPR:$Rd), (ins rGPR:$Rn, rGPR:$Rm), IIC_iMUL16,
2558 !strconcat(opc, "bt"), "\t$Rd, $Rn, $Rm",
2559 [(set rGPR:$Rd, (opnode (sext_inreg rGPR:$Rn, i16),
Jim Grosbacha7603982011-07-01 21:12:19 +00002560 (sra rGPR:$Rm, (i32 16))))]>,
2561 Requires<[IsThumb2, HasThumb2DSP]> {
Johnny Chend68e1192009-12-15 17:24:14 +00002562 let Inst{31-27} = 0b11111;
2563 let Inst{26-23} = 0b0110;
2564 let Inst{22-20} = 0b001;
2565 let Inst{15-12} = 0b1111; // Ra = 0b1111 (no accumulate)
2566 let Inst{7-6} = 0b00;
2567 let Inst{5-4} = 0b01;
2568 }
Evan Cheng5b9fcd12009-07-07 01:17:28 +00002569
Owen Anderson821752e2010-11-18 20:32:18 +00002570 def TB : T2ThreeReg<(outs rGPR:$Rd), (ins rGPR:$Rn, rGPR:$Rm), IIC_iMUL16,
2571 !strconcat(opc, "tb"), "\t$Rd, $Rn, $Rm",
2572 [(set rGPR:$Rd, (opnode (sra rGPR:$Rn, (i32 16)),
Jim Grosbacha7603982011-07-01 21:12:19 +00002573 (sext_inreg rGPR:$Rm, i16)))]>,
2574 Requires<[IsThumb2, HasThumb2DSP]> {
Johnny Chend68e1192009-12-15 17:24:14 +00002575 let Inst{31-27} = 0b11111;
2576 let Inst{26-23} = 0b0110;
2577 let Inst{22-20} = 0b001;
2578 let Inst{15-12} = 0b1111; // Ra = 0b1111 (no accumulate)
2579 let Inst{7-6} = 0b00;
2580 let Inst{5-4} = 0b10;
2581 }
Evan Cheng5b9fcd12009-07-07 01:17:28 +00002582
Owen Anderson821752e2010-11-18 20:32:18 +00002583 def TT : T2ThreeReg<(outs rGPR:$Rd), (ins rGPR:$Rn, rGPR:$Rm), IIC_iMUL16,
2584 !strconcat(opc, "tt"), "\t$Rd, $Rn, $Rm",
2585 [(set rGPR:$Rd, (opnode (sra rGPR:$Rn, (i32 16)),
Jim Grosbacha7603982011-07-01 21:12:19 +00002586 (sra rGPR:$Rm, (i32 16))))]>,
2587 Requires<[IsThumb2, HasThumb2DSP]> {
Johnny Chend68e1192009-12-15 17:24:14 +00002588 let Inst{31-27} = 0b11111;
2589 let Inst{26-23} = 0b0110;
2590 let Inst{22-20} = 0b001;
2591 let Inst{15-12} = 0b1111; // Ra = 0b1111 (no accumulate)
2592 let Inst{7-6} = 0b00;
2593 let Inst{5-4} = 0b11;
2594 }
Evan Cheng5b9fcd12009-07-07 01:17:28 +00002595
Owen Anderson821752e2010-11-18 20:32:18 +00002596 def WB : T2ThreeReg<(outs rGPR:$Rd), (ins rGPR:$Rn, rGPR:$Rm), IIC_iMUL16,
2597 !strconcat(opc, "wb"), "\t$Rd, $Rn, $Rm",
2598 [(set rGPR:$Rd, (sra (opnode rGPR:$Rn,
Jim Grosbacha7603982011-07-01 21:12:19 +00002599 (sext_inreg rGPR:$Rm, i16)), (i32 16)))]>,
2600 Requires<[IsThumb2, HasThumb2DSP]> {
Johnny Chend68e1192009-12-15 17:24:14 +00002601 let Inst{31-27} = 0b11111;
2602 let Inst{26-23} = 0b0110;
2603 let Inst{22-20} = 0b011;
2604 let Inst{15-12} = 0b1111; // Ra = 0b1111 (no accumulate)
2605 let Inst{7-6} = 0b00;
2606 let Inst{5-4} = 0b00;
2607 }
Evan Cheng5b9fcd12009-07-07 01:17:28 +00002608
Owen Anderson821752e2010-11-18 20:32:18 +00002609 def WT : T2ThreeReg<(outs rGPR:$Rd), (ins rGPR:$Rn, rGPR:$Rm), IIC_iMUL16,
2610 !strconcat(opc, "wt"), "\t$Rd, $Rn, $Rm",
2611 [(set rGPR:$Rd, (sra (opnode rGPR:$Rn,
Jim Grosbacha7603982011-07-01 21:12:19 +00002612 (sra rGPR:$Rm, (i32 16))), (i32 16)))]>,
2613 Requires<[IsThumb2, HasThumb2DSP]> {
Johnny Chend68e1192009-12-15 17:24:14 +00002614 let Inst{31-27} = 0b11111;
2615 let Inst{26-23} = 0b0110;
2616 let Inst{22-20} = 0b011;
2617 let Inst{15-12} = 0b1111; // Ra = 0b1111 (no accumulate)
2618 let Inst{7-6} = 0b00;
2619 let Inst{5-4} = 0b01;
2620 }
Evan Cheng5b9fcd12009-07-07 01:17:28 +00002621}
2622
2623
2624multiclass T2I_smla<string opc, PatFrag opnode> {
Owen Anderson821752e2010-11-18 20:32:18 +00002625 def BB : T2FourReg<
2626 (outs rGPR:$Rd), (ins rGPR:$Rn, rGPR:$Rm, rGPR:$Ra), IIC_iMAC16,
2627 !strconcat(opc, "bb"), "\t$Rd, $Rn, $Rm, $Ra",
2628 [(set rGPR:$Rd, (add rGPR:$Ra,
2629 (opnode (sext_inreg rGPR:$Rn, i16),
Jim Grosbacha7603982011-07-01 21:12:19 +00002630 (sext_inreg rGPR:$Rm, i16))))]>,
2631 Requires<[IsThumb2, HasThumb2DSP]> {
Johnny Chend68e1192009-12-15 17:24:14 +00002632 let Inst{31-27} = 0b11111;
2633 let Inst{26-23} = 0b0110;
2634 let Inst{22-20} = 0b001;
Johnny Chend68e1192009-12-15 17:24:14 +00002635 let Inst{7-6} = 0b00;
2636 let Inst{5-4} = 0b00;
2637 }
Evan Cheng5b9fcd12009-07-07 01:17:28 +00002638
Owen Anderson821752e2010-11-18 20:32:18 +00002639 def BT : T2FourReg<
2640 (outs rGPR:$Rd), (ins rGPR:$Rn, rGPR:$Rm, rGPR:$Ra), IIC_iMAC16,
2641 !strconcat(opc, "bt"), "\t$Rd, $Rn, $Rm, $Ra",
2642 [(set rGPR:$Rd, (add rGPR:$Ra, (opnode (sext_inreg rGPR:$Rn, i16),
Jim Grosbacha7603982011-07-01 21:12:19 +00002643 (sra rGPR:$Rm, (i32 16)))))]>,
2644 Requires<[IsThumb2, HasThumb2DSP]> {
Johnny Chend68e1192009-12-15 17:24:14 +00002645 let Inst{31-27} = 0b11111;
2646 let Inst{26-23} = 0b0110;
2647 let Inst{22-20} = 0b001;
Johnny Chend68e1192009-12-15 17:24:14 +00002648 let Inst{7-6} = 0b00;
2649 let Inst{5-4} = 0b01;
2650 }
Evan Cheng5b9fcd12009-07-07 01:17:28 +00002651
Owen Anderson821752e2010-11-18 20:32:18 +00002652 def TB : T2FourReg<
2653 (outs rGPR:$Rd), (ins rGPR:$Rn, rGPR:$Rm, rGPR:$Ra), IIC_iMAC16,
2654 !strconcat(opc, "tb"), "\t$Rd, $Rn, $Rm, $Ra",
2655 [(set rGPR:$Rd, (add rGPR:$Ra, (opnode (sra rGPR:$Rn, (i32 16)),
Jim Grosbacha7603982011-07-01 21:12:19 +00002656 (sext_inreg rGPR:$Rm, i16))))]>,
2657 Requires<[IsThumb2, HasThumb2DSP]> {
Johnny Chend68e1192009-12-15 17:24:14 +00002658 let Inst{31-27} = 0b11111;
2659 let Inst{26-23} = 0b0110;
2660 let Inst{22-20} = 0b001;
Johnny Chend68e1192009-12-15 17:24:14 +00002661 let Inst{7-6} = 0b00;
2662 let Inst{5-4} = 0b10;
2663 }
Evan Cheng5b9fcd12009-07-07 01:17:28 +00002664
Owen Anderson821752e2010-11-18 20:32:18 +00002665 def TT : T2FourReg<
2666 (outs rGPR:$Rd), (ins rGPR:$Rn, rGPR:$Rm, rGPR:$Ra), IIC_iMAC16,
2667 !strconcat(opc, "tt"), "\t$Rd, $Rn, $Rm, $Ra",
2668 [(set rGPR:$Rd, (add rGPR:$Ra, (opnode (sra rGPR:$Rn, (i32 16)),
Jim Grosbacha7603982011-07-01 21:12:19 +00002669 (sra rGPR:$Rm, (i32 16)))))]>,
2670 Requires<[IsThumb2, HasThumb2DSP]> {
Johnny Chend68e1192009-12-15 17:24:14 +00002671 let Inst{31-27} = 0b11111;
2672 let Inst{26-23} = 0b0110;
2673 let Inst{22-20} = 0b001;
Johnny Chend68e1192009-12-15 17:24:14 +00002674 let Inst{7-6} = 0b00;
2675 let Inst{5-4} = 0b11;
2676 }
Evan Cheng5b9fcd12009-07-07 01:17:28 +00002677
Owen Anderson821752e2010-11-18 20:32:18 +00002678 def WB : T2FourReg<
2679 (outs rGPR:$Rd), (ins rGPR:$Rn, rGPR:$Rm, rGPR:$Ra), IIC_iMAC16,
2680 !strconcat(opc, "wb"), "\t$Rd, $Rn, $Rm, $Ra",
2681 [(set rGPR:$Rd, (add rGPR:$Ra, (sra (opnode rGPR:$Rn,
Jim Grosbacha7603982011-07-01 21:12:19 +00002682 (sext_inreg rGPR:$Rm, i16)), (i32 16))))]>,
2683 Requires<[IsThumb2, HasThumb2DSP]> {
Johnny Chend68e1192009-12-15 17:24:14 +00002684 let Inst{31-27} = 0b11111;
2685 let Inst{26-23} = 0b0110;
2686 let Inst{22-20} = 0b011;
Johnny Chend68e1192009-12-15 17:24:14 +00002687 let Inst{7-6} = 0b00;
2688 let Inst{5-4} = 0b00;
2689 }
Evan Cheng5b9fcd12009-07-07 01:17:28 +00002690
Owen Anderson821752e2010-11-18 20:32:18 +00002691 def WT : T2FourReg<
2692 (outs rGPR:$Rd), (ins rGPR:$Rn, rGPR:$Rm, rGPR:$Ra), IIC_iMAC16,
2693 !strconcat(opc, "wt"), "\t$Rd, $Rn, $Rm, $Ra",
2694 [(set rGPR:$Rd, (add rGPR:$Ra, (sra (opnode rGPR:$Rn,
Jim Grosbacha7603982011-07-01 21:12:19 +00002695 (sra rGPR:$Rm, (i32 16))), (i32 16))))]>,
2696 Requires<[IsThumb2, HasThumb2DSP]> {
Johnny Chend68e1192009-12-15 17:24:14 +00002697 let Inst{31-27} = 0b11111;
2698 let Inst{26-23} = 0b0110;
2699 let Inst{22-20} = 0b011;
Johnny Chend68e1192009-12-15 17:24:14 +00002700 let Inst{7-6} = 0b00;
2701 let Inst{5-4} = 0b01;
2702 }
Evan Cheng5b9fcd12009-07-07 01:17:28 +00002703}
2704
2705defm t2SMUL : T2I_smul<"smul", BinOpFrag<(mul node:$LHS, node:$RHS)>>;
2706defm t2SMLA : T2I_smla<"smla", BinOpFrag<(mul node:$LHS, node:$RHS)>>;
2707
Jim Grosbacheeca7582011-09-15 23:45:50 +00002708// Halfword multiple accumulate long: SMLAL<x><y>
Owen Anderson821752e2010-11-18 20:32:18 +00002709def t2SMLALBB : T2FourReg_mac<1, 0b100, 0b1000, (outs rGPR:$Ra,rGPR:$Rd),
2710 (ins rGPR:$Rn,rGPR:$Rm), IIC_iMAC64, "smlalbb", "\t$Ra, $Rd, $Rn, $Rm",
Jim Grosbacha7603982011-07-01 21:12:19 +00002711 [/* For disassembly only; pattern left blank */]>,
2712 Requires<[IsThumb2, HasThumb2DSP]>;
Owen Anderson821752e2010-11-18 20:32:18 +00002713def t2SMLALBT : T2FourReg_mac<1, 0b100, 0b1001, (outs rGPR:$Ra,rGPR:$Rd),
2714 (ins rGPR:$Rn,rGPR:$Rm), IIC_iMAC64, "smlalbt", "\t$Ra, $Rd, $Rn, $Rm",
Jim Grosbacha7603982011-07-01 21:12:19 +00002715 [/* For disassembly only; pattern left blank */]>,
2716 Requires<[IsThumb2, HasThumb2DSP]>;
Owen Anderson821752e2010-11-18 20:32:18 +00002717def t2SMLALTB : T2FourReg_mac<1, 0b100, 0b1010, (outs rGPR:$Ra,rGPR:$Rd),
2718 (ins rGPR:$Rn,rGPR:$Rm), IIC_iMAC64, "smlaltb", "\t$Ra, $Rd, $Rn, $Rm",
Jim Grosbacha7603982011-07-01 21:12:19 +00002719 [/* For disassembly only; pattern left blank */]>,
2720 Requires<[IsThumb2, HasThumb2DSP]>;
Owen Anderson821752e2010-11-18 20:32:18 +00002721def t2SMLALTT : T2FourReg_mac<1, 0b100, 0b1011, (outs rGPR:$Ra,rGPR:$Rd),
2722 (ins rGPR:$Rn,rGPR:$Rm), IIC_iMAC64, "smlaltt", "\t$Ra, $Rd, $Rn, $Rm",
Jim Grosbacha7603982011-07-01 21:12:19 +00002723 [/* For disassembly only; pattern left blank */]>,
2724 Requires<[IsThumb2, HasThumb2DSP]>;
Evan Cheng5b9fcd12009-07-07 01:17:28 +00002725
Johnny Chenadc77332010-02-26 22:04:29 +00002726// Dual halfword multiple: SMUAD, SMUSD, SMLAD, SMLSD, SMLALD, SMLSLD
Owen Anderson821752e2010-11-18 20:32:18 +00002727def t2SMUAD: T2ThreeReg_mac<
2728 0, 0b010, 0b0000, (outs rGPR:$Rd), (ins rGPR:$Rn, rGPR:$Rm),
Jim Grosbacha7603982011-07-01 21:12:19 +00002729 IIC_iMAC32, "smuad", "\t$Rd, $Rn, $Rm", []>,
2730 Requires<[IsThumb2, HasThumb2DSP]> {
Johnny Chenadc77332010-02-26 22:04:29 +00002731 let Inst{15-12} = 0b1111;
2732}
Owen Anderson821752e2010-11-18 20:32:18 +00002733def t2SMUADX:T2ThreeReg_mac<
2734 0, 0b010, 0b0001, (outs rGPR:$Rd), (ins rGPR:$Rn, rGPR:$Rm),
Jim Grosbacha7603982011-07-01 21:12:19 +00002735 IIC_iMAC32, "smuadx", "\t$Rd, $Rn, $Rm", []>,
2736 Requires<[IsThumb2, HasThumb2DSP]> {
Johnny Chenadc77332010-02-26 22:04:29 +00002737 let Inst{15-12} = 0b1111;
2738}
Owen Anderson821752e2010-11-18 20:32:18 +00002739def t2SMUSD: T2ThreeReg_mac<
2740 0, 0b100, 0b0000, (outs rGPR:$Rd), (ins rGPR:$Rn, rGPR:$Rm),
Jim Grosbacha7603982011-07-01 21:12:19 +00002741 IIC_iMAC32, "smusd", "\t$Rd, $Rn, $Rm", []>,
2742 Requires<[IsThumb2, HasThumb2DSP]> {
Johnny Chenadc77332010-02-26 22:04:29 +00002743 let Inst{15-12} = 0b1111;
2744}
Owen Anderson821752e2010-11-18 20:32:18 +00002745def t2SMUSDX:T2ThreeReg_mac<
2746 0, 0b100, 0b0001, (outs rGPR:$Rd), (ins rGPR:$Rn, rGPR:$Rm),
Jim Grosbacha7603982011-07-01 21:12:19 +00002747 IIC_iMAC32, "smusdx", "\t$Rd, $Rn, $Rm", []>,
2748 Requires<[IsThumb2, HasThumb2DSP]> {
Johnny Chenadc77332010-02-26 22:04:29 +00002749 let Inst{15-12} = 0b1111;
2750}
Owen Andersonc6788c82011-08-22 23:31:45 +00002751def t2SMLAD : T2FourReg_mac<
Owen Anderson821752e2010-11-18 20:32:18 +00002752 0, 0b010, 0b0000, (outs rGPR:$Rd),
2753 (ins rGPR:$Rn, rGPR:$Rm, rGPR:$Ra), IIC_iMAC32, "smlad",
Jim Grosbacha7603982011-07-01 21:12:19 +00002754 "\t$Rd, $Rn, $Rm, $Ra", []>,
2755 Requires<[IsThumb2, HasThumb2DSP]>;
Owen Anderson821752e2010-11-18 20:32:18 +00002756def t2SMLADX : T2FourReg_mac<
2757 0, 0b010, 0b0001, (outs rGPR:$Rd),
2758 (ins rGPR:$Rn, rGPR:$Rm, rGPR:$Ra), IIC_iMAC32, "smladx",
Jim Grosbacha7603982011-07-01 21:12:19 +00002759 "\t$Rd, $Rn, $Rm, $Ra", []>,
2760 Requires<[IsThumb2, HasThumb2DSP]>;
Owen Anderson821752e2010-11-18 20:32:18 +00002761def t2SMLSD : T2FourReg_mac<0, 0b100, 0b0000, (outs rGPR:$Rd),
2762 (ins rGPR:$Rn, rGPR:$Rm, rGPR:$Ra), IIC_iMAC32, "smlsd",
Jim Grosbacha7603982011-07-01 21:12:19 +00002763 "\t$Rd, $Rn, $Rm, $Ra", []>,
2764 Requires<[IsThumb2, HasThumb2DSP]>;
Owen Anderson821752e2010-11-18 20:32:18 +00002765def t2SMLSDX : T2FourReg_mac<0, 0b100, 0b0001, (outs rGPR:$Rd),
2766 (ins rGPR:$Rn, rGPR:$Rm, rGPR:$Ra), IIC_iMAC32, "smlsdx",
Jim Grosbacha7603982011-07-01 21:12:19 +00002767 "\t$Rd, $Rn, $Rm, $Ra", []>,
2768 Requires<[IsThumb2, HasThumb2DSP]>;
Owen Anderson821752e2010-11-18 20:32:18 +00002769def t2SMLALD : T2FourReg_mac<1, 0b100, 0b1100, (outs rGPR:$Ra,rGPR:$Rd),
Jim Grosbach231948f2011-09-16 16:58:03 +00002770 (ins rGPR:$Rn, rGPR:$Rm), IIC_iMAC64, "smlald",
2771 "\t$Ra, $Rd, $Rn, $Rm", []>,
Jim Grosbacha7603982011-07-01 21:12:19 +00002772 Requires<[IsThumb2, HasThumb2DSP]>;
Owen Anderson821752e2010-11-18 20:32:18 +00002773def t2SMLALDX : T2FourReg_mac<1, 0b100, 0b1101, (outs rGPR:$Ra,rGPR:$Rd),
Jim Grosbach231948f2011-09-16 16:58:03 +00002774 (ins rGPR:$Rn,rGPR:$Rm), IIC_iMAC64, "smlaldx",
2775 "\t$Ra, $Rd, $Rn, $Rm", []>,
Jim Grosbacha7603982011-07-01 21:12:19 +00002776 Requires<[IsThumb2, HasThumb2DSP]>;
Owen Anderson821752e2010-11-18 20:32:18 +00002777def t2SMLSLD : T2FourReg_mac<1, 0b101, 0b1100, (outs rGPR:$Ra,rGPR:$Rd),
Jim Grosbach7ff24722011-09-16 17:10:44 +00002778 (ins rGPR:$Rn,rGPR:$Rm), IIC_iMAC64, "smlsld",
2779 "\t$Ra, $Rd, $Rn, $Rm", []>,
Jim Grosbacha7603982011-07-01 21:12:19 +00002780 Requires<[IsThumb2, HasThumb2DSP]>;
Owen Anderson821752e2010-11-18 20:32:18 +00002781def t2SMLSLDX : T2FourReg_mac<1, 0b101, 0b1101, (outs rGPR:$Ra,rGPR:$Rd),
2782 (ins rGPR:$Rm,rGPR:$Rn), IIC_iMAC64, "smlsldx",
Jim Grosbach7ff24722011-09-16 17:10:44 +00002783 "\t$Ra, $Rd, $Rn, $Rm", []>,
Jim Grosbacha7603982011-07-01 21:12:19 +00002784 Requires<[IsThumb2, HasThumb2DSP]>;
Evan Chengf49810c2009-06-23 17:48:47 +00002785
2786//===----------------------------------------------------------------------===//
Evan Cheng734f63b2011-06-21 19:00:54 +00002787// Division Instructions.
2788// Signed and unsigned division on v7-M
2789//
2790def t2SDIV : T2ThreeReg<(outs rGPR:$Rd), (ins rGPR:$Rn, rGPR:$Rm), IIC_iALUi,
2791 "sdiv", "\t$Rd, $Rn, $Rm",
2792 [(set rGPR:$Rd, (sdiv rGPR:$Rn, rGPR:$Rm))]>,
2793 Requires<[HasDivide, IsThumb2]> {
2794 let Inst{31-27} = 0b11111;
2795 let Inst{26-21} = 0b011100;
2796 let Inst{20} = 0b1;
2797 let Inst{15-12} = 0b1111;
2798 let Inst{7-4} = 0b1111;
2799}
2800
2801def t2UDIV : T2ThreeReg<(outs rGPR:$Rd), (ins rGPR:$Rn, rGPR:$Rm), IIC_iALUi,
2802 "udiv", "\t$Rd, $Rn, $Rm",
2803 [(set rGPR:$Rd, (udiv rGPR:$Rn, rGPR:$Rm))]>,
2804 Requires<[HasDivide, IsThumb2]> {
2805 let Inst{31-27} = 0b11111;
2806 let Inst{26-21} = 0b011101;
2807 let Inst{20} = 0b1;
2808 let Inst{15-12} = 0b1111;
2809 let Inst{7-4} = 0b1111;
2810}
2811
2812//===----------------------------------------------------------------------===//
Evan Chengf49810c2009-06-23 17:48:47 +00002813// Misc. Arithmetic Instructions.
2814//
2815
Jim Grosbach80dc1162010-02-16 21:23:02 +00002816class T2I_misc<bits<2> op1, bits<2> op2, dag oops, dag iops,
2817 InstrItinClass itin, string opc, string asm, list<dag> pattern>
Owen Anderson612fb5b2010-11-18 21:15:19 +00002818 : T2ThreeReg<oops, iops, itin, opc, asm, pattern> {
Johnny Chend68e1192009-12-15 17:24:14 +00002819 let Inst{31-27} = 0b11111;
2820 let Inst{26-22} = 0b01010;
2821 let Inst{21-20} = op1;
2822 let Inst{15-12} = 0b1111;
2823 let Inst{7-6} = 0b10;
2824 let Inst{5-4} = op2;
Jim Grosbach86386922010-12-08 22:10:43 +00002825 let Rn{3-0} = Rm;
Johnny Chend68e1192009-12-15 17:24:14 +00002826}
Evan Chengf49810c2009-06-23 17:48:47 +00002827
Owen Anderson612fb5b2010-11-18 21:15:19 +00002828def t2CLZ : T2I_misc<0b11, 0b00, (outs rGPR:$Rd), (ins rGPR:$Rm), IIC_iUNAr,
2829 "clz", "\t$Rd, $Rm", [(set rGPR:$Rd, (ctlz rGPR:$Rm))]>;
Evan Chengf49810c2009-06-23 17:48:47 +00002830
Owen Anderson612fb5b2010-11-18 21:15:19 +00002831def t2RBIT : T2I_misc<0b01, 0b10, (outs rGPR:$Rd), (ins rGPR:$Rm), IIC_iUNAr,
2832 "rbit", "\t$Rd, $Rm",
2833 [(set rGPR:$Rd, (ARMrbit rGPR:$Rm))]>;
Jim Grosbach3482c802010-01-18 19:58:49 +00002834
Owen Anderson612fb5b2010-11-18 21:15:19 +00002835def t2REV : T2I_misc<0b01, 0b00, (outs rGPR:$Rd), (ins rGPR:$Rm), IIC_iUNAr,
2836 "rev", ".w\t$Rd, $Rm", [(set rGPR:$Rd, (bswap rGPR:$Rm))]>;
Johnny Chend68e1192009-12-15 17:24:14 +00002837
Owen Anderson612fb5b2010-11-18 21:15:19 +00002838def t2REV16 : T2I_misc<0b01, 0b01, (outs rGPR:$Rd), (ins rGPR:$Rm), IIC_iUNAr,
2839 "rev16", ".w\t$Rd, $Rm",
Evan Cheng9568e5c2011-06-21 06:01:08 +00002840 [(set rGPR:$Rd, (rotr (bswap rGPR:$Rm), (i32 16)))]>;
Evan Cheng6d6c55b2011-06-17 20:47:21 +00002841
Owen Anderson612fb5b2010-11-18 21:15:19 +00002842def t2REVSH : T2I_misc<0b01, 0b11, (outs rGPR:$Rd), (ins rGPR:$Rm), IIC_iUNAr,
2843 "revsh", ".w\t$Rd, $Rm",
Evan Cheng9568e5c2011-06-21 06:01:08 +00002844 [(set rGPR:$Rd, (sra (bswap rGPR:$Rm), (i32 16)))]>;
Evan Cheng3f30af32011-03-18 21:52:42 +00002845
Evan Chengf60ceac2011-06-15 17:17:48 +00002846def : T2Pat<(or (sra (shl rGPR:$Rm, (i32 24)), (i32 16)),
Evan Cheng9568e5c2011-06-21 06:01:08 +00002847 (and (srl rGPR:$Rm, (i32 8)), 0xFF)),
Evan Chengf60ceac2011-06-15 17:17:48 +00002848 (t2REVSH rGPR:$Rm)>;
2849
Owen Anderson612fb5b2010-11-18 21:15:19 +00002850def t2PKHBT : T2ThreeReg<
Jim Grosbach0b692472011-09-14 23:16:41 +00002851 (outs rGPR:$Rd), (ins rGPR:$Rn, rGPR:$Rm, pkh_lsl_amt:$sh),
2852 IIC_iBITsi, "pkhbt", "\t$Rd, $Rn, $Rm$sh",
Owen Anderson612fb5b2010-11-18 21:15:19 +00002853 [(set rGPR:$Rd, (or (and rGPR:$Rn, 0xFFFF),
Jim Grosbach1769a3d2011-07-20 20:49:03 +00002854 (and (shl rGPR:$Rm, pkh_lsl_amt:$sh),
Jim Grosbachb1dc3932010-05-05 20:44:35 +00002855 0xFFFF0000)))]>,
Jim Grosbach9729d2e2010-11-01 15:59:52 +00002856 Requires<[HasT2ExtractPack, IsThumb2]> {
Johnny Chend68e1192009-12-15 17:24:14 +00002857 let Inst{31-27} = 0b11101;
2858 let Inst{26-25} = 0b01;
2859 let Inst{24-20} = 0b01100;
2860 let Inst{5} = 0; // BT form
2861 let Inst{4} = 0;
Jim Grosbach7a088642010-11-19 17:11:02 +00002862
Jim Grosbacha0472dc2011-07-20 20:32:09 +00002863 bits<5> sh;
2864 let Inst{14-12} = sh{4-2};
2865 let Inst{7-6} = sh{1-0};
Johnny Chend68e1192009-12-15 17:24:14 +00002866}
Evan Cheng40289b02009-07-07 05:35:52 +00002867
2868// Alternate cases for PKHBT where identities eliminate some nodes.
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002869def : T2Pat<(or (and rGPR:$src1, 0xFFFF), (and rGPR:$src2, 0xFFFF0000)),
2870 (t2PKHBT rGPR:$src1, rGPR:$src2, 0)>,
Jim Grosbach9729d2e2010-11-01 15:59:52 +00002871 Requires<[HasT2ExtractPack, IsThumb2]>;
Bob Wilsonf955f292010-08-17 17:23:19 +00002872def : T2Pat<(or (and rGPR:$src1, 0xFFFF), (shl rGPR:$src2, imm16_31:$sh)),
Jim Grosbacha0472dc2011-07-20 20:32:09 +00002873 (t2PKHBT rGPR:$src1, rGPR:$src2, imm16_31:$sh)>,
Jim Grosbach9729d2e2010-11-01 15:59:52 +00002874 Requires<[HasT2ExtractPack, IsThumb2]>;
Evan Cheng40289b02009-07-07 05:35:52 +00002875
Bob Wilsondc66eda2010-08-16 22:26:55 +00002876// Note: Shifts of 1-15 bits will be transformed to srl instead of sra and
2877// will match the pattern below.
Owen Anderson612fb5b2010-11-18 21:15:19 +00002878def t2PKHTB : T2ThreeReg<
Jim Grosbach0b692472011-09-14 23:16:41 +00002879 (outs rGPR:$Rd), (ins rGPR:$Rn, rGPR:$Rm, pkh_asr_amt:$sh),
2880 IIC_iBITsi, "pkhtb", "\t$Rd, $Rn, $Rm$sh",
Owen Anderson612fb5b2010-11-18 21:15:19 +00002881 [(set rGPR:$Rd, (or (and rGPR:$Rn, 0xFFFF0000),
Jim Grosbach1769a3d2011-07-20 20:49:03 +00002882 (and (sra rGPR:$Rm, pkh_asr_amt:$sh),
Bob Wilsonf955f292010-08-17 17:23:19 +00002883 0xFFFF)))]>,
Jim Grosbach9729d2e2010-11-01 15:59:52 +00002884 Requires<[HasT2ExtractPack, IsThumb2]> {
Johnny Chend68e1192009-12-15 17:24:14 +00002885 let Inst{31-27} = 0b11101;
2886 let Inst{26-25} = 0b01;
2887 let Inst{24-20} = 0b01100;
2888 let Inst{5} = 1; // TB form
2889 let Inst{4} = 0;
Jim Grosbach7a088642010-11-19 17:11:02 +00002890
Jim Grosbacha0472dc2011-07-20 20:32:09 +00002891 bits<5> sh;
2892 let Inst{14-12} = sh{4-2};
2893 let Inst{7-6} = sh{1-0};
Johnny Chend68e1192009-12-15 17:24:14 +00002894}
Evan Cheng40289b02009-07-07 05:35:52 +00002895
2896// Alternate cases for PKHTB where identities eliminate some nodes. Note that
2897// a shift amount of 0 is *not legal* here, it is PKHBT instead.
Bob Wilsondc66eda2010-08-16 22:26:55 +00002898def : T2Pat<(or (and rGPR:$src1, 0xFFFF0000), (srl rGPR:$src2, imm16_31:$sh)),
Jim Grosbacha0472dc2011-07-20 20:32:09 +00002899 (t2PKHTB rGPR:$src1, rGPR:$src2, imm16_31:$sh)>,
Jim Grosbach9729d2e2010-11-01 15:59:52 +00002900 Requires<[HasT2ExtractPack, IsThumb2]>;
Jim Grosbach6ccfc502010-07-30 02:41:01 +00002901def : T2Pat<(or (and rGPR:$src1, 0xFFFF0000),
Bob Wilsonf955f292010-08-17 17:23:19 +00002902 (and (srl rGPR:$src2, imm1_15:$sh), 0xFFFF)),
Jim Grosbacha0472dc2011-07-20 20:32:09 +00002903 (t2PKHTB rGPR:$src1, rGPR:$src2, imm1_15:$sh)>,
Jim Grosbach9729d2e2010-11-01 15:59:52 +00002904 Requires<[HasT2ExtractPack, IsThumb2]>;
Evan Chengf49810c2009-06-23 17:48:47 +00002905
2906//===----------------------------------------------------------------------===//
2907// Comparison Instructions...
2908//
Johnny Chend68e1192009-12-15 17:24:14 +00002909defm t2CMP : T2I_cmp_irs<0b1101, "cmp",
Evan Cheng5d42c562010-09-29 00:49:25 +00002910 IIC_iCMPi, IIC_iCMPr, IIC_iCMPsi,
Jim Grosbach9249ef32012-08-02 21:59:52 +00002911 BinOpFrag<(ARMcmp node:$LHS, node:$RHS)>>;
Jim Grosbach97a884d2010-12-07 20:41:06 +00002912
Jim Grosbachef88a922011-09-06 21:44:58 +00002913def : T2Pat<(ARMcmpZ GPRnopc:$lhs, t2_so_imm:$imm),
2914 (t2CMPri GPRnopc:$lhs, t2_so_imm:$imm)>;
2915def : T2Pat<(ARMcmpZ GPRnopc:$lhs, rGPR:$rhs),
2916 (t2CMPrr GPRnopc:$lhs, rGPR:$rhs)>;
2917def : T2Pat<(ARMcmpZ GPRnopc:$lhs, t2_so_reg:$rhs),
2918 (t2CMPrs GPRnopc:$lhs, t2_so_reg:$rhs)>;
Evan Chengf49810c2009-06-23 17:48:47 +00002919
Bill Wendlingad5c8802012-06-11 08:07:26 +00002920let isCompare = 1, Defs = [CPSR] in {
2921 // shifted imm
2922 def t2CMNri : T2OneRegCmpImm<
2923 (outs), (ins GPRnopc:$Rn, t2_so_imm:$imm), IIC_iCMPi,
2924 "cmn", ".w\t$Rn, $imm",
2925 [(ARMcmn GPRnopc:$Rn, (ineg t2_so_imm:$imm))]> {
2926 let Inst{31-27} = 0b11110;
2927 let Inst{25} = 0;
2928 let Inst{24-21} = 0b1000;
2929 let Inst{20} = 1; // The S bit.
2930 let Inst{15} = 0;
2931 let Inst{11-8} = 0b1111; // Rd
2932 }
2933 // register
2934 def t2CMNzrr : T2TwoRegCmp<
2935 (outs), (ins GPRnopc:$Rn, rGPR:$Rm), IIC_iCMPr,
2936 "cmn", ".w\t$Rn, $Rm",
2937 [(BinOpFrag<(ARMcmpZ node:$LHS,(ineg node:$RHS))>
2938 GPRnopc:$Rn, rGPR:$Rm)]> {
2939 let Inst{31-27} = 0b11101;
2940 let Inst{26-25} = 0b01;
2941 let Inst{24-21} = 0b1000;
2942 let Inst{20} = 1; // The S bit.
2943 let Inst{14-12} = 0b000; // imm3
2944 let Inst{11-8} = 0b1111; // Rd
2945 let Inst{7-6} = 0b00; // imm2
2946 let Inst{5-4} = 0b00; // type
2947 }
2948 // shifted register
2949 def t2CMNzrs : T2OneRegCmpShiftedReg<
2950 (outs), (ins GPRnopc:$Rn, t2_so_reg:$ShiftedRm), IIC_iCMPsi,
2951 "cmn", ".w\t$Rn, $ShiftedRm",
2952 [(BinOpFrag<(ARMcmpZ node:$LHS,(ineg node:$RHS))>
2953 GPRnopc:$Rn, t2_so_reg:$ShiftedRm)]> {
2954 let Inst{31-27} = 0b11101;
2955 let Inst{26-25} = 0b01;
2956 let Inst{24-21} = 0b1000;
2957 let Inst{20} = 1; // The S bit.
2958 let Inst{11-8} = 0b1111; // Rd
2959 }
2960}
Dan Gohman4b7dff92010-08-26 15:50:25 +00002961
Bill Wendlingad5c8802012-06-11 08:07:26 +00002962// Assembler aliases w/o the ".w" suffix.
2963// No alias here for 'rr' version as not all instantiations of this multiclass
2964// want one (CMP in particular, does not).
Jim Grosbach9249ef32012-08-02 21:59:52 +00002965def : t2InstAlias<"cmn${p} $Rn, $imm",
2966 (t2CMNri GPRnopc:$Rn, t2_so_imm:$imm, pred:$p)>;
2967def : t2InstAlias<"cmn${p} $Rn, $shift",
2968 (t2CMNzrs GPRnopc:$Rn, t2_so_reg:$shift, pred:$p)>;
Dan Gohman4b7dff92010-08-26 15:50:25 +00002969
Bill Wendlingad5c8802012-06-11 08:07:26 +00002970def : T2Pat<(ARMcmp GPR:$src, t2_so_imm_neg:$imm),
2971 (t2CMNri GPR:$src, t2_so_imm_neg:$imm)>;
2972
2973def : T2Pat<(ARMcmpZ GPRnopc:$src, t2_so_imm_neg:$imm),
2974 (t2CMNri GPRnopc:$src, t2_so_imm_neg:$imm)>;
Evan Chengf49810c2009-06-23 17:48:47 +00002975
Johnny Chend68e1192009-12-15 17:24:14 +00002976defm t2TST : T2I_cmp_irs<0b0000, "tst",
Evan Cheng5d42c562010-09-29 00:49:25 +00002977 IIC_iTSTi, IIC_iTSTr, IIC_iTSTsi,
Jim Grosbach9249ef32012-08-02 21:59:52 +00002978 BinOpFrag<(ARMcmpZ (and_su node:$LHS, node:$RHS), 0)>>;
Johnny Chend68e1192009-12-15 17:24:14 +00002979defm t2TEQ : T2I_cmp_irs<0b0100, "teq",
Evan Cheng5d42c562010-09-29 00:49:25 +00002980 IIC_iTSTi, IIC_iTSTr, IIC_iTSTsi,
Jim Grosbach9249ef32012-08-02 21:59:52 +00002981 BinOpFrag<(ARMcmpZ (xor_su node:$LHS, node:$RHS), 0)>>;
Evan Chengf49810c2009-06-23 17:48:47 +00002982
Evan Chenge253c952009-07-07 20:39:03 +00002983// Conditional moves
2984// FIXME: should be able to write a pattern for ARMcmov, but can't use
Jim Grosbach64171712010-02-16 21:07:46 +00002985// a two-value operand where a dag node expects two operands. :(
Evan Cheng63f35442010-11-13 02:25:14 +00002986let neverHasSideEffects = 1 in {
Jakob Stoklund Olesenc5041ca2012-04-04 18:23:42 +00002987
Jakob Stoklund Olesen053b5b02012-08-16 23:14:20 +00002988let isCommutable = 1, isSelect = 1 in
Jim Grosbachefeedce2011-07-01 17:14:11 +00002989def t2MOVCCr : t2PseudoInst<(outs rGPR:$Rd),
2990 (ins rGPR:$false, rGPR:$Rm, pred:$p),
Owen Anderson16884412011-07-13 23:22:26 +00002991 4, IIC_iCMOVr,
Owen Anderson8ee97792010-11-18 21:46:31 +00002992 [/*(set rGPR:$Rd, (ARMcmov rGPR:$false, rGPR:$Rm, imm:$cc, CCR:$ccr))*/]>,
Jim Grosbachefeedce2011-07-01 17:14:11 +00002993 RegConstraint<"$false = $Rd">;
2994
2995let isMoveImm = 1 in
2996def t2MOVCCi : t2PseudoInst<(outs rGPR:$Rd),
2997 (ins rGPR:$false, t2_so_imm:$imm, pred:$p),
Owen Anderson16884412011-07-13 23:22:26 +00002998 4, IIC_iCMOVi,
Jim Grosbachefeedce2011-07-01 17:14:11 +00002999[/*(set rGPR:$Rd,(ARMcmov rGPR:$false,t2_so_imm:$imm, imm:$cc, CCR:$ccr))*/]>,
3000 RegConstraint<"$false = $Rd">;
Evan Chenge253c952009-07-07 20:39:03 +00003001
Jim Grosbach6b8f1e32011-06-27 23:54:06 +00003002// FIXME: Pseudo-ize these. For now, just mark codegen only.
3003let isCodeGenOnly = 1 in {
Evan Chengc4af4632010-11-17 20:13:28 +00003004let isMoveImm = 1 in
Jim Grosbachffa32252011-07-19 19:13:28 +00003005def t2MOVCCi16 : T2I<(outs rGPR:$Rd), (ins rGPR:$false, imm0_65535_expr:$imm),
Evan Cheng875a6ac2010-11-12 22:42:47 +00003006 IIC_iCMOVi,
Owen Andersonc56dcbf2010-11-16 00:29:56 +00003007 "movw", "\t$Rd, $imm", []>,
3008 RegConstraint<"$false = $Rd"> {
Jim Grosbacha4257162010-10-07 00:53:56 +00003009 let Inst{31-27} = 0b11110;
3010 let Inst{25} = 1;
3011 let Inst{24-21} = 0b0010;
3012 let Inst{20} = 0; // The S bit.
3013 let Inst{15} = 0;
Jim Grosbach7a088642010-11-19 17:11:02 +00003014
Owen Andersonc56dcbf2010-11-16 00:29:56 +00003015 bits<4> Rd;
3016 bits<16> imm;
Jim Grosbach7a088642010-11-19 17:11:02 +00003017
Jim Grosbach86386922010-12-08 22:10:43 +00003018 let Inst{11-8} = Rd;
Owen Andersonc56dcbf2010-11-16 00:29:56 +00003019 let Inst{19-16} = imm{15-12};
3020 let Inst{26} = imm{11};
3021 let Inst{14-12} = imm{10-8};
3022 let Inst{7-0} = imm{7-0};
Jim Grosbacha4257162010-10-07 00:53:56 +00003023}
3024
Evan Chengc4af4632010-11-17 20:13:28 +00003025let isMoveImm = 1 in
Evan Cheng63f35442010-11-13 02:25:14 +00003026def t2MOVCCi32imm : PseudoInst<(outs rGPR:$dst),
3027 (ins rGPR:$false, i32imm:$src, pred:$p),
Jim Grosbach99594eb2010-11-18 01:38:26 +00003028 IIC_iCMOVix2, []>, RegConstraint<"$false = $dst">;
Evan Cheng63f35442010-11-13 02:25:14 +00003029
Evan Chengc4af4632010-11-17 20:13:28 +00003030let isMoveImm = 1 in
Owen Anderson8ee97792010-11-18 21:46:31 +00003031def t2MVNCCi : T2OneRegImm<(outs rGPR:$Rd), (ins rGPR:$false, t2_so_imm:$imm),
Jim Grosbach9c5edc02011-10-26 17:28:15 +00003032 IIC_iCMOVi, "mvn", "\t$Rd, $imm",
Owen Anderson8ee97792010-11-18 21:46:31 +00003033[/*(set rGPR:$Rd,(ARMcmov rGPR:$false,t2_so_imm_not:$imm,
Evan Cheng875a6ac2010-11-12 22:42:47 +00003034 imm:$cc, CCR:$ccr))*/]>,
Owen Anderson8ee97792010-11-18 21:46:31 +00003035 RegConstraint<"$false = $Rd"> {
Evan Cheng875a6ac2010-11-12 22:42:47 +00003036 let Inst{31-27} = 0b11110;
3037 let Inst{25} = 0;
3038 let Inst{24-21} = 0b0011;
3039 let Inst{20} = 0; // The S bit.
3040 let Inst{19-16} = 0b1111; // Rn
3041 let Inst{15} = 0;
3042}
3043
Johnny Chend68e1192009-12-15 17:24:14 +00003044class T2I_movcc_sh<bits<2> opcod, dag oops, dag iops, InstrItinClass itin,
3045 string opc, string asm, list<dag> pattern>
Owen Andersonbb6315d2010-11-15 19:58:36 +00003046 : T2TwoRegShiftImm<oops, iops, itin, opc, asm, pattern> {
Johnny Chend68e1192009-12-15 17:24:14 +00003047 let Inst{31-27} = 0b11101;
3048 let Inst{26-25} = 0b01;
3049 let Inst{24-21} = 0b0010;
3050 let Inst{20} = 0; // The S bit.
3051 let Inst{19-16} = 0b1111; // Rn
3052 let Inst{5-4} = opcod; // Shift type.
3053}
Owen Andersonbb6315d2010-11-15 19:58:36 +00003054def t2MOVCClsl : T2I_movcc_sh<0b00, (outs rGPR:$Rd),
3055 (ins rGPR:$false, rGPR:$Rm, i32imm:$imm),
3056 IIC_iCMOVsi, "lsl", ".w\t$Rd, $Rm, $imm", []>,
3057 RegConstraint<"$false = $Rd">;
3058def t2MOVCClsr : T2I_movcc_sh<0b01, (outs rGPR:$Rd),
3059 (ins rGPR:$false, rGPR:$Rm, i32imm:$imm),
3060 IIC_iCMOVsi, "lsr", ".w\t$Rd, $Rm, $imm", []>,
3061 RegConstraint<"$false = $Rd">;
3062def t2MOVCCasr : T2I_movcc_sh<0b10, (outs rGPR:$Rd),
3063 (ins rGPR:$false, rGPR:$Rm, i32imm:$imm),
3064 IIC_iCMOVsi, "asr", ".w\t$Rd, $Rm, $imm", []>,
3065 RegConstraint<"$false = $Rd">;
3066def t2MOVCCror : T2I_movcc_sh<0b11, (outs rGPR:$Rd),
3067 (ins rGPR:$false, rGPR:$Rm, i32imm:$imm),
3068 IIC_iCMOVsi, "ror", ".w\t$Rd, $Rm, $imm", []>,
3069 RegConstraint<"$false = $Rd">;
Evan Cheng03a18522012-03-20 21:28:05 +00003070} // isCodeGenOnly = 1
Evan Chengc892aeb2012-02-23 01:19:06 +00003071
Evan Cheng03a18522012-03-20 21:28:05 +00003072multiclass T2I_bincc_irs<Instruction iri, Instruction irr, Instruction irs,
Evan Chengc892aeb2012-02-23 01:19:06 +00003073 InstrItinClass iii, InstrItinClass iir, InstrItinClass iis> {
3074 // shifted imm
Evan Cheng03a18522012-03-20 21:28:05 +00003075 def ri : t2PseudoExpand<(outs rGPR:$Rd),
Jakob Stoklund Olesen65bf80e2012-08-15 16:17:24 +00003076 (ins rGPR:$Rfalse, rGPR:$Rn, t2_so_imm:$imm,
3077 pred:$p, cc_out:$s),
Evan Cheng03a18522012-03-20 21:28:05 +00003078 4, iii, [],
3079 (iri rGPR:$Rd, rGPR:$Rn, t2_so_imm:$imm, pred:$p, cc_out:$s)>,
Jakob Stoklund Olesen65bf80e2012-08-15 16:17:24 +00003080 RegConstraint<"$Rfalse = $Rd">;
Evan Chengc892aeb2012-02-23 01:19:06 +00003081 // register
Evan Cheng03a18522012-03-20 21:28:05 +00003082 def rr : t2PseudoExpand<(outs rGPR:$Rd),
Jakob Stoklund Olesen65bf80e2012-08-15 16:17:24 +00003083 (ins rGPR:$Rfalse, rGPR:$Rn, rGPR:$Rm,
3084 pred:$p, cc_out:$s),
Evan Cheng03a18522012-03-20 21:28:05 +00003085 4, iir, [],
3086 (irr rGPR:$Rd, rGPR:$Rn, rGPR:$Rm, pred:$p, cc_out:$s)>,
Jakob Stoklund Olesen65bf80e2012-08-15 16:17:24 +00003087 RegConstraint<"$Rfalse = $Rd">;
Evan Chengc892aeb2012-02-23 01:19:06 +00003088 // shifted register
Evan Cheng03a18522012-03-20 21:28:05 +00003089 def rs : t2PseudoExpand<(outs rGPR:$Rd),
Jakob Stoklund Olesen65bf80e2012-08-15 16:17:24 +00003090 (ins rGPR:$Rfalse, rGPR:$Rn, t2_so_reg:$ShiftedRm,
3091 pred:$p, cc_out:$s),
Evan Cheng03a18522012-03-20 21:28:05 +00003092 4, iis, [],
3093 (irs rGPR:$Rd, rGPR:$Rn, t2_so_reg:$ShiftedRm, pred:$p, cc_out:$s)>,
Jakob Stoklund Olesen65bf80e2012-08-15 16:17:24 +00003094 RegConstraint<"$Rfalse = $Rd">;
Evan Chengc892aeb2012-02-23 01:19:06 +00003095} // T2I_bincc_irs
3096
Evan Cheng03a18522012-03-20 21:28:05 +00003097defm t2ANDCC : T2I_bincc_irs<t2ANDri, t2ANDrr, t2ANDrs,
3098 IIC_iBITi, IIC_iBITr, IIC_iBITsi>;
3099defm t2ORRCC : T2I_bincc_irs<t2ORRri, t2ORRrr, t2ORRrs,
3100 IIC_iBITi, IIC_iBITr, IIC_iBITsi>;
3101defm t2EORCC : T2I_bincc_irs<t2EORri, t2EORrr, t2EORrs,
3102 IIC_iBITi, IIC_iBITr, IIC_iBITsi>;
Jim Grosbachefeedce2011-07-01 17:14:11 +00003103} // neverHasSideEffects
Evan Cheng13f8b362009-08-01 01:43:45 +00003104
David Goodwin5e47a9a2009-06-30 18:04:13 +00003105//===----------------------------------------------------------------------===//
Jim Grosbachc219e4d2009-12-14 18:56:47 +00003106// Atomic operations intrinsics
3107//
3108
3109// memory barriers protect the atomic sequences
3110let hasSideEffects = 1 in {
Bob Wilsonf74a4292010-10-30 00:54:37 +00003111def t2DMB : AInoP<(outs), (ins memb_opt:$opt), ThumbFrm, NoItinerary,
3112 "dmb", "\t$opt", [(ARMMemBarrier (i32 imm:$opt))]>,
3113 Requires<[IsThumb, HasDB]> {
3114 bits<4> opt;
3115 let Inst{31-4} = 0xf3bf8f5;
3116 let Inst{3-0} = opt;
Jim Grosbachc219e4d2009-12-14 18:56:47 +00003117}
3118}
3119
Bob Wilsonf74a4292010-10-30 00:54:37 +00003120def t2DSB : AInoP<(outs), (ins memb_opt:$opt), ThumbFrm, NoItinerary,
Jim Grosbachaa833e52011-09-06 22:53:27 +00003121 "dsb", "\t$opt", []>,
Bob Wilsonf74a4292010-10-30 00:54:37 +00003122 Requires<[IsThumb, HasDB]> {
3123 bits<4> opt;
3124 let Inst{31-4} = 0xf3bf8f4;
3125 let Inst{3-0} = opt;
Johnny Chena4339822010-03-03 00:16:28 +00003126}
3127
Jim Grosbachaa833e52011-09-06 22:53:27 +00003128def t2ISB : AInoP<(outs), (ins memb_opt:$opt), ThumbFrm, NoItinerary,
3129 "isb", "\t$opt",
Evan Cheng97a45432012-04-27 01:27:19 +00003130 []>, Requires<[IsThumb, HasDB]> {
Jim Grosbachaa833e52011-09-06 22:53:27 +00003131 bits<4> opt;
Bob Wilsonf74a4292010-10-30 00:54:37 +00003132 let Inst{31-4} = 0xf3bf8f6;
Jim Grosbachaa833e52011-09-06 22:53:27 +00003133 let Inst{3-0} = opt;
Johnny Chena4339822010-03-03 00:16:28 +00003134}
3135
Owen Anderson16884412011-07-13 23:22:26 +00003136class T2I_ldrex<bits<2> opcod, dag oops, dag iops, AddrMode am, int sz,
Johnny Chend68e1192009-12-15 17:24:14 +00003137 InstrItinClass itin, string opc, string asm, string cstr,
3138 list<dag> pattern, bits<4> rt2 = 0b1111>
3139 : Thumb2I<oops, iops, am, sz, itin, opc, asm, cstr, pattern> {
3140 let Inst{31-27} = 0b11101;
3141 let Inst{26-20} = 0b0001101;
3142 let Inst{11-8} = rt2;
3143 let Inst{7-6} = 0b01;
3144 let Inst{5-4} = opcod;
3145 let Inst{3-0} = 0b1111;
Jim Grosbach7a088642010-11-19 17:11:02 +00003146
Bruno Cardoso Lopes505f3cd2011-03-24 21:04:58 +00003147 bits<4> addr;
Owen Anderson91a7c592010-11-19 00:28:38 +00003148 bits<4> Rt;
Bruno Cardoso Lopes505f3cd2011-03-24 21:04:58 +00003149 let Inst{19-16} = addr;
Jim Grosbach86386922010-12-08 22:10:43 +00003150 let Inst{15-12} = Rt;
Johnny Chend68e1192009-12-15 17:24:14 +00003151}
Owen Anderson16884412011-07-13 23:22:26 +00003152class T2I_strex<bits<2> opcod, dag oops, dag iops, AddrMode am, int sz,
Johnny Chend68e1192009-12-15 17:24:14 +00003153 InstrItinClass itin, string opc, string asm, string cstr,
3154 list<dag> pattern, bits<4> rt2 = 0b1111>
3155 : Thumb2I<oops, iops, am, sz, itin, opc, asm, cstr, pattern> {
3156 let Inst{31-27} = 0b11101;
3157 let Inst{26-20} = 0b0001100;
3158 let Inst{11-8} = rt2;
3159 let Inst{7-6} = 0b01;
3160 let Inst{5-4} = opcod;
Jim Grosbach7a088642010-11-19 17:11:02 +00003161
Owen Anderson91a7c592010-11-19 00:28:38 +00003162 bits<4> Rd;
Bruno Cardoso Lopes505f3cd2011-03-24 21:04:58 +00003163 bits<4> addr;
Owen Anderson91a7c592010-11-19 00:28:38 +00003164 bits<4> Rt;
Bruno Cardoso Lopes505f3cd2011-03-24 21:04:58 +00003165 let Inst{3-0} = Rd;
3166 let Inst{19-16} = addr;
Jim Grosbach86386922010-12-08 22:10:43 +00003167 let Inst{15-12} = Rt;
Johnny Chend68e1192009-12-15 17:24:14 +00003168}
3169
Jim Grosbachc219e4d2009-12-14 18:56:47 +00003170let mayLoad = 1 in {
Jim Grosbachb6aed502011-09-09 18:37:27 +00003171def t2LDREXB : T2I_ldrex<0b00, (outs rGPR:$Rt), (ins addr_offset_none:$addr),
Owen Anderson16884412011-07-13 23:22:26 +00003172 AddrModeNone, 4, NoItinerary,
Jim Grosbachf921c0fe2011-06-13 22:54:22 +00003173 "ldrexb", "\t$Rt, $addr", "", []>;
Jim Grosbachb6aed502011-09-09 18:37:27 +00003174def t2LDREXH : T2I_ldrex<0b01, (outs rGPR:$Rt), (ins addr_offset_none:$addr),
Owen Anderson16884412011-07-13 23:22:26 +00003175 AddrModeNone, 4, NoItinerary,
Jim Grosbachf921c0fe2011-06-13 22:54:22 +00003176 "ldrexh", "\t$Rt, $addr", "", []>;
Jim Grosbachb6aed502011-09-09 18:37:27 +00003177def t2LDREX : Thumb2I<(outs rGPR:$Rt), (ins t2addrmode_imm0_1020s4:$addr),
Owen Anderson16884412011-07-13 23:22:26 +00003178 AddrModeNone, 4, NoItinerary,
Jim Grosbachf921c0fe2011-06-13 22:54:22 +00003179 "ldrex", "\t$Rt, $addr", "", []> {
Jim Grosbachb6aed502011-09-09 18:37:27 +00003180 bits<4> Rt;
3181 bits<12> addr;
Johnny Chend68e1192009-12-15 17:24:14 +00003182 let Inst{31-27} = 0b11101;
3183 let Inst{26-20} = 0b0000101;
Jim Grosbachb6aed502011-09-09 18:37:27 +00003184 let Inst{19-16} = addr{11-8};
Owen Anderson808c7d12010-12-10 21:52:38 +00003185 let Inst{15-12} = Rt;
Jim Grosbachb6aed502011-09-09 18:37:27 +00003186 let Inst{11-8} = 0b1111;
3187 let Inst{7-0} = addr{7-0};
Johnny Chend68e1192009-12-15 17:24:14 +00003188}
Bruno Cardoso Lopesa0112d02011-05-28 04:07:29 +00003189let hasExtraDefRegAllocReq = 1 in
3190def t2LDREXD : T2I_ldrex<0b11, (outs rGPR:$Rt, rGPR:$Rt2),
Jim Grosbachb6aed502011-09-09 18:37:27 +00003191 (ins addr_offset_none:$addr),
Owen Anderson16884412011-07-13 23:22:26 +00003192 AddrModeNone, 4, NoItinerary,
Bruno Cardoso Lopes505f3cd2011-03-24 21:04:58 +00003193 "ldrexd", "\t$Rt, $Rt2, $addr", "",
Owen Anderson91a7c592010-11-19 00:28:38 +00003194 [], {?, ?, ?, ?}> {
3195 bits<4> Rt2;
Jim Grosbach86386922010-12-08 22:10:43 +00003196 let Inst{11-8} = Rt2;
Owen Anderson91a7c592010-11-19 00:28:38 +00003197}
Jim Grosbachc219e4d2009-12-14 18:56:47 +00003198}
3199
Owen Anderson91a7c592010-11-19 00:28:38 +00003200let mayStore = 1, Constraints = "@earlyclobber $Rd" in {
Jim Grosbachf921c0fe2011-06-13 22:54:22 +00003201def t2STREXB : T2I_strex<0b00, (outs rGPR:$Rd),
Jim Grosbachb6aed502011-09-09 18:37:27 +00003202 (ins rGPR:$Rt, addr_offset_none:$addr),
Owen Anderson16884412011-07-13 23:22:26 +00003203 AddrModeNone, 4, NoItinerary,
Jim Grosbachf921c0fe2011-06-13 22:54:22 +00003204 "strexb", "\t$Rd, $Rt, $addr", "", []>;
3205def t2STREXH : T2I_strex<0b01, (outs rGPR:$Rd),
Jim Grosbachb6aed502011-09-09 18:37:27 +00003206 (ins rGPR:$Rt, addr_offset_none:$addr),
Owen Anderson16884412011-07-13 23:22:26 +00003207 AddrModeNone, 4, NoItinerary,
Jim Grosbachf921c0fe2011-06-13 22:54:22 +00003208 "strexh", "\t$Rd, $Rt, $addr", "", []>;
Jim Grosbachb6aed502011-09-09 18:37:27 +00003209def t2STREX : Thumb2I<(outs rGPR:$Rd), (ins rGPR:$Rt,
3210 t2addrmode_imm0_1020s4:$addr),
Owen Anderson16884412011-07-13 23:22:26 +00003211 AddrModeNone, 4, NoItinerary,
Bruno Cardoso Lopes505f3cd2011-03-24 21:04:58 +00003212 "strex", "\t$Rd, $Rt, $addr", "",
3213 []> {
Jim Grosbachb6aed502011-09-09 18:37:27 +00003214 bits<4> Rd;
3215 bits<4> Rt;
3216 bits<12> addr;
Johnny Chend68e1192009-12-15 17:24:14 +00003217 let Inst{31-27} = 0b11101;
3218 let Inst{26-20} = 0b0000100;
Jim Grosbachb6aed502011-09-09 18:37:27 +00003219 let Inst{19-16} = addr{11-8};
Owen Anderson808c7d12010-12-10 21:52:38 +00003220 let Inst{15-12} = Rt;
Jim Grosbachb6aed502011-09-09 18:37:27 +00003221 let Inst{11-8} = Rd;
3222 let Inst{7-0} = addr{7-0};
Johnny Chend68e1192009-12-15 17:24:14 +00003223}
Anton Korobeynikov2c6d0f22012-01-23 22:57:52 +00003224let hasExtraSrcRegAllocReq = 1 in
Owen Anderson91a7c592010-11-19 00:28:38 +00003225def t2STREXD : T2I_strex<0b11, (outs rGPR:$Rd),
Jim Grosbachb6aed502011-09-09 18:37:27 +00003226 (ins rGPR:$Rt, rGPR:$Rt2, addr_offset_none:$addr),
Owen Anderson16884412011-07-13 23:22:26 +00003227 AddrModeNone, 4, NoItinerary,
Bruno Cardoso Lopes505f3cd2011-03-24 21:04:58 +00003228 "strexd", "\t$Rd, $Rt, $Rt2, $addr", "", [],
Owen Anderson91a7c592010-11-19 00:28:38 +00003229 {?, ?, ?, ?}> {
3230 bits<4> Rt2;
Jim Grosbach86386922010-12-08 22:10:43 +00003231 let Inst{11-8} = Rt2;
Owen Anderson91a7c592010-11-19 00:28:38 +00003232}
Anton Korobeynikov2c6d0f22012-01-23 22:57:52 +00003233}
Jim Grosbachc219e4d2009-12-14 18:56:47 +00003234
Jim Grosbachad2dad92011-09-06 20:27:04 +00003235def t2CLREX : T2I<(outs), (ins), NoItinerary, "clrex", "", []>,
Bruno Cardoso Lopese47f3752011-01-20 19:18:32 +00003236 Requires<[IsThumb2, HasV7]> {
3237 let Inst{31-16} = 0xf3bf;
Johnny Chen10a77e12010-03-02 22:11:06 +00003238 let Inst{15-14} = 0b10;
Bruno Cardoso Lopese47f3752011-01-20 19:18:32 +00003239 let Inst{13} = 0;
Johnny Chen10a77e12010-03-02 22:11:06 +00003240 let Inst{12} = 0;
Bruno Cardoso Lopese47f3752011-01-20 19:18:32 +00003241 let Inst{11-8} = 0b1111;
Johnny Chen10a77e12010-03-02 22:11:06 +00003242 let Inst{7-4} = 0b0010;
Bruno Cardoso Lopese47f3752011-01-20 19:18:32 +00003243 let Inst{3-0} = 0b1111;
Johnny Chen10a77e12010-03-02 22:11:06 +00003244}
3245
Jim Grosbachc219e4d2009-12-14 18:56:47 +00003246//===----------------------------------------------------------------------===//
Jim Grosbach5aa16842009-08-11 19:42:21 +00003247// SJLJ Exception handling intrinsics
Jim Grosbach1add6592009-08-13 15:11:43 +00003248// eh_sjlj_setjmp() is an instruction sequence to store the return
Jim Grosbach5aa16842009-08-11 19:42:21 +00003249// address and save #0 in R0 for the non-longjmp case.
3250// Since by its nature we may be coming from some other function to get
3251// here, and we're using the stack frame for the containing function to
3252// save/restore registers, we can't keep anything live in regs across
3253// the eh_sjlj_setjmp(), else it will almost certainly have been tromped upon
Chris Lattner7a2bdde2011-04-15 05:18:47 +00003254// when we get here from a longjmp(). We force everything out of registers
Jim Grosbach5aa16842009-08-11 19:42:21 +00003255// except for our own input by listing the relevant registers in Defs. By
3256// doing so, we also cause the prologue/epilogue code to actively preserve
3257// all of the callee-saved resgisters, which is exactly what we want.
Jim Grosbach0798edd2010-05-27 23:49:24 +00003258// $val is a scratch register for our use.
Jim Grosbacha87ded22010-02-08 23:22:00 +00003259let Defs =
Andrew Tricka1099f12011-06-07 00:08:49 +00003260 [ R0, R1, R2, R3, R4, R5, R6, R7, R8, R9, R10, R11, R12, LR, CPSR,
Jakob Stoklund Olesenece8b732012-01-13 22:55:42 +00003261 Q0, Q1, Q2, Q3, Q8, Q9, Q10, Q11, Q12, Q13, Q14, Q15],
Bill Wendling13a71212011-10-17 22:26:23 +00003262 hasSideEffects = 1, isBarrier = 1, isCodeGenOnly = 1,
3263 usesCustomInserter = 1 in {
Jim Grosbach9f134b52010-08-26 17:02:47 +00003264 def t2Int_eh_sjlj_setjmp : Thumb2XI<(outs), (ins tGPR:$src, tGPR:$val),
Owen Anderson16884412011-07-13 23:22:26 +00003265 AddrModeNone, 0, NoItinerary, "", "",
Jim Grosbach9f134b52010-08-26 17:02:47 +00003266 [(set R0, (ARMeh_sjlj_setjmp tGPR:$src, tGPR:$val))]>,
Bob Wilsonec80e262010-04-09 20:41:18 +00003267 Requires<[IsThumb2, HasVFP2]>;
Jim Grosbach5aa16842009-08-11 19:42:21 +00003268}
3269
Bob Wilsonec80e262010-04-09 20:41:18 +00003270let Defs =
Andrew Tricka1099f12011-06-07 00:08:49 +00003271 [ R0, R1, R2, R3, R4, R5, R6, R7, R8, R9, R10, R11, R12, LR, CPSR ],
Bill Wendling13a71212011-10-17 22:26:23 +00003272 hasSideEffects = 1, isBarrier = 1, isCodeGenOnly = 1,
3273 usesCustomInserter = 1 in {
Jim Grosbach9f134b52010-08-26 17:02:47 +00003274 def t2Int_eh_sjlj_setjmp_nofp : Thumb2XI<(outs), (ins tGPR:$src, tGPR:$val),
Owen Anderson16884412011-07-13 23:22:26 +00003275 AddrModeNone, 0, NoItinerary, "", "",
Jim Grosbach9f134b52010-08-26 17:02:47 +00003276 [(set R0, (ARMeh_sjlj_setjmp tGPR:$src, tGPR:$val))]>,
Bob Wilsonec80e262010-04-09 20:41:18 +00003277 Requires<[IsThumb2, NoVFP]>;
3278}
Jim Grosbach5aa16842009-08-11 19:42:21 +00003279
3280
3281//===----------------------------------------------------------------------===//
David Goodwin5e47a9a2009-06-30 18:04:13 +00003282// Control-Flow Instructions
3283//
3284
Evan Chengc50a1cb2009-07-09 22:58:39 +00003285// FIXME: remove when we have a way to marking a MI with these properties.
Evan Chengc50a1cb2009-07-09 22:58:39 +00003286// FIXME: Should pc be an implicit operand like PICADD, etc?
Evan Cheng0d92f5f2009-10-01 08:22:27 +00003287let isReturn = 1, isTerminator = 1, isBarrier = 1, mayLoad = 1,
Chris Lattner39ee0362010-10-31 19:10:56 +00003288 hasExtraDefRegAllocReq = 1, isCodeGenOnly = 1 in
Jim Grosbach53e3fc42011-07-08 17:40:42 +00003289def t2LDMIA_RET: t2PseudoExpand<(outs GPR:$wb), (ins GPR:$Rn, pred:$p,
Jim Grosbach16f99242011-06-30 18:25:42 +00003290 reglist:$regs, variable_ops),
Owen Anderson16884412011-07-13 23:22:26 +00003291 4, IIC_iLoad_mBr, [],
Jim Grosbach53e3fc42011-07-08 17:40:42 +00003292 (t2LDMIA_UPD GPR:$wb, GPR:$Rn, pred:$p, reglist:$regs)>,
Jim Grosbach16f99242011-06-30 18:25:42 +00003293 RegConstraint<"$Rn = $wb">;
Evan Chengc50a1cb2009-07-09 22:58:39 +00003294
David Goodwin5e47a9a2009-06-30 18:04:13 +00003295let isBranch = 1, isTerminator = 1, isBarrier = 1 in {
3296let isPredicable = 1 in
Owen Anderson51f6a7a2011-09-09 21:48:23 +00003297def t2B : T2I<(outs), (ins uncondbrtarget:$target), IIC_Br,
3298 "b", ".w\t$target",
Johnny Chend68e1192009-12-15 17:24:14 +00003299 [(br bb:$target)]> {
3300 let Inst{31-27} = 0b11110;
3301 let Inst{15-14} = 0b10;
3302 let Inst{12} = 1;
Owen Anderson05bf5952010-11-29 18:54:38 +00003303
3304 bits<20> target;
3305 let Inst{26} = target{19};
3306 let Inst{11} = target{18};
3307 let Inst{13} = target{17};
3308 let Inst{21-16} = target{16-11};
3309 let Inst{10-0} = target{10-0};
Kevin Enderby2a7d3a92012-04-12 23:13:34 +00003310 let DecoderMethod = "DecodeT2BInstruction";
Johnny Chend68e1192009-12-15 17:24:14 +00003311}
David Goodwin5e47a9a2009-06-30 18:04:13 +00003312
Jim Grosbacha0bb2532010-11-29 22:40:58 +00003313let isNotDuplicable = 1, isIndirectBranch = 1 in {
Jim Grosbachd4811102010-12-15 19:03:16 +00003314def t2BR_JT : t2PseudoInst<(outs),
Jim Grosbach5ca66692010-11-29 22:37:40 +00003315 (ins GPR:$target, GPR:$index, i32imm:$jt, i32imm:$id),
Owen Anderson16884412011-07-13 23:22:26 +00003316 0, IIC_Br,
Jim Grosbach5ca66692010-11-29 22:37:40 +00003317 [(ARMbr2jt GPR:$target, GPR:$index, tjumptable:$jt, imm:$id)]>;
Evan Cheng5657c012009-07-29 02:18:14 +00003318
Evan Cheng25f7cfc2009-08-01 06:13:52 +00003319// FIXME: Add a non-pc based case that can be predicated.
Jim Grosbachd4811102010-12-15 19:03:16 +00003320def t2TBB_JT : t2PseudoInst<(outs),
Jim Grosbachbc80e942011-09-19 20:31:59 +00003321 (ins GPR:$index, i32imm:$jt, i32imm:$id), 0, IIC_Br, []>;
Jim Grosbach5ca66692010-11-29 22:37:40 +00003322
Jim Grosbachd4811102010-12-15 19:03:16 +00003323def t2TBH_JT : t2PseudoInst<(outs),
Jim Grosbachbc80e942011-09-19 20:31:59 +00003324 (ins GPR:$index, i32imm:$jt, i32imm:$id), 0, IIC_Br, []>;
Jim Grosbach5ca66692010-11-29 22:37:40 +00003325
Jim Grosbach7f739be2011-09-19 22:21:13 +00003326def t2TBB : T2I<(outs), (ins addrmode_tbb:$addr), IIC_Br,
3327 "tbb", "\t$addr", []> {
Jim Grosbach5ca66692010-11-29 22:37:40 +00003328 bits<4> Rn;
3329 bits<4> Rm;
Jim Grosbachf0db2612010-12-17 18:42:56 +00003330 let Inst{31-20} = 0b111010001101;
Jim Grosbach5ca66692010-11-29 22:37:40 +00003331 let Inst{19-16} = Rn;
3332 let Inst{15-5} = 0b11110000000;
3333 let Inst{4} = 0; // B form
3334 let Inst{3-0} = Rm;
Jim Grosbach7f739be2011-09-19 22:21:13 +00003335
3336 let DecoderMethod = "DecodeThumbTableBranch";
Johnny Chend68e1192009-12-15 17:24:14 +00003337}
Evan Cheng5657c012009-07-29 02:18:14 +00003338
Jim Grosbach7f739be2011-09-19 22:21:13 +00003339def t2TBH : T2I<(outs), (ins addrmode_tbh:$addr), IIC_Br,
3340 "tbh", "\t$addr", []> {
Jim Grosbach5ca66692010-11-29 22:37:40 +00003341 bits<4> Rn;
3342 bits<4> Rm;
Jim Grosbachf0db2612010-12-17 18:42:56 +00003343 let Inst{31-20} = 0b111010001101;
Jim Grosbach5ca66692010-11-29 22:37:40 +00003344 let Inst{19-16} = Rn;
3345 let Inst{15-5} = 0b11110000000;
3346 let Inst{4} = 1; // H form
3347 let Inst{3-0} = Rm;
Jim Grosbach7f739be2011-09-19 22:21:13 +00003348
3349 let DecoderMethod = "DecodeThumbTableBranch";
Johnny Chen93042d12010-03-02 18:14:57 +00003350}
Evan Cheng5657c012009-07-29 02:18:14 +00003351} // isNotDuplicable, isIndirectBranch
3352
David Goodwinc9a59b52009-06-30 19:50:22 +00003353} // isBranch, isTerminator, isBarrier
David Goodwin5e47a9a2009-06-30 18:04:13 +00003354
3355// FIXME: should be able to write a pattern for ARMBrcond, but can't use
Owen Anderson51f6a7a2011-09-09 21:48:23 +00003356// a two-value operand where a dag node expects ", "two operands. :(
David Goodwin5e47a9a2009-06-30 18:04:13 +00003357let isBranch = 1, isTerminator = 1 in
David Goodwin8b7d7ad2009-08-06 16:52:47 +00003358def t2Bcc : T2I<(outs), (ins brtarget:$target), IIC_Br,
Evan Cheng699beba2009-10-27 00:08:59 +00003359 "b", ".w\t$target",
Johnny Chend68e1192009-12-15 17:24:14 +00003360 [/*(ARMbrcond bb:$target, imm:$cc)*/]> {
3361 let Inst{31-27} = 0b11110;
3362 let Inst{15-14} = 0b10;
3363 let Inst{12} = 0;
Jim Grosbach00f25fa2010-12-14 20:46:39 +00003364
Owen Andersonfb20d892010-12-09 00:27:41 +00003365 bits<4> p;
3366 let Inst{25-22} = p;
Jim Grosbach7721e7f2010-12-02 23:05:38 +00003367
Owen Andersonfb20d892010-12-09 00:27:41 +00003368 bits<21> target;
3369 let Inst{26} = target{20};
3370 let Inst{11} = target{19};
3371 let Inst{13} = target{18};
3372 let Inst{21-16} = target{17-12};
3373 let Inst{10-0} = target{11-1};
Owen Anderson8d7d2e12011-08-09 20:55:18 +00003374
3375 let DecoderMethod = "DecodeThumb2BCCInstruction";
Johnny Chend68e1192009-12-15 17:24:14 +00003376}
Evan Chengf49810c2009-06-23 17:48:47 +00003377
Evan Chengafff9412011-12-20 18:26:50 +00003378// Tail calls. The IOS version of thumb tail calls uses a t2 branch, so
Jim Grosbachaf7f2d62011-07-08 20:32:21 +00003379// it goes here.
3380let isCall = 1, isTerminator = 1, isReturn = 1, isBarrier = 1 in {
Evan Chengafff9412011-12-20 18:26:50 +00003381 // IOS version.
Jakob Stoklund Olesenc54f6342012-02-24 01:19:29 +00003382 let Uses = [SP] in
Owen Anderson51f6a7a2011-09-09 21:48:23 +00003383 def tTAILJMPd: tPseudoExpand<(outs),
Jakob Stoklund Olesen135fb452012-07-13 20:27:00 +00003384 (ins uncondbrtarget:$dst, pred:$p),
Owen Anderson16884412011-07-13 23:22:26 +00003385 4, IIC_Br, [],
Owen Anderson51f6a7a2011-09-09 21:48:23 +00003386 (t2B uncondbrtarget:$dst, pred:$p)>,
Evan Chengafff9412011-12-20 18:26:50 +00003387 Requires<[IsThumb2, IsIOS]>;
Jim Grosbachaf7f2d62011-07-08 20:32:21 +00003388}
Evan Cheng06e16582009-07-10 01:54:42 +00003389
Jakob Stoklund Olesenf16936e2012-04-06 00:04:58 +00003390let isCall = 1, Defs = [LR], Uses = [SP] in {
Evan Cheng4bfcd4a2012-02-28 18:51:51 +00003391 // mov lr, pc; b if callee is marked noreturn to avoid confusing the
3392 // return stack predictor.
3393 def t2BMOVPCB_CALL : tPseudoInst<(outs),
Jakob Stoklund Olesen135fb452012-07-13 20:27:00 +00003394 (ins t_bltarget:$func),
Evan Cheng4bfcd4a2012-02-28 18:51:51 +00003395 6, IIC_Br, [(ARMcall_nolink tglobaladdr:$func)]>,
Jakob Stoklund Olesenf16936e2012-04-06 00:04:58 +00003396 Requires<[IsThumb]>;
Evan Cheng4bfcd4a2012-02-28 18:51:51 +00003397}
3398
3399// Direct calls
3400def : T2Pat<(ARMcall_nolink texternalsym:$func),
3401 (t2BMOVPCB_CALL texternalsym:$func)>,
Jakob Stoklund Olesenf16936e2012-04-06 00:04:58 +00003402 Requires<[IsThumb]>;
Evan Cheng4bfcd4a2012-02-28 18:51:51 +00003403
Evan Cheng06e16582009-07-10 01:54:42 +00003404// IT block
Evan Cheng86050dc2010-06-18 23:09:54 +00003405let Defs = [ITSTATE] in
Evan Cheng06e16582009-07-10 01:54:42 +00003406def t2IT : Thumb2XI<(outs), (ins it_pred:$cc, it_mask:$mask),
Owen Anderson16884412011-07-13 23:22:26 +00003407 AddrModeNone, 2, IIC_iALUx,
Johnny Chend68e1192009-12-15 17:24:14 +00003408 "it$mask\t$cc", "", []> {
3409 // 16-bit instruction.
Johnny Chenbbc71b22009-12-16 02:32:54 +00003410 let Inst{31-16} = 0x0000;
Johnny Chend68e1192009-12-15 17:24:14 +00003411 let Inst{15-8} = 0b10111111;
Owen Anderson05bf5952010-11-29 18:54:38 +00003412
3413 bits<4> cc;
3414 bits<4> mask;
Jim Grosbach86386922010-12-08 22:10:43 +00003415 let Inst{7-4} = cc;
3416 let Inst{3-0} = mask;
Owen Andersoneaca9282011-08-30 22:58:27 +00003417
3418 let DecoderMethod = "DecodeIT";
Johnny Chend68e1192009-12-15 17:24:14 +00003419}
Evan Cheng06e16582009-07-10 01:54:42 +00003420
Johnny Chence6275f2010-02-25 19:05:29 +00003421// Branch and Exchange Jazelle -- for disassembly only
3422// Rm = Inst{19-16}
Jim Grosbach6c3e11e2011-09-02 23:43:09 +00003423def t2BXJ : T2I<(outs), (ins rGPR:$func), NoItinerary, "bxj", "\t$func", []> {
3424 bits<4> func;
Johnny Chence6275f2010-02-25 19:05:29 +00003425 let Inst{31-27} = 0b11110;
3426 let Inst{26} = 0;
3427 let Inst{25-20} = 0b111100;
Jim Grosbach86386922010-12-08 22:10:43 +00003428 let Inst{19-16} = func;
Jim Grosbach6c3e11e2011-09-02 23:43:09 +00003429 let Inst{15-0} = 0b1000111100000000;
Johnny Chence6275f2010-02-25 19:05:29 +00003430}
3431
Jim Grosbach11cca7a2011-08-18 17:51:36 +00003432// Compare and branch on zero / non-zero
3433let isBranch = 1, isTerminator = 1 in {
3434 def tCBZ : T1I<(outs), (ins tGPR:$Rn, t_cbtarget:$target), IIC_Br,
3435 "cbz\t$Rn, $target", []>,
3436 T1Misc<{0,0,?,1,?,?,?}>,
3437 Requires<[IsThumb2]> {
3438 // A8.6.27
3439 bits<6> target;
3440 bits<3> Rn;
3441 let Inst{9} = target{5};
3442 let Inst{7-3} = target{4-0};
3443 let Inst{2-0} = Rn;
3444 }
3445
3446 def tCBNZ : T1I<(outs), (ins tGPR:$Rn, t_cbtarget:$target), IIC_Br,
3447 "cbnz\t$Rn, $target", []>,
3448 T1Misc<{1,0,?,1,?,?,?}>,
3449 Requires<[IsThumb2]> {
3450 // A8.6.27
3451 bits<6> target;
3452 bits<3> Rn;
3453 let Inst{9} = target{5};
3454 let Inst{7-3} = target{4-0};
3455 let Inst{2-0} = Rn;
3456 }
3457}
3458
3459
Jim Grosbach32f36892011-09-19 23:38:34 +00003460// Change Processor State is a system instruction.
Bruno Cardoso Lopesa2b6e412011-02-14 13:09:44 +00003461// FIXME: Since the asm parser has currently no clean way to handle optional
3462// operands, create 3 versions of the same instruction. Once there's a clean
3463// framework to represent optional operands, change this behavior.
3464class t2CPS<dag iops, string asm_op> : T2XI<(outs), iops, NoItinerary,
Jim Grosbach32f36892011-09-19 23:38:34 +00003465 !strconcat("cps", asm_op), []> {
Bruno Cardoso Lopesa2b6e412011-02-14 13:09:44 +00003466 bits<2> imod;
3467 bits<3> iflags;
3468 bits<5> mode;
3469 bit M;
3470
Johnny Chen93042d12010-03-02 18:14:57 +00003471 let Inst{31-27} = 0b11110;
Bruno Cardoso Lopesa2b6e412011-02-14 13:09:44 +00003472 let Inst{26} = 0;
Johnny Chen93042d12010-03-02 18:14:57 +00003473 let Inst{25-20} = 0b111010;
Bruno Cardoso Lopesa2b6e412011-02-14 13:09:44 +00003474 let Inst{19-16} = 0b1111;
Johnny Chen93042d12010-03-02 18:14:57 +00003475 let Inst{15-14} = 0b10;
Bruno Cardoso Lopesa2b6e412011-02-14 13:09:44 +00003476 let Inst{12} = 0;
3477 let Inst{10-9} = imod;
3478 let Inst{8} = M;
3479 let Inst{7-5} = iflags;
3480 let Inst{4-0} = mode;
Owen Anderson6153a032011-08-23 17:45:18 +00003481 let DecoderMethod = "DecodeT2CPSInstruction";
Johnny Chen93042d12010-03-02 18:14:57 +00003482}
3483
Bruno Cardoso Lopesa2b6e412011-02-14 13:09:44 +00003484let M = 1 in
3485 def t2CPS3p : t2CPS<(ins imod_op:$imod, iflags_op:$iflags, i32imm:$mode),
3486 "$imod.w\t$iflags, $mode">;
3487let mode = 0, M = 0 in
3488 def t2CPS2p : t2CPS<(ins imod_op:$imod, iflags_op:$iflags),
3489 "$imod.w\t$iflags">;
3490let imod = 0, iflags = 0, M = 1 in
Jim Grosbach0efe2132011-09-19 23:58:31 +00003491 def t2CPS1p : t2CPS<(ins imm0_31:$mode), "\t$mode">;
Bruno Cardoso Lopesa2b6e412011-02-14 13:09:44 +00003492
Johnny Chen0f7866e2010-03-03 02:09:43 +00003493// A6.3.4 Branches and miscellaneous control
3494// Table A6-14 Change Processor State, and hint instructions
Jim Grosbach7e99a602012-06-18 19:45:50 +00003495def t2HINT : T2I<(outs), (ins imm0_255:$imm), NoItinerary, "hint", "\t$imm",[]>{
3496 bits<8> imm;
3497 let Inst{31-8} = 0b111100111010111110000000;
3498 let Inst{7-0} = imm;
Johnny Chen0f7866e2010-03-03 02:09:43 +00003499}
3500
Jim Grosbach7e99a602012-06-18 19:45:50 +00003501def : t2InstAlias<"hint$p.w $imm", (t2HINT imm0_255:$imm, pred:$p)>;
3502def : t2InstAlias<"nop$p.w", (t2HINT 0, pred:$p)>;
3503def : t2InstAlias<"yield$p.w", (t2HINT 1, pred:$p)>;
3504def : t2InstAlias<"wfe$p.w", (t2HINT 2, pred:$p)>;
3505def : t2InstAlias<"wfi$p.w", (t2HINT 3, pred:$p)>;
3506def : t2InstAlias<"sev$p.w", (t2HINT 4, pred:$p)>;
Johnny Chen0f7866e2010-03-03 02:09:43 +00003507
Jim Grosbach6f9f8842011-07-13 22:59:38 +00003508def t2DBG : T2I<(outs), (ins imm0_15:$opt), NoItinerary, "dbg", "\t$opt", []> {
Owen Andersonc7373f82010-11-30 20:00:01 +00003509 bits<4> opt;
Jim Grosbach77951902011-09-06 22:06:40 +00003510 let Inst{31-20} = 0b111100111010;
3511 let Inst{19-16} = 0b1111;
3512 let Inst{15-8} = 0b10000000;
3513 let Inst{7-4} = 0b1111;
Jim Grosbach86386922010-12-08 22:10:43 +00003514 let Inst{3-0} = opt;
Johnny Chen0f7866e2010-03-03 02:09:43 +00003515}
3516
Jim Grosbach32f36892011-09-19 23:38:34 +00003517// Secure Monitor Call is a system instruction.
Johnny Chen6341c5a2010-02-25 20:25:24 +00003518// Option = Inst{19-16}
Jim Grosbach32f36892011-09-19 23:38:34 +00003519def t2SMC : T2I<(outs), (ins imm0_15:$opt), NoItinerary, "smc", "\t$opt", []> {
Johnny Chen6341c5a2010-02-25 20:25:24 +00003520 let Inst{31-27} = 0b11110;
3521 let Inst{26-20} = 0b1111111;
3522 let Inst{15-12} = 0b1000;
Jim Grosbach7721e7f2010-12-02 23:05:38 +00003523
Owen Andersond18a9c92010-11-29 19:22:08 +00003524 bits<4> opt;
Jim Grosbach86386922010-12-08 22:10:43 +00003525 let Inst{19-16} = opt;
Owen Andersond18a9c92010-11-29 19:22:08 +00003526}
3527
Jim Grosbach05ec8f72011-09-16 18:25:22 +00003528class T2SRS<bits<2> Op, bit W, dag oops, dag iops, InstrItinClass itin,
3529 string opc, string asm, list<dag> pattern>
Owen Andersond18a9c92010-11-29 19:22:08 +00003530 : T2I<oops, iops, itin, opc, asm, pattern> {
3531 bits<5> mode;
Jim Grosbach05ec8f72011-09-16 18:25:22 +00003532 let Inst{31-25} = 0b1110100;
3533 let Inst{24-23} = Op;
3534 let Inst{22} = 0;
3535 let Inst{21} = W;
3536 let Inst{20-16} = 0b01101;
3537 let Inst{15-5} = 0b11000000000;
Owen Andersond18a9c92010-11-29 19:22:08 +00003538 let Inst{4-0} = mode{4-0};
Johnny Chen6341c5a2010-02-25 20:25:24 +00003539}
3540
Jim Grosbach05ec8f72011-09-16 18:25:22 +00003541// Store Return State is a system instruction.
3542def t2SRSDB_UPD : T2SRS<0b00, 1, (outs), (ins imm0_31:$mode), NoItinerary,
3543 "srsdb", "\tsp!, $mode", []>;
3544def t2SRSDB : T2SRS<0b00, 0, (outs), (ins imm0_31:$mode), NoItinerary,
3545 "srsdb","\tsp, $mode", []>;
3546def t2SRSIA_UPD : T2SRS<0b11, 1, (outs), (ins imm0_31:$mode), NoItinerary,
3547 "srsia","\tsp!, $mode", []>;
3548def t2SRSIA : T2SRS<0b11, 0, (outs), (ins imm0_31:$mode), NoItinerary,
3549 "srsia","\tsp, $mode", []>;
Johnny Chen6341c5a2010-02-25 20:25:24 +00003550
Jim Grosbach05ec8f72011-09-16 18:25:22 +00003551// Return From Exception is a system instruction.
Owen Anderson5404c2b2010-11-29 20:38:48 +00003552class T2RFE<bits<12> op31_20, dag oops, dag iops, InstrItinClass itin,
Owen Andersond18a9c92010-11-29 19:22:08 +00003553 string opc, string asm, list<dag> pattern>
3554 : T2I<oops, iops, itin, opc, asm, pattern> {
Owen Anderson5404c2b2010-11-29 20:38:48 +00003555 let Inst{31-20} = op31_20{11-0};
Jim Grosbach7721e7f2010-12-02 23:05:38 +00003556
Owen Andersond18a9c92010-11-29 19:22:08 +00003557 bits<4> Rn;
Jim Grosbach86386922010-12-08 22:10:43 +00003558 let Inst{19-16} = Rn;
Johnny Chenec51a622011-04-12 21:41:51 +00003559 let Inst{15-0} = 0xc000;
Owen Andersond18a9c92010-11-29 19:22:08 +00003560}
3561
Owen Anderson5404c2b2010-11-29 20:38:48 +00003562def t2RFEDBW : T2RFE<0b111010000011,
Johnny Chenec51a622011-04-12 21:41:51 +00003563 (outs), (ins GPR:$Rn), NoItinerary, "rfedb", "\t$Rn!",
Owen Anderson5404c2b2010-11-29 20:38:48 +00003564 [/* For disassembly only; pattern left blank */]>;
3565def t2RFEDB : T2RFE<0b111010000001,
Johnny Chenec51a622011-04-12 21:41:51 +00003566 (outs), (ins GPR:$Rn), NoItinerary, "rfedb", "\t$Rn",
Owen Anderson5404c2b2010-11-29 20:38:48 +00003567 [/* For disassembly only; pattern left blank */]>;
3568def t2RFEIAW : T2RFE<0b111010011011,
Johnny Chenec51a622011-04-12 21:41:51 +00003569 (outs), (ins GPR:$Rn), NoItinerary, "rfeia", "\t$Rn!",
Owen Anderson5404c2b2010-11-29 20:38:48 +00003570 [/* For disassembly only; pattern left blank */]>;
3571def t2RFEIA : T2RFE<0b111010011001,
Johnny Chenec51a622011-04-12 21:41:51 +00003572 (outs), (ins GPR:$Rn), NoItinerary, "rfeia", "\t$Rn",
Owen Anderson5404c2b2010-11-29 20:38:48 +00003573 [/* For disassembly only; pattern left blank */]>;
Johnny Chen6341c5a2010-02-25 20:25:24 +00003574
Evan Chengf49810c2009-06-23 17:48:47 +00003575//===----------------------------------------------------------------------===//
3576// Non-Instruction Patterns
3577//
3578
Evan Cheng5adb66a2009-09-28 09:14:39 +00003579// 32-bit immediate using movw + movt.
Evan Cheng5be39222010-09-24 22:03:46 +00003580// This is a single pseudo instruction to make it re-materializable.
3581// FIXME: Remove this when we can do generalized remat.
Evan Chengfc8475b2011-01-19 02:16:49 +00003582let isReMaterializable = 1, isMoveImm = 1 in
Jim Grosbach3c38f962010-10-06 22:01:26 +00003583def t2MOVi32imm : PseudoInst<(outs rGPR:$dst), (ins i32imm:$src), IIC_iMOVix2,
Jim Grosbach99594eb2010-11-18 01:38:26 +00003584 [(set rGPR:$dst, (i32 imm:$src))]>,
Jim Grosbach3c38f962010-10-06 22:01:26 +00003585 Requires<[IsThumb, HasV6T2]>;
Evan Chengb9803a82009-11-06 23:52:48 +00003586
Evan Cheng53519f02011-01-21 18:55:51 +00003587// Pseudo instruction that combines movw + movt + add pc (if pic).
Evan Cheng9fe20092011-01-20 08:34:58 +00003588// It also makes it possible to rematerialize the instructions.
3589// FIXME: Remove this when we can do generalized remat and when machine licm
3590// can properly the instructions.
Evan Cheng53519f02011-01-21 18:55:51 +00003591let isReMaterializable = 1 in {
3592def t2MOV_ga_pcrel : PseudoInst<(outs rGPR:$dst), (ins i32imm:$addr),
3593 IIC_iMOVix2addpc,
Evan Cheng9fe20092011-01-20 08:34:58 +00003594 [(set rGPR:$dst, (ARMWrapperPIC tglobaladdr:$addr))]>,
3595 Requires<[IsThumb2, UseMovt]>;
Evan Cheng5de5d4b2011-01-17 08:03:18 +00003596
Evan Cheng53519f02011-01-21 18:55:51 +00003597def t2MOV_ga_dyn : PseudoInst<(outs rGPR:$dst), (ins i32imm:$addr),
3598 IIC_iMOVix2,
3599 [(set rGPR:$dst, (ARMWrapperDYN tglobaladdr:$addr))]>,
3600 Requires<[IsThumb2, UseMovt]>;
3601}
3602
Anton Korobeynikov5cdc3a92009-11-24 00:44:37 +00003603// ConstantPool, GlobalAddress, and JumpTable
3604def : T2Pat<(ARMWrapper tglobaladdr :$dst), (t2LEApcrel tglobaladdr :$dst)>,
3605 Requires<[IsThumb2, DontUseMovt]>;
3606def : T2Pat<(ARMWrapper tconstpool :$dst), (t2LEApcrel tconstpool :$dst)>;
3607def : T2Pat<(ARMWrapper tglobaladdr :$dst), (t2MOVi32imm tglobaladdr :$dst)>,
3608 Requires<[IsThumb2, UseMovt]>;
3609
3610def : T2Pat<(ARMWrapperJT tjumptable:$dst, imm:$id),
3611 (t2LEApcrelJT tjumptable:$dst, imm:$id)>;
3612
Evan Chengb9803a82009-11-06 23:52:48 +00003613// Pseudo instruction that combines ldr from constpool and add pc. This should
3614// be expanded into two instructions late to allow if-conversion and
3615// scheduling.
Dan Gohmanbc9d98b2010-02-27 23:47:46 +00003616let canFoldAsLoad = 1, isReMaterializable = 1 in
Evan Cheng9fe20092011-01-20 08:34:58 +00003617def t2LDRpci_pic : PseudoInst<(outs rGPR:$dst), (ins i32imm:$addr, pclabel:$cp),
Jim Grosbach99594eb2010-11-18 01:38:26 +00003618 IIC_iLoadiALU,
Evan Cheng9fe20092011-01-20 08:34:58 +00003619 [(set rGPR:$dst, (ARMpic_add (load (ARMWrapper tconstpool:$addr)),
Evan Chengb9803a82009-11-06 23:52:48 +00003620 imm:$cp))]>,
3621 Requires<[IsThumb2]>;
Bill Wendlingef2c86f2011-10-10 22:59:55 +00003622
Andrew Trick7f5f0da2011-10-18 18:40:53 +00003623// Pseudo isntruction that combines movs + predicated rsbmi
Bill Wendlingef2c86f2011-10-10 22:59:55 +00003624// to implement integer ABS
3625let usesCustomInserter = 1, Defs = [CPSR] in {
3626def t2ABS : PseudoInst<(outs rGPR:$dst), (ins rGPR:$src),
3627 NoItinerary, []>, Requires<[IsThumb2]>;
3628}
3629
Owen Anderson8a83f712011-09-07 21:10:42 +00003630//===----------------------------------------------------------------------===//
3631// Coprocessor load/store -- for disassembly only
3632//
Jim Grosbachc66e7af2011-10-12 20:54:17 +00003633class T2CI<bits<4> op31_28, dag oops, dag iops, string opc, string asm>
Owen Anderson8a83f712011-09-07 21:10:42 +00003634 : T2I<oops, iops, NoItinerary, opc, asm, []> {
Jim Grosbachc66e7af2011-10-12 20:54:17 +00003635 let Inst{31-28} = op31_28;
Owen Anderson8a83f712011-09-07 21:10:42 +00003636 let Inst{27-25} = 0b110;
3637}
3638
Jim Grosbachc66e7af2011-10-12 20:54:17 +00003639multiclass t2LdStCop<bits<4> op31_28, bit load, bit Dbit, string asm> {
3640 def _OFFSET : T2CI<op31_28,
3641 (outs), (ins p_imm:$cop, c_imm:$CRd, addrmode5:$addr),
3642 asm, "\t$cop, $CRd, $addr"> {
3643 bits<13> addr;
3644 bits<4> cop;
3645 bits<4> CRd;
Owen Anderson8a83f712011-09-07 21:10:42 +00003646 let Inst{24} = 1; // P = 1
Jim Grosbachc66e7af2011-10-12 20:54:17 +00003647 let Inst{23} = addr{8};
3648 let Inst{22} = Dbit;
Owen Anderson8a83f712011-09-07 21:10:42 +00003649 let Inst{21} = 0; // W = 0
Owen Anderson8a83f712011-09-07 21:10:42 +00003650 let Inst{20} = load;
Jim Grosbachc66e7af2011-10-12 20:54:17 +00003651 let Inst{19-16} = addr{12-9};
3652 let Inst{15-12} = CRd;
3653 let Inst{11-8} = cop;
3654 let Inst{7-0} = addr{7-0};
Owen Anderson8a83f712011-09-07 21:10:42 +00003655 let DecoderMethod = "DecodeCopMemInstruction";
3656 }
Jim Grosbachc66e7af2011-10-12 20:54:17 +00003657 def _PRE : T2CI<op31_28,
3658 (outs), (ins p_imm:$cop, c_imm:$CRd, addrmode5:$addr),
3659 asm, "\t$cop, $CRd, $addr!"> {
3660 bits<13> addr;
3661 bits<4> cop;
3662 bits<4> CRd;
Owen Anderson8a83f712011-09-07 21:10:42 +00003663 let Inst{24} = 1; // P = 1
Jim Grosbachc66e7af2011-10-12 20:54:17 +00003664 let Inst{23} = addr{8};
3665 let Inst{22} = Dbit;
Owen Anderson8a83f712011-09-07 21:10:42 +00003666 let Inst{21} = 1; // W = 1
Owen Anderson8a83f712011-09-07 21:10:42 +00003667 let Inst{20} = load;
Jim Grosbachc66e7af2011-10-12 20:54:17 +00003668 let Inst{19-16} = addr{12-9};
3669 let Inst{15-12} = CRd;
3670 let Inst{11-8} = cop;
3671 let Inst{7-0} = addr{7-0};
Owen Anderson8a83f712011-09-07 21:10:42 +00003672 let DecoderMethod = "DecodeCopMemInstruction";
3673 }
Jim Grosbachc66e7af2011-10-12 20:54:17 +00003674 def _POST: T2CI<op31_28,
3675 (outs), (ins p_imm:$cop, c_imm:$CRd, addr_offset_none:$addr,
3676 postidx_imm8s4:$offset),
3677 asm, "\t$cop, $CRd, $addr, $offset"> {
3678 bits<9> offset;
3679 bits<4> addr;
3680 bits<4> cop;
3681 bits<4> CRd;
Owen Anderson8a83f712011-09-07 21:10:42 +00003682 let Inst{24} = 0; // P = 0
Jim Grosbachc66e7af2011-10-12 20:54:17 +00003683 let Inst{23} = offset{8};
3684 let Inst{22} = Dbit;
Owen Anderson8a83f712011-09-07 21:10:42 +00003685 let Inst{21} = 1; // W = 1
Owen Anderson8a83f712011-09-07 21:10:42 +00003686 let Inst{20} = load;
Jim Grosbachc66e7af2011-10-12 20:54:17 +00003687 let Inst{19-16} = addr;
3688 let Inst{15-12} = CRd;
3689 let Inst{11-8} = cop;
3690 let Inst{7-0} = offset{7-0};
Owen Anderson8a83f712011-09-07 21:10:42 +00003691 let DecoderMethod = "DecodeCopMemInstruction";
3692 }
Jim Grosbachc66e7af2011-10-12 20:54:17 +00003693 def _OPTION : T2CI<op31_28, (outs),
3694 (ins p_imm:$cop, c_imm:$CRd, addr_offset_none:$addr,
3695 coproc_option_imm:$option),
3696 asm, "\t$cop, $CRd, $addr, $option"> {
3697 bits<8> option;
3698 bits<4> addr;
3699 bits<4> cop;
3700 bits<4> CRd;
Owen Anderson8a83f712011-09-07 21:10:42 +00003701 let Inst{24} = 0; // P = 0
3702 let Inst{23} = 1; // U = 1
Jim Grosbachc66e7af2011-10-12 20:54:17 +00003703 let Inst{22} = Dbit;
Owen Anderson8a83f712011-09-07 21:10:42 +00003704 let Inst{21} = 0; // W = 0
Owen Anderson8a83f712011-09-07 21:10:42 +00003705 let Inst{20} = load;
Jim Grosbachc66e7af2011-10-12 20:54:17 +00003706 let Inst{19-16} = addr;
3707 let Inst{15-12} = CRd;
3708 let Inst{11-8} = cop;
3709 let Inst{7-0} = option;
Owen Anderson8a83f712011-09-07 21:10:42 +00003710 let DecoderMethod = "DecodeCopMemInstruction";
3711 }
3712}
3713
Jim Grosbachc66e7af2011-10-12 20:54:17 +00003714defm t2LDC : t2LdStCop<0b1110, 1, 0, "ldc">;
3715defm t2LDCL : t2LdStCop<0b1110, 1, 1, "ldcl">;
3716defm t2STC : t2LdStCop<0b1110, 0, 0, "stc">;
3717defm t2STCL : t2LdStCop<0b1110, 0, 1, "stcl">;
3718defm t2LDC2 : t2LdStCop<0b1111, 1, 0, "ldc2">;
3719defm t2LDC2L : t2LdStCop<0b1111, 1, 1, "ldc2l">;
3720defm t2STC2 : t2LdStCop<0b1111, 0, 0, "stc2">;
3721defm t2STC2L : t2LdStCop<0b1111, 0, 1, "stc2l">;
Owen Anderson8a83f712011-09-07 21:10:42 +00003722
Johnny Chen23336552010-02-25 18:46:43 +00003723
3724//===----------------------------------------------------------------------===//
3725// Move between special register and ARM core register -- for disassembly only
3726//
Jim Grosbachbf841cf2011-09-14 20:03:46 +00003727// Move to ARM core register from Special Register
James Molloyacad68d2011-09-28 14:21:38 +00003728
3729// A/R class MRS.
3730//
3731// A/R class can only move from CPSR or SPSR.
Jim Grosbachc92ba4e2012-04-23 22:04:10 +00003732def t2MRS_AR : T2I<(outs GPR:$Rd), (ins), NoItinerary, "mrs", "\t$Rd, apsr",
3733 []>, Requires<[IsThumb2,IsARClass]> {
Owen Anderson00a035f2010-11-29 19:29:15 +00003734 bits<4> Rd;
Jim Grosbachbf841cf2011-09-14 20:03:46 +00003735 let Inst{31-12} = 0b11110011111011111000;
Jim Grosbach86386922010-12-08 22:10:43 +00003736 let Inst{11-8} = Rd;
Jim Grosbachbf841cf2011-09-14 20:03:46 +00003737 let Inst{7-0} = 0b0000;
Owen Anderson00a035f2010-11-29 19:29:15 +00003738}
3739
James Molloyacad68d2011-09-28 14:21:38 +00003740def : t2InstAlias<"mrs${p} $Rd, cpsr", (t2MRS_AR GPR:$Rd, pred:$p)>;
Jim Grosbachbf841cf2011-09-14 20:03:46 +00003741
Jim Grosbachc92ba4e2012-04-23 22:04:10 +00003742def t2MRSsys_AR: T2I<(outs GPR:$Rd), (ins), NoItinerary, "mrs", "\t$Rd, spsr",
3743 []>, Requires<[IsThumb2,IsARClass]> {
Jim Grosbachbf841cf2011-09-14 20:03:46 +00003744 bits<4> Rd;
3745 let Inst{31-12} = 0b11110011111111111000;
3746 let Inst{11-8} = Rd;
3747 let Inst{7-0} = 0b0000;
3748}
Johnny Chen23336552010-02-25 18:46:43 +00003749
James Molloyacad68d2011-09-28 14:21:38 +00003750// M class MRS.
3751//
3752// This MRS has a mask field in bits 7-0 and can take more values than
3753// the A/R class (a full msr_mask).
3754def t2MRS_M : T2I<(outs rGPR:$Rd), (ins msr_mask:$mask), NoItinerary,
3755 "mrs", "\t$Rd, $mask", []>,
Evan Cheng97a45432012-04-27 01:27:19 +00003756 Requires<[IsThumb,IsMClass]> {
James Molloyacad68d2011-09-28 14:21:38 +00003757 bits<4> Rd;
3758 bits<8> mask;
3759 let Inst{31-12} = 0b11110011111011111000;
3760 let Inst{11-8} = Rd;
3761 let Inst{19-16} = 0b1111;
3762 let Inst{7-0} = mask;
3763}
3764
3765
Bruno Cardoso Lopes584bf7b2011-02-18 19:45:59 +00003766// Move from ARM core register to Special Register
3767//
James Molloyacad68d2011-09-28 14:21:38 +00003768// A/R class MSR.
3769//
Bruno Cardoso Lopes584bf7b2011-02-18 19:45:59 +00003770// No need to have both system and application versions, the encodings are the
3771// same and the assembly parser has no way to distinguish between them. The mask
3772// operand contains the special register (R Bit) in bit 4 and bits 3-0 contains
3773// the mask with the fields to be accessed in the special register.
James Molloyacad68d2011-09-28 14:21:38 +00003774def t2MSR_AR : T2I<(outs), (ins msr_mask:$mask, rGPR:$Rn),
3775 NoItinerary, "msr", "\t$mask, $Rn", []>,
3776 Requires<[IsThumb2,IsARClass]> {
Bruno Cardoso Lopes584bf7b2011-02-18 19:45:59 +00003777 bits<5> mask;
Owen Anderson00a035f2010-11-29 19:29:15 +00003778 bits<4> Rn;
Jim Grosbachbf841cf2011-09-14 20:03:46 +00003779 let Inst{31-21} = 0b11110011100;
Bruno Cardoso Lopes584bf7b2011-02-18 19:45:59 +00003780 let Inst{20} = mask{4}; // R Bit
Jim Grosbachbf841cf2011-09-14 20:03:46 +00003781 let Inst{19-16} = Rn;
3782 let Inst{15-12} = 0b1000;
Bruno Cardoso Lopes584bf7b2011-02-18 19:45:59 +00003783 let Inst{11-8} = mask{3-0};
Jim Grosbachbf841cf2011-09-14 20:03:46 +00003784 let Inst{7-0} = 0;
Owen Anderson00a035f2010-11-29 19:29:15 +00003785}
3786
James Molloyacad68d2011-09-28 14:21:38 +00003787// M class MSR.
3788//
3789// Move from ARM core register to Special Register
3790def t2MSR_M : T2I<(outs), (ins msr_mask:$SYSm, rGPR:$Rn),
3791 NoItinerary, "msr", "\t$SYSm, $Rn", []>,
Evan Cheng97a45432012-04-27 01:27:19 +00003792 Requires<[IsThumb,IsMClass]> {
Kevin Enderby0fd4f3c2012-05-17 22:18:01 +00003793 bits<12> SYSm;
James Molloyacad68d2011-09-28 14:21:38 +00003794 bits<4> Rn;
3795 let Inst{31-21} = 0b11110011100;
3796 let Inst{20} = 0b0;
3797 let Inst{19-16} = Rn;
3798 let Inst{15-12} = 0b1000;
Kevin Enderby0fd4f3c2012-05-17 22:18:01 +00003799 let Inst{11-0} = SYSm;
James Molloyacad68d2011-09-28 14:21:38 +00003800}
3801
3802
Bruno Cardoso Lopes6b3a9992011-01-20 16:58:48 +00003803//===----------------------------------------------------------------------===//
Jim Grosbach9bb098a2011-07-13 21:14:23 +00003804// Move between coprocessor and ARM core register
Bruno Cardoso Lopes6b3a9992011-01-20 16:58:48 +00003805//
3806
Jim Grosbache35c5e02011-07-13 21:35:10 +00003807class t2MovRCopro<bits<4> Op, string opc, bit direction, dag oops, dag iops,
3808 list<dag> pattern>
3809 : T2Cop<Op, oops, iops,
Jim Grosbach0d8dae22011-07-13 21:17:59 +00003810 !strconcat(opc, "\t$cop, $opc1, $Rt, $CRn, $CRm, $opc2"),
Jim Grosbach9bb098a2011-07-13 21:14:23 +00003811 pattern> {
3812 let Inst{27-24} = 0b1110;
3813 let Inst{20} = direction;
3814 let Inst{4} = 1;
3815
3816 bits<4> Rt;
3817 bits<4> cop;
3818 bits<3> opc1;
3819 bits<3> opc2;
3820 bits<4> CRm;
3821 bits<4> CRn;
3822
3823 let Inst{15-12} = Rt;
3824 let Inst{11-8} = cop;
3825 let Inst{23-21} = opc1;
3826 let Inst{7-5} = opc2;
3827 let Inst{3-0} = CRm;
3828 let Inst{19-16} = CRn;
3829}
3830
Jim Grosbache35c5e02011-07-13 21:35:10 +00003831class t2MovRRCopro<bits<4> Op, string opc, bit direction,
3832 list<dag> pattern = []>
3833 : T2Cop<Op, (outs),
Jim Grosbachc8ae39e2011-07-14 21:26:42 +00003834 (ins p_imm:$cop, imm0_15:$opc1, GPR:$Rt, GPR:$Rt2, c_imm:$CRm),
Jim Grosbache35c5e02011-07-13 21:35:10 +00003835 !strconcat(opc, "\t$cop, $opc1, $Rt, $Rt2, $CRm"), pattern> {
3836 let Inst{27-24} = 0b1100;
3837 let Inst{23-21} = 0b010;
3838 let Inst{20} = direction;
3839
3840 bits<4> Rt;
3841 bits<4> Rt2;
3842 bits<4> cop;
3843 bits<4> opc1;
3844 bits<4> CRm;
3845
3846 let Inst{15-12} = Rt;
3847 let Inst{19-16} = Rt2;
3848 let Inst{11-8} = cop;
3849 let Inst{7-4} = opc1;
3850 let Inst{3-0} = CRm;
3851}
3852
3853/* from ARM core register to coprocessor */
3854def t2MCR : t2MovRCopro<0b1110, "mcr", 0,
Jim Grosbach9bb098a2011-07-13 21:14:23 +00003855 (outs),
Jim Grosbache540c742011-07-14 21:19:17 +00003856 (ins p_imm:$cop, imm0_7:$opc1, GPR:$Rt, c_imm:$CRn,
3857 c_imm:$CRm, imm0_7:$opc2),
Jim Grosbach9bb098a2011-07-13 21:14:23 +00003858 [(int_arm_mcr imm:$cop, imm:$opc1, GPR:$Rt, imm:$CRn,
3859 imm:$CRm, imm:$opc2)]>;
Jim Grosbach213d2e72012-03-16 00:45:58 +00003860def : t2InstAlias<"mcr $cop, $opc1, $Rt, $CRn, $CRm",
3861 (t2MCR p_imm:$cop, imm0_7:$opc1, GPR:$Rt, c_imm:$CRn,
3862 c_imm:$CRm, 0)>;
Jim Grosbache35c5e02011-07-13 21:35:10 +00003863def t2MCR2 : t2MovRCopro<0b1111, "mcr2", 0,
Jim Grosbache540c742011-07-14 21:19:17 +00003864 (outs), (ins p_imm:$cop, imm0_7:$opc1, GPR:$Rt, c_imm:$CRn,
3865 c_imm:$CRm, imm0_7:$opc2),
Bruno Cardoso Lopes0a69ba32011-05-03 17:29:29 +00003866 [(int_arm_mcr2 imm:$cop, imm:$opc1, GPR:$Rt, imm:$CRn,
3867 imm:$CRm, imm:$opc2)]>;
Jim Grosbach213d2e72012-03-16 00:45:58 +00003868def : t2InstAlias<"mcr2 $cop, $opc1, $Rt, $CRn, $CRm",
3869 (t2MCR2 p_imm:$cop, imm0_7:$opc1, GPR:$Rt, c_imm:$CRn,
3870 c_imm:$CRm, 0)>;
Jim Grosbache35c5e02011-07-13 21:35:10 +00003871
3872/* from coprocessor to ARM core register */
3873def t2MRC : t2MovRCopro<0b1110, "mrc", 1,
Jim Grosbachccfd9312011-07-19 20:35:35 +00003874 (outs GPR:$Rt), (ins p_imm:$cop, imm0_7:$opc1, c_imm:$CRn,
3875 c_imm:$CRm, imm0_7:$opc2), []>;
Jim Grosbach213d2e72012-03-16 00:45:58 +00003876def : t2InstAlias<"mrc $cop, $opc1, $Rt, $CRn, $CRm",
3877 (t2MRC GPR:$Rt, p_imm:$cop, imm0_7:$opc1, c_imm:$CRn,
3878 c_imm:$CRm, 0)>;
Jim Grosbache35c5e02011-07-13 21:35:10 +00003879
3880def t2MRC2 : t2MovRCopro<0b1111, "mrc2", 1,
Jim Grosbachccfd9312011-07-19 20:35:35 +00003881 (outs GPR:$Rt), (ins p_imm:$cop, imm0_7:$opc1, c_imm:$CRn,
3882 c_imm:$CRm, imm0_7:$opc2), []>;
Jim Grosbach213d2e72012-03-16 00:45:58 +00003883def : t2InstAlias<"mrc2 $cop, $opc1, $Rt, $CRn, $CRm",
3884 (t2MRC2 GPR:$Rt, p_imm:$cop, imm0_7:$opc1, c_imm:$CRn,
3885 c_imm:$CRm, 0)>;
Bruno Cardoso Lopes6b3a9992011-01-20 16:58:48 +00003886
Jim Grosbache35c5e02011-07-13 21:35:10 +00003887def : T2v6Pat<(int_arm_mrc imm:$cop, imm:$opc1, imm:$CRn, imm:$CRm, imm:$opc2),
3888 (t2MRC imm:$cop, imm:$opc1, imm:$CRn, imm:$CRm, imm:$opc2)>;
3889
3890def : T2v6Pat<(int_arm_mrc2 imm:$cop, imm:$opc1, imm:$CRn, imm:$CRm, imm:$opc2),
Bruno Cardoso Lopes54ad87a2011-05-03 17:29:22 +00003891 (t2MRC2 imm:$cop, imm:$opc1, imm:$CRn, imm:$CRm, imm:$opc2)>;
3892
Bruno Cardoso Lopes6b3a9992011-01-20 16:58:48 +00003893
Jim Grosbache35c5e02011-07-13 21:35:10 +00003894/* from ARM core register to coprocessor */
3895def t2MCRR : t2MovRRCopro<0b1110, "mcrr", 0,
3896 [(int_arm_mcrr imm:$cop, imm:$opc1, GPR:$Rt, GPR:$Rt2,
3897 imm:$CRm)]>;
3898def t2MCRR2 : t2MovRRCopro<0b1111, "mcrr2", 0,
Bruno Cardoso Lopes0a69ba32011-05-03 17:29:29 +00003899 [(int_arm_mcrr2 imm:$cop, imm:$opc1, GPR:$Rt,
3900 GPR:$Rt2, imm:$CRm)]>;
Jim Grosbache35c5e02011-07-13 21:35:10 +00003901/* from coprocessor to ARM core register */
3902def t2MRRC : t2MovRRCopro<0b1110, "mrrc", 1>;
3903
3904def t2MRRC2 : t2MovRRCopro<0b1111, "mrrc2", 1>;
Bruno Cardoso Lopes6b3a9992011-01-20 16:58:48 +00003905
Bruno Cardoso Lopes8dd37f72011-01-20 18:32:09 +00003906//===----------------------------------------------------------------------===//
Jim Grosbach9bb098a2011-07-13 21:14:23 +00003907// Other Coprocessor Instructions.
Bruno Cardoso Lopes8dd37f72011-01-20 18:32:09 +00003908//
3909
Jim Grosbach1cbb0c12011-07-13 22:06:11 +00003910def tCDP : T2Cop<0b1110, (outs), (ins p_imm:$cop, imm0_15:$opc1,
Jim Grosbach83ab0702011-07-13 22:01:08 +00003911 c_imm:$CRd, c_imm:$CRn, c_imm:$CRm, imm0_7:$opc2),
Jim Grosbach9bb098a2011-07-13 21:14:23 +00003912 "cdp\t$cop, $opc1, $CRd, $CRn, $CRm, $opc2",
3913 [(int_arm_cdp imm:$cop, imm:$opc1, imm:$CRd, imm:$CRn,
3914 imm:$CRm, imm:$opc2)]> {
3915 let Inst{27-24} = 0b1110;
3916
3917 bits<4> opc1;
3918 bits<4> CRn;
3919 bits<4> CRd;
3920 bits<4> cop;
3921 bits<3> opc2;
3922 bits<4> CRm;
3923
3924 let Inst{3-0} = CRm;
3925 let Inst{4} = 0;
3926 let Inst{7-5} = opc2;
3927 let Inst{11-8} = cop;
3928 let Inst{15-12} = CRd;
3929 let Inst{19-16} = CRn;
3930 let Inst{23-20} = opc1;
3931}
3932
Jim Grosbach1cbb0c12011-07-13 22:06:11 +00003933def t2CDP2 : T2Cop<0b1111, (outs), (ins p_imm:$cop, imm0_15:$opc1,
Jim Grosbach83ab0702011-07-13 22:01:08 +00003934 c_imm:$CRd, c_imm:$CRn, c_imm:$CRm, imm0_7:$opc2),
Bruno Cardoso Lopes8dd37f72011-01-20 18:32:09 +00003935 "cdp2\t$cop, $opc1, $CRd, $CRn, $CRm, $opc2",
Bruno Cardoso Lopes0a69ba32011-05-03 17:29:29 +00003936 [(int_arm_cdp2 imm:$cop, imm:$opc1, imm:$CRd, imm:$CRn,
3937 imm:$CRm, imm:$opc2)]> {
Bruno Cardoso Lopes8dd37f72011-01-20 18:32:09 +00003938 let Inst{27-24} = 0b1110;
3939
3940 bits<4> opc1;
3941 bits<4> CRn;
3942 bits<4> CRd;
3943 bits<4> cop;
3944 bits<3> opc2;
3945 bits<4> CRm;
3946
3947 let Inst{3-0} = CRm;
3948 let Inst{4} = 0;
3949 let Inst{7-5} = opc2;
3950 let Inst{11-8} = cop;
3951 let Inst{15-12} = CRd;
3952 let Inst{19-16} = CRn;
3953 let Inst{23-20} = opc1;
3954}
Jim Grosbachc5a8c862011-07-27 16:47:19 +00003955
3956
3957
3958//===----------------------------------------------------------------------===//
3959// Non-Instruction Patterns
3960//
3961
3962// SXT/UXT with no rotate
Jim Grosbach70327412011-07-27 17:48:13 +00003963let AddedComplexity = 16 in {
3964def : T2Pat<(and rGPR:$Rm, 0x000000FF), (t2UXTB rGPR:$Rm, 0)>,
Eli Friedman2cb1dfa2011-08-08 19:49:37 +00003965 Requires<[IsThumb2]>;
Jim Grosbach70327412011-07-27 17:48:13 +00003966def : T2Pat<(and rGPR:$Rm, 0x0000FFFF), (t2UXTH rGPR:$Rm, 0)>,
Eli Friedman2cb1dfa2011-08-08 19:49:37 +00003967 Requires<[IsThumb2]>;
Jim Grosbach70327412011-07-27 17:48:13 +00003968def : T2Pat<(and rGPR:$Rm, 0x00FF00FF), (t2UXTB16 rGPR:$Rm, 0)>,
3969 Requires<[HasT2ExtractPack, IsThumb2]>;
3970def : T2Pat<(add rGPR:$Rn, (and rGPR:$Rm, 0x00FF)),
3971 (t2UXTAB rGPR:$Rn, rGPR:$Rm, 0)>,
3972 Requires<[HasT2ExtractPack, IsThumb2]>;
3973def : T2Pat<(add rGPR:$Rn, (and rGPR:$Rm, 0xFFFF)),
3974 (t2UXTAH rGPR:$Rn, rGPR:$Rm, 0)>,
3975 Requires<[HasT2ExtractPack, IsThumb2]>;
3976}
Jim Grosbachc5a8c862011-07-27 16:47:19 +00003977
Jim Grosbach70327412011-07-27 17:48:13 +00003978def : T2Pat<(sext_inreg rGPR:$Src, i8), (t2SXTB rGPR:$Src, 0)>,
Eli Friedman2cb1dfa2011-08-08 19:49:37 +00003979 Requires<[IsThumb2]>;
Jim Grosbach70327412011-07-27 17:48:13 +00003980def : T2Pat<(sext_inreg rGPR:$Src, i16), (t2SXTH rGPR:$Src, 0)>,
Eli Friedman2cb1dfa2011-08-08 19:49:37 +00003981 Requires<[IsThumb2]>;
Jim Grosbach70327412011-07-27 17:48:13 +00003982def : T2Pat<(add rGPR:$Rn, (sext_inreg rGPR:$Rm, i8)),
3983 (t2SXTAB rGPR:$Rn, rGPR:$Rm, 0)>,
3984 Requires<[HasT2ExtractPack, IsThumb2]>;
3985def : T2Pat<(add rGPR:$Rn, (sext_inreg rGPR:$Rm, i16)),
3986 (t2SXTAH rGPR:$Rn, rGPR:$Rm, 0)>,
3987 Requires<[HasT2ExtractPack, IsThumb2]>;
Eli Friedman069e2ed2011-08-26 02:59:24 +00003988
3989// Atomic load/store patterns
Jakob Stoklund Olesencff9baa2012-08-28 03:11:27 +00003990def : T2Pat<(atomic_load_8 t2addrmode_imm12:$addr),
3991 (t2LDRBi12 t2addrmode_imm12:$addr)>;
3992def : T2Pat<(atomic_load_8 t2addrmode_negimm8:$addr),
3993 (t2LDRBi8 t2addrmode_negimm8:$addr)>;
Eli Friedman069e2ed2011-08-26 02:59:24 +00003994def : T2Pat<(atomic_load_8 t2addrmode_so_reg:$addr),
Jakob Stoklund Olesencff9baa2012-08-28 03:11:27 +00003995 (t2LDRBs t2addrmode_so_reg:$addr)>;
3996def : T2Pat<(atomic_load_16 t2addrmode_imm12:$addr),
3997 (t2LDRHi12 t2addrmode_imm12:$addr)>;
3998def : T2Pat<(atomic_load_16 t2addrmode_negimm8:$addr),
3999 (t2LDRHi8 t2addrmode_negimm8:$addr)>;
Eli Friedman069e2ed2011-08-26 02:59:24 +00004000def : T2Pat<(atomic_load_16 t2addrmode_so_reg:$addr),
Jakob Stoklund Olesencff9baa2012-08-28 03:11:27 +00004001 (t2LDRHs t2addrmode_so_reg:$addr)>;
4002def : T2Pat<(atomic_load_32 t2addrmode_imm12:$addr),
4003 (t2LDRi12 t2addrmode_imm12:$addr)>;
Jim Grosbacha8307dd2011-09-07 20:58:57 +00004004def : T2Pat<(atomic_load_32 t2addrmode_negimm8:$addr),
Jakob Stoklund Olesencff9baa2012-08-28 03:11:27 +00004005 (t2LDRi8 t2addrmode_negimm8:$addr)>;
Eli Friedman069e2ed2011-08-26 02:59:24 +00004006def : T2Pat<(atomic_load_32 t2addrmode_so_reg:$addr),
Jakob Stoklund Olesencff9baa2012-08-28 03:11:27 +00004007 (t2LDRs t2addrmode_so_reg:$addr)>;
Eli Friedman069e2ed2011-08-26 02:59:24 +00004008def : T2Pat<(atomic_store_8 t2addrmode_imm12:$addr, GPR:$val),
4009 (t2STRBi12 GPR:$val, t2addrmode_imm12:$addr)>;
Jim Grosbacha8307dd2011-09-07 20:58:57 +00004010def : T2Pat<(atomic_store_8 t2addrmode_negimm8:$addr, GPR:$val),
4011 (t2STRBi8 GPR:$val, t2addrmode_negimm8:$addr)>;
Eli Friedman069e2ed2011-08-26 02:59:24 +00004012def : T2Pat<(atomic_store_8 t2addrmode_so_reg:$addr, GPR:$val),
4013 (t2STRBs GPR:$val, t2addrmode_so_reg:$addr)>;
4014def : T2Pat<(atomic_store_16 t2addrmode_imm12:$addr, GPR:$val),
4015 (t2STRHi12 GPR:$val, t2addrmode_imm12:$addr)>;
Jim Grosbacha8307dd2011-09-07 20:58:57 +00004016def : T2Pat<(atomic_store_16 t2addrmode_negimm8:$addr, GPR:$val),
4017 (t2STRHi8 GPR:$val, t2addrmode_negimm8:$addr)>;
Eli Friedman069e2ed2011-08-26 02:59:24 +00004018def : T2Pat<(atomic_store_16 t2addrmode_so_reg:$addr, GPR:$val),
4019 (t2STRHs GPR:$val, t2addrmode_so_reg:$addr)>;
4020def : T2Pat<(atomic_store_32 t2addrmode_imm12:$addr, GPR:$val),
4021 (t2STRi12 GPR:$val, t2addrmode_imm12:$addr)>;
Jim Grosbacha8307dd2011-09-07 20:58:57 +00004022def : T2Pat<(atomic_store_32 t2addrmode_negimm8:$addr, GPR:$val),
4023 (t2STRi8 GPR:$val, t2addrmode_negimm8:$addr)>;
Eli Friedman069e2ed2011-08-26 02:59:24 +00004024def : T2Pat<(atomic_store_32 t2addrmode_so_reg:$addr, GPR:$val),
4025 (t2STRs GPR:$val, t2addrmode_so_reg:$addr)>;
Jim Grosbach72335d52011-08-31 18:23:08 +00004026
4027
4028//===----------------------------------------------------------------------===//
4029// Assembler aliases
4030//
4031
4032// Aliases for ADC without the ".w" optional width specifier.
4033def : t2InstAlias<"adc${s}${p} $Rd, $Rn, $Rm",
4034 (t2ADCrr rGPR:$Rd, rGPR:$Rn, rGPR:$Rm, pred:$p, cc_out:$s)>;
4035def : t2InstAlias<"adc${s}${p} $Rd, $Rn, $ShiftedRm",
4036 (t2ADCrs rGPR:$Rd, rGPR:$Rn, t2_so_reg:$ShiftedRm,
4037 pred:$p, cc_out:$s)>;
4038
4039// Aliases for SBC without the ".w" optional width specifier.
4040def : t2InstAlias<"sbc${s}${p} $Rd, $Rn, $Rm",
4041 (t2SBCrr rGPR:$Rd, rGPR:$Rn, rGPR:$Rm, pred:$p, cc_out:$s)>;
4042def : t2InstAlias<"sbc${s}${p} $Rd, $Rn, $ShiftedRm",
4043 (t2SBCrs rGPR:$Rd, rGPR:$Rn, t2_so_reg:$ShiftedRm,
4044 pred:$p, cc_out:$s)>;
4045
Jim Grosbachf0851e52011-09-02 18:14:46 +00004046// Aliases for ADD without the ".w" optional width specifier.
Jim Grosbach20ed2e72011-09-01 00:28:52 +00004047def : t2InstAlias<"add${s}${p} $Rd, $Rn, $imm",
Jim Grosbachb95ed6e2011-10-03 20:51:59 +00004048 (t2ADDri GPRnopc:$Rd, GPRnopc:$Rn, t2_so_imm:$imm, pred:$p, cc_out:$s)>;
Jim Grosbach20ed2e72011-09-01 00:28:52 +00004049def : t2InstAlias<"add${p} $Rd, $Rn, $imm",
Jim Grosbachb95ed6e2011-10-03 20:51:59 +00004050 (t2ADDri12 GPRnopc:$Rd, GPR:$Rn, imm0_4095:$imm, pred:$p)>;
Jim Grosbachf0851e52011-09-02 18:14:46 +00004051def : t2InstAlias<"add${s}${p} $Rd, $Rn, $Rm",
Jim Grosbachb95ed6e2011-10-03 20:51:59 +00004052 (t2ADDrr GPRnopc:$Rd, GPRnopc:$Rn, rGPR:$Rm, pred:$p, cc_out:$s)>;
Jim Grosbachf0851e52011-09-02 18:14:46 +00004053def : t2InstAlias<"add${s}${p} $Rd, $Rn, $ShiftedRm",
Jim Grosbachb95ed6e2011-10-03 20:51:59 +00004054 (t2ADDrs GPRnopc:$Rd, GPRnopc:$Rn, t2_so_reg:$ShiftedRm,
Jim Grosbachf0851e52011-09-02 18:14:46 +00004055 pred:$p, cc_out:$s)>;
Jim Grosbach5d0492c2011-10-28 16:57:07 +00004056// ... and with the destination and source register combined.
4057def : t2InstAlias<"add${s}${p} $Rdn, $imm",
4058 (t2ADDri GPRnopc:$Rdn, GPRnopc:$Rdn, t2_so_imm:$imm, pred:$p, cc_out:$s)>;
4059def : t2InstAlias<"add${p} $Rdn, $imm",
4060 (t2ADDri12 GPRnopc:$Rdn, GPRnopc:$Rdn, imm0_4095:$imm, pred:$p)>;
4061def : t2InstAlias<"add${s}${p} $Rdn, $Rm",
4062 (t2ADDrr GPRnopc:$Rdn, GPRnopc:$Rdn, rGPR:$Rm, pred:$p, cc_out:$s)>;
4063def : t2InstAlias<"add${s}${p} $Rdn, $ShiftedRm",
4064 (t2ADDrs GPRnopc:$Rdn, GPRnopc:$Rdn, t2_so_reg:$ShiftedRm,
4065 pred:$p, cc_out:$s)>;
Jim Grosbachef88a922011-09-06 21:44:58 +00004066
Jim Grosbach4e53fe82012-04-05 20:57:13 +00004067// add w/ negative immediates is just a sub.
4068def : t2InstAlias<"add${s}${p} $Rd, $Rn, $imm",
4069 (t2SUBri GPRnopc:$Rd, GPRnopc:$Rn, t2_so_imm_neg:$imm, pred:$p,
4070 cc_out:$s)>;
4071def : t2InstAlias<"add${p} $Rd, $Rn, $imm",
4072 (t2SUBri12 GPRnopc:$Rd, GPR:$Rn, imm0_4095_neg:$imm, pred:$p)>;
4073def : t2InstAlias<"add${s}${p} $Rdn, $imm",
4074 (t2SUBri GPRnopc:$Rdn, GPRnopc:$Rdn, t2_so_imm_neg:$imm, pred:$p,
4075 cc_out:$s)>;
4076def : t2InstAlias<"add${p} $Rdn, $imm",
4077 (t2SUBri12 GPRnopc:$Rdn, GPRnopc:$Rdn, imm0_4095_neg:$imm, pred:$p)>;
4078
Jim Grosbach54319e22012-05-01 21:17:34 +00004079def : t2InstAlias<"add${s}${p}.w $Rd, $Rn, $imm",
4080 (t2SUBri GPRnopc:$Rd, GPRnopc:$Rn, t2_so_imm_neg:$imm, pred:$p,
4081 cc_out:$s)>;
4082def : t2InstAlias<"addw${p} $Rd, $Rn, $imm",
4083 (t2SUBri12 GPRnopc:$Rd, GPR:$Rn, imm0_4095_neg:$imm, pred:$p)>;
4084def : t2InstAlias<"add${s}${p}.w $Rdn, $imm",
4085 (t2SUBri GPRnopc:$Rdn, GPRnopc:$Rdn, t2_so_imm_neg:$imm, pred:$p,
4086 cc_out:$s)>;
4087def : t2InstAlias<"addw${p} $Rdn, $imm",
4088 (t2SUBri12 GPRnopc:$Rdn, GPRnopc:$Rdn, imm0_4095_neg:$imm, pred:$p)>;
4089
Jim Grosbach4e53fe82012-04-05 20:57:13 +00004090
Jim Grosbachf67e8552011-09-16 22:58:42 +00004091// Aliases for SUB without the ".w" optional width specifier.
4092def : t2InstAlias<"sub${s}${p} $Rd, $Rn, $imm",
Jim Grosbachb95ed6e2011-10-03 20:51:59 +00004093 (t2SUBri GPRnopc:$Rd, GPRnopc:$Rn, t2_so_imm:$imm, pred:$p, cc_out:$s)>;
Jim Grosbachf67e8552011-09-16 22:58:42 +00004094def : t2InstAlias<"sub${p} $Rd, $Rn, $imm",
Jim Grosbachb95ed6e2011-10-03 20:51:59 +00004095 (t2SUBri12 GPRnopc:$Rd, GPR:$Rn, imm0_4095:$imm, pred:$p)>;
Jim Grosbachf67e8552011-09-16 22:58:42 +00004096def : t2InstAlias<"sub${s}${p} $Rd, $Rn, $Rm",
Jim Grosbachb95ed6e2011-10-03 20:51:59 +00004097 (t2SUBrr GPRnopc:$Rd, GPRnopc:$Rn, rGPR:$Rm, pred:$p, cc_out:$s)>;
Jim Grosbachf67e8552011-09-16 22:58:42 +00004098def : t2InstAlias<"sub${s}${p} $Rd, $Rn, $ShiftedRm",
Jim Grosbachb95ed6e2011-10-03 20:51:59 +00004099 (t2SUBrs GPRnopc:$Rd, GPRnopc:$Rn, t2_so_reg:$ShiftedRm,
Jim Grosbachf67e8552011-09-16 22:58:42 +00004100 pred:$p, cc_out:$s)>;
Jim Grosbach5d0492c2011-10-28 16:57:07 +00004101// ... and with the destination and source register combined.
4102def : t2InstAlias<"sub${s}${p} $Rdn, $imm",
4103 (t2SUBri GPRnopc:$Rdn, GPRnopc:$Rdn, t2_so_imm:$imm, pred:$p, cc_out:$s)>;
4104def : t2InstAlias<"sub${p} $Rdn, $imm",
4105 (t2SUBri12 GPRnopc:$Rdn, GPRnopc:$Rdn, imm0_4095:$imm, pred:$p)>;
Jim Grosbacha23ecc22012-04-10 17:31:55 +00004106def : t2InstAlias<"sub${s}${p}.w $Rdn, $Rm",
4107 (t2SUBrr GPRnopc:$Rdn, GPRnopc:$Rdn, rGPR:$Rm, pred:$p, cc_out:$s)>;
Jim Grosbach5d0492c2011-10-28 16:57:07 +00004108def : t2InstAlias<"sub${s}${p} $Rdn, $Rm",
4109 (t2SUBrr GPRnopc:$Rdn, GPRnopc:$Rdn, rGPR:$Rm, pred:$p, cc_out:$s)>;
4110def : t2InstAlias<"sub${s}${p} $Rdn, $ShiftedRm",
4111 (t2SUBrs GPRnopc:$Rdn, GPRnopc:$Rdn, t2_so_reg:$ShiftedRm,
4112 pred:$p, cc_out:$s)>;
4113
Jim Grosbachef88a922011-09-06 21:44:58 +00004114// Alias for compares without the ".w" optional width specifier.
4115def : t2InstAlias<"cmn${p} $Rn, $Rm",
4116 (t2CMNzrr GPRnopc:$Rn, rGPR:$Rm, pred:$p)>;
4117def : t2InstAlias<"teq${p} $Rn, $Rm",
4118 (t2TEQrr GPRnopc:$Rn, rGPR:$Rm, pred:$p)>;
4119def : t2InstAlias<"tst${p} $Rn, $Rm",
4120 (t2TSTrr GPRnopc:$Rn, rGPR:$Rm, pred:$p)>;
4121
Jim Grosbach06c1a512011-09-06 22:14:58 +00004122// Memory barriers
Evan Cheng97a45432012-04-27 01:27:19 +00004123def : InstAlias<"dmb", (t2DMB 0xf)>, Requires<[IsThumb, HasDB]>;
4124def : InstAlias<"dsb", (t2DSB 0xf)>, Requires<[IsThumb, HasDB]>;
4125def : InstAlias<"isb", (t2ISB 0xf)>, Requires<[IsThumb, HasDB]>;
Jim Grosbacha8307dd2011-09-07 20:58:57 +00004126
Jim Grosbach0811fe12011-09-09 19:42:40 +00004127// Alias for LDR, LDRB, LDRH, LDRSB, and LDRSH without the ".w" optional
4128// width specifier.
Jim Grosbach8bb5a862011-09-07 21:41:25 +00004129def : t2InstAlias<"ldr${p} $Rt, $addr",
4130 (t2LDRi12 GPR:$Rt, t2addrmode_imm12:$addr, pred:$p)>;
4131def : t2InstAlias<"ldrb${p} $Rt, $addr",
4132 (t2LDRBi12 rGPR:$Rt, t2addrmode_imm12:$addr, pred:$p)>;
4133def : t2InstAlias<"ldrh${p} $Rt, $addr",
4134 (t2LDRHi12 rGPR:$Rt, t2addrmode_imm12:$addr, pred:$p)>;
Jim Grosbach0811fe12011-09-09 19:42:40 +00004135def : t2InstAlias<"ldrsb${p} $Rt, $addr",
4136 (t2LDRSBi12 rGPR:$Rt, t2addrmode_imm12:$addr, pred:$p)>;
4137def : t2InstAlias<"ldrsh${p} $Rt, $addr",
4138 (t2LDRSHi12 rGPR:$Rt, t2addrmode_imm12:$addr, pred:$p)>;
4139
Jim Grosbachab899c12011-09-07 23:10:15 +00004140def : t2InstAlias<"ldr${p} $Rt, $addr",
4141 (t2LDRs GPR:$Rt, t2addrmode_so_reg:$addr, pred:$p)>;
4142def : t2InstAlias<"ldrb${p} $Rt, $addr",
4143 (t2LDRBs rGPR:$Rt, t2addrmode_so_reg:$addr, pred:$p)>;
4144def : t2InstAlias<"ldrh${p} $Rt, $addr",
4145 (t2LDRHs rGPR:$Rt, t2addrmode_so_reg:$addr, pred:$p)>;
Jim Grosbach0811fe12011-09-09 19:42:40 +00004146def : t2InstAlias<"ldrsb${p} $Rt, $addr",
4147 (t2LDRSBs rGPR:$Rt, t2addrmode_so_reg:$addr, pred:$p)>;
4148def : t2InstAlias<"ldrsh${p} $Rt, $addr",
4149 (t2LDRSHs rGPR:$Rt, t2addrmode_so_reg:$addr, pred:$p)>;
Jim Grosbachd32872f2011-09-14 21:24:41 +00004150
Jim Grosbacha5813282011-10-26 22:22:01 +00004151def : t2InstAlias<"ldr${p} $Rt, $addr",
4152 (t2LDRpci GPR:$Rt, t2ldrlabel:$addr, pred:$p)>;
4153def : t2InstAlias<"ldrb${p} $Rt, $addr",
4154 (t2LDRBpci rGPR:$Rt, t2ldrlabel:$addr, pred:$p)>;
4155def : t2InstAlias<"ldrh${p} $Rt, $addr",
4156 (t2LDRHpci rGPR:$Rt, t2ldrlabel:$addr, pred:$p)>;
4157def : t2InstAlias<"ldrsb${p} $Rt, $addr",
4158 (t2LDRSBpci rGPR:$Rt, t2ldrlabel:$addr, pred:$p)>;
4159def : t2InstAlias<"ldrsh${p} $Rt, $addr",
4160 (t2LDRSHpci rGPR:$Rt, t2ldrlabel:$addr, pred:$p)>;
4161
Jim Grosbach036a67d2011-10-27 17:16:55 +00004162// Alias for MVN with(out) the ".w" optional width specifier.
4163def : t2InstAlias<"mvn${s}${p}.w $Rd, $imm",
4164 (t2MVNi rGPR:$Rd, t2_so_imm:$imm, pred:$p, cc_out:$s)>;
Jim Grosbachd32872f2011-09-14 21:24:41 +00004165def : t2InstAlias<"mvn${s}${p} $Rd, $Rm",
4166 (t2MVNr rGPR:$Rd, rGPR:$Rm, pred:$p, cc_out:$s)>;
4167def : t2InstAlias<"mvn${s}${p} $Rd, $ShiftedRm",
4168 (t2MVNs rGPR:$Rd, t2_so_reg:$ShiftedRm, pred:$p, cc_out:$s)>;
Jim Grosbach0b692472011-09-14 23:16:41 +00004169
4170// PKHBT/PKHTB with default shift amount. PKHTB is equivalent to PKHBT when the
4171// shift amount is zero (i.e., unspecified).
4172def : InstAlias<"pkhbt${p} $Rd, $Rn, $Rm",
4173 (t2PKHBT rGPR:$Rd, rGPR:$Rn, rGPR:$Rm, 0, pred:$p)>,
4174 Requires<[HasT2ExtractPack, IsThumb2]>;
4175def : InstAlias<"pkhtb${p} $Rd, $Rn, $Rm",
4176 (t2PKHBT rGPR:$Rd, rGPR:$Rn, rGPR:$Rm, 0, pred:$p)>,
4177 Requires<[HasT2ExtractPack, IsThumb2]>;
4178
Jim Grosbach57b21e42011-09-15 15:55:04 +00004179// PUSH/POP aliases for STM/LDM
4180def : t2InstAlias<"push${p}.w $regs", (t2STMDB_UPD SP, pred:$p, reglist:$regs)>;
4181def : t2InstAlias<"push${p} $regs", (t2STMDB_UPD SP, pred:$p, reglist:$regs)>;
4182def : t2InstAlias<"pop${p}.w $regs", (t2LDMIA_UPD SP, pred:$p, reglist:$regs)>;
4183def : t2InstAlias<"pop${p} $regs", (t2LDMIA_UPD SP, pred:$p, reglist:$regs)>;
4184
Jim Grosbach8524bca2011-12-07 18:32:28 +00004185// STMIA/STMIA_UPD aliases w/o the optional .w suffix
4186def : t2InstAlias<"stm${p} $Rn, $regs",
4187 (t2STMIA GPR:$Rn, pred:$p, reglist:$regs)>;
4188def : t2InstAlias<"stm${p} $Rn!, $regs",
4189 (t2STMIA_UPD GPR:$Rn, pred:$p, reglist:$regs)>;
4190
4191// LDMIA/LDMIA_UPD aliases w/o the optional .w suffix
4192def : t2InstAlias<"ldm${p} $Rn, $regs",
4193 (t2LDMIA GPR:$Rn, pred:$p, reglist:$regs)>;
4194def : t2InstAlias<"ldm${p} $Rn!, $regs",
4195 (t2LDMIA_UPD GPR:$Rn, pred:$p, reglist:$regs)>;
4196
Jim Grosbach3c5d6e42011-11-09 23:44:23 +00004197// STMDB/STMDB_UPD aliases w/ the optional .w suffix
4198def : t2InstAlias<"stmdb${p}.w $Rn, $regs",
4199 (t2STMDB GPR:$Rn, pred:$p, reglist:$regs)>;
4200def : t2InstAlias<"stmdb${p}.w $Rn!, $regs",
4201 (t2STMDB_UPD GPR:$Rn, pred:$p, reglist:$regs)>;
4202
Jim Grosbach88484c02011-10-27 17:33:59 +00004203// LDMDB/LDMDB_UPD aliases w/ the optional .w suffix
4204def : t2InstAlias<"ldmdb${p}.w $Rn, $regs",
4205 (t2LDMDB GPR:$Rn, pred:$p, reglist:$regs)>;
4206def : t2InstAlias<"ldmdb${p}.w $Rn!, $regs",
4207 (t2LDMDB_UPD GPR:$Rn, pred:$p, reglist:$regs)>;
4208
Jim Grosbach689b86e2011-09-15 19:46:13 +00004209// Alias for REV/REV16/REVSH without the ".w" optional width specifier.
Jim Grosbach1b69a122011-09-15 18:13:30 +00004210def : t2InstAlias<"rev${p} $Rd, $Rm", (t2REV rGPR:$Rd, rGPR:$Rm, pred:$p)>;
Jim Grosbach689b86e2011-09-15 19:46:13 +00004211def : t2InstAlias<"rev16${p} $Rd, $Rm", (t2REV16 rGPR:$Rd, rGPR:$Rm, pred:$p)>;
4212def : t2InstAlias<"revsh${p} $Rd, $Rm", (t2REVSH rGPR:$Rd, rGPR:$Rm, pred:$p)>;
Jim Grosbach191d33f2011-09-15 20:54:14 +00004213
4214
4215// Alias for RSB without the ".w" optional width specifier, and with optional
4216// implied destination register.
4217def : t2InstAlias<"rsb${s}${p} $Rd, $Rn, $imm",
4218 (t2RSBri rGPR:$Rd, rGPR:$Rn, t2_so_imm:$imm, pred:$p, cc_out:$s)>;
4219def : t2InstAlias<"rsb${s}${p} $Rdn, $imm",
4220 (t2RSBri rGPR:$Rdn, rGPR:$Rdn, t2_so_imm:$imm, pred:$p, cc_out:$s)>;
4221def : t2InstAlias<"rsb${s}${p} $Rdn, $Rm",
4222 (t2RSBrr rGPR:$Rdn, rGPR:$Rdn, rGPR:$Rm, pred:$p, cc_out:$s)>;
4223def : t2InstAlias<"rsb${s}${p} $Rdn, $ShiftedRm",
4224 (t2RSBrs rGPR:$Rdn, rGPR:$Rdn, t2_so_reg:$ShiftedRm, pred:$p,
4225 cc_out:$s)>;
Jim Grosbachb105b992011-09-16 18:32:30 +00004226
4227// SSAT/USAT optional shift operand.
4228def : t2InstAlias<"ssat${p} $Rd, $sat_imm, $Rn",
4229 (t2SSAT rGPR:$Rd, imm1_32:$sat_imm, rGPR:$Rn, 0, pred:$p)>;
4230def : t2InstAlias<"usat${p} $Rd, $sat_imm, $Rn",
4231 (t2USAT rGPR:$Rd, imm0_31:$sat_imm, rGPR:$Rn, 0, pred:$p)>;
4232
Jim Grosbach8213c962011-09-16 20:50:13 +00004233// STM w/o the .w suffix.
4234def : t2InstAlias<"stm${p} $Rn, $regs",
4235 (t2STMIA GPR:$Rn, pred:$p, reglist:$regs)>;
Jim Grosbach642caea2011-09-16 21:06:12 +00004236
4237// Alias for STR, STRB, and STRH without the ".w" optional
4238// width specifier.
4239def : t2InstAlias<"str${p} $Rt, $addr",
4240 (t2STRi12 GPR:$Rt, t2addrmode_imm12:$addr, pred:$p)>;
4241def : t2InstAlias<"strb${p} $Rt, $addr",
4242 (t2STRBi12 rGPR:$Rt, t2addrmode_imm12:$addr, pred:$p)>;
4243def : t2InstAlias<"strh${p} $Rt, $addr",
4244 (t2STRHi12 rGPR:$Rt, t2addrmode_imm12:$addr, pred:$p)>;
4245
4246def : t2InstAlias<"str${p} $Rt, $addr",
4247 (t2STRs GPR:$Rt, t2addrmode_so_reg:$addr, pred:$p)>;
4248def : t2InstAlias<"strb${p} $Rt, $addr",
4249 (t2STRBs rGPR:$Rt, t2addrmode_so_reg:$addr, pred:$p)>;
4250def : t2InstAlias<"strh${p} $Rt, $addr",
4251 (t2STRHs rGPR:$Rt, t2addrmode_so_reg:$addr, pred:$p)>;
Jim Grosbach8a8d28b2011-09-19 17:56:37 +00004252
4253// Extend instruction optional rotate operand.
4254def : t2InstAlias<"sxtab${p} $Rd, $Rn, $Rm",
4255 (t2SXTAB rGPR:$Rd, rGPR:$Rn, rGPR:$Rm, 0, pred:$p)>;
4256def : t2InstAlias<"sxtah${p} $Rd, $Rn, $Rm",
4257 (t2SXTAH rGPR:$Rd, rGPR:$Rn, rGPR:$Rm, 0, pred:$p)>;
4258def : t2InstAlias<"sxtab16${p} $Rd, $Rn, $Rm",
4259 (t2SXTAB16 rGPR:$Rd, rGPR:$Rn, rGPR:$Rm, 0, pred:$p)>;
Jim Grosbach25ddc2b2011-09-27 22:18:54 +00004260
Jim Grosbach326efe52011-09-19 20:29:33 +00004261def : t2InstAlias<"sxtb${p} $Rd, $Rm",
4262 (t2SXTB rGPR:$Rd, rGPR:$Rm, 0, pred:$p)>;
4263def : t2InstAlias<"sxtb16${p} $Rd, $Rm",
4264 (t2SXTB16 rGPR:$Rd, rGPR:$Rm, 0, pred:$p)>;
4265def : t2InstAlias<"sxth${p} $Rd, $Rm",
4266 (t2SXTH rGPR:$Rd, rGPR:$Rm, 0, pred:$p)>;
Jim Grosbach25ddc2b2011-09-27 22:18:54 +00004267def : t2InstAlias<"sxtb${p}.w $Rd, $Rm",
4268 (t2SXTB rGPR:$Rd, rGPR:$Rm, 0, pred:$p)>;
4269def : t2InstAlias<"sxth${p}.w $Rd, $Rm",
4270 (t2SXTH rGPR:$Rd, rGPR:$Rm, 0, pred:$p)>;
Jim Grosbach326efe52011-09-19 20:29:33 +00004271
Jim Grosbach50f1c372011-09-20 00:46:54 +00004272def : t2InstAlias<"uxtab${p} $Rd, $Rn, $Rm",
4273 (t2UXTAB rGPR:$Rd, rGPR:$Rn, rGPR:$Rm, 0, pred:$p)>;
4274def : t2InstAlias<"uxtah${p} $Rd, $Rn, $Rm",
4275 (t2UXTAH rGPR:$Rd, rGPR:$Rn, rGPR:$Rm, 0, pred:$p)>;
4276def : t2InstAlias<"uxtab16${p} $Rd, $Rn, $Rm",
4277 (t2UXTAB16 rGPR:$Rd, rGPR:$Rn, rGPR:$Rm, 0, pred:$p)>;
4278def : t2InstAlias<"uxtb${p} $Rd, $Rm",
4279 (t2UXTB rGPR:$Rd, rGPR:$Rm, 0, pred:$p)>;
4280def : t2InstAlias<"uxtb16${p} $Rd, $Rm",
4281 (t2UXTB16 rGPR:$Rd, rGPR:$Rm, 0, pred:$p)>;
4282def : t2InstAlias<"uxth${p} $Rd, $Rm",
4283 (t2UXTH rGPR:$Rd, rGPR:$Rm, 0, pred:$p)>;
4284
Jim Grosbach25ddc2b2011-09-27 22:18:54 +00004285def : t2InstAlias<"uxtb${p}.w $Rd, $Rm",
4286 (t2UXTB rGPR:$Rd, rGPR:$Rm, 0, pred:$p)>;
4287def : t2InstAlias<"uxth${p}.w $Rd, $Rm",
4288 (t2UXTH rGPR:$Rd, rGPR:$Rm, 0, pred:$p)>;
4289
Jim Grosbach326efe52011-09-19 20:29:33 +00004290// Extend instruction w/o the ".w" optional width specifier.
Jim Grosbach50f1c372011-09-20 00:46:54 +00004291def : t2InstAlias<"uxtb${p} $Rd, $Rm$rot",
4292 (t2UXTB rGPR:$Rd, rGPR:$Rm, rot_imm:$rot, pred:$p)>;
4293def : t2InstAlias<"uxtb16${p} $Rd, $Rm$rot",
4294 (t2UXTB16 rGPR:$Rd, rGPR:$Rm, rot_imm:$rot, pred:$p)>;
4295def : t2InstAlias<"uxth${p} $Rd, $Rm$rot",
4296 (t2UXTH rGPR:$Rd, rGPR:$Rm, rot_imm:$rot, pred:$p)>;
4297
Jim Grosbach326efe52011-09-19 20:29:33 +00004298def : t2InstAlias<"sxtb${p} $Rd, $Rm$rot",
4299 (t2SXTB rGPR:$Rd, rGPR:$Rm, rot_imm:$rot, pred:$p)>;
4300def : t2InstAlias<"sxtb16${p} $Rd, $Rm$rot",
4301 (t2SXTB16 rGPR:$Rd, rGPR:$Rm, rot_imm:$rot, pred:$p)>;
4302def : t2InstAlias<"sxth${p} $Rd, $Rm$rot",
4303 (t2SXTH rGPR:$Rd, rGPR:$Rm, rot_imm:$rot, pred:$p)>;
Jim Grosbach89a63372011-10-28 22:36:30 +00004304
4305
4306// "mov Rd, t2_so_imm_not" can be handled via "mvn" in assembly, just like
4307// for isel.
4308def : t2InstAlias<"mov${p} $Rd, $imm",
4309 (t2MVNi rGPR:$Rd, t2_so_imm_not:$imm, pred:$p, zero_reg)>;
Jim Grosbach46777082011-12-14 17:56:51 +00004310def : t2InstAlias<"mvn${p} $Rd, $imm",
4311 (t2MOVi rGPR:$Rd, t2_so_imm_not:$imm, pred:$p, zero_reg)>;
Jim Grosbach840bf7e2011-12-09 22:02:17 +00004312// Same for AND <--> BIC
4313def : t2InstAlias<"bic${s}${p} $Rd, $Rn, $imm",
4314 (t2ANDri rGPR:$Rd, rGPR:$Rn, so_imm_not:$imm,
4315 pred:$p, cc_out:$s)>;
4316def : t2InstAlias<"bic${s}${p} $Rdn, $imm",
4317 (t2ANDri rGPR:$Rdn, rGPR:$Rdn, so_imm_not:$imm,
4318 pred:$p, cc_out:$s)>;
4319def : t2InstAlias<"and${s}${p} $Rd, $Rn, $imm",
4320 (t2BICri rGPR:$Rd, rGPR:$Rn, so_imm_not:$imm,
4321 pred:$p, cc_out:$s)>;
4322def : t2InstAlias<"and${s}${p} $Rdn, $imm",
4323 (t2BICri rGPR:$Rdn, rGPR:$Rdn, so_imm_not:$imm,
4324 pred:$p, cc_out:$s)>;
Jim Grosbach8d11c632011-12-14 17:30:24 +00004325// Likewise, "add Rd, t2_so_imm_neg" -> sub
Jim Grosbach3bc8a3d2011-12-08 00:31:07 +00004326def : t2InstAlias<"add${s}${p} $Rd, $Rn, $imm",
4327 (t2SUBri GPRnopc:$Rd, GPRnopc:$Rn, t2_so_imm_neg:$imm,
4328 pred:$p, cc_out:$s)>;
4329def : t2InstAlias<"add${s}${p} $Rd, $imm",
4330 (t2SUBri GPRnopc:$Rd, GPRnopc:$Rd, t2_so_imm_neg:$imm,
4331 pred:$p, cc_out:$s)>;
Jim Grosbach8d11c632011-12-14 17:30:24 +00004332// Same for CMP <--> CMN via t2_so_imm_neg
4333def : t2InstAlias<"cmp${p} $Rd, $imm",
Bill Wendlingad5c8802012-06-11 08:07:26 +00004334 (t2CMNri rGPR:$Rd, t2_so_imm_neg:$imm, pred:$p)>;
Jim Grosbach8d11c632011-12-14 17:30:24 +00004335def : t2InstAlias<"cmn${p} $Rd, $imm",
4336 (t2CMPri rGPR:$Rd, t2_so_imm_neg:$imm, pred:$p)>;
Jim Grosbach7f1ec952011-11-15 19:55:16 +00004337
4338
4339// Wide 'mul' encoding can be specified with only two operands.
4340def : t2InstAlias<"mul${p} $Rn, $Rm",
Jim Grosbachcf9814d2011-12-06 05:03:45 +00004341 (t2MUL rGPR:$Rn, rGPR:$Rm, rGPR:$Rn, pred:$p)>;
Jim Grosbache91e7bc2011-12-13 20:23:22 +00004342
4343// "neg" is and alias for "rsb rd, rn, #0"
4344def : t2InstAlias<"neg${s}${p} $Rd, $Rm",
4345 (t2RSBri rGPR:$Rd, rGPR:$Rm, 0, pred:$p, cc_out:$s)>;
Jim Grosbach863d2af2011-12-13 22:45:11 +00004346
4347// MOV so_reg assembler pseudos. InstAlias isn't expressive enough for
4348// these, unfortunately.
4349def t2MOVsi: t2AsmPseudo<"mov${p} $Rd, $shift",
4350 (ins rGPR:$Rd, t2_so_reg:$shift, pred:$p)>;
4351def t2MOVSsi: t2AsmPseudo<"movs${p} $Rd, $shift",
4352 (ins rGPR:$Rd, t2_so_reg:$shift, pred:$p)>;
Jim Grosbachb6744db2011-12-15 23:52:17 +00004353
Jim Grosbach2cc5cda2011-12-21 20:54:00 +00004354def t2MOVsr: t2AsmPseudo<"mov${p} $Rd, $shift",
4355 (ins rGPR:$Rd, so_reg_reg:$shift, pred:$p)>;
4356def t2MOVSsr: t2AsmPseudo<"movs${p} $Rd, $shift",
4357 (ins rGPR:$Rd, so_reg_reg:$shift, pred:$p)>;
4358
Jim Grosbachb6744db2011-12-15 23:52:17 +00004359// ADR w/o the .w suffix
4360def : t2InstAlias<"adr${p} $Rd, $addr",
4361 (t2ADR rGPR:$Rd, t2adrlabel:$addr, pred:$p)>;
Jim Grosbach0b4c6732012-01-18 22:46:46 +00004362
4363// LDR(literal) w/ alternate [pc, #imm] syntax.
4364def t2LDRpcrel : t2AsmPseudo<"ldr${p} $Rt, $addr",
4365 (ins GPRnopc:$Rt, t2ldr_pcrel_imm12:$addr, pred:$p)>;
4366def t2LDRBpcrel : t2AsmPseudo<"ldrb${p} $Rt, $addr",
4367 (ins GPRnopc:$Rt, t2ldr_pcrel_imm12:$addr, pred:$p)>;
4368def t2LDRHpcrel : t2AsmPseudo<"ldrh${p} $Rt, $addr",
4369 (ins GPRnopc:$Rt, t2ldr_pcrel_imm12:$addr, pred:$p)>;
4370def t2LDRSBpcrel : t2AsmPseudo<"ldrsb${p} $Rt, $addr",
4371 (ins GPRnopc:$Rt, t2ldr_pcrel_imm12:$addr, pred:$p)>;
4372def t2LDRSHpcrel : t2AsmPseudo<"ldrsh${p} $Rt, $addr",
4373 (ins GPRnopc:$Rt, t2ldr_pcrel_imm12:$addr, pred:$p)>;
4374 // Version w/ the .w suffix.
4375def : t2InstAlias<"ldr${p}.w $Rt, $addr",
4376 (t2LDRpcrel GPRnopc:$Rt, t2ldr_pcrel_imm12:$addr, pred:$p)>;
4377def : t2InstAlias<"ldrb${p}.w $Rt, $addr",
4378 (t2LDRBpcrel GPRnopc:$Rt, t2ldr_pcrel_imm12:$addr, pred:$p)>;
4379def : t2InstAlias<"ldrh${p}.w $Rt, $addr",
4380 (t2LDRHpcrel GPRnopc:$Rt, t2ldr_pcrel_imm12:$addr, pred:$p)>;
4381def : t2InstAlias<"ldrsb${p}.w $Rt, $addr",
4382 (t2LDRSBpcrel GPRnopc:$Rt, t2ldr_pcrel_imm12:$addr, pred:$p)>;
4383def : t2InstAlias<"ldrsh${p}.w $Rt, $addr",
4384 (t2LDRSHpcrel GPRnopc:$Rt, t2ldr_pcrel_imm12:$addr, pred:$p)>;
Jim Grosbach12a88632012-01-21 00:07:56 +00004385
4386def : t2InstAlias<"add${p} $Rd, pc, $imm",
4387 (t2ADR rGPR:$Rd, imm0_4095:$imm, pred:$p)>;