]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - lib/Target/ARM/ARMInstrThumb2.td
Vendor import of llvm trunk r321414:
[FreeBSD/FreeBSD.git] / lib / Target / ARM / ARMInstrThumb2.td
1 //===-- ARMInstrThumb2.td - Thumb2 support for ARM ---------*- tablegen -*-===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This file describes the Thumb2 instruction set.
11 //
12 //===----------------------------------------------------------------------===//
13
14 // IT block predicate field
15 def it_pred_asmoperand : AsmOperandClass {
16   let Name = "ITCondCode";
17   let ParserMethod = "parseITCondCode";
18 }
19 def it_pred : Operand<i32> {
20   let PrintMethod = "printMandatoryPredicateOperand";
21   let ParserMatchClass = it_pred_asmoperand;
22 }
23
24 // IT block condition mask
25 def it_mask_asmoperand : AsmOperandClass { let Name = "ITMask"; }
26 def it_mask : Operand<i32> {
27   let PrintMethod = "printThumbITMask";
28   let ParserMatchClass = it_mask_asmoperand;
29 }
30
31 // 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
37 def t2_shift_imm : Operand<i32> {
38   let PrintMethod = "printShiftImmOperand";
39   let ParserMatchClass = ShifterImmAsmOperand;
40   let DecoderMethod = "DecodeT2ShifterImmOperand";
41 }
42
43 // Shifted operands. No register controlled shifts for Thumb2.
44 // Note: We do not support rrx shifted operands yet.
45 def t2_so_reg : Operand<i32>,    // reg imm
46                 ComplexPattern<i32, 2, "SelectShiftImmShifterOperand",
47                                [shl,srl,sra,rotr]> {
48   let EncoderMethod = "getT2SORegOpValue";
49   let PrintMethod = "printT2SOOperand";
50   let DecoderMethod = "DecodeSORegImmOperand";
51   let ParserMatchClass = ShiftedImmAsmOperand;
52   let MIOperandInfo = (ops rGPR, i32imm);
53 }
54
55 // t2_so_imm_not_XFORM - Return the complement of a t2_so_imm value
56 def t2_so_imm_not_XFORM : SDNodeXForm<imm, [{
57   return CurDAG->getTargetConstant(~((uint32_t)N->getZExtValue()), SDLoc(N),
58                                    MVT::i32);
59 }]>;
60
61 // t2_so_imm_neg_XFORM - Return the negation of a t2_so_imm value
62 def t2_so_imm_neg_XFORM : SDNodeXForm<imm, [{
63   return CurDAG->getTargetConstant(-((int)N->getZExtValue()), SDLoc(N),
64                                    MVT::i32);
65 }]>;
66
67 // so_imm_notSext_XFORM - Return a so_imm value packed into the format
68 // described for so_imm_notSext def below, with sign extension from 16
69 // bits.
70 def t2_so_imm_notSext16_XFORM : SDNodeXForm<imm, [{
71   APInt apIntN = N->getAPIntValue();
72   unsigned N16bitSignExt = apIntN.trunc(16).sext(32).getZExtValue();
73   return CurDAG->getTargetConstant(~N16bitSignExt, SDLoc(N), MVT::i32);
74 }]>;
75
76 // t2_so_imm - Match a 32-bit immediate operand, which is an
77 // 8-bit immediate rotated by an arbitrary number of bits, or an 8-bit
78 // immediate splatted into multiple bytes of the word.
79 def t2_so_imm_asmoperand : AsmOperandClass {
80   let Name = "T2SOImm";
81   let RenderMethod = "addImmOperands";
82
83 }
84 def t2_so_imm : Operand<i32>, ImmLeaf<i32, [{
85     return ARM_AM::getT2SOImmVal(Imm) != -1;
86   }]> {
87   let ParserMatchClass = t2_so_imm_asmoperand;
88   let EncoderMethod = "getT2SOImmOpValue";
89   let DecoderMethod = "DecodeT2SOImm";
90 }
91
92 // t2_so_imm_not - Match an immediate that is a complement
93 // of a t2_so_imm.
94 // Note: this pattern doesn't require an encoder method and such, as it's
95 // only used on aliases (Pat<> and InstAlias<>). The actual encoding
96 // is handled by the destination instructions, which use t2_so_imm.
97 def t2_so_imm_not_asmoperand : AsmOperandClass { let Name = "T2SOImmNot"; }
98 def t2_so_imm_not : Operand<i32>, PatLeaf<(imm), [{
99   return ARM_AM::getT2SOImmVal(~((uint32_t)N->getZExtValue())) != -1;
100 }], t2_so_imm_not_XFORM> {
101   let ParserMatchClass = t2_so_imm_not_asmoperand;
102 }
103
104 // t2_so_imm_notSext - match an immediate that is a complement of a t2_so_imm
105 // if the upper 16 bits are zero.
106 def t2_so_imm_notSext : Operand<i32>, PatLeaf<(imm), [{
107     APInt apIntN = N->getAPIntValue();
108     if (!apIntN.isIntN(16)) return false;
109     unsigned N16bitSignExt = apIntN.trunc(16).sext(32).getZExtValue();
110     return ARM_AM::getT2SOImmVal(~N16bitSignExt) != -1;
111   }], t2_so_imm_notSext16_XFORM> {
112   let ParserMatchClass = t2_so_imm_not_asmoperand;
113 }
114
115 // t2_so_imm_neg - Match an immediate that is a negation of a t2_so_imm.
116 def t2_so_imm_neg_asmoperand : AsmOperandClass { let Name = "T2SOImmNeg"; }
117 def t2_so_imm_neg : Operand<i32>, ImmLeaf<i32, [{
118   return Imm && ARM_AM::getT2SOImmVal(-(uint32_t)Imm) != -1;
119 }], t2_so_imm_neg_XFORM> {
120   let ParserMatchClass = t2_so_imm_neg_asmoperand;
121 }
122
123 /// imm0_4095 predicate - True if the 32-bit immediate is in the range [0,4095].
124 def imm0_4095_asmoperand: ImmAsmOperand<0,4095> { let Name = "Imm0_4095"; }
125 def imm0_4095 : Operand<i32>, ImmLeaf<i32, [{
126   return Imm >= 0 && Imm < 4096;
127 }]> {
128   let ParserMatchClass = imm0_4095_asmoperand;
129 }
130
131 def imm0_4095_neg_asmoperand: AsmOperandClass { let Name = "Imm0_4095Neg"; }
132 def imm0_4095_neg : Operand<i32>, PatLeaf<(i32 imm), [{
133  return (uint32_t)(-N->getZExtValue()) < 4096;
134 }], imm_neg_XFORM> {
135   let ParserMatchClass = imm0_4095_neg_asmoperand;
136 }
137
138 def imm1_255_neg : PatLeaf<(i32 imm), [{
139   uint32_t Val = -N->getZExtValue();
140   return (Val > 0 && Val < 255);
141 }], imm_neg_XFORM>;
142
143 def imm0_255_not : PatLeaf<(i32 imm), [{
144   return (uint32_t)(~N->getZExtValue()) < 255;
145 }], imm_not_XFORM>;
146
147 def lo5AllOne : PatLeaf<(i32 imm), [{
148   // Returns true if all low 5-bits are 1.
149   return (((uint32_t)N->getZExtValue()) & 0x1FUL) == 0x1FUL;
150 }]>;
151
152 // Define Thumb2 specific addressing modes.
153
154 // t2addrmode_imm12  := reg + imm12
155 def t2addrmode_imm12_asmoperand : AsmOperandClass {let Name="MemUImm12Offset";}
156 def t2addrmode_imm12 : MemOperand,
157                        ComplexPattern<i32, 2, "SelectT2AddrModeImm12", []> {
158   let PrintMethod = "printAddrModeImm12Operand<false>";
159   let EncoderMethod = "getAddrModeImm12OpValue";
160   let DecoderMethod = "DecodeT2AddrModeImm12";
161   let ParserMatchClass = t2addrmode_imm12_asmoperand;
162   let MIOperandInfo = (ops GPR:$base, i32imm:$offsimm);
163 }
164
165 // t2ldrlabel  := imm12
166 def t2ldrlabel : Operand<i32> {
167   let EncoderMethod = "getAddrModeImm12OpValue";
168   let PrintMethod = "printThumbLdrLabelOperand";
169 }
170
171 def t2ldr_pcrel_imm12_asmoperand : AsmOperandClass {let Name = "MemPCRelImm12";}
172 def t2ldr_pcrel_imm12 : Operand<i32> {
173   let ParserMatchClass = t2ldr_pcrel_imm12_asmoperand;
174   // used for assembler pseudo instruction and maps to t2ldrlabel, so
175   // doesn't need encoder or print methods of its own.
176 }
177
178 // ADR instruction labels.
179 def t2adrlabel : Operand<i32> {
180   let EncoderMethod = "getT2AdrLabelOpValue";
181   let PrintMethod = "printAdrLabelOperand<0>";
182 }
183
184 // t2addrmode_posimm8  := reg + imm8
185 def MemPosImm8OffsetAsmOperand : AsmOperandClass {let Name="MemPosImm8Offset";}
186 def t2addrmode_posimm8 : MemOperand {
187   let PrintMethod = "printT2AddrModeImm8Operand<false>";
188   let EncoderMethod = "getT2AddrModeImm8OpValue";
189   let DecoderMethod = "DecodeT2AddrModeImm8";
190   let ParserMatchClass = MemPosImm8OffsetAsmOperand;
191   let MIOperandInfo = (ops GPR:$base, i32imm:$offsimm);
192 }
193
194 // t2addrmode_negimm8  := reg - imm8
195 def MemNegImm8OffsetAsmOperand : AsmOperandClass {let Name="MemNegImm8Offset";}
196 def t2addrmode_negimm8 : MemOperand,
197                       ComplexPattern<i32, 2, "SelectT2AddrModeImm8", []> {
198   let PrintMethod = "printT2AddrModeImm8Operand<false>";
199   let EncoderMethod = "getT2AddrModeImm8OpValue";
200   let DecoderMethod = "DecodeT2AddrModeImm8";
201   let ParserMatchClass = MemNegImm8OffsetAsmOperand;
202   let MIOperandInfo = (ops GPR:$base, i32imm:$offsimm);
203 }
204
205 // t2addrmode_imm8  := reg +/- imm8
206 def MemImm8OffsetAsmOperand : AsmOperandClass { let Name = "MemImm8Offset"; }
207 class T2AddrMode_Imm8 : MemOperand,
208                         ComplexPattern<i32, 2, "SelectT2AddrModeImm8", []> {
209   let EncoderMethod = "getT2AddrModeImm8OpValue";
210   let DecoderMethod = "DecodeT2AddrModeImm8";
211   let ParserMatchClass = MemImm8OffsetAsmOperand;
212   let MIOperandInfo = (ops GPR:$base, i32imm:$offsimm);
213 }
214
215 def t2addrmode_imm8 : T2AddrMode_Imm8 {
216   let PrintMethod = "printT2AddrModeImm8Operand<false>";
217 }
218
219 def t2addrmode_imm8_pre : T2AddrMode_Imm8 {
220   let PrintMethod = "printT2AddrModeImm8Operand<true>";
221 }
222
223 def t2am_imm8_offset : MemOperand,
224                        ComplexPattern<i32, 1, "SelectT2AddrModeImm8Offset",
225                                       [], [SDNPWantRoot]> {
226   let PrintMethod = "printT2AddrModeImm8OffsetOperand";
227   let EncoderMethod = "getT2AddrModeImm8OffsetOpValue";
228   let DecoderMethod = "DecodeT2Imm8";
229 }
230
231 // t2addrmode_imm8s4  := reg +/- (imm8 << 2)
232 def MemImm8s4OffsetAsmOperand : AsmOperandClass {let Name = "MemImm8s4Offset";}
233 class T2AddrMode_Imm8s4 : MemOperand {
234   let EncoderMethod = "getT2AddrModeImm8s4OpValue";
235   let DecoderMethod = "DecodeT2AddrModeImm8s4";
236   let ParserMatchClass = MemImm8s4OffsetAsmOperand;
237   let MIOperandInfo = (ops GPR:$base, i32imm:$offsimm);
238 }
239
240 def t2addrmode_imm8s4 : T2AddrMode_Imm8s4 {
241   let PrintMethod = "printT2AddrModeImm8s4Operand<false>";
242 }
243
244 def t2addrmode_imm8s4_pre : T2AddrMode_Imm8s4 {
245   let PrintMethod = "printT2AddrModeImm8s4Operand<true>";
246 }
247
248 def t2am_imm8s4_offset_asmoperand : AsmOperandClass { let Name = "Imm8s4"; }
249 def t2am_imm8s4_offset : MemOperand {
250   let PrintMethod = "printT2AddrModeImm8s4OffsetOperand";
251   let EncoderMethod = "getT2Imm8s4OpValue";
252   let DecoderMethod = "DecodeT2Imm8S4";
253 }
254
255 // t2addrmode_imm0_1020s4  := reg + (imm8 << 2)
256 def MemImm0_1020s4OffsetAsmOperand : AsmOperandClass {
257   let Name = "MemImm0_1020s4Offset";
258 }
259 def t2addrmode_imm0_1020s4 : MemOperand,
260                          ComplexPattern<i32, 2, "SelectT2AddrModeExclusive"> {
261   let PrintMethod = "printT2AddrModeImm0_1020s4Operand";
262   let EncoderMethod = "getT2AddrModeImm0_1020s4OpValue";
263   let DecoderMethod = "DecodeT2AddrModeImm0_1020s4";
264   let ParserMatchClass = MemImm0_1020s4OffsetAsmOperand;
265   let MIOperandInfo = (ops GPRnopc:$base, i32imm:$offsimm);
266 }
267
268 // t2addrmode_so_reg  := reg + (reg << imm2)
269 def t2addrmode_so_reg_asmoperand : AsmOperandClass {let Name="T2MemRegOffset";}
270 def t2addrmode_so_reg : MemOperand,
271                         ComplexPattern<i32, 3, "SelectT2AddrModeSoReg", []> {
272   let PrintMethod = "printT2AddrModeSoRegOperand";
273   let EncoderMethod = "getT2AddrModeSORegOpValue";
274   let DecoderMethod = "DecodeT2AddrModeSOReg";
275   let ParserMatchClass = t2addrmode_so_reg_asmoperand;
276   let MIOperandInfo = (ops GPRnopc:$base, rGPR:$offsreg, i32imm:$offsimm);
277 }
278
279 // Addresses for the TBB/TBH instructions.
280 def addrmode_tbb_asmoperand : AsmOperandClass { let Name = "MemTBB"; }
281 def addrmode_tbb : MemOperand {
282   let PrintMethod = "printAddrModeTBB";
283   let ParserMatchClass = addrmode_tbb_asmoperand;
284   let MIOperandInfo = (ops GPR:$Rn, rGPR:$Rm);
285 }
286 def addrmode_tbh_asmoperand : AsmOperandClass { let Name = "MemTBH"; }
287 def addrmode_tbh : MemOperand {
288   let PrintMethod = "printAddrModeTBH";
289   let ParserMatchClass = addrmode_tbh_asmoperand;
290   let MIOperandInfo = (ops GPR:$Rn, rGPR:$Rm);
291 }
292
293 //===----------------------------------------------------------------------===//
294 // Multiclass helpers...
295 //
296
297
298 class T2OneRegImm<dag oops, dag iops, InstrItinClass itin,
299            string opc, string asm, list<dag> pattern>
300   : T2I<oops, iops, itin, opc, asm, pattern> {
301   bits<4> Rd;
302   bits<12> imm;
303
304   let Inst{11-8}  = Rd;
305   let Inst{26}    = imm{11};
306   let Inst{14-12} = imm{10-8};
307   let Inst{7-0}   = imm{7-0};
308 }
309
310
311 class T2sOneRegImm<dag oops, dag iops, InstrItinClass itin,
312            string opc, string asm, list<dag> pattern>
313   : T2sI<oops, iops, itin, opc, asm, pattern> {
314   bits<4> Rd;
315   bits<4> Rn;
316   bits<12> imm;
317
318   let Inst{11-8}  = Rd;
319   let Inst{26}    = imm{11};
320   let Inst{14-12} = imm{10-8};
321   let Inst{7-0}   = imm{7-0};
322 }
323
324 class T2OneRegCmpImm<dag oops, dag iops, InstrItinClass itin,
325            string opc, string asm, list<dag> pattern>
326   : T2I<oops, iops, itin, opc, asm, pattern> {
327   bits<4> Rn;
328   bits<12> imm;
329
330   let Inst{19-16}  = Rn;
331   let Inst{26}    = imm{11};
332   let Inst{14-12} = imm{10-8};
333   let Inst{7-0}   = imm{7-0};
334 }
335
336
337 class T2OneRegShiftedReg<dag oops, dag iops, InstrItinClass itin,
338            string opc, string asm, list<dag> pattern>
339   : T2I<oops, iops, itin, opc, asm, pattern> {
340   bits<4> Rd;
341   bits<12> ShiftedRm;
342
343   let Inst{11-8}  = Rd;
344   let Inst{3-0}   = ShiftedRm{3-0};
345   let Inst{5-4}   = ShiftedRm{6-5};
346   let Inst{14-12} = ShiftedRm{11-9};
347   let Inst{7-6}   = ShiftedRm{8-7};
348 }
349
350 class T2sOneRegShiftedReg<dag oops, dag iops, InstrItinClass itin,
351            string opc, string asm, list<dag> pattern>
352   : T2sI<oops, iops, itin, opc, asm, pattern> {
353   bits<4> Rd;
354   bits<12> ShiftedRm;
355
356   let Inst{11-8}  = Rd;
357   let Inst{3-0}   = ShiftedRm{3-0};
358   let Inst{5-4}   = ShiftedRm{6-5};
359   let Inst{14-12} = ShiftedRm{11-9};
360   let Inst{7-6}   = ShiftedRm{8-7};
361 }
362
363 class T2OneRegCmpShiftedReg<dag oops, dag iops, InstrItinClass itin,
364            string opc, string asm, list<dag> pattern>
365   : T2I<oops, iops, itin, opc, asm, pattern> {
366   bits<4> Rn;
367   bits<12> ShiftedRm;
368
369   let Inst{19-16} = Rn;
370   let Inst{3-0}   = ShiftedRm{3-0};
371   let Inst{5-4}   = ShiftedRm{6-5};
372   let Inst{14-12} = ShiftedRm{11-9};
373   let Inst{7-6}   = ShiftedRm{8-7};
374 }
375
376 class T2TwoReg<dag oops, dag iops, InstrItinClass itin,
377            string opc, string asm, list<dag> pattern>
378   : T2I<oops, iops, itin, opc, asm, pattern> {
379   bits<4> Rd;
380   bits<4> Rm;
381
382   let Inst{11-8}  = Rd;
383   let Inst{3-0}   = Rm;
384 }
385
386 class T2sTwoReg<dag oops, dag iops, InstrItinClass itin,
387            string opc, string asm, list<dag> pattern>
388   : T2sI<oops, iops, itin, opc, asm, pattern> {
389   bits<4> Rd;
390   bits<4> Rm;
391
392   let Inst{11-8}  = Rd;
393   let Inst{3-0}   = Rm;
394 }
395
396 class T2TwoRegCmp<dag oops, dag iops, InstrItinClass itin,
397            string opc, string asm, list<dag> pattern>
398   : T2I<oops, iops, itin, opc, asm, pattern> {
399   bits<4> Rn;
400   bits<4> Rm;
401
402   let Inst{19-16} = Rn;
403   let Inst{3-0}   = Rm;
404 }
405
406
407 class T2TwoRegImm<dag oops, dag iops, InstrItinClass itin,
408            string opc, string asm, list<dag> pattern>
409   : T2I<oops, iops, itin, opc, asm, pattern> {
410   bits<4> Rd;
411   bits<4> Rn;
412   bits<12> imm;
413
414   let Inst{11-8}  = Rd;
415   let Inst{19-16} = Rn;
416   let Inst{26}    = imm{11};
417   let Inst{14-12} = imm{10-8};
418   let Inst{7-0}   = imm{7-0};
419 }
420
421 class T2sTwoRegImm<dag oops, dag iops, InstrItinClass itin,
422            string opc, string asm, list<dag> pattern>
423   : T2sI<oops, iops, itin, opc, asm, pattern> {
424   bits<4> Rd;
425   bits<4> Rn;
426   bits<12> imm;
427
428   let Inst{11-8}  = Rd;
429   let Inst{19-16} = Rn;
430   let Inst{26}    = imm{11};
431   let Inst{14-12} = imm{10-8};
432   let Inst{7-0}   = imm{7-0};
433 }
434
435 class T2TwoRegShiftImm<dag oops, dag iops, InstrItinClass itin,
436            string opc, string asm, list<dag> pattern>
437   : T2I<oops, iops, itin, opc, asm, pattern> {
438   bits<4> Rd;
439   bits<4> Rm;
440   bits<5> imm;
441
442   let Inst{11-8}  = Rd;
443   let Inst{3-0}   = Rm;
444   let Inst{14-12} = imm{4-2};
445   let Inst{7-6}   = imm{1-0};
446 }
447
448 class T2sTwoRegShiftImm<dag oops, dag iops, InstrItinClass itin,
449            string opc, string asm, list<dag> pattern>
450   : T2sI<oops, iops, itin, opc, asm, pattern> {
451   bits<4> Rd;
452   bits<4> Rm;
453   bits<5> imm;
454
455   let Inst{11-8}  = Rd;
456   let Inst{3-0}   = Rm;
457   let Inst{14-12} = imm{4-2};
458   let Inst{7-6}   = imm{1-0};
459 }
460
461 class T2ThreeReg<dag oops, dag iops, InstrItinClass itin,
462            string opc, string asm, list<dag> pattern>
463   : T2I<oops, iops, itin, opc, asm, pattern> {
464   bits<4> Rd;
465   bits<4> Rn;
466   bits<4> Rm;
467
468   let Inst{11-8}  = Rd;
469   let Inst{19-16} = Rn;
470   let Inst{3-0}   = Rm;
471 }
472
473 class T2ThreeRegNoP<dag oops, dag iops, InstrItinClass itin,
474            string asm, list<dag> pattern>
475   : T2XI<oops, iops, itin, asm, pattern> {
476   bits<4> Rd;
477   bits<4> Rn;
478   bits<4> Rm;
479
480   let Inst{11-8}  = Rd;
481   let Inst{19-16} = Rn;
482   let Inst{3-0}   = Rm;
483 }
484
485 class T2sThreeReg<dag oops, dag iops, InstrItinClass itin,
486            string opc, string asm, list<dag> pattern>
487   : T2sI<oops, iops, itin, opc, asm, pattern> {
488   bits<4> Rd;
489   bits<4> Rn;
490   bits<4> Rm;
491
492   let Inst{11-8}  = Rd;
493   let Inst{19-16} = Rn;
494   let Inst{3-0}   = Rm;
495 }
496
497 class T2TwoRegShiftedReg<dag oops, dag iops, InstrItinClass itin,
498            string opc, string asm, list<dag> pattern>
499   : T2I<oops, iops, itin, opc, asm, pattern> {
500   bits<4> Rd;
501   bits<4> Rn;
502   bits<12> ShiftedRm;
503
504   let Inst{11-8}  = Rd;
505   let Inst{19-16} = Rn;
506   let Inst{3-0}   = ShiftedRm{3-0};
507   let Inst{5-4}   = ShiftedRm{6-5};
508   let Inst{14-12} = ShiftedRm{11-9};
509   let Inst{7-6}   = ShiftedRm{8-7};
510 }
511
512 class T2sTwoRegShiftedReg<dag oops, dag iops, InstrItinClass itin,
513            string opc, string asm, list<dag> pattern>
514   : T2sI<oops, iops, itin, opc, asm, pattern> {
515   bits<4> Rd;
516   bits<4> Rn;
517   bits<12> ShiftedRm;
518
519   let Inst{11-8}  = Rd;
520   let Inst{19-16} = Rn;
521   let Inst{3-0}   = ShiftedRm{3-0};
522   let Inst{5-4}   = ShiftedRm{6-5};
523   let Inst{14-12} = ShiftedRm{11-9};
524   let Inst{7-6}   = ShiftedRm{8-7};
525 }
526
527 class T2FourReg<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> Rd;
531   bits<4> Rn;
532   bits<4> Rm;
533   bits<4> Ra;
534
535   let Inst{19-16} = Rn;
536   let Inst{15-12} = Ra;
537   let Inst{11-8}  = Rd;
538   let Inst{3-0}   = Rm;
539 }
540
541 class T2MulLong<bits<3> opc22_20, bits<4> opc7_4,
542                 string opc, list<dag> pattern>
543   : T2I<(outs rGPR:$RdLo, rGPR:$RdHi), (ins rGPR:$Rn, rGPR:$Rm), IIC_iMUL64,
544          opc, "\t$RdLo, $RdHi, $Rn, $Rm", pattern>,
545     Sched<[WriteMUL64Lo, WriteMUL64Hi, ReadMUL, ReadMUL]> {
546   bits<4> RdLo;
547   bits<4> RdHi;
548   bits<4> Rn;
549   bits<4> Rm;
550
551   let Inst{31-23} = 0b111110111;
552   let Inst{22-20} = opc22_20;
553   let Inst{19-16} = Rn;
554   let Inst{15-12} = RdLo;
555   let Inst{11-8}  = RdHi;
556   let Inst{7-4}   = opc7_4;
557   let Inst{3-0}   = Rm;
558 }
559 class T2MlaLong<bits<3> opc22_20, bits<4> opc7_4, string opc>
560   : T2I<(outs rGPR:$RdLo, rGPR:$RdHi),
561         (ins rGPR:$Rn, rGPR:$Rm, rGPR:$RLo, rGPR:$RHi), IIC_iMAC64,
562         opc, "\t$RdLo, $RdHi, $Rn, $Rm", []>,
563         RegConstraint<"$RLo = $RdLo, $RHi = $RdHi">,
564     Sched<[WriteMAC64Lo, WriteMAC64Hi, ReadMUL, ReadMUL, ReadMAC, ReadMAC]> {
565   bits<4> RdLo;
566   bits<4> RdHi;
567   bits<4> Rn;
568   bits<4> Rm;
569
570   let Inst{31-23} = 0b111110111;
571   let Inst{22-20} = opc22_20;
572   let Inst{19-16} = Rn;
573   let Inst{15-12} = RdLo;
574   let Inst{11-8}  = RdHi;
575   let Inst{7-4}   = opc7_4;
576   let Inst{3-0}   = Rm;
577 }
578
579
580 /// T2I_bin_irs - Defines a set of (op reg, {so_imm|r|so_reg}) patterns for a
581 /// binary operation that produces a value. These are predicable and can be
582 /// changed to modify CPSR.
583 multiclass T2I_bin_irs<bits<4> opcod, string opc,
584                      InstrItinClass iii, InstrItinClass iir, InstrItinClass iis,
585                      SDPatternOperator opnode, bit Commutable = 0,
586                      string wide = ""> {
587    // shifted imm
588    def ri : T2sTwoRegImm<
589                 (outs rGPR:$Rd), (ins rGPR:$Rn, t2_so_imm:$imm), iii,
590                  opc, "\t$Rd, $Rn, $imm",
591                  [(set rGPR:$Rd, (opnode rGPR:$Rn, t2_so_imm:$imm))]>,
592                  Sched<[WriteALU, ReadALU]> {
593      let Inst{31-27} = 0b11110;
594      let Inst{25} = 0;
595      let Inst{24-21} = opcod;
596      let Inst{15} = 0;
597    }
598    // register
599    def rr : T2sThreeReg<(outs rGPR:$Rd), (ins rGPR:$Rn, rGPR:$Rm), iir,
600                  opc, !strconcat(wide, "\t$Rd, $Rn, $Rm"),
601                  [(set rGPR:$Rd, (opnode rGPR:$Rn, rGPR:$Rm))]>,
602                  Sched<[WriteALU, ReadALU, ReadALU]> {
603      let isCommutable = Commutable;
604      let Inst{31-27} = 0b11101;
605      let Inst{26-25} = 0b01;
606      let Inst{24-21} = opcod;
607      let Inst{14-12} = 0b000; // imm3
608      let Inst{7-6} = 0b00; // imm2
609      let Inst{5-4} = 0b00; // type
610    }
611    // shifted register
612    def rs : T2sTwoRegShiftedReg<
613                  (outs rGPR:$Rd), (ins rGPR:$Rn, t2_so_reg:$ShiftedRm), iis,
614                  opc, !strconcat(wide, "\t$Rd, $Rn, $ShiftedRm"),
615                  [(set rGPR:$Rd, (opnode rGPR:$Rn, t2_so_reg:$ShiftedRm))]>,
616                  Sched<[WriteALUsi, ReadALU]>  {
617      let Inst{31-27} = 0b11101;
618      let Inst{26-25} = 0b01;
619      let Inst{24-21} = opcod;
620    }
621   // Assembly aliases for optional destination operand when it's the same
622   // as the source operand.
623   def : t2InstAlias<!strconcat(opc, "${s}${p} $Rdn, $imm"),
624      (!cast<Instruction>(NAME#"ri") rGPR:$Rdn, rGPR:$Rdn,
625                                                     t2_so_imm:$imm, pred:$p,
626                                                     cc_out:$s)>;
627   def : t2InstAlias<!strconcat(opc, "${s}${p}", wide, " $Rdn, $Rm"),
628      (!cast<Instruction>(NAME#"rr") rGPR:$Rdn, rGPR:$Rdn,
629                                                     rGPR:$Rm, pred:$p,
630                                                     cc_out:$s)>;
631   def : t2InstAlias<!strconcat(opc, "${s}${p}", wide, " $Rdn, $shift"),
632      (!cast<Instruction>(NAME#"rs") rGPR:$Rdn, rGPR:$Rdn,
633                                                     t2_so_reg:$shift, pred:$p,
634                                                     cc_out:$s)>;
635 }
636
637 /// T2I_bin_w_irs - Same as T2I_bin_irs except these operations need
638 //  the ".w" suffix to indicate that they are wide.
639 multiclass T2I_bin_w_irs<bits<4> opcod, string opc,
640                      InstrItinClass iii, InstrItinClass iir, InstrItinClass iis,
641                      SDPatternOperator opnode, bit Commutable = 0> :
642     T2I_bin_irs<opcod, opc, iii, iir, iis, opnode, Commutable, ".w"> {
643   // Assembler aliases w/ the ".w" suffix.
644   def : t2InstAlias<!strconcat(opc, "${s}${p}.w", " $Rd, $Rn, $imm"),
645      (!cast<Instruction>(NAME#"ri") rGPR:$Rd, rGPR:$Rn, t2_so_imm:$imm, pred:$p,
646                                     cc_out:$s)>;
647   // Assembler aliases w/o the ".w" suffix.
648   def : t2InstAlias<!strconcat(opc, "${s}${p}", " $Rd, $Rn, $Rm"),
649      (!cast<Instruction>(NAME#"rr") rGPR:$Rd, rGPR:$Rn, rGPR:$Rm, pred:$p,
650                                     cc_out:$s)>;
651   def : t2InstAlias<!strconcat(opc, "${s}${p}", " $Rd, $Rn, $shift"),
652      (!cast<Instruction>(NAME#"rs") rGPR:$Rd, rGPR:$Rn, t2_so_reg:$shift,
653                                     pred:$p, cc_out:$s)>;
654
655   // and with the optional destination operand, too.
656   def : t2InstAlias<!strconcat(opc, "${s}${p}.w", " $Rdn, $imm"),
657      (!cast<Instruction>(NAME#"ri") rGPR:$Rdn, rGPR:$Rdn, t2_so_imm:$imm,
658                                     pred:$p, cc_out:$s)>;
659   def : t2InstAlias<!strconcat(opc, "${s}${p}", " $Rdn, $Rm"),
660      (!cast<Instruction>(NAME#"rr") rGPR:$Rdn, rGPR:$Rdn, rGPR:$Rm, pred:$p,
661                                     cc_out:$s)>;
662   def : t2InstAlias<!strconcat(opc, "${s}${p}", " $Rdn, $shift"),
663      (!cast<Instruction>(NAME#"rs") rGPR:$Rdn, rGPR:$Rdn, t2_so_reg:$shift,
664                                     pred:$p, cc_out:$s)>;
665 }
666
667 /// T2I_rbin_is - Same as T2I_bin_irs except the order of operands are
668 /// reversed.  The 'rr' form is only defined for the disassembler; for codegen
669 /// it is equivalent to the T2I_bin_irs counterpart.
670 multiclass T2I_rbin_irs<bits<4> opcod, string opc, SDNode opnode> {
671    // shifted imm
672    def ri : T2sTwoRegImm<
673                  (outs rGPR:$Rd), (ins rGPR:$Rn, t2_so_imm:$imm), IIC_iALUi,
674                  opc, ".w\t$Rd, $Rn, $imm",
675                  [(set rGPR:$Rd, (opnode t2_so_imm:$imm, rGPR:$Rn))]>,
676                  Sched<[WriteALU, ReadALU]> {
677      let Inst{31-27} = 0b11110;
678      let Inst{25} = 0;
679      let Inst{24-21} = opcod;
680      let Inst{15} = 0;
681    }
682    // register
683    def rr : T2sThreeReg<
684                  (outs rGPR:$Rd), (ins rGPR:$Rn, rGPR:$Rm), IIC_iALUr,
685                  opc, "\t$Rd, $Rn, $Rm",
686                  [/* For disassembly only; pattern left blank */]>,
687                  Sched<[WriteALU, ReadALU, ReadALU]> {
688      let Inst{31-27} = 0b11101;
689      let Inst{26-25} = 0b01;
690      let Inst{24-21} = opcod;
691      let Inst{14-12} = 0b000; // imm3
692      let Inst{7-6} = 0b00; // imm2
693      let Inst{5-4} = 0b00; // type
694    }
695    // shifted register
696    def rs : T2sTwoRegShiftedReg<
697                  (outs rGPR:$Rd), (ins rGPR:$Rn, t2_so_reg:$ShiftedRm),
698                  IIC_iALUsir, opc, "\t$Rd, $Rn, $ShiftedRm",
699                  [(set rGPR:$Rd, (opnode t2_so_reg:$ShiftedRm, rGPR:$Rn))]>,
700                  Sched<[WriteALUsi, ReadALU]> {
701      let Inst{31-27} = 0b11101;
702      let Inst{26-25} = 0b01;
703      let Inst{24-21} = opcod;
704    }
705 }
706
707 /// T2I_bin_s_irs - Similar to T2I_bin_irs except it sets the 's' bit so the
708 /// instruction modifies the CPSR register.
709 ///
710 /// These opcodes will be converted to the real non-S opcodes by
711 /// AdjustInstrPostInstrSelection after giving then an optional CPSR operand.
712 let hasPostISelHook = 1, Defs = [CPSR] in {
713 multiclass T2I_bin_s_irs<InstrItinClass iii, InstrItinClass iir,
714                          InstrItinClass iis, SDNode opnode,
715                          bit Commutable = 0> {
716    // shifted imm
717    def ri : t2PseudoInst<(outs rGPR:$Rd),
718                          (ins GPRnopc:$Rn, t2_so_imm:$imm, pred:$p),
719                          4, iii,
720                          [(set rGPR:$Rd, CPSR, (opnode GPRnopc:$Rn,
721                                                 t2_so_imm:$imm))]>,
722             Sched<[WriteALU, ReadALU]>;
723    // register
724    def rr : t2PseudoInst<(outs rGPR:$Rd), (ins GPRnopc:$Rn, rGPR:$Rm, pred:$p),
725                          4, iir,
726                          [(set rGPR:$Rd, CPSR, (opnode GPRnopc:$Rn,
727                                                 rGPR:$Rm))]>,
728             Sched<[WriteALU, ReadALU, ReadALU]> {
729      let isCommutable = Commutable;
730    }
731    // shifted register
732    def rs : t2PseudoInst<(outs rGPR:$Rd),
733                          (ins GPRnopc:$Rn, t2_so_reg:$ShiftedRm, pred:$p),
734                          4, iis,
735                          [(set rGPR:$Rd, CPSR, (opnode GPRnopc:$Rn,
736                                                 t2_so_reg:$ShiftedRm))]>,
737             Sched<[WriteALUsi, ReadALUsr]>;
738 }
739 }
740
741 /// T2I_rbin_s_is -  Same as T2I_bin_s_irs, except selection DAG
742 /// operands are reversed.
743 let hasPostISelHook = 1, Defs = [CPSR] in {
744 multiclass T2I_rbin_s_is<SDNode opnode> {
745    // shifted imm
746    def ri : t2PseudoInst<(outs rGPR:$Rd),
747                          (ins rGPR:$Rn, t2_so_imm:$imm, pred:$p),
748                          4, IIC_iALUi,
749                          [(set rGPR:$Rd, CPSR, (opnode t2_so_imm:$imm,
750                                                 rGPR:$Rn))]>,
751             Sched<[WriteALU, ReadALU]>;
752    // shifted register
753    def rs : t2PseudoInst<(outs rGPR:$Rd),
754                          (ins rGPR:$Rn, t2_so_reg:$ShiftedRm, pred:$p),
755                          4, IIC_iALUsi,
756                          [(set rGPR:$Rd, CPSR, (opnode t2_so_reg:$ShiftedRm,
757                                                 rGPR:$Rn))]>,
758             Sched<[WriteALUsi, ReadALU]>;
759 }
760 }
761
762 /// T2I_bin_ii12rs - Defines a set of (op reg, {so_imm|imm0_4095|r|so_reg})
763 /// patterns for a binary operation that produces a value.
764 multiclass T2I_bin_ii12rs<bits<3> op23_21, string opc, SDNode opnode,
765                           bit Commutable = 0> {
766    // shifted imm
767    // The register-immediate version is re-materializable. This is useful
768    // in particular for taking the address of a local.
769    let isReMaterializable = 1 in {
770    def ri : T2sTwoRegImm<
771                (outs GPRnopc:$Rd), (ins GPRnopc:$Rn, t2_so_imm:$imm), IIC_iALUi,
772                opc, ".w\t$Rd, $Rn, $imm",
773                [(set GPRnopc:$Rd, (opnode GPRnopc:$Rn, t2_so_imm:$imm))]>,
774                Sched<[WriteALU, ReadALU]> {
775      let Inst{31-27} = 0b11110;
776      let Inst{25} = 0;
777      let Inst{24} = 1;
778      let Inst{23-21} = op23_21;
779      let Inst{15} = 0;
780    }
781    }
782    // 12-bit imm
783    def ri12 : T2I<
784                   (outs GPRnopc:$Rd), (ins GPR:$Rn, imm0_4095:$imm), IIC_iALUi,
785                   !strconcat(opc, "w"), "\t$Rd, $Rn, $imm",
786                   [(set GPRnopc:$Rd, (opnode GPR:$Rn, imm0_4095:$imm))]>,
787                   Sched<[WriteALU, ReadALU]> {
788      bits<4> Rd;
789      bits<4> Rn;
790      bits<12> imm;
791      let Inst{31-27} = 0b11110;
792      let Inst{26} = imm{11};
793      let Inst{25-24} = 0b10;
794      let Inst{23-21} = op23_21;
795      let Inst{20} = 0; // The S bit.
796      let Inst{19-16} = Rn;
797      let Inst{15} = 0;
798      let Inst{14-12} = imm{10-8};
799      let Inst{11-8} = Rd;
800      let Inst{7-0} = imm{7-0};
801    }
802    // register
803    def rr : T2sThreeReg<(outs GPRnopc:$Rd), (ins GPRnopc:$Rn, rGPR:$Rm),
804                  IIC_iALUr, opc, ".w\t$Rd, $Rn, $Rm",
805                  [(set GPRnopc:$Rd, (opnode GPRnopc:$Rn, rGPR:$Rm))]>,
806                  Sched<[WriteALU, ReadALU, ReadALU]> {
807      let isCommutable = Commutable;
808      let Inst{31-27} = 0b11101;
809      let Inst{26-25} = 0b01;
810      let Inst{24} = 1;
811      let Inst{23-21} = op23_21;
812      let Inst{14-12} = 0b000; // imm3
813      let Inst{7-6} = 0b00; // imm2
814      let Inst{5-4} = 0b00; // type
815    }
816    // shifted register
817    def rs : T2sTwoRegShiftedReg<
818                  (outs GPRnopc:$Rd), (ins GPRnopc:$Rn, t2_so_reg:$ShiftedRm),
819                  IIC_iALUsi, opc, ".w\t$Rd, $Rn, $ShiftedRm",
820               [(set GPRnopc:$Rd, (opnode GPRnopc:$Rn, t2_so_reg:$ShiftedRm))]>,
821               Sched<[WriteALUsi, ReadALU]> {
822      let Inst{31-27} = 0b11101;
823      let Inst{26-25} = 0b01;
824      let Inst{24} = 1;
825      let Inst{23-21} = op23_21;
826    }
827 }
828
829 /// T2I_adde_sube_irs - Defines a set of (op reg, {so_imm|r|so_reg}) patterns
830 /// for a binary operation that produces a value and use the carry
831 /// bit. It's not predicable.
832 let Defs = [CPSR], Uses = [CPSR] in {
833 multiclass T2I_adde_sube_irs<bits<4> opcod, string opc, SDNode opnode,
834                              bit Commutable = 0> {
835    // shifted imm
836    def ri : T2sTwoRegImm<(outs rGPR:$Rd), (ins rGPR:$Rn, t2_so_imm:$imm),
837                  IIC_iALUi, opc, "\t$Rd, $Rn, $imm",
838                [(set rGPR:$Rd, CPSR, (opnode rGPR:$Rn, t2_so_imm:$imm, CPSR))]>,
839                  Requires<[IsThumb2]>, Sched<[WriteALU, ReadALU]> {
840      let Inst{31-27} = 0b11110;
841      let Inst{25} = 0;
842      let Inst{24-21} = opcod;
843      let Inst{15} = 0;
844    }
845    // register
846    def rr : T2sThreeReg<(outs rGPR:$Rd), (ins rGPR:$Rn, rGPR:$Rm), IIC_iALUr,
847                  opc, ".w\t$Rd, $Rn, $Rm",
848                  [(set rGPR:$Rd, CPSR, (opnode rGPR:$Rn, rGPR:$Rm, CPSR))]>,
849                  Requires<[IsThumb2]>, Sched<[WriteALU, ReadALU, ReadALU]> {
850      let isCommutable = Commutable;
851      let Inst{31-27} = 0b11101;
852      let Inst{26-25} = 0b01;
853      let Inst{24-21} = opcod;
854      let Inst{14-12} = 0b000; // imm3
855      let Inst{7-6} = 0b00; // imm2
856      let Inst{5-4} = 0b00; // type
857    }
858    // shifted register
859    def rs : T2sTwoRegShiftedReg<
860                  (outs rGPR:$Rd), (ins rGPR:$Rn, t2_so_reg:$ShiftedRm),
861                  IIC_iALUsi, opc, ".w\t$Rd, $Rn, $ShiftedRm",
862          [(set rGPR:$Rd, CPSR, (opnode rGPR:$Rn, t2_so_reg:$ShiftedRm, CPSR))]>,
863                  Requires<[IsThumb2]>, Sched<[WriteALUsi, ReadALU]> {
864      let Inst{31-27} = 0b11101;
865      let Inst{26-25} = 0b01;
866      let Inst{24-21} = opcod;
867    }
868 }
869 }
870
871 /// T2I_sh_ir - Defines a set of (op reg, {so_imm|r}) patterns for a shift /
872 //  rotate operation that produces a value.
873 multiclass T2I_sh_ir<bits<2> opcod, string opc, Operand ty, SDNode opnode> {
874    // 5-bit imm
875    def ri : T2sTwoRegShiftImm<
876                  (outs rGPR:$Rd), (ins rGPR:$Rm, ty:$imm), IIC_iMOVsi,
877                  opc, ".w\t$Rd, $Rm, $imm",
878                  [(set rGPR:$Rd, (opnode rGPR:$Rm, (i32 ty:$imm)))]>,
879                  Sched<[WriteALU]> {
880      let Inst{31-27} = 0b11101;
881      let Inst{26-21} = 0b010010;
882      let Inst{19-16} = 0b1111; // Rn
883      let Inst{5-4} = opcod;
884    }
885    // register
886    def rr : T2sThreeReg<
887                  (outs rGPR:$Rd), (ins rGPR:$Rn, rGPR:$Rm), IIC_iMOVsr,
888                  opc, ".w\t$Rd, $Rn, $Rm",
889                  [(set rGPR:$Rd, (opnode rGPR:$Rn, rGPR:$Rm))]>,
890                  Sched<[WriteALU]> {
891      let Inst{31-27} = 0b11111;
892      let Inst{26-23} = 0b0100;
893      let Inst{22-21} = opcod;
894      let Inst{15-12} = 0b1111;
895      let Inst{7-4} = 0b0000;
896    }
897
898   // Optional destination register
899   def : t2InstAlias<!strconcat(opc, "${s}${p}", ".w $Rdn, $imm"),
900      (!cast<Instruction>(NAME#"ri") rGPR:$Rdn, rGPR:$Rdn, ty:$imm, pred:$p,
901                                     cc_out:$s)>;
902   def : t2InstAlias<!strconcat(opc, "${s}${p}", ".w $Rdn, $Rm"),
903      (!cast<Instruction>(NAME#"rr") rGPR:$Rdn, rGPR:$Rdn, rGPR:$Rm, pred:$p,
904                                     cc_out:$s)>;
905
906   // Assembler aliases w/o the ".w" suffix.
907   def : t2InstAlias<!strconcat(opc, "${s}${p}", " $Rd, $Rn, $imm"),
908      (!cast<Instruction>(NAME#"ri") rGPR:$Rd, rGPR:$Rn, ty:$imm, pred:$p,
909                                     cc_out:$s)>;
910   def : t2InstAlias<!strconcat(opc, "${s}${p}", " $Rd, $Rn, $Rm"),
911      (!cast<Instruction>(NAME#"rr") rGPR:$Rd, rGPR:$Rn, rGPR:$Rm, pred:$p,
912                                     cc_out:$s)>;
913
914   // and with the optional destination operand, too.
915   def : t2InstAlias<!strconcat(opc, "${s}${p}", " $Rdn, $imm"),
916      (!cast<Instruction>(NAME#"ri") rGPR:$Rdn, rGPR:$Rdn, ty:$imm, pred:$p,
917                                     cc_out:$s)>;
918   def : t2InstAlias<!strconcat(opc, "${s}${p}", " $Rdn, $Rm"),
919      (!cast<Instruction>(NAME#"rr") rGPR:$Rdn, rGPR:$Rdn, rGPR:$Rm, pred:$p,
920                                     cc_out:$s)>;
921 }
922
923 /// T2I_cmp_irs - Defines a set of (op r, {so_imm|r|so_reg}) cmp / test
924 /// patterns. Similar to T2I_bin_irs except the instruction does not produce
925 /// a explicit result, only implicitly set CPSR.
926 multiclass T2I_cmp_irs<bits<4> opcod, string opc,
927                      InstrItinClass iii, InstrItinClass iir, InstrItinClass iis,
928                      SDPatternOperator opnode> {
929 let isCompare = 1, Defs = [CPSR] in {
930    // shifted imm
931    def ri : T2OneRegCmpImm<
932                 (outs), (ins GPRnopc:$Rn, t2_so_imm:$imm), iii,
933                 opc, ".w\t$Rn, $imm",
934                 [(opnode GPRnopc:$Rn, t2_so_imm:$imm)]>, Sched<[WriteCMP]> {
935      let Inst{31-27} = 0b11110;
936      let Inst{25} = 0;
937      let Inst{24-21} = opcod;
938      let Inst{20} = 1; // The S bit.
939      let Inst{15} = 0;
940      let Inst{11-8} = 0b1111; // Rd
941    }
942    // register
943    def rr : T2TwoRegCmp<
944                 (outs), (ins GPRnopc:$Rn, rGPR:$Rm), iir,
945                 opc, ".w\t$Rn, $Rm",
946                 [(opnode GPRnopc:$Rn, rGPR:$Rm)]>, Sched<[WriteCMP]> {
947      let Inst{31-27} = 0b11101;
948      let Inst{26-25} = 0b01;
949      let Inst{24-21} = opcod;
950      let Inst{20} = 1; // The S bit.
951      let Inst{14-12} = 0b000; // imm3
952      let Inst{11-8} = 0b1111; // Rd
953      let Inst{7-6} = 0b00; // imm2
954      let Inst{5-4} = 0b00; // type
955    }
956    // shifted register
957    def rs : T2OneRegCmpShiftedReg<
958                 (outs), (ins GPRnopc:$Rn, t2_so_reg:$ShiftedRm), iis,
959                 opc, ".w\t$Rn, $ShiftedRm",
960                 [(opnode GPRnopc:$Rn, t2_so_reg:$ShiftedRm)]>,
961                 Sched<[WriteCMPsi]> {
962      let Inst{31-27} = 0b11101;
963      let Inst{26-25} = 0b01;
964      let Inst{24-21} = opcod;
965      let Inst{20} = 1; // The S bit.
966      let Inst{11-8} = 0b1111; // Rd
967    }
968 }
969
970   // Assembler aliases w/o the ".w" suffix.
971   // No alias here for 'rr' version as not all instantiations of this
972   // multiclass want one (CMP in particular, does not).
973   def : t2InstAlias<!strconcat(opc, "${p}", " $Rn, $imm"),
974      (!cast<Instruction>(NAME#"ri") GPRnopc:$Rn, t2_so_imm:$imm, pred:$p)>;
975   def : t2InstAlias<!strconcat(opc, "${p}", " $Rn, $shift"),
976      (!cast<Instruction>(NAME#"rs") GPRnopc:$Rn, t2_so_reg:$shift, pred:$p)>;
977 }
978
979 /// T2I_ld - Defines a set of (op r, {imm12|imm8|so_reg}) load patterns.
980 multiclass T2I_ld<bit signed, bits<2> opcod, string opc,
981                   InstrItinClass iii, InstrItinClass iis, RegisterClass target,
982                   PatFrag opnode> {
983   def i12 : T2Ii12<(outs target:$Rt), (ins t2addrmode_imm12:$addr), iii,
984                    opc, ".w\t$Rt, $addr",
985                    [(set target:$Rt, (opnode t2addrmode_imm12:$addr))]>,
986             Sched<[WriteLd]> {
987     bits<4> Rt;
988     bits<17> addr;
989     let Inst{31-25} = 0b1111100;
990     let Inst{24} = signed;
991     let Inst{23} = 1;
992     let Inst{22-21} = opcod;
993     let Inst{20} = 1; // load
994     let Inst{19-16} = addr{16-13}; // Rn
995     let Inst{15-12} = Rt;
996     let Inst{11-0}  = addr{11-0};  // imm
997
998     let DecoderMethod = "DecodeT2LoadImm12";
999   }
1000   def i8  : T2Ii8 <(outs target:$Rt), (ins t2addrmode_negimm8:$addr), iii,
1001                    opc, "\t$Rt, $addr",
1002                    [(set target:$Rt, (opnode t2addrmode_negimm8:$addr))]>,
1003             Sched<[WriteLd]> {
1004     bits<4> Rt;
1005     bits<13> addr;
1006     let Inst{31-27} = 0b11111;
1007     let Inst{26-25} = 0b00;
1008     let Inst{24} = signed;
1009     let Inst{23} = 0;
1010     let Inst{22-21} = opcod;
1011     let Inst{20} = 1; // load
1012     let Inst{19-16} = addr{12-9}; // Rn
1013     let Inst{15-12} = Rt;
1014     let Inst{11} = 1;
1015     // Offset: index==TRUE, wback==FALSE
1016     let Inst{10} = 1; // The P bit.
1017     let Inst{9}     = addr{8};    // U
1018     let Inst{8} = 0; // The W bit.
1019     let Inst{7-0}   = addr{7-0};  // imm
1020
1021     let DecoderMethod = "DecodeT2LoadImm8";
1022   }
1023   def s   : T2Iso <(outs target:$Rt), (ins t2addrmode_so_reg:$addr), iis,
1024                    opc, ".w\t$Rt, $addr",
1025                    [(set target:$Rt, (opnode t2addrmode_so_reg:$addr))]>,
1026             Sched<[WriteLd]> {
1027     let Inst{31-27} = 0b11111;
1028     let Inst{26-25} = 0b00;
1029     let Inst{24} = signed;
1030     let Inst{23} = 0;
1031     let Inst{22-21} = opcod;
1032     let Inst{20} = 1; // load
1033     let Inst{11-6} = 0b000000;
1034
1035     bits<4> Rt;
1036     let Inst{15-12} = Rt;
1037
1038     bits<10> addr;
1039     let Inst{19-16} = addr{9-6}; // Rn
1040     let Inst{3-0}   = addr{5-2}; // Rm
1041     let Inst{5-4}   = addr{1-0}; // imm
1042
1043     let DecoderMethod = "DecodeT2LoadShift";
1044   }
1045
1046   // pci variant is very similar to i12, but supports negative offsets
1047   // from the PC.
1048   def pci : T2Ipc <(outs target:$Rt), (ins t2ldrlabel:$addr), iii,
1049                    opc, ".w\t$Rt, $addr",
1050                    [(set target:$Rt, (opnode (ARMWrapper tconstpool:$addr)))]>,
1051             Sched<[WriteLd]> {
1052     let isReMaterializable = 1;
1053     let Inst{31-27} = 0b11111;
1054     let Inst{26-25} = 0b00;
1055     let Inst{24} = signed;
1056     let Inst{22-21} = opcod;
1057     let Inst{20} = 1; // load
1058     let Inst{19-16} = 0b1111; // Rn
1059
1060     bits<4> Rt;
1061     let Inst{15-12} = Rt{3-0};
1062
1063     bits<13> addr;
1064     let Inst{23} = addr{12}; // add = (U == '1')
1065     let Inst{11-0}  = addr{11-0};
1066
1067     let DecoderMethod = "DecodeT2LoadLabel";
1068   }
1069 }
1070
1071 /// T2I_st - Defines a set of (op r, {imm12|imm8|so_reg}) store patterns.
1072 multiclass T2I_st<bits<2> opcod, string opc,
1073                   InstrItinClass iii, InstrItinClass iis, RegisterClass target,
1074                   PatFrag opnode> {
1075   def i12 : T2Ii12<(outs), (ins target:$Rt, t2addrmode_imm12:$addr), iii,
1076                    opc, ".w\t$Rt, $addr",
1077                    [(opnode target:$Rt, t2addrmode_imm12:$addr)]>,
1078             Sched<[WriteST]> {
1079     let Inst{31-27} = 0b11111;
1080     let Inst{26-23} = 0b0001;
1081     let Inst{22-21} = opcod;
1082     let Inst{20} = 0; // !load
1083
1084     bits<4> Rt;
1085     let Inst{15-12} = Rt;
1086
1087     bits<17> addr;
1088     let addr{12}    = 1;           // add = TRUE
1089     let Inst{19-16} = addr{16-13}; // Rn
1090     let Inst{23}    = addr{12};    // U
1091     let Inst{11-0}  = addr{11-0};  // imm
1092   }
1093   def i8  : T2Ii8 <(outs), (ins target:$Rt, t2addrmode_negimm8:$addr), iii,
1094                    opc, "\t$Rt, $addr",
1095                    [(opnode target:$Rt, t2addrmode_negimm8:$addr)]>,
1096             Sched<[WriteST]> {
1097     let Inst{31-27} = 0b11111;
1098     let Inst{26-23} = 0b0000;
1099     let Inst{22-21} = opcod;
1100     let Inst{20} = 0; // !load
1101     let Inst{11} = 1;
1102     // Offset: index==TRUE, wback==FALSE
1103     let Inst{10} = 1; // The P bit.
1104     let Inst{8} = 0; // The W bit.
1105
1106     bits<4> Rt;
1107     let Inst{15-12} = Rt;
1108
1109     bits<13> addr;
1110     let Inst{19-16} = addr{12-9}; // Rn
1111     let Inst{9}     = addr{8};    // U
1112     let Inst{7-0}   = addr{7-0};  // imm
1113   }
1114   def s   : T2Iso <(outs), (ins target:$Rt, t2addrmode_so_reg:$addr), iis,
1115                    opc, ".w\t$Rt, $addr",
1116                    [(opnode target:$Rt, t2addrmode_so_reg:$addr)]>,
1117             Sched<[WriteST]> {
1118     let Inst{31-27} = 0b11111;
1119     let Inst{26-23} = 0b0000;
1120     let Inst{22-21} = opcod;
1121     let Inst{20} = 0; // !load
1122     let Inst{11-6} = 0b000000;
1123
1124     bits<4> Rt;
1125     let Inst{15-12} = Rt;
1126
1127     bits<10> addr;
1128     let Inst{19-16}   = addr{9-6}; // Rn
1129     let Inst{3-0} = addr{5-2}; // Rm
1130     let Inst{5-4}   = addr{1-0}; // imm
1131   }
1132 }
1133
1134 /// T2I_ext_rrot - A unary operation with two forms: one whose operand is a
1135 /// register and one whose operand is a register rotated by 8/16/24.
1136 class T2I_ext_rrot_base<bits<3> opcod, dag iops, dag oops,
1137                         string opc, string oprs,
1138                         list<dag> pattern>
1139   : T2TwoReg<iops, oops, IIC_iEXTr, opc, oprs, pattern> {
1140   bits<2> rot;
1141   let Inst{31-27} = 0b11111;
1142   let Inst{26-23} = 0b0100;
1143   let Inst{22-20} = opcod;
1144   let Inst{19-16} = 0b1111; // Rn
1145   let Inst{15-12} = 0b1111;
1146   let Inst{7} = 1;
1147   let Inst{5-4} = rot; // rotate
1148 }
1149
1150 class T2I_ext_rrot<bits<3> opcod, string opc>
1151   : T2I_ext_rrot_base<opcod,
1152                       (outs rGPR:$Rd),
1153                       (ins rGPR:$Rm, rot_imm:$rot),
1154                       opc, ".w\t$Rd, $Rm$rot", []>,
1155                       Requires<[IsThumb2]>,
1156                       Sched<[WriteALU, ReadALU]>;
1157
1158 // UXTB16, SXTB16 - Requires HasDSP, does not need the .w qualifier.
1159 class T2I_ext_rrot_xtb16<bits<3> opcod, string opc>
1160   : T2I_ext_rrot_base<opcod,
1161                       (outs rGPR:$Rd),
1162                       (ins rGPR:$Rm, rot_imm:$rot),
1163                       opc, "\t$Rd, $Rm$rot", []>,
1164                       Requires<[HasDSP, IsThumb2]>,
1165                       Sched<[WriteALU, ReadALU]>;
1166
1167 /// T2I_exta_rrot - A binary operation with two forms: one whose operand is a
1168 /// register and one whose operand is a register rotated by 8/16/24.
1169 class T2I_exta_rrot<bits<3> opcod, string opc>
1170   : T2ThreeReg<(outs rGPR:$Rd),
1171                (ins rGPR:$Rn, rGPR:$Rm, rot_imm:$rot),
1172                IIC_iEXTAsr, opc, "\t$Rd, $Rn, $Rm$rot", []>,
1173                Requires<[HasDSP, IsThumb2]>,
1174                Sched<[WriteALU, ReadALU]> {
1175   bits<2> rot;
1176   let Inst{31-27} = 0b11111;
1177   let Inst{26-23} = 0b0100;
1178   let Inst{22-20} = opcod;
1179   let Inst{15-12} = 0b1111;
1180   let Inst{7} = 1;
1181   let Inst{5-4} = rot;
1182 }
1183
1184 //===----------------------------------------------------------------------===//
1185 // Instructions
1186 //===----------------------------------------------------------------------===//
1187
1188 //===----------------------------------------------------------------------===//
1189 //  Miscellaneous Instructions.
1190 //
1191
1192 class T2PCOneRegImm<dag oops, dag iops, InstrItinClass itin,
1193            string asm, list<dag> pattern>
1194   : T2XI<oops, iops, itin, asm, pattern> {
1195   bits<4> Rd;
1196   bits<12> label;
1197
1198   let Inst{11-8}  = Rd;
1199   let Inst{26}    = label{11};
1200   let Inst{14-12} = label{10-8};
1201   let Inst{7-0}   = label{7-0};
1202 }
1203
1204 // LEApcrel - Load a pc-relative address into a register without offending the
1205 // assembler.
1206 def t2ADR : T2PCOneRegImm<(outs rGPR:$Rd),
1207               (ins t2adrlabel:$addr, pred:$p),
1208               IIC_iALUi, "adr{$p}.w\t$Rd, $addr", []>,
1209               Sched<[WriteALU, ReadALU]> {
1210   let Inst{31-27} = 0b11110;
1211   let Inst{25-24} = 0b10;
1212   // Inst{23:21} = '11' (add = FALSE) or '00' (add = TRUE)
1213   let Inst{22} = 0;
1214   let Inst{20} = 0;
1215   let Inst{19-16} = 0b1111; // Rn
1216   let Inst{15} = 0;
1217
1218   bits<4> Rd;
1219   bits<13> addr;
1220   let Inst{11-8} = Rd;
1221   let Inst{23}    = addr{12};
1222   let Inst{21}    = addr{12};
1223   let Inst{26}    = addr{11};
1224   let Inst{14-12} = addr{10-8};
1225   let Inst{7-0}   = addr{7-0};
1226
1227   let DecoderMethod = "DecodeT2Adr";
1228 }
1229
1230 let hasSideEffects = 0, isReMaterializable = 1 in
1231 def t2LEApcrel   : t2PseudoInst<(outs rGPR:$Rd), (ins i32imm:$label, pred:$p),
1232                                 4, IIC_iALUi, []>, Sched<[WriteALU, ReadALU]>;
1233 let hasSideEffects = 1 in
1234 def t2LEApcrelJT : t2PseudoInst<(outs rGPR:$Rd),
1235                                 (ins i32imm:$label, pred:$p),
1236                                 4, IIC_iALUi,
1237                                 []>, Sched<[WriteALU, ReadALU]>;
1238
1239
1240 //===----------------------------------------------------------------------===//
1241 //  Load / store Instructions.
1242 //
1243
1244 // Load
1245 let canFoldAsLoad = 1, isReMaterializable = 1  in
1246 defm t2LDR   : T2I_ld<0, 0b10, "ldr", IIC_iLoad_i, IIC_iLoad_si, GPR, load>;
1247
1248 // Loads with zero extension
1249 defm t2LDRH  : T2I_ld<0, 0b01, "ldrh", IIC_iLoad_bh_i, IIC_iLoad_bh_si,
1250                       GPRnopc, zextloadi16>;
1251 defm t2LDRB  : T2I_ld<0, 0b00, "ldrb", IIC_iLoad_bh_i, IIC_iLoad_bh_si,
1252                       GPRnopc, zextloadi8>;
1253
1254 // Loads with sign extension
1255 defm t2LDRSH : T2I_ld<1, 0b01, "ldrsh", IIC_iLoad_bh_i, IIC_iLoad_bh_si,
1256                       GPRnopc, sextloadi16>;
1257 defm t2LDRSB : T2I_ld<1, 0b00, "ldrsb", IIC_iLoad_bh_i, IIC_iLoad_bh_si,
1258                       GPRnopc, sextloadi8>;
1259
1260 let mayLoad = 1, hasSideEffects = 0, hasExtraDefRegAllocReq = 1 in {
1261 // Load doubleword
1262 def t2LDRDi8  : T2Ii8s4<1, 0, 1, (outs rGPR:$Rt, rGPR:$Rt2),
1263                         (ins t2addrmode_imm8s4:$addr),
1264                         IIC_iLoad_d_i, "ldrd", "\t$Rt, $Rt2, $addr", "", []>,
1265                  Sched<[WriteLd]>;
1266 } // mayLoad = 1, hasSideEffects = 0, hasExtraDefRegAllocReq = 1
1267
1268 // zextload i1 -> zextload i8
1269 def : T2Pat<(zextloadi1 t2addrmode_imm12:$addr),
1270             (t2LDRBi12  t2addrmode_imm12:$addr)>;
1271 def : T2Pat<(zextloadi1 t2addrmode_negimm8:$addr),
1272             (t2LDRBi8   t2addrmode_negimm8:$addr)>;
1273 def : T2Pat<(zextloadi1 t2addrmode_so_reg:$addr),
1274             (t2LDRBs    t2addrmode_so_reg:$addr)>;
1275 def : T2Pat<(zextloadi1 (ARMWrapper tconstpool:$addr)),
1276             (t2LDRBpci  tconstpool:$addr)>;
1277
1278 // extload -> zextload
1279 // FIXME: Reduce the number of patterns by legalizing extload to zextload
1280 // earlier?
1281 def : T2Pat<(extloadi1  t2addrmode_imm12:$addr),
1282             (t2LDRBi12  t2addrmode_imm12:$addr)>;
1283 def : T2Pat<(extloadi1  t2addrmode_negimm8:$addr),
1284             (t2LDRBi8   t2addrmode_negimm8:$addr)>;
1285 def : T2Pat<(extloadi1  t2addrmode_so_reg:$addr),
1286             (t2LDRBs    t2addrmode_so_reg:$addr)>;
1287 def : T2Pat<(extloadi1  (ARMWrapper tconstpool:$addr)),
1288             (t2LDRBpci  tconstpool:$addr)>;
1289
1290 def : T2Pat<(extloadi8  t2addrmode_imm12:$addr),
1291             (t2LDRBi12  t2addrmode_imm12:$addr)>;
1292 def : T2Pat<(extloadi8  t2addrmode_negimm8:$addr),
1293             (t2LDRBi8   t2addrmode_negimm8:$addr)>;
1294 def : T2Pat<(extloadi8  t2addrmode_so_reg:$addr),
1295             (t2LDRBs    t2addrmode_so_reg:$addr)>;
1296 def : T2Pat<(extloadi8  (ARMWrapper tconstpool:$addr)),
1297             (t2LDRBpci  tconstpool:$addr)>;
1298
1299 def : T2Pat<(extloadi16 t2addrmode_imm12:$addr),
1300             (t2LDRHi12  t2addrmode_imm12:$addr)>;
1301 def : T2Pat<(extloadi16 t2addrmode_negimm8:$addr),
1302             (t2LDRHi8   t2addrmode_negimm8:$addr)>;
1303 def : T2Pat<(extloadi16 t2addrmode_so_reg:$addr),
1304             (t2LDRHs    t2addrmode_so_reg:$addr)>;
1305 def : T2Pat<(extloadi16 (ARMWrapper tconstpool:$addr)),
1306             (t2LDRHpci  tconstpool:$addr)>;
1307
1308 // FIXME: The destination register of the loads and stores can't be PC, but
1309 //        can be SP. We need another regclass (similar to rGPR) to represent
1310 //        that. Not a pressing issue since these are selected manually,
1311 //        not via pattern.
1312
1313 // Indexed loads
1314
1315 let mayLoad = 1, hasSideEffects = 0 in {
1316 def t2LDR_PRE  : T2Ipreldst<0, 0b10, 1, 1, (outs GPR:$Rt, GPR:$Rn_wb),
1317                             (ins t2addrmode_imm8_pre:$addr),
1318                             AddrModeT2_i8, IndexModePre, IIC_iLoad_iu,
1319                             "ldr", "\t$Rt, $addr!", "$addr.base = $Rn_wb", []>,
1320                  Sched<[WriteLd]>;
1321
1322 def t2LDR_POST : T2Ipostldst<0, 0b10, 1, 0, (outs GPR:$Rt, GPR:$Rn_wb),
1323                           (ins addr_offset_none:$Rn, t2am_imm8_offset:$offset),
1324                           AddrModeT2_i8, IndexModePost, IIC_iLoad_iu,
1325                           "ldr", "\t$Rt, $Rn$offset", "$Rn = $Rn_wb", []>,
1326                   Sched<[WriteLd]>;
1327
1328 def t2LDRB_PRE : T2Ipreldst<0, 0b00, 1, 1, (outs GPR:$Rt, GPR:$Rn_wb),
1329                             (ins t2addrmode_imm8_pre:$addr),
1330                             AddrModeT2_i8, IndexModePre, IIC_iLoad_bh_iu,
1331                             "ldrb", "\t$Rt, $addr!", "$addr.base = $Rn_wb", []>,
1332                  Sched<[WriteLd]>;
1333
1334 def t2LDRB_POST : T2Ipostldst<0, 0b00, 1, 0, (outs GPR:$Rt, GPR:$Rn_wb),
1335                           (ins addr_offset_none:$Rn, t2am_imm8_offset:$offset),
1336                           AddrModeT2_i8, IndexModePost, IIC_iLoad_bh_iu,
1337                           "ldrb", "\t$Rt, $Rn$offset", "$Rn = $Rn_wb", []>;
1338
1339 def t2LDRH_PRE : T2Ipreldst<0, 0b01, 1, 1, (outs GPR:$Rt, GPR:$Rn_wb),
1340                             (ins t2addrmode_imm8_pre:$addr),
1341                             AddrModeT2_i8, IndexModePre, IIC_iLoad_bh_iu,
1342                             "ldrh", "\t$Rt, $addr!", "$addr.base = $Rn_wb", []>,
1343                 Sched<[WriteLd]>;
1344
1345 def t2LDRH_POST : T2Ipostldst<0, 0b01, 1, 0, (outs GPR:$Rt, GPR:$Rn_wb),
1346                           (ins addr_offset_none:$Rn, t2am_imm8_offset:$offset),
1347                           AddrModeT2_i8, IndexModePost, IIC_iLoad_bh_iu,
1348                           "ldrh", "\t$Rt, $Rn$offset", "$Rn = $Rn_wb", []>,
1349                   Sched<[WriteLd]>;
1350
1351 def t2LDRSB_PRE : T2Ipreldst<1, 0b00, 1, 1, (outs GPR:$Rt, GPR:$Rn_wb),
1352                             (ins t2addrmode_imm8_pre:$addr),
1353                             AddrModeT2_i8, IndexModePre, IIC_iLoad_bh_iu,
1354                             "ldrsb", "\t$Rt, $addr!", "$addr.base = $Rn_wb",
1355                             []>, Sched<[WriteLd]>;
1356
1357 def t2LDRSB_POST : T2Ipostldst<1, 0b00, 1, 0, (outs GPR:$Rt, GPR:$Rn_wb),
1358                           (ins addr_offset_none:$Rn, t2am_imm8_offset:$offset),
1359                           AddrModeT2_i8, IndexModePost, IIC_iLoad_bh_iu,
1360                           "ldrsb", "\t$Rt, $Rn$offset", "$Rn = $Rn_wb", []>,
1361                    Sched<[WriteLd]>;
1362
1363 def t2LDRSH_PRE : T2Ipreldst<1, 0b01, 1, 1, (outs GPR:$Rt, GPR:$Rn_wb),
1364                             (ins t2addrmode_imm8_pre:$addr),
1365                             AddrModeT2_i8, IndexModePre, IIC_iLoad_bh_iu,
1366                             "ldrsh", "\t$Rt, $addr!", "$addr.base = $Rn_wb",
1367                             []>, Sched<[WriteLd]>;
1368
1369 def t2LDRSH_POST : T2Ipostldst<1, 0b01, 1, 0, (outs GPR:$Rt, GPR:$Rn_wb),
1370                           (ins addr_offset_none:$Rn, t2am_imm8_offset:$offset),
1371                           AddrModeT2_i8, IndexModePost, IIC_iLoad_bh_iu,
1372                           "ldrsh", "\t$Rt, $Rn$offset", "$Rn = $Rn_wb", []>,
1373                   Sched<[WriteLd]>;
1374 } // mayLoad = 1, hasSideEffects = 0
1375
1376 // LDRT, LDRBT, LDRHT, LDRSBT, LDRSHT all have offset mode (PUW=0b110).
1377 // Ref: A8.6.57 LDR (immediate, Thumb) Encoding T4
1378 class T2IldT<bit signed, bits<2> type, string opc, InstrItinClass ii>
1379   : T2Ii8<(outs rGPR:$Rt), (ins t2addrmode_posimm8:$addr), ii, opc,
1380           "\t$Rt, $addr", []>, Sched<[WriteLd]> {
1381   bits<4> Rt;
1382   bits<13> addr;
1383   let Inst{31-27} = 0b11111;
1384   let Inst{26-25} = 0b00;
1385   let Inst{24} = signed;
1386   let Inst{23} = 0;
1387   let Inst{22-21} = type;
1388   let Inst{20} = 1; // load
1389   let Inst{19-16} = addr{12-9};
1390   let Inst{15-12} = Rt;
1391   let Inst{11} = 1;
1392   let Inst{10-8} = 0b110; // PUW.
1393   let Inst{7-0} = addr{7-0};
1394
1395   let DecoderMethod = "DecodeT2LoadT";
1396 }
1397
1398 def t2LDRT   : T2IldT<0, 0b10, "ldrt", IIC_iLoad_i>;
1399 def t2LDRBT  : T2IldT<0, 0b00, "ldrbt", IIC_iLoad_bh_i>;
1400 def t2LDRHT  : T2IldT<0, 0b01, "ldrht", IIC_iLoad_bh_i>;
1401 def t2LDRSBT : T2IldT<1, 0b00, "ldrsbt", IIC_iLoad_bh_i>;
1402 def t2LDRSHT : T2IldT<1, 0b01, "ldrsht", IIC_iLoad_bh_i>;
1403
1404 class T2Ildacq<bits<4> bits23_20, bits<2> bit54, dag oops, dag iops,
1405                string opc, string asm, list<dag> pattern>
1406   : Thumb2I<oops, iops, AddrModeNone, 4, NoItinerary,
1407             opc, asm, "", pattern>, Requires<[IsThumb, HasAcquireRelease]> {
1408   bits<4> Rt;
1409   bits<4> addr;
1410
1411   let Inst{31-27} = 0b11101;
1412   let Inst{26-24} = 0b000;
1413   let Inst{23-20} = bits23_20;
1414   let Inst{11-6} = 0b111110;
1415   let Inst{5-4} = bit54;
1416   let Inst{3-0} = 0b1111;
1417
1418   // Encode instruction operands
1419   let Inst{19-16} = addr;
1420   let Inst{15-12} = Rt;
1421 }
1422
1423 def t2LDA : T2Ildacq<0b1101, 0b10, (outs rGPR:$Rt),
1424                      (ins addr_offset_none:$addr), "lda", "\t$Rt, $addr", []>,
1425             Sched<[WriteLd]>;
1426 def t2LDAB : T2Ildacq<0b1101, 0b00, (outs rGPR:$Rt),
1427                       (ins addr_offset_none:$addr), "ldab", "\t$Rt, $addr", []>,
1428             Sched<[WriteLd]>;
1429 def t2LDAH : T2Ildacq<0b1101, 0b01, (outs rGPR:$Rt),
1430                       (ins addr_offset_none:$addr), "ldah", "\t$Rt, $addr", []>,
1431             Sched<[WriteLd]>;
1432
1433 // Store
1434 defm t2STR :T2I_st<0b10,"str", IIC_iStore_i, IIC_iStore_si, GPR, store>;
1435 defm t2STRB:T2I_st<0b00,"strb", IIC_iStore_bh_i, IIC_iStore_bh_si,
1436                    rGPR, truncstorei8>;
1437 defm t2STRH:T2I_st<0b01,"strh", IIC_iStore_bh_i, IIC_iStore_bh_si,
1438                    rGPR, truncstorei16>;
1439
1440 // Store doubleword
1441 let mayStore = 1, hasSideEffects = 0, hasExtraSrcRegAllocReq = 1 in
1442 def t2STRDi8 : T2Ii8s4<1, 0, 0, (outs),
1443                        (ins rGPR:$Rt, rGPR:$Rt2, t2addrmode_imm8s4:$addr),
1444                IIC_iStore_d_r, "strd", "\t$Rt, $Rt2, $addr", "", []>,
1445                Sched<[WriteST]>;
1446
1447 // Indexed stores
1448
1449 let mayStore = 1, hasSideEffects = 0 in {
1450 def t2STR_PRE  : T2Ipreldst<0, 0b10, 0, 1, (outs GPRnopc:$Rn_wb),
1451                             (ins GPRnopc:$Rt, t2addrmode_imm8_pre:$addr),
1452                             AddrModeT2_i8, IndexModePre, IIC_iStore_iu,
1453                             "str", "\t$Rt, $addr!",
1454                             "$addr.base = $Rn_wb,@earlyclobber $Rn_wb", []>,
1455                  Sched<[WriteST]>;
1456
1457 def t2STRH_PRE  : T2Ipreldst<0, 0b01, 0, 1, (outs GPRnopc:$Rn_wb),
1458                             (ins rGPR:$Rt, t2addrmode_imm8_pre:$addr),
1459                             AddrModeT2_i8, IndexModePre, IIC_iStore_iu,
1460                         "strh", "\t$Rt, $addr!",
1461                         "$addr.base = $Rn_wb,@earlyclobber $Rn_wb", []>,
1462                   Sched<[WriteST]>;
1463
1464 def t2STRB_PRE  : T2Ipreldst<0, 0b00, 0, 1, (outs GPRnopc:$Rn_wb),
1465                             (ins rGPR:$Rt, t2addrmode_imm8_pre:$addr),
1466                             AddrModeT2_i8, IndexModePre, IIC_iStore_bh_iu,
1467                         "strb", "\t$Rt, $addr!",
1468                         "$addr.base = $Rn_wb,@earlyclobber $Rn_wb", []>,
1469             Sched<[WriteST]>;
1470 } // mayStore = 1, hasSideEffects = 0
1471
1472 def t2STR_POST : T2Ipostldst<0, 0b10, 0, 0, (outs GPRnopc:$Rn_wb),
1473                             (ins GPRnopc:$Rt, addr_offset_none:$Rn,
1474                                  t2am_imm8_offset:$offset),
1475                             AddrModeT2_i8, IndexModePost, IIC_iStore_iu,
1476                           "str", "\t$Rt, $Rn$offset",
1477                           "$Rn = $Rn_wb,@earlyclobber $Rn_wb",
1478              [(set GPRnopc:$Rn_wb,
1479                   (post_store GPRnopc:$Rt, addr_offset_none:$Rn,
1480                               t2am_imm8_offset:$offset))]>,
1481             Sched<[WriteST]>;
1482
1483 def t2STRH_POST : T2Ipostldst<0, 0b01, 0, 0, (outs GPRnopc:$Rn_wb),
1484                             (ins rGPR:$Rt, addr_offset_none:$Rn,
1485                                  t2am_imm8_offset:$offset),
1486                             AddrModeT2_i8, IndexModePost, IIC_iStore_bh_iu,
1487                          "strh", "\t$Rt, $Rn$offset",
1488                          "$Rn = $Rn_wb,@earlyclobber $Rn_wb",
1489        [(set GPRnopc:$Rn_wb,
1490              (post_truncsti16 rGPR:$Rt, addr_offset_none:$Rn,
1491                               t2am_imm8_offset:$offset))]>,
1492             Sched<[WriteST]>;
1493
1494 def t2STRB_POST : T2Ipostldst<0, 0b00, 0, 0, (outs GPRnopc:$Rn_wb),
1495                             (ins rGPR:$Rt, addr_offset_none:$Rn,
1496                                  t2am_imm8_offset:$offset),
1497                             AddrModeT2_i8, IndexModePost, IIC_iStore_bh_iu,
1498                          "strb", "\t$Rt, $Rn$offset",
1499                          "$Rn = $Rn_wb,@earlyclobber $Rn_wb",
1500         [(set GPRnopc:$Rn_wb,
1501               (post_truncsti8 rGPR:$Rt, addr_offset_none:$Rn,
1502                               t2am_imm8_offset:$offset))]>,
1503             Sched<[WriteST]>;
1504
1505 // Pseudo-instructions for pattern matching the pre-indexed stores. We can't
1506 // put the patterns on the instruction definitions directly as ISel wants
1507 // the address base and offset to be separate operands, not a single
1508 // complex operand like we represent the instructions themselves. The
1509 // pseudos map between the two.
1510 let usesCustomInserter = 1,
1511     Constraints = "$Rn = $Rn_wb,@earlyclobber $Rn_wb" in {
1512 def t2STR_preidx: t2PseudoInst<(outs GPRnopc:$Rn_wb),
1513                (ins rGPR:$Rt, GPRnopc:$Rn, t2am_imm8_offset:$offset, pred:$p),
1514                4, IIC_iStore_ru,
1515       [(set GPRnopc:$Rn_wb,
1516             (pre_store rGPR:$Rt, GPRnopc:$Rn, t2am_imm8_offset:$offset))]>,
1517             Sched<[WriteST]>;
1518 def t2STRB_preidx: t2PseudoInst<(outs GPRnopc:$Rn_wb),
1519                (ins rGPR:$Rt, GPRnopc:$Rn, t2am_imm8_offset:$offset, pred:$p),
1520                4, IIC_iStore_ru,
1521       [(set GPRnopc:$Rn_wb,
1522             (pre_truncsti8 rGPR:$Rt, GPRnopc:$Rn, t2am_imm8_offset:$offset))]>,
1523             Sched<[WriteST]>;
1524 def t2STRH_preidx: t2PseudoInst<(outs GPRnopc:$Rn_wb),
1525                (ins rGPR:$Rt, GPRnopc:$Rn, t2am_imm8_offset:$offset, pred:$p),
1526                4, IIC_iStore_ru,
1527       [(set GPRnopc:$Rn_wb,
1528             (pre_truncsti16 rGPR:$Rt, GPRnopc:$Rn, t2am_imm8_offset:$offset))]>,
1529             Sched<[WriteST]>;
1530 }
1531
1532 // STRT, STRBT, STRHT all have offset mode (PUW=0b110) and are for disassembly
1533 // only.
1534 // Ref: A8.6.193 STR (immediate, Thumb) Encoding T4
1535 class T2IstT<bits<2> type, string opc, InstrItinClass ii>
1536   : T2Ii8<(outs rGPR:$Rt), (ins t2addrmode_imm8:$addr), ii, opc,
1537           "\t$Rt, $addr", []>, Sched<[WriteST]> {
1538   let Inst{31-27} = 0b11111;
1539   let Inst{26-25} = 0b00;
1540   let Inst{24} = 0; // not signed
1541   let Inst{23} = 0;
1542   let Inst{22-21} = type;
1543   let Inst{20} = 0; // store
1544   let Inst{11} = 1;
1545   let Inst{10-8} = 0b110; // PUW
1546
1547   bits<4> Rt;
1548   bits<13> addr;
1549   let Inst{15-12} = Rt;
1550   let Inst{19-16} = addr{12-9};
1551   let Inst{7-0}   = addr{7-0};
1552 }
1553
1554 def t2STRT   : T2IstT<0b10, "strt", IIC_iStore_i>;
1555 def t2STRBT  : T2IstT<0b00, "strbt", IIC_iStore_bh_i>;
1556 def t2STRHT  : T2IstT<0b01, "strht", IIC_iStore_bh_i>;
1557
1558 // ldrd / strd pre / post variants
1559
1560 let mayLoad = 1 in
1561 def t2LDRD_PRE  : T2Ii8s4<1, 1, 1, (outs rGPR:$Rt, rGPR:$Rt2, GPR:$wb),
1562                  (ins t2addrmode_imm8s4_pre:$addr), IIC_iLoad_d_ru,
1563                  "ldrd", "\t$Rt, $Rt2, $addr!", "$addr.base = $wb", []>,
1564                  Sched<[WriteLd]> {
1565   let DecoderMethod = "DecodeT2LDRDPreInstruction";
1566 }
1567
1568 let mayLoad = 1 in
1569 def t2LDRD_POST : T2Ii8s4post<0, 1, 1, (outs rGPR:$Rt, rGPR:$Rt2, GPR:$wb),
1570                  (ins addr_offset_none:$addr, t2am_imm8s4_offset:$imm),
1571                  IIC_iLoad_d_ru, "ldrd", "\t$Rt, $Rt2, $addr$imm",
1572                  "$addr.base = $wb", []>, Sched<[WriteLd]>;
1573
1574 let mayStore = 1 in
1575 def t2STRD_PRE  : T2Ii8s4<1, 1, 0, (outs GPR:$wb),
1576                  (ins rGPR:$Rt, rGPR:$Rt2, t2addrmode_imm8s4_pre:$addr),
1577                  IIC_iStore_d_ru, "strd", "\t$Rt, $Rt2, $addr!",
1578                  "$addr.base = $wb", []>, Sched<[WriteST]> {
1579   let DecoderMethod = "DecodeT2STRDPreInstruction";
1580 }
1581
1582 let mayStore = 1 in
1583 def t2STRD_POST : T2Ii8s4post<0, 1, 0, (outs GPR:$wb),
1584                  (ins rGPR:$Rt, rGPR:$Rt2, addr_offset_none:$addr,
1585                       t2am_imm8s4_offset:$imm),
1586                  IIC_iStore_d_ru, "strd", "\t$Rt, $Rt2, $addr$imm",
1587                  "$addr.base = $wb", []>, Sched<[WriteST]>;
1588
1589 class T2Istrrel<bits<2> bit54, dag oops, dag iops,
1590                 string opc, string asm, list<dag> pattern>
1591   : Thumb2I<oops, iops, AddrModeNone, 4, NoItinerary, opc,
1592             asm, "", pattern>, Requires<[IsThumb, HasAcquireRelease]>,
1593     Sched<[WriteST]> {
1594   bits<4> Rt;
1595   bits<4> addr;
1596
1597   let Inst{31-27} = 0b11101;
1598   let Inst{26-20} = 0b0001100;
1599   let Inst{11-6} = 0b111110;
1600   let Inst{5-4} = bit54;
1601   let Inst{3-0} = 0b1111;
1602
1603   // Encode instruction operands
1604   let Inst{19-16} = addr;
1605   let Inst{15-12} = Rt;
1606 }
1607
1608 def t2STL  : T2Istrrel<0b10, (outs), (ins rGPR:$Rt, addr_offset_none:$addr),
1609                        "stl", "\t$Rt, $addr", []>;
1610 def t2STLB : T2Istrrel<0b00, (outs), (ins rGPR:$Rt, addr_offset_none:$addr),
1611                        "stlb", "\t$Rt, $addr", []>;
1612 def t2STLH : T2Istrrel<0b01, (outs), (ins rGPR:$Rt, addr_offset_none:$addr),
1613                        "stlh", "\t$Rt, $addr", []>;
1614
1615 // T2Ipl (Preload Data/Instruction) signals the memory system of possible future
1616 // data/instruction access.
1617 // instr_write is inverted for Thumb mode: (prefetch 3) -> (preload 0),
1618 // (prefetch 1) -> (preload 2),  (prefetch 2) -> (preload 1).
1619 multiclass T2Ipl<bits<1> write, bits<1> instr, string opc> {
1620
1621   def i12 : T2Ii12<(outs), (ins t2addrmode_imm12:$addr), IIC_Preload, opc,
1622                 "\t$addr",
1623               [(ARMPreload t2addrmode_imm12:$addr, (i32 write), (i32 instr))]>,
1624               Sched<[WritePreLd]> {
1625     let Inst{31-25} = 0b1111100;
1626     let Inst{24} = instr;
1627     let Inst{23} = 1;
1628     let Inst{22} = 0;
1629     let Inst{21} = write;
1630     let Inst{20} = 1;
1631     let Inst{15-12} = 0b1111;
1632
1633     bits<17> addr;
1634     let Inst{19-16} = addr{16-13}; // Rn
1635     let Inst{11-0}  = addr{11-0};  // imm12
1636
1637     let DecoderMethod = "DecodeT2LoadImm12";
1638   }
1639
1640   def i8 : T2Ii8<(outs), (ins t2addrmode_negimm8:$addr), IIC_Preload, opc,
1641                 "\t$addr",
1642             [(ARMPreload t2addrmode_negimm8:$addr, (i32 write), (i32 instr))]>,
1643             Sched<[WritePreLd]> {
1644     let Inst{31-25} = 0b1111100;
1645     let Inst{24} = instr;
1646     let Inst{23} = 0; // U = 0
1647     let Inst{22} = 0;
1648     let Inst{21} = write;
1649     let Inst{20} = 1;
1650     let Inst{15-12} = 0b1111;
1651     let Inst{11-8} = 0b1100;
1652
1653     bits<13> addr;
1654     let Inst{19-16} = addr{12-9}; // Rn
1655     let Inst{7-0}   = addr{7-0};  // imm8
1656
1657     let DecoderMethod = "DecodeT2LoadImm8";
1658   }
1659
1660   def s : T2Iso<(outs), (ins t2addrmode_so_reg:$addr), IIC_Preload, opc,
1661                "\t$addr",
1662              [(ARMPreload t2addrmode_so_reg:$addr, (i32 write), (i32 instr))]>,
1663              Sched<[WritePreLd]> {
1664     let Inst{31-25} = 0b1111100;
1665     let Inst{24} = instr;
1666     let Inst{23} = 0; // add = TRUE for T1
1667     let Inst{22} = 0;
1668     let Inst{21} = write;
1669     let Inst{20} = 1;
1670     let Inst{15-12} = 0b1111;
1671     let Inst{11-6} = 0b000000;
1672
1673     bits<10> addr;
1674     let Inst{19-16} = addr{9-6}; // Rn
1675     let Inst{3-0}   = addr{5-2}; // Rm
1676     let Inst{5-4}   = addr{1-0}; // imm2
1677
1678     let DecoderMethod = "DecodeT2LoadShift";
1679   }
1680 }
1681
1682 defm t2PLD    : T2Ipl<0, 0, "pld">,  Requires<[IsThumb2]>;
1683 defm t2PLDW   : T2Ipl<1, 0, "pldw">, Requires<[IsThumb2,HasV7,HasMP]>;
1684 defm t2PLI    : T2Ipl<0, 1, "pli">,  Requires<[IsThumb2,HasV7]>;
1685
1686 // pci variant is very similar to i12, but supports negative offsets
1687 // from the PC. Only PLD and PLI have pci variants (not PLDW)
1688 class T2Iplpci<bits<1> inst, string opc> : T2Iso<(outs), (ins t2ldrlabel:$addr),
1689                IIC_Preload, opc, "\t$addr",
1690                [(ARMPreload (ARMWrapper tconstpool:$addr),
1691                 (i32 0), (i32 inst))]>, Sched<[WritePreLd]> {
1692   let Inst{31-25} = 0b1111100;
1693   let Inst{24} = inst;
1694   let Inst{22-20} = 0b001;
1695   let Inst{19-16} = 0b1111;
1696   let Inst{15-12} = 0b1111;
1697
1698   bits<13> addr;
1699   let Inst{23}   = addr{12};   // add = (U == '1')
1700   let Inst{11-0} = addr{11-0}; // imm12
1701
1702   let DecoderMethod = "DecodeT2LoadLabel";
1703 }
1704
1705 def t2PLDpci : T2Iplpci<0, "pld">,  Requires<[IsThumb2]>;
1706 def t2PLIpci : T2Iplpci<1, "pli">,  Requires<[IsThumb2,HasV7]>;
1707
1708 //===----------------------------------------------------------------------===//
1709 //  Load / store multiple Instructions.
1710 //
1711
1712 multiclass thumb2_ld_mult<string asm, InstrItinClass itin,
1713                             InstrItinClass itin_upd, bit L_bit> {
1714   def IA :
1715     T2XI<(outs), (ins GPR:$Rn, pred:$p, reglist:$regs, variable_ops),
1716          itin, !strconcat(asm, "${p}.w\t$Rn, $regs"), []> {
1717     bits<4>  Rn;
1718     bits<16> regs;
1719
1720     let Inst{31-27} = 0b11101;
1721     let Inst{26-25} = 0b00;
1722     let Inst{24-23} = 0b01;     // Increment After
1723     let Inst{22}    = 0;
1724     let Inst{21}    = 0;        // No writeback
1725     let Inst{20}    = L_bit;
1726     let Inst{19-16} = Rn;
1727     let Inst{15-0}  = regs;
1728   }
1729   def IA_UPD :
1730     T2XIt<(outs GPR:$wb), (ins GPR:$Rn, pred:$p, reglist:$regs, variable_ops),
1731           itin_upd, !strconcat(asm, "${p}.w\t$Rn!, $regs"), "$Rn = $wb", []> {
1732     bits<4>  Rn;
1733     bits<16> regs;
1734
1735     let Inst{31-27} = 0b11101;
1736     let Inst{26-25} = 0b00;
1737     let Inst{24-23} = 0b01;     // Increment After
1738     let Inst{22}    = 0;
1739     let Inst{21}    = 1;        // Writeback
1740     let Inst{20}    = L_bit;
1741     let Inst{19-16} = Rn;
1742     let Inst{15-0}  = regs;
1743   }
1744   def DB :
1745     T2XI<(outs), (ins GPR:$Rn, pred:$p, reglist:$regs, variable_ops),
1746          itin, !strconcat(asm, "db${p}\t$Rn, $regs"), []> {
1747     bits<4>  Rn;
1748     bits<16> regs;
1749
1750     let Inst{31-27} = 0b11101;
1751     let Inst{26-25} = 0b00;
1752     let Inst{24-23} = 0b10;     // Decrement Before
1753     let Inst{22}    = 0;
1754     let Inst{21}    = 0;        // No writeback
1755     let Inst{20}    = L_bit;
1756     let Inst{19-16} = Rn;
1757     let Inst{15-0}  = regs;
1758   }
1759   def DB_UPD :
1760     T2XIt<(outs GPR:$wb), (ins GPR:$Rn, pred:$p, reglist:$regs, variable_ops),
1761           itin_upd, !strconcat(asm, "db${p}\t$Rn!, $regs"), "$Rn = $wb", []> {
1762     bits<4>  Rn;
1763     bits<16> regs;
1764
1765     let Inst{31-27} = 0b11101;
1766     let Inst{26-25} = 0b00;
1767     let Inst{24-23} = 0b10;     // Decrement Before
1768     let Inst{22}    = 0;
1769     let Inst{21}    = 1;        // Writeback
1770     let Inst{20}    = L_bit;
1771     let Inst{19-16} = Rn;
1772     let Inst{15-0}  = regs;
1773   }
1774 }
1775
1776 let hasSideEffects = 0 in {
1777
1778 let mayLoad = 1, hasExtraDefRegAllocReq = 1 in
1779 defm t2LDM : thumb2_ld_mult<"ldm", IIC_iLoad_m, IIC_iLoad_mu, 1>;
1780
1781 multiclass thumb2_st_mult<string asm, InstrItinClass itin,
1782                             InstrItinClass itin_upd, bit L_bit> {
1783   def IA :
1784     T2XI<(outs), (ins GPR:$Rn, pred:$p, reglist:$regs, variable_ops),
1785          itin, !strconcat(asm, "${p}.w\t$Rn, $regs"), []> {
1786     bits<4>  Rn;
1787     bits<16> regs;
1788
1789     let Inst{31-27} = 0b11101;
1790     let Inst{26-25} = 0b00;
1791     let Inst{24-23} = 0b01;     // Increment After
1792     let Inst{22}    = 0;
1793     let Inst{21}    = 0;        // No writeback
1794     let Inst{20}    = L_bit;
1795     let Inst{19-16} = Rn;
1796     let Inst{15}    = 0;
1797     let Inst{14}    = regs{14};
1798     let Inst{13}    = 0;
1799     let Inst{12-0}  = regs{12-0};
1800   }
1801   def IA_UPD :
1802     T2XIt<(outs GPR:$wb), (ins GPR:$Rn, pred:$p, reglist:$regs, variable_ops),
1803           itin_upd, !strconcat(asm, "${p}.w\t$Rn!, $regs"), "$Rn = $wb", []> {
1804     bits<4>  Rn;
1805     bits<16> regs;
1806
1807     let Inst{31-27} = 0b11101;
1808     let Inst{26-25} = 0b00;
1809     let Inst{24-23} = 0b01;     // Increment After
1810     let Inst{22}    = 0;
1811     let Inst{21}    = 1;        // Writeback
1812     let Inst{20}    = L_bit;
1813     let Inst{19-16} = Rn;
1814     let Inst{15}    = 0;
1815     let Inst{14}    = regs{14};
1816     let Inst{13}    = 0;
1817     let Inst{12-0}  = regs{12-0};
1818   }
1819   def DB :
1820     T2XI<(outs), (ins GPR:$Rn, pred:$p, reglist:$regs, variable_ops),
1821          itin, !strconcat(asm, "db${p}\t$Rn, $regs"), []> {
1822     bits<4>  Rn;
1823     bits<16> regs;
1824
1825     let Inst{31-27} = 0b11101;
1826     let Inst{26-25} = 0b00;
1827     let Inst{24-23} = 0b10;     // Decrement Before
1828     let Inst{22}    = 0;
1829     let Inst{21}    = 0;        // No writeback
1830     let Inst{20}    = L_bit;
1831     let Inst{19-16} = Rn;
1832     let Inst{15}    = 0;
1833     let Inst{14}    = regs{14};
1834     let Inst{13}    = 0;
1835     let Inst{12-0}  = regs{12-0};
1836   }
1837   def DB_UPD :
1838     T2XIt<(outs GPR:$wb), (ins GPR:$Rn, pred:$p, reglist:$regs, variable_ops),
1839           itin_upd, !strconcat(asm, "db${p}\t$Rn!, $regs"), "$Rn = $wb", []> {
1840     bits<4>  Rn;
1841     bits<16> regs;
1842
1843     let Inst{31-27} = 0b11101;
1844     let Inst{26-25} = 0b00;
1845     let Inst{24-23} = 0b10;     // Decrement Before
1846     let Inst{22}    = 0;
1847     let Inst{21}    = 1;        // Writeback
1848     let Inst{20}    = L_bit;
1849     let Inst{19-16} = Rn;
1850     let Inst{15}    = 0;
1851     let Inst{14}    = regs{14};
1852     let Inst{13}    = 0;
1853     let Inst{12-0}  = regs{12-0};
1854   }
1855 }
1856
1857
1858 let mayStore = 1, hasExtraSrcRegAllocReq = 1 in
1859 defm t2STM : thumb2_st_mult<"stm", IIC_iStore_m, IIC_iStore_mu, 0>;
1860
1861 } // hasSideEffects
1862
1863
1864 //===----------------------------------------------------------------------===//
1865 //  Move Instructions.
1866 //
1867
1868 let hasSideEffects = 0 in
1869 def t2MOVr : T2sTwoReg<(outs GPRnopc:$Rd), (ins GPRnopc:$Rm), IIC_iMOVr,
1870                    "mov", ".w\t$Rd, $Rm", []>, Sched<[WriteALU]> {
1871   let Inst{31-27} = 0b11101;
1872   let Inst{26-25} = 0b01;
1873   let Inst{24-21} = 0b0010;
1874   let Inst{19-16} = 0b1111; // Rn
1875   let Inst{14-12} = 0b000;
1876   let Inst{7-4} = 0b0000;
1877 }
1878 def : t2InstAlias<"mov${p}.w $Rd, $Rm", (t2MOVr GPRnopc:$Rd, GPRnopc:$Rm,
1879                                                 pred:$p, zero_reg)>;
1880 def : t2InstAlias<"movs${p}.w $Rd, $Rm", (t2MOVr GPRnopc:$Rd, GPRnopc:$Rm,
1881                                                  pred:$p, CPSR)>;
1882 def : t2InstAlias<"movs${p} $Rd, $Rm", (t2MOVr GPRnopc:$Rd, GPRnopc:$Rm,
1883                                                pred:$p, CPSR)>;
1884
1885 // AddedComplexity to ensure isel tries t2MOVi before t2MOVi16.
1886 let isReMaterializable = 1, isAsCheapAsAMove = 1, isMoveImm = 1,
1887     AddedComplexity = 1 in
1888 def t2MOVi : T2sOneRegImm<(outs rGPR:$Rd), (ins t2_so_imm:$imm), IIC_iMOVi,
1889                    "mov", ".w\t$Rd, $imm",
1890                    [(set rGPR:$Rd, t2_so_imm:$imm)]>, Sched<[WriteALU]> {
1891   let Inst{31-27} = 0b11110;
1892   let Inst{25} = 0;
1893   let Inst{24-21} = 0b0010;
1894   let Inst{19-16} = 0b1111; // Rn
1895   let Inst{15} = 0;
1896 }
1897
1898 // cc_out is handled as part of the explicit mnemonic in the parser for 'mov'.
1899 // Use aliases to get that to play nice here.
1900 def : t2InstAlias<"movs${p}.w $Rd, $imm", (t2MOVi rGPR:$Rd, t2_so_imm:$imm,
1901                                                 pred:$p, CPSR)>;
1902 def : t2InstAlias<"movs${p} $Rd, $imm", (t2MOVi rGPR:$Rd, t2_so_imm:$imm,
1903                                                 pred:$p, CPSR)>;
1904
1905 def : t2InstAlias<"mov${p}.w $Rd, $imm", (t2MOVi rGPR:$Rd, t2_so_imm:$imm,
1906                                                  pred:$p, zero_reg)>;
1907 def : t2InstAlias<"mov${p} $Rd, $imm", (t2MOVi rGPR:$Rd, t2_so_imm:$imm,
1908                                                pred:$p, zero_reg)>;
1909
1910 let isReMaterializable = 1, isAsCheapAsAMove = 1, isMoveImm = 1 in
1911 def t2MOVi16 : T2I<(outs rGPR:$Rd), (ins imm0_65535_expr:$imm), IIC_iMOVi,
1912                    "movw", "\t$Rd, $imm",
1913                    [(set rGPR:$Rd, imm0_65535:$imm)]>, Sched<[WriteALU]>,
1914                    Requires<[IsThumb, HasV8MBaseline]> {
1915   let Inst{31-27} = 0b11110;
1916   let Inst{25} = 1;
1917   let Inst{24-21} = 0b0010;
1918   let Inst{20} = 0; // The S bit.
1919   let Inst{15} = 0;
1920
1921   bits<4> Rd;
1922   bits<16> imm;
1923
1924   let Inst{11-8}  = Rd;
1925   let Inst{19-16} = imm{15-12};
1926   let Inst{26}    = imm{11};
1927   let Inst{14-12} = imm{10-8};
1928   let Inst{7-0}   = imm{7-0};
1929   let DecoderMethod = "DecodeT2MOVTWInstruction";
1930 }
1931
1932 def : InstAlias<"mov${p} $Rd, $imm",
1933                 (t2MOVi16 rGPR:$Rd, imm256_65535_expr:$imm, pred:$p), 0>,
1934                 Requires<[IsThumb, HasV8MBaseline]>, Sched<[WriteALU]>;
1935
1936 def t2MOVi16_ga_pcrel : PseudoInst<(outs rGPR:$Rd),
1937                                 (ins i32imm:$addr, pclabel:$id), IIC_iMOVi, []>,
1938                         Sched<[WriteALU]>;
1939
1940 let Constraints = "$src = $Rd" in {
1941 def t2MOVTi16 : T2I<(outs rGPR:$Rd),
1942                     (ins rGPR:$src, imm0_65535_expr:$imm), IIC_iMOVi,
1943                     "movt", "\t$Rd, $imm",
1944                     [(set rGPR:$Rd,
1945                           (or (and rGPR:$src, 0xffff), lo16AllZero:$imm))]>,
1946                           Sched<[WriteALU]>,
1947                           Requires<[IsThumb, HasV8MBaseline]> {
1948   let Inst{31-27} = 0b11110;
1949   let Inst{25} = 1;
1950   let Inst{24-21} = 0b0110;
1951   let Inst{20} = 0; // The S bit.
1952   let Inst{15} = 0;
1953
1954   bits<4> Rd;
1955   bits<16> imm;
1956
1957   let Inst{11-8}  = Rd;
1958   let Inst{19-16} = imm{15-12};
1959   let Inst{26}    = imm{11};
1960   let Inst{14-12} = imm{10-8};
1961   let Inst{7-0}   = imm{7-0};
1962   let DecoderMethod = "DecodeT2MOVTWInstruction";
1963 }
1964
1965 def t2MOVTi16_ga_pcrel : PseudoInst<(outs rGPR:$Rd),
1966                      (ins rGPR:$src, i32imm:$addr, pclabel:$id), IIC_iMOVi, []>,
1967                      Sched<[WriteALU]>, Requires<[IsThumb, HasV8MBaseline]>;
1968 } // Constraints
1969
1970 def : T2Pat<(or rGPR:$src, 0xffff0000), (t2MOVTi16 rGPR:$src, 0xffff)>;
1971
1972 //===----------------------------------------------------------------------===//
1973 //  Extend Instructions.
1974 //
1975
1976 // Sign extenders
1977
1978 def t2SXTB  : T2I_ext_rrot<0b100, "sxtb">;
1979 def t2SXTH  : T2I_ext_rrot<0b000, "sxth">;
1980 def t2SXTB16 : T2I_ext_rrot_xtb16<0b010, "sxtb16">;
1981
1982 def t2SXTAB : T2I_exta_rrot<0b100, "sxtab">;
1983 def t2SXTAH : T2I_exta_rrot<0b000, "sxtah">;
1984 def t2SXTAB16 : T2I_exta_rrot<0b010, "sxtab16">;
1985
1986 def : T2Pat<(sext_inreg (rotr rGPR:$Rn, rot_imm:$rot), i8),
1987             (t2SXTB rGPR:$Rn, rot_imm:$rot)>;
1988 def : T2Pat<(sext_inreg (rotr rGPR:$Rn, rot_imm:$rot), i16),
1989             (t2SXTH rGPR:$Rn, rot_imm:$rot)>;
1990 def : Thumb2DSPPat<(add rGPR:$Rn,
1991                             (sext_inreg (rotr rGPR:$Rm, rot_imm:$rot), i8)),
1992             (t2SXTAB rGPR:$Rn, rGPR:$Rm, rot_imm:$rot)>;
1993 def : Thumb2DSPPat<(add rGPR:$Rn,
1994                             (sext_inreg (rotr rGPR:$Rm, rot_imm:$rot), i16)),
1995             (t2SXTAH rGPR:$Rn, rGPR:$Rm, rot_imm:$rot)>;
1996 def : Thumb2DSPPat<(int_arm_sxtb16 rGPR:$Rn),
1997                    (t2SXTB16 rGPR:$Rn, 0)>;
1998 def : Thumb2DSPPat<(int_arm_sxtab16 rGPR:$Rn, rGPR:$Rm),
1999                    (t2SXTAB16 rGPR:$Rn, rGPR:$Rm, 0)>;
2000
2001
2002 // A simple right-shift can also be used in most cases (the exception is the
2003 // SXTH operations with a rotate of 24: there the non-contiguous bits are
2004 // relevant).
2005 def : Thumb2DSPPat<(add rGPR:$Rn, (sext_inreg
2006                                         (srl rGPR:$Rm, rot_imm:$rot), i8)),
2007                        (t2SXTAB rGPR:$Rn, rGPR:$Rm, rot_imm:$rot)>;
2008 def : Thumb2DSPPat<(add rGPR:$Rn, (sext_inreg
2009                                         (srl rGPR:$Rm, imm8_or_16:$rot), i16)),
2010                        (t2SXTAH rGPR:$Rn, rGPR:$Rm, rot_imm:$rot)>;
2011 def : Thumb2DSPPat<(add rGPR:$Rn, (sext_inreg
2012                                         (rotr rGPR:$Rm, (i32 24)), i16)),
2013                        (t2SXTAH rGPR:$Rn, rGPR:$Rm, (i32 3))>;
2014 def : Thumb2DSPPat<(add rGPR:$Rn, (sext_inreg
2015                                         (or (srl rGPR:$Rm, (i32 24)),
2016                                               (shl rGPR:$Rm, (i32 8))), i16)),
2017                        (t2SXTAH rGPR:$Rn, rGPR:$Rm, (i32 3))>;
2018
2019 // Zero extenders
2020
2021 let AddedComplexity = 16 in {
2022 def t2UXTB   : T2I_ext_rrot<0b101, "uxtb">;
2023 def t2UXTH   : T2I_ext_rrot<0b001, "uxth">;
2024 def t2UXTB16 : T2I_ext_rrot_xtb16<0b011, "uxtb16">;
2025
2026 def : Thumb2DSPPat<(and (rotr rGPR:$Rm, rot_imm:$rot), 0x000000FF),
2027                        (t2UXTB rGPR:$Rm, rot_imm:$rot)>;
2028 def : Thumb2DSPPat<(and (rotr rGPR:$Rm, rot_imm:$rot), 0x0000FFFF),
2029                        (t2UXTH rGPR:$Rm, rot_imm:$rot)>;
2030 def : Thumb2DSPPat<(and (rotr rGPR:$Rm, rot_imm:$rot), 0x00FF00FF),
2031                        (t2UXTB16 rGPR:$Rm, rot_imm:$rot)>;
2032
2033 def : Thumb2DSPPat<(int_arm_uxtb16 rGPR:$Rm),
2034                    (t2UXTB16 rGPR:$Rm, 0)>;
2035
2036 // FIXME: This pattern incorrectly assumes the shl operator is a rotate.
2037 //        The transformation should probably be done as a combiner action
2038 //        instead so we can include a check for masking back in the upper
2039 //        eight bits of the source into the lower eight bits of the result.
2040 //def : T2Pat<(and (shl rGPR:$Src, (i32 8)), 0xFF00FF),
2041 //            (t2UXTB16 rGPR:$Src, 3)>,
2042 //          Requires<[HasDSP, IsThumb2]>;
2043 def : T2Pat<(and (srl rGPR:$Src, (i32 8)), 0xFF00FF),
2044             (t2UXTB16 rGPR:$Src, 1)>,
2045         Requires<[HasDSP, IsThumb2]>;
2046
2047 def t2UXTAB : T2I_exta_rrot<0b101, "uxtab">;
2048 def t2UXTAH : T2I_exta_rrot<0b001, "uxtah">;
2049 def t2UXTAB16 : T2I_exta_rrot<0b011, "uxtab16">;
2050
2051 def : Thumb2DSPPat<(add rGPR:$Rn, (and (rotr rGPR:$Rm, rot_imm:$rot),
2052                                             0x00FF)),
2053                        (t2UXTAB rGPR:$Rn, rGPR:$Rm, rot_imm:$rot)>;
2054 def : Thumb2DSPPat<(add rGPR:$Rn, (and (rotr rGPR:$Rm, rot_imm:$rot),
2055                                             0xFFFF)),
2056                        (t2UXTAH rGPR:$Rn, rGPR:$Rm, rot_imm:$rot)>;
2057 def : Thumb2DSPPat<(add rGPR:$Rn, (and (srl rGPR:$Rm, rot_imm:$rot),
2058                                            0xFF)),
2059                        (t2UXTAB rGPR:$Rn, rGPR:$Rm, rot_imm:$rot)>;
2060 def : Thumb2DSPPat<(add rGPR:$Rn, (and (srl rGPR:$Rm, imm8_or_16:$rot),
2061                                             0xFFFF)),
2062                        (t2UXTAH rGPR:$Rn, rGPR:$Rm, rot_imm:$rot)>;
2063 def : Thumb2DSPPat<(int_arm_uxtab16 rGPR:$Rn, rGPR:$Rm),
2064                       (t2UXTAB16 rGPR:$Rn, rGPR:$Rm, 0)>;
2065 }
2066
2067
2068 //===----------------------------------------------------------------------===//
2069 //  Arithmetic Instructions.
2070 //
2071
2072 let isAdd = 1 in
2073 defm t2ADD  : T2I_bin_ii12rs<0b000, "add", add, 1>;
2074 defm t2SUB  : T2I_bin_ii12rs<0b101, "sub", sub>;
2075
2076 // ADD and SUB with 's' bit set. No 12-bit immediate (T4) variants.
2077 //
2078 // Currently, t2ADDS/t2SUBS are pseudo opcodes that exist only in the
2079 // selection DAG. They are "lowered" to real t2ADD/t2SUB opcodes by
2080 // AdjustInstrPostInstrSelection where we determine whether or not to
2081 // set the "s" bit based on CPSR liveness.
2082 //
2083 // FIXME: Eliminate t2ADDS/t2SUBS pseudo opcodes after adding tablegen
2084 // support for an optional CPSR definition that corresponds to the DAG
2085 // node's second value. We can then eliminate the implicit def of CPSR.
2086 defm t2ADDS : T2I_bin_s_irs <IIC_iALUi, IIC_iALUr, IIC_iALUsi, ARMaddc, 1>;
2087 defm t2SUBS : T2I_bin_s_irs <IIC_iALUi, IIC_iALUr, IIC_iALUsi, ARMsubc>;
2088
2089 let hasPostISelHook = 1 in {
2090 defm t2ADC  : T2I_adde_sube_irs<0b1010, "adc", ARMadde, 1>;
2091 defm t2SBC  : T2I_adde_sube_irs<0b1011, "sbc", ARMsube>;
2092 }
2093
2094 def : t2InstSubst<"adc${s}${p} $rd, $rn, $imm",
2095                  (t2SBCri rGPR:$rd, rGPR:$rn, t2_so_imm_not:$imm, pred:$p, s_cc_out:$s)>;
2096 def : t2InstSubst<"sbc${s}${p} $rd, $rn, $imm",
2097                  (t2ADCri rGPR:$rd, rGPR:$rn, t2_so_imm_not:$imm, pred:$p, s_cc_out:$s)>;
2098
2099 def : t2InstSubst<"add${s}${p}.w $rd, $rn, $imm",
2100                  (t2SUBri GPRnopc:$rd, GPRnopc:$rn, t2_so_imm_neg:$imm, pred:$p, s_cc_out:$s)>;
2101 def : t2InstSubst<"addw${p} $rd, $rn, $imm",
2102                  (t2SUBri12 GPRnopc:$rd, GPR:$rn, t2_so_imm_neg:$imm, pred:$p)>;
2103 def : t2InstSubst<"sub${s}${p}.w $rd, $rn, $imm",
2104                  (t2ADDri GPRnopc:$rd, GPRnopc:$rn, t2_so_imm_neg:$imm, pred:$p, s_cc_out:$s)>;
2105 def : t2InstSubst<"subw${p} $rd, $rn, $imm",
2106                  (t2ADDri12 GPRnopc:$rd, GPR:$rn, t2_so_imm_neg:$imm, pred:$p)>;
2107 // RSB
2108 defm t2RSB  : T2I_rbin_irs  <0b1110, "rsb", sub>;
2109
2110 // FIXME: Eliminate them if we can write def : Pat patterns which defines
2111 // CPSR and the implicit def of CPSR is not needed.
2112 defm t2RSBS : T2I_rbin_s_is <ARMsubc>;
2113
2114 // (sub X, imm) gets canonicalized to (add X, -imm).  Match this form.
2115 // The assume-no-carry-in form uses the negation of the input since add/sub
2116 // assume opposite meanings of the carry flag (i.e., carry == !borrow).
2117 // See the definition of AddWithCarry() in the ARM ARM A2.2.1 for the gory
2118 // details.
2119 // The AddedComplexity preferences the first variant over the others since
2120 // it can be shrunk to a 16-bit wide encoding, while the others cannot.
2121 let AddedComplexity = 1 in
2122 def : T2Pat<(add        GPR:$src, imm1_255_neg:$imm),
2123             (t2SUBri    GPR:$src, imm1_255_neg:$imm)>;
2124 def : T2Pat<(add        GPR:$src, t2_so_imm_neg:$imm),
2125             (t2SUBri    GPR:$src, t2_so_imm_neg:$imm)>;
2126 def : T2Pat<(add        GPR:$src, imm0_4095_neg:$imm),
2127             (t2SUBri12  GPR:$src, imm0_4095_neg:$imm)>;
2128 def : T2Pat<(add        GPR:$src, imm0_65535_neg:$imm),
2129             (t2SUBrr    GPR:$src, (t2MOVi16 (imm_neg_XFORM imm:$imm)))>;
2130
2131 let AddedComplexity = 1 in
2132 def : T2Pat<(ARMaddc    rGPR:$src, imm1_255_neg:$imm),
2133             (t2SUBSri   rGPR:$src, imm1_255_neg:$imm)>;
2134 def : T2Pat<(ARMaddc    rGPR:$src, t2_so_imm_neg:$imm),
2135             (t2SUBSri   rGPR:$src, t2_so_imm_neg:$imm)>;
2136 def : T2Pat<(ARMaddc    rGPR:$src, imm0_65535_neg:$imm),
2137             (t2SUBSrr   rGPR:$src, (t2MOVi16 (imm_neg_XFORM imm:$imm)))>;
2138 // The with-carry-in form matches bitwise not instead of the negation.
2139 // Effectively, the inverse interpretation of the carry flag already accounts
2140 // for part of the negation.
2141 let AddedComplexity = 1 in
2142 def : T2Pat<(ARMadde    rGPR:$src, imm0_255_not:$imm, CPSR),
2143             (t2SBCri    rGPR:$src, imm0_255_not:$imm)>;
2144 def : T2Pat<(ARMadde    rGPR:$src, t2_so_imm_not:$imm, CPSR),
2145             (t2SBCri    rGPR:$src, t2_so_imm_not:$imm)>;
2146 def : T2Pat<(ARMadde    rGPR:$src, imm0_65535_neg:$imm, CPSR),
2147             (t2SBCrr    rGPR:$src, (t2MOVi16 (imm_not_XFORM imm:$imm)))>;
2148
2149 def t2SEL : T2ThreeReg<(outs GPR:$Rd), (ins GPR:$Rn, GPR:$Rm),
2150                 NoItinerary, "sel", "\t$Rd, $Rn, $Rm",
2151                 [(set GPR:$Rd, (int_arm_sel GPR:$Rn, GPR:$Rm))]>,
2152           Requires<[IsThumb2, HasDSP]> {
2153   let Inst{31-27} = 0b11111;
2154   let Inst{26-24} = 0b010;
2155   let Inst{23} = 0b1;
2156   let Inst{22-20} = 0b010;
2157   let Inst{15-12} = 0b1111;
2158   let Inst{7} = 0b1;
2159   let Inst{6-4} = 0b000;
2160 }
2161
2162 // A6.3.13, A6.3.14, A6.3.15 Parallel addition and subtraction (signed/unsigned)
2163 // And Miscellaneous operations -- for disassembly only
2164 class T2I_pam<bits<3> op22_20, bits<4> op7_4, string opc,
2165               list<dag> pat, dag iops, string asm>
2166   : T2I<(outs rGPR:$Rd), iops, NoItinerary, opc, asm, pat>,
2167     Requires<[IsThumb2, HasDSP]> {
2168   let Inst{31-27} = 0b11111;
2169   let Inst{26-23} = 0b0101;
2170   let Inst{22-20} = op22_20;
2171   let Inst{15-12} = 0b1111;
2172   let Inst{7-4} = op7_4;
2173
2174   bits<4> Rd;
2175   bits<4> Rn;
2176   bits<4> Rm;
2177
2178   let Inst{11-8}  = Rd;
2179   let Inst{19-16} = Rn;
2180   let Inst{3-0}   = Rm;
2181 }
2182
2183 class T2I_pam_intrinsics<bits<3> op22_20, bits<4> op7_4, string opc,
2184                          Intrinsic intrinsic>
2185   : T2I_pam<op22_20, op7_4, opc,
2186     [(set rGPR:$Rd, (intrinsic rGPR:$Rn, rGPR:$Rm))],
2187     (ins rGPR:$Rn, rGPR:$Rm), "\t$Rd, $Rn, $Rm">;
2188
2189 class T2I_pam_intrinsics_rev<bits<3> op22_20, bits<4> op7_4, string opc>
2190   : T2I_pam<op22_20, op7_4, opc, [],
2191     (ins rGPR:$Rm, rGPR:$Rn), "\t$Rd, $Rm, $Rn">;
2192
2193 // Saturating add/subtract
2194 def t2QADD16  : T2I_pam_intrinsics<0b001, 0b0001, "qadd16", int_arm_qadd16>;
2195 def t2QADD8   : T2I_pam_intrinsics<0b000, 0b0001, "qadd8", int_arm_qadd8>;
2196 def t2QASX    : T2I_pam_intrinsics<0b010, 0b0001, "qasx", int_arm_qasx>;
2197 def t2UQSUB8  : T2I_pam_intrinsics<0b100, 0b0101, "uqsub8", int_arm_uqsub8>;
2198 def t2QSAX    : T2I_pam_intrinsics<0b110, 0b0001, "qsax", int_arm_qsax>;
2199 def t2QSUB16  : T2I_pam_intrinsics<0b101, 0b0001, "qsub16", int_arm_qsub16>;
2200 def t2QSUB8   : T2I_pam_intrinsics<0b100, 0b0001, "qsub8", int_arm_qsub8>;
2201 def t2UQADD16 : T2I_pam_intrinsics<0b001, 0b0101, "uqadd16", int_arm_uqadd16>;
2202 def t2UQADD8  : T2I_pam_intrinsics<0b000, 0b0101, "uqadd8", int_arm_uqadd8>;
2203 def t2UQASX   : T2I_pam_intrinsics<0b010, 0b0101, "uqasx", int_arm_uqasx>;
2204 def t2UQSAX   : T2I_pam_intrinsics<0b110, 0b0101, "uqsax", int_arm_uqsax>;
2205 def t2UQSUB16 : T2I_pam_intrinsics<0b101, 0b0101, "uqsub16", int_arm_uqsub16>;
2206 def t2QADD    : T2I_pam_intrinsics_rev<0b000, 0b1000, "qadd">;
2207 def t2QSUB    : T2I_pam_intrinsics_rev<0b000, 0b1010, "qsub">;
2208 def t2QDADD   : T2I_pam_intrinsics_rev<0b000, 0b1001, "qdadd">;
2209 def t2QDSUB   : T2I_pam_intrinsics_rev<0b000, 0b1011, "qdsub">;
2210
2211 def : Thumb2DSPPat<(int_arm_qadd rGPR:$Rm, rGPR:$Rn),
2212                    (t2QADD rGPR:$Rm, rGPR:$Rn)>;
2213 def : Thumb2DSPPat<(int_arm_qsub rGPR:$Rm, rGPR:$Rn),
2214                    (t2QSUB rGPR:$Rm, rGPR:$Rn)>;
2215 def : Thumb2DSPPat<(int_arm_qadd(int_arm_qadd rGPR:$Rm, rGPR:$Rm), rGPR:$Rn),
2216                    (t2QDADD rGPR:$Rm, rGPR:$Rn)>;
2217 def : Thumb2DSPPat<(int_arm_qsub rGPR:$Rm, (int_arm_qadd rGPR:$Rn, rGPR:$Rn)),
2218                    (t2QDSUB rGPR:$Rm, rGPR:$Rn)>;
2219
2220 // Signed/Unsigned add/subtract
2221
2222 def t2SASX    : T2I_pam_intrinsics<0b010, 0b0000, "sasx", int_arm_sasx>;
2223 def t2SADD16  : T2I_pam_intrinsics<0b001, 0b0000, "sadd16", int_arm_sadd16>;
2224 def t2SADD8   : T2I_pam_intrinsics<0b000, 0b0000, "sadd8", int_arm_sadd8>;
2225 def t2SSAX    : T2I_pam_intrinsics<0b110, 0b0000, "ssax", int_arm_ssax>;
2226 def t2SSUB16  : T2I_pam_intrinsics<0b101, 0b0000, "ssub16", int_arm_ssub16>;
2227 def t2SSUB8   : T2I_pam_intrinsics<0b100, 0b0000, "ssub8", int_arm_ssub8>;
2228 def t2UASX    : T2I_pam_intrinsics<0b010, 0b0100, "uasx", int_arm_uasx>;
2229 def t2UADD16  : T2I_pam_intrinsics<0b001, 0b0100, "uadd16", int_arm_uadd16>;
2230 def t2UADD8   : T2I_pam_intrinsics<0b000, 0b0100, "uadd8", int_arm_uadd8>;
2231 def t2USAX    : T2I_pam_intrinsics<0b110, 0b0100, "usax", int_arm_usax>;
2232 def t2USUB16  : T2I_pam_intrinsics<0b101, 0b0100, "usub16", int_arm_usub16>;
2233 def t2USUB8   : T2I_pam_intrinsics<0b100, 0b0100, "usub8", int_arm_usub8>;
2234
2235 // Signed/Unsigned halving add/subtract
2236
2237 def t2SHASX   : T2I_pam_intrinsics<0b010, 0b0010, "shasx", int_arm_shasx>;
2238 def t2SHADD16 : T2I_pam_intrinsics<0b001, 0b0010, "shadd16", int_arm_shadd16>;
2239 def t2SHADD8  : T2I_pam_intrinsics<0b000, 0b0010, "shadd8", int_arm_shadd8>;
2240 def t2SHSAX   : T2I_pam_intrinsics<0b110, 0b0010, "shsax", int_arm_shsax>;
2241 def t2SHSUB16 : T2I_pam_intrinsics<0b101, 0b0010, "shsub16", int_arm_shsub16>;
2242 def t2SHSUB8  : T2I_pam_intrinsics<0b100, 0b0010, "shsub8", int_arm_shsub8>;
2243 def t2UHASX   : T2I_pam_intrinsics<0b010, 0b0110, "uhasx", int_arm_uhasx>;
2244 def t2UHADD16 : T2I_pam_intrinsics<0b001, 0b0110, "uhadd16", int_arm_uhadd16>;
2245 def t2UHADD8  : T2I_pam_intrinsics<0b000, 0b0110, "uhadd8", int_arm_uhadd8>;
2246 def t2UHSAX   : T2I_pam_intrinsics<0b110, 0b0110, "uhsax", int_arm_uhsax>;
2247 def t2UHSUB16 : T2I_pam_intrinsics<0b101, 0b0110, "uhsub16", int_arm_uhsub16>;
2248 def t2UHSUB8  : T2I_pam_intrinsics<0b100, 0b0110, "uhsub8", int_arm_uhsub8>;
2249
2250 // Helper class for disassembly only
2251 // A6.3.16 & A6.3.17
2252 // T2Imac - Thumb2 multiply [accumulate, and absolute difference] instructions.
2253 class T2ThreeReg_mac<bit long, bits<3> op22_20, bits<4> op7_4, dag oops,
2254   dag iops, InstrItinClass itin, string opc, string asm, list<dag> pattern>
2255   : T2ThreeReg<oops, iops, itin, opc, asm, pattern> {
2256   let Inst{31-27} = 0b11111;
2257   let Inst{26-24} = 0b011;
2258   let Inst{23}    = long;
2259   let Inst{22-20} = op22_20;
2260   let Inst{7-4}   = op7_4;
2261 }
2262
2263 class T2FourReg_mac<bit long, bits<3> op22_20, bits<4> op7_4, dag oops,
2264   dag iops, InstrItinClass itin, string opc, string asm, list<dag> pattern>
2265   : T2FourReg<oops, iops, itin, opc, asm, pattern> {
2266   let Inst{31-27} = 0b11111;
2267   let Inst{26-24} = 0b011;
2268   let Inst{23}    = long;
2269   let Inst{22-20} = op22_20;
2270   let Inst{7-4}   = op7_4;
2271 }
2272
2273 // Unsigned Sum of Absolute Differences [and Accumulate].
2274 def t2USAD8   : T2ThreeReg_mac<0, 0b111, 0b0000, (outs rGPR:$Rd),
2275                                            (ins rGPR:$Rn, rGPR:$Rm),
2276                         NoItinerary, "usad8", "\t$Rd, $Rn, $Rm",
2277                         [(set rGPR:$Rd, (int_arm_usad8 rGPR:$Rn, rGPR:$Rm))]>,
2278           Requires<[IsThumb2, HasDSP]> {
2279   let Inst{15-12} = 0b1111;
2280 }
2281 def t2USADA8  : T2FourReg_mac<0, 0b111, 0b0000, (outs rGPR:$Rd),
2282                        (ins rGPR:$Rn, rGPR:$Rm, rGPR:$Ra), NoItinerary,
2283                         "usada8", "\t$Rd, $Rn, $Rm, $Ra",
2284           [(set rGPR:$Rd, (int_arm_usada8 rGPR:$Rn, rGPR:$Rm, rGPR:$Ra))]>,
2285           Requires<[IsThumb2, HasDSP]>;
2286
2287 // Signed/Unsigned saturate.
2288 let hasSideEffects = 1 in
2289 class T2SatI<dag iops, string opc, string asm>
2290   : T2I<(outs rGPR:$Rd), iops, NoItinerary, opc, asm, []> {
2291   bits<4> Rd;
2292   bits<4> Rn;
2293   bits<5> sat_imm;
2294   bits<6> sh;
2295
2296   let Inst{31-24} = 0b11110011;
2297   let Inst{21} = sh{5};
2298   let Inst{20} = 0;
2299   let Inst{19-16} = Rn;
2300   let Inst{15} = 0;
2301   let Inst{14-12} = sh{4-2};
2302   let Inst{11-8}  = Rd;
2303   let Inst{7-6} = sh{1-0};
2304   let Inst{5} = 0;
2305   let Inst{4-0}   = sat_imm;
2306 }
2307
2308 def t2SSAT: T2SatI<(ins imm1_32:$sat_imm, rGPR:$Rn, t2_shift_imm:$sh),
2309                    "ssat", "\t$Rd, $sat_imm, $Rn$sh">,
2310                    Requires<[IsThumb2]> {
2311   let Inst{23-22} = 0b00;
2312   let Inst{5}  = 0;
2313 }
2314
2315 def t2SSAT16: T2SatI<(ins imm1_16:$sat_imm, rGPR:$Rn),
2316                      "ssat16", "\t$Rd, $sat_imm, $Rn">,
2317                      Requires<[IsThumb2, HasDSP]> {
2318   let Inst{23-22} = 0b00;
2319   let sh = 0b100000;
2320   let Inst{4} = 0;
2321 }
2322
2323 def t2USAT: T2SatI<(ins imm0_31:$sat_imm, rGPR:$Rn, t2_shift_imm:$sh),
2324                     "usat", "\t$Rd, $sat_imm, $Rn$sh">,
2325                     Requires<[IsThumb2]> {
2326   let Inst{23-22} = 0b10;
2327 }
2328
2329 def t2USAT16: T2SatI<(ins imm0_15:$sat_imm, rGPR:$Rn),
2330                      "usat16", "\t$Rd, $sat_imm, $Rn">,
2331                      Requires<[IsThumb2, HasDSP]> {
2332   let Inst{23-22} = 0b10;
2333   let sh = 0b100000;
2334   let Inst{4} = 0;
2335 }
2336
2337 def : T2Pat<(ARMssatnoshift GPRnopc:$Rn, imm0_31:$imm),
2338              (t2SSAT imm0_31:$imm, GPRnopc:$Rn, 0)>;
2339 def : T2Pat<(ARMusatnoshift GPRnopc:$Rn, imm0_31:$imm),
2340              (t2USAT imm0_31:$imm, GPRnopc:$Rn, 0)>;
2341 def : T2Pat<(int_arm_ssat GPR:$a, imm1_32:$pos),
2342             (t2SSAT imm1_32:$pos, GPR:$a, 0)>;
2343 def : T2Pat<(int_arm_usat GPR:$a, imm0_31:$pos),
2344             (t2USAT imm0_31:$pos, GPR:$a, 0)>;
2345 def : T2Pat<(int_arm_ssat16 GPR:$a, imm1_16:$pos),
2346             (t2SSAT16 imm1_16:$pos, GPR:$a)>;
2347 def : T2Pat<(int_arm_usat16 GPR:$a, imm0_15:$pos),
2348             (t2USAT16 imm0_15:$pos, GPR:$a)>;
2349
2350 //===----------------------------------------------------------------------===//
2351 //  Shift and rotate Instructions.
2352 //
2353
2354 defm t2LSL  : T2I_sh_ir<0b00, "lsl", imm1_31, shl>;
2355 defm t2LSR  : T2I_sh_ir<0b01, "lsr", imm_sr,  srl>;
2356 defm t2ASR  : T2I_sh_ir<0b10, "asr", imm_sr,  sra>;
2357 defm t2ROR  : T2I_sh_ir<0b11, "ror", imm0_31, rotr>;
2358
2359 // LSL #0 is actually MOV, and has slightly different permitted registers to
2360 // LSL with non-zero shift
2361 def : t2InstAlias<"lsl${s}${p} $Rd, $Rm, #0",
2362                   (t2MOVr GPRnopc:$Rd, GPRnopc:$Rm, pred:$p, cc_out:$s)>;
2363 def : t2InstAlias<"lsl${s}${p}.w $Rd, $Rm, #0",
2364                   (t2MOVr GPRnopc:$Rd, GPRnopc:$Rm, pred:$p, cc_out:$s)>;
2365
2366 // (rotr x, (and y, 0x...1f)) ==> (ROR x, y)
2367 def : T2Pat<(rotr rGPR:$lhs, (and rGPR:$rhs, lo5AllOne)),
2368             (t2RORrr rGPR:$lhs, rGPR:$rhs)>;
2369
2370 let Uses = [CPSR] in {
2371 def t2RRX : T2sTwoReg<(outs rGPR:$Rd), (ins rGPR:$Rm), IIC_iMOVsi,
2372                    "rrx", "\t$Rd, $Rm",
2373                    [(set rGPR:$Rd, (ARMrrx rGPR:$Rm))]>, Sched<[WriteALU]> {
2374   let Inst{31-27} = 0b11101;
2375   let Inst{26-25} = 0b01;
2376   let Inst{24-21} = 0b0010;
2377   let Inst{19-16} = 0b1111; // Rn
2378   let Inst{14-12} = 0b000;
2379   let Inst{7-4} = 0b0011;
2380 }
2381 }
2382
2383 let isCodeGenOnly = 1, Defs = [CPSR] in {
2384 def t2MOVsrl_flag : T2TwoRegShiftImm<
2385                         (outs rGPR:$Rd), (ins rGPR:$Rm), IIC_iMOVsi,
2386                         "lsrs", ".w\t$Rd, $Rm, #1",
2387                         [(set rGPR:$Rd, (ARMsrl_flag rGPR:$Rm))]>,
2388                         Sched<[WriteALU]> {
2389   let Inst{31-27} = 0b11101;
2390   let Inst{26-25} = 0b01;
2391   let Inst{24-21} = 0b0010;
2392   let Inst{20} = 1; // The S bit.
2393   let Inst{19-16} = 0b1111; // Rn
2394   let Inst{5-4} = 0b01; // Shift type.
2395   // Shift amount = Inst{14-12:7-6} = 1.
2396   let Inst{14-12} = 0b000;
2397   let Inst{7-6} = 0b01;
2398 }
2399 def t2MOVsra_flag : T2TwoRegShiftImm<
2400                         (outs rGPR:$Rd), (ins rGPR:$Rm), IIC_iMOVsi,
2401                         "asrs", ".w\t$Rd, $Rm, #1",
2402                         [(set rGPR:$Rd, (ARMsra_flag rGPR:$Rm))]>,
2403                         Sched<[WriteALU]> {
2404   let Inst{31-27} = 0b11101;
2405   let Inst{26-25} = 0b01;
2406   let Inst{24-21} = 0b0010;
2407   let Inst{20} = 1; // The S bit.
2408   let Inst{19-16} = 0b1111; // Rn
2409   let Inst{5-4} = 0b10; // Shift type.
2410   // Shift amount = Inst{14-12:7-6} = 1.
2411   let Inst{14-12} = 0b000;
2412   let Inst{7-6} = 0b01;
2413 }
2414 }
2415
2416 //===----------------------------------------------------------------------===//
2417 //  Bitwise Instructions.
2418 //
2419
2420 defm t2AND  : T2I_bin_w_irs<0b0000, "and",
2421                             IIC_iBITi, IIC_iBITr, IIC_iBITsi, and, 1>;
2422 defm t2ORR  : T2I_bin_w_irs<0b0010, "orr",
2423                             IIC_iBITi, IIC_iBITr, IIC_iBITsi, or, 1>;
2424 defm t2EOR  : T2I_bin_w_irs<0b0100, "eor",
2425                             IIC_iBITi, IIC_iBITr, IIC_iBITsi, xor, 1>;
2426
2427 defm t2BIC  : T2I_bin_w_irs<0b0001, "bic",
2428                             IIC_iBITi, IIC_iBITr, IIC_iBITsi,
2429                             BinOpFrag<(and node:$LHS, (not node:$RHS))>>;
2430
2431 class T2BitFI<dag oops, dag iops, InstrItinClass itin,
2432               string opc, string asm, list<dag> pattern>
2433     : T2I<oops, iops, itin, opc, asm, pattern> {
2434   bits<4> Rd;
2435   bits<5> msb;
2436   bits<5> lsb;
2437
2438   let Inst{11-8}  = Rd;
2439   let Inst{4-0}   = msb{4-0};
2440   let Inst{14-12} = lsb{4-2};
2441   let Inst{7-6}   = lsb{1-0};
2442 }
2443
2444 class T2TwoRegBitFI<dag oops, dag iops, InstrItinClass itin,
2445               string opc, string asm, list<dag> pattern>
2446     : T2BitFI<oops, iops, itin, opc, asm, pattern> {
2447   bits<4> Rn;
2448
2449   let Inst{19-16} = Rn;
2450 }
2451
2452 let Constraints = "$src = $Rd" in
2453 def t2BFC : T2BitFI<(outs rGPR:$Rd), (ins rGPR:$src, bf_inv_mask_imm:$imm),
2454                 IIC_iUNAsi, "bfc", "\t$Rd, $imm",
2455                 [(set rGPR:$Rd, (and rGPR:$src, bf_inv_mask_imm:$imm))]> {
2456   let Inst{31-27} = 0b11110;
2457   let Inst{26} = 0; // should be 0.
2458   let Inst{25} = 1;
2459   let Inst{24-20} = 0b10110;
2460   let Inst{19-16} = 0b1111; // Rn
2461   let Inst{15} = 0;
2462   let Inst{5} = 0; // should be 0.
2463
2464   bits<10> imm;
2465   let msb{4-0} = imm{9-5};
2466   let lsb{4-0} = imm{4-0};
2467 }
2468
2469 def t2SBFX: T2TwoRegBitFI<
2470                 (outs rGPR:$Rd), (ins rGPR:$Rn, imm0_31:$lsb, imm1_32:$msb),
2471                  IIC_iUNAsi, "sbfx", "\t$Rd, $Rn, $lsb, $msb", []> {
2472   let Inst{31-27} = 0b11110;
2473   let Inst{25} = 1;
2474   let Inst{24-20} = 0b10100;
2475   let Inst{15} = 0;
2476 }
2477
2478 def t2UBFX: T2TwoRegBitFI<
2479                 (outs rGPR:$Rd), (ins rGPR:$Rn, imm0_31:$lsb, imm1_32:$msb),
2480                  IIC_iUNAsi, "ubfx", "\t$Rd, $Rn, $lsb, $msb", []> {
2481   let Inst{31-27} = 0b11110;
2482   let Inst{25} = 1;
2483   let Inst{24-20} = 0b11100;
2484   let Inst{15} = 0;
2485 }
2486
2487 // A8.8.247  UDF - Undefined (Encoding T2)
2488 def t2UDF : T2XI<(outs), (ins imm0_65535:$imm16), IIC_Br, "udf.w\t$imm16",
2489                  [(int_arm_undefined imm0_65535:$imm16)]> {
2490   bits<16> imm16;
2491   let Inst{31-29} = 0b111;
2492   let Inst{28-27} = 0b10;
2493   let Inst{26-20} = 0b1111111;
2494   let Inst{19-16} = imm16{15-12};
2495   let Inst{15} = 0b1;
2496   let Inst{14-12} = 0b010;
2497   let Inst{11-0} = imm16{11-0};
2498 }
2499
2500 // A8.6.18  BFI - Bitfield insert (Encoding T1)
2501 let Constraints = "$src = $Rd" in {
2502   def t2BFI : T2TwoRegBitFI<(outs rGPR:$Rd),
2503                   (ins rGPR:$src, rGPR:$Rn, bf_inv_mask_imm:$imm),
2504                   IIC_iBITi, "bfi", "\t$Rd, $Rn, $imm",
2505                   [(set rGPR:$Rd, (ARMbfi rGPR:$src, rGPR:$Rn,
2506                                    bf_inv_mask_imm:$imm))]> {
2507     let Inst{31-27} = 0b11110;
2508     let Inst{26} = 0; // should be 0.
2509     let Inst{25} = 1;
2510     let Inst{24-20} = 0b10110;
2511     let Inst{15} = 0;
2512     let Inst{5} = 0; // should be 0.
2513
2514     bits<10> imm;
2515     let msb{4-0} = imm{9-5};
2516     let lsb{4-0} = imm{4-0};
2517   }
2518 }
2519
2520 defm t2ORN  : T2I_bin_irs<0b0011, "orn",
2521                           IIC_iBITi, IIC_iBITr, IIC_iBITsi,
2522                           BinOpFrag<(or node:$LHS, (not node:$RHS))>, 0, "">;
2523
2524 /// T2I_un_irs - Defines a set of (op reg, {so_imm|r|so_reg}) patterns for a
2525 /// unary operation that produces a value. These are predicable and can be
2526 /// changed to modify CPSR.
2527 multiclass T2I_un_irs<bits<4> opcod, string opc,
2528                      InstrItinClass iii, InstrItinClass iir, InstrItinClass iis,
2529                       PatFrag opnode,
2530                       bit Cheap = 0, bit ReMat = 0, bit MoveImm = 0> {
2531    // shifted imm
2532    def i : T2sOneRegImm<(outs rGPR:$Rd), (ins t2_so_imm:$imm), iii,
2533                 opc, "\t$Rd, $imm",
2534                 [(set rGPR:$Rd, (opnode t2_so_imm:$imm))]>, Sched<[WriteALU]> {
2535      let isAsCheapAsAMove = Cheap;
2536      let isReMaterializable = ReMat;
2537      let isMoveImm = MoveImm;
2538      let Inst{31-27} = 0b11110;
2539      let Inst{25} = 0;
2540      let Inst{24-21} = opcod;
2541      let Inst{19-16} = 0b1111; // Rn
2542      let Inst{15} = 0;
2543    }
2544    // register
2545    def r : T2sTwoReg<(outs rGPR:$Rd), (ins rGPR:$Rm), iir,
2546                 opc, ".w\t$Rd, $Rm",
2547                 [(set rGPR:$Rd, (opnode rGPR:$Rm))]>, Sched<[WriteALU]> {
2548      let Inst{31-27} = 0b11101;
2549      let Inst{26-25} = 0b01;
2550      let Inst{24-21} = opcod;
2551      let Inst{19-16} = 0b1111; // Rn
2552      let Inst{14-12} = 0b000; // imm3
2553      let Inst{7-6} = 0b00; // imm2
2554      let Inst{5-4} = 0b00; // type
2555    }
2556    // shifted register
2557    def s : T2sOneRegShiftedReg<(outs rGPR:$Rd), (ins t2_so_reg:$ShiftedRm), iis,
2558                 opc, ".w\t$Rd, $ShiftedRm",
2559                 [(set rGPR:$Rd, (opnode t2_so_reg:$ShiftedRm))]>,
2560                 Sched<[WriteALU]> {
2561      let Inst{31-27} = 0b11101;
2562      let Inst{26-25} = 0b01;
2563      let Inst{24-21} = opcod;
2564      let Inst{19-16} = 0b1111; // Rn
2565    }
2566 }
2567
2568 // Prefer over of t2EORri ra, rb, -1 because mvn has 16-bit version
2569 let AddedComplexity = 1 in
2570 defm t2MVN  : T2I_un_irs <0b0011, "mvn",
2571                           IIC_iMVNi, IIC_iMVNr, IIC_iMVNsi,
2572                           not, 1, 1, 1>;
2573
2574 let AddedComplexity = 1 in
2575 def : T2Pat<(and     rGPR:$src, t2_so_imm_not:$imm),
2576             (t2BICri rGPR:$src, t2_so_imm_not:$imm)>;
2577
2578 // top16Zero - answer true if the upper 16 bits of $src are 0, false otherwise
2579 def top16Zero: PatLeaf<(i32 rGPR:$src), [{
2580   return CurDAG->MaskedValueIsZero(SDValue(N,0), APInt::getHighBitsSet(32, 16));
2581   }]>;
2582
2583 // so_imm_notSext is needed instead of so_imm_not, as the value of imm
2584 // will match the extended, not the original bitWidth for $src.
2585 def : T2Pat<(and top16Zero:$src, t2_so_imm_notSext:$imm),
2586             (t2BICri rGPR:$src, t2_so_imm_notSext:$imm)>;
2587
2588
2589 // FIXME: Disable this pattern on Darwin to workaround an assembler bug.
2590 def : T2Pat<(or      rGPR:$src, t2_so_imm_not:$imm),
2591             (t2ORNri rGPR:$src, t2_so_imm_not:$imm)>,
2592             Requires<[IsThumb2]>;
2593
2594 def : T2Pat<(t2_so_imm_not:$src),
2595             (t2MVNi t2_so_imm_not:$src)>;
2596
2597 //===----------------------------------------------------------------------===//
2598 //  Multiply Instructions.
2599 //
2600 let isCommutable = 1 in
2601 def t2MUL: T2ThreeReg<(outs rGPR:$Rd), (ins rGPR:$Rn, rGPR:$Rm), IIC_iMUL32,
2602                 "mul", "\t$Rd, $Rn, $Rm",
2603                 [(set rGPR:$Rd, (mul rGPR:$Rn, rGPR:$Rm))]>,
2604            Sched<[WriteMUL32, ReadMUL, ReadMUL]> {
2605   let Inst{31-27} = 0b11111;
2606   let Inst{26-23} = 0b0110;
2607   let Inst{22-20} = 0b000;
2608   let Inst{15-12} = 0b1111; // Ra = 0b1111 (no accumulate)
2609   let Inst{7-4} = 0b0000; // Multiply
2610 }
2611
2612 class T2FourRegMLA<bits<4> op7_4, string opc, list<dag> pattern>
2613   : T2FourReg<(outs rGPR:$Rd), (ins rGPR:$Rn, rGPR:$Rm, rGPR:$Ra), IIC_iMAC32,
2614                opc, "\t$Rd, $Rn, $Rm, $Ra", pattern>,
2615                Requires<[IsThumb2, UseMulOps]>,
2616     Sched<[WriteMAC32, ReadMUL, ReadMUL, ReadMAC]>  {
2617   let Inst{31-27} = 0b11111;
2618   let Inst{26-23} = 0b0110;
2619   let Inst{22-20} = 0b000;
2620   let Inst{7-4} = op7_4;
2621 }
2622
2623 def t2MLA : T2FourRegMLA<0b0000, "mla",
2624                          [(set rGPR:$Rd, (add (mul rGPR:$Rn, rGPR:$Rm),
2625                                                rGPR:$Ra))]>;
2626 def t2MLS: T2FourRegMLA<0b0001, "mls",
2627                         [(set rGPR:$Rd, (sub rGPR:$Ra, (mul rGPR:$Rn,
2628                                                             rGPR:$Rm)))]>;
2629
2630 // Extra precision multiplies with low / high results
2631 let hasSideEffects = 0 in {
2632 let isCommutable = 1 in {
2633 def t2SMULL : T2MulLong<0b000, 0b0000, "smull",
2634                         [(set rGPR:$RdLo, rGPR:$RdHi,
2635                               (smullohi rGPR:$Rn, rGPR:$Rm))]>;
2636 def t2UMULL : T2MulLong<0b010, 0b0000, "umull",
2637                         [(set rGPR:$RdLo, rGPR:$RdHi,
2638                               (umullohi rGPR:$Rn, rGPR:$Rm))]>;
2639 } // isCommutable
2640
2641 // Multiply + accumulate
2642 def t2SMLAL : T2MlaLong<0b100, 0b0000, "smlal">;
2643 def t2UMLAL : T2MlaLong<0b110, 0b0000, "umlal">;
2644 def t2UMAAL : T2MlaLong<0b110, 0b0110, "umaal">, Requires<[IsThumb2, HasDSP]>;
2645 } // hasSideEffects
2646
2647 // Rounding variants of the below included for disassembly only
2648
2649 // Most significant word multiply
2650 class T2SMMUL<bits<4> op7_4, string opc, list<dag> pattern>
2651   : T2ThreeReg<(outs rGPR:$Rd),
2652                (ins rGPR:$Rn, rGPR:$Rm), IIC_iMUL32,
2653                opc, "\t$Rd, $Rn, $Rm", pattern>,
2654                Requires<[IsThumb2, HasDSP]>,
2655     Sched<[WriteMUL32, ReadMUL, ReadMUL]> {
2656   let Inst{31-27} = 0b11111;
2657   let Inst{26-23} = 0b0110;
2658   let Inst{22-20} = 0b101;
2659   let Inst{15-12} = 0b1111; // Ra = 0b1111 (no accumulate)
2660   let Inst{7-4} = op7_4;
2661 }
2662 def t2SMMUL : T2SMMUL<0b0000, "smmul", [(set rGPR:$Rd, (mulhs rGPR:$Rn,
2663                                                               rGPR:$Rm))]>;
2664 def t2SMMULR : T2SMMUL<0b0001, "smmulr", []>;
2665
2666 class T2FourRegSMMLA<bits<3> op22_20, bits<4> op7_4, string opc,
2667                      list<dag> pattern>
2668   : T2FourReg<(outs rGPR:$Rd), (ins rGPR:$Rn, rGPR:$Rm, rGPR:$Ra), IIC_iMAC32,
2669               opc, "\t$Rd, $Rn, $Rm, $Ra", pattern>,
2670               Requires<[IsThumb2, HasDSP, UseMulOps]>,
2671     Sched<[WriteMAC32, ReadMUL, ReadMUL, ReadMAC]> {
2672   let Inst{31-27} = 0b11111;
2673   let Inst{26-23} = 0b0110;
2674   let Inst{22-20} = op22_20;
2675   let Inst{7-4} = op7_4;
2676 }
2677
2678 def t2SMMLA :   T2FourRegSMMLA<0b101, 0b0000, "smmla",
2679                 [(set rGPR:$Rd, (add (mulhs rGPR:$Rm, rGPR:$Rn), rGPR:$Ra))]>;
2680 def t2SMMLAR:   T2FourRegSMMLA<0b101, 0b0001, "smmlar", []>;
2681 def t2SMMLS:    T2FourRegSMMLA<0b110, 0b0000, "smmls", []>;
2682 def t2SMMLSR:   T2FourRegSMMLA<0b110, 0b0001, "smmlsr", []>;
2683
2684 class T2ThreeRegSMUL<bits<3> op22_20, bits<2> op5_4, string opc,
2685                      list<dag> pattern>
2686   : T2ThreeReg<(outs rGPR:$Rd), (ins rGPR:$Rn, rGPR:$Rm), IIC_iMUL16, opc,
2687                "\t$Rd, $Rn, $Rm", pattern>,
2688     Requires<[IsThumb2, HasDSP]>,
2689     Sched<[WriteMUL16, ReadMUL, ReadMUL]> {
2690     let Inst{31-27} = 0b11111;
2691     let Inst{26-23} = 0b0110;
2692     let Inst{22-20} = op22_20;
2693     let Inst{15-12} = 0b1111; // Ra = 0b1111 (no accumulate)
2694     let Inst{7-6} = 0b00;
2695     let Inst{5-4} = op5_4;
2696 }
2697
2698 def t2SMULBB : T2ThreeRegSMUL<0b001, 0b00, "smulbb",
2699              [(set rGPR:$Rd, (mul (sext_inreg rGPR:$Rn, i16),
2700                                    (sext_inreg rGPR:$Rm, i16)))]>;
2701 def t2SMULBT : T2ThreeRegSMUL<0b001, 0b01, "smulbt",
2702              [(set rGPR:$Rd, (mul (sext_inreg rGPR:$Rn, i16),
2703                                    (sra rGPR:$Rm, (i32 16))))]>;
2704 def t2SMULTB : T2ThreeRegSMUL<0b001, 0b10, "smultb",
2705              [(set rGPR:$Rd, (mul (sra rGPR:$Rn, (i32 16)),
2706                                    (sext_inreg rGPR:$Rm, i16)))]>;
2707 def t2SMULTT : T2ThreeRegSMUL<0b001, 0b11, "smultt",
2708              [(set rGPR:$Rd, (mul (sra rGPR:$Rn, (i32 16)),
2709                                    (sra rGPR:$Rm, (i32 16))))]>;
2710 def t2SMULWB : T2ThreeRegSMUL<0b011, 0b00, "smulwb",
2711              [(set rGPR:$Rd, (ARMsmulwb rGPR:$Rn, rGPR:$Rm))]>;
2712 def t2SMULWT : T2ThreeRegSMUL<0b011, 0b01, "smulwt",
2713              [(set rGPR:$Rd, (ARMsmulwt rGPR:$Rn, rGPR:$Rm))]>;
2714
2715 def : Thumb2DSPPat<(mul sext_16_node:$Rm, sext_16_node:$Rn),
2716                    (t2SMULBB rGPR:$Rm, rGPR:$Rn)>;
2717 def : Thumb2DSPPat<(mul sext_16_node:$Rn, (sra rGPR:$Rm, (i32 16))),
2718                    (t2SMULBT rGPR:$Rn, rGPR:$Rm)>;
2719 def : Thumb2DSPPat<(mul (sra rGPR:$Rn, (i32 16)), sext_16_node:$Rm),
2720                    (t2SMULTB rGPR:$Rn, rGPR:$Rm)>;
2721 def : Thumb2DSPPat<(int_arm_smulbb rGPR:$Rn, rGPR:$Rm),
2722                    (t2SMULBB rGPR:$Rn, rGPR:$Rm)>;
2723 def : Thumb2DSPPat<(int_arm_smulbt rGPR:$Rn, rGPR:$Rm),
2724                    (t2SMULBT rGPR:$Rn, rGPR:$Rm)>;
2725 def : Thumb2DSPPat<(int_arm_smultb rGPR:$Rn, rGPR:$Rm),
2726                    (t2SMULTB rGPR:$Rn, rGPR:$Rm)>;
2727 def : Thumb2DSPPat<(int_arm_smultt rGPR:$Rn, rGPR:$Rm),
2728                    (t2SMULTT rGPR:$Rn, rGPR:$Rm)>;
2729 def : Thumb2DSPPat<(int_arm_smulwb rGPR:$Rn, rGPR:$Rm),
2730                    (t2SMULWB rGPR:$Rn, rGPR:$Rm)>;
2731 def : Thumb2DSPPat<(int_arm_smulwt rGPR:$Rn, rGPR:$Rm),
2732                    (t2SMULWT rGPR:$Rn, rGPR:$Rm)>;
2733
2734 class T2FourRegSMLA<bits<3> op22_20, bits<2> op5_4, string opc,
2735                     list<dag> pattern>
2736   : T2FourReg<(outs rGPR:$Rd), (ins rGPR:$Rn, rGPR:$Rm, rGPR:$Ra), IIC_iMUL16,
2737                opc, "\t$Rd, $Rn, $Rm, $Ra", pattern>,
2738     Requires<[IsThumb2, HasDSP, UseMulOps]>,
2739     Sched<[WriteMAC16, ReadMUL, ReadMUL, ReadMAC]>  {
2740     let Inst{31-27} = 0b11111;
2741     let Inst{26-23} = 0b0110;
2742     let Inst{22-20} = op22_20;
2743     let Inst{7-6} = 0b00;
2744     let Inst{5-4} = op5_4;
2745 }
2746
2747 def t2SMLABB : T2FourRegSMLA<0b001, 0b00, "smlabb",
2748              [(set rGPR:$Rd, (add rGPR:$Ra,
2749                                (mul (sext_inreg rGPR:$Rn, i16),
2750                                      (sext_inreg rGPR:$Rm, i16))))]>;
2751 def t2SMLABT : T2FourRegSMLA<0b001, 0b01, "smlabt",
2752              [(set rGPR:$Rd, (add rGPR:$Ra, (mul (sext_inreg rGPR:$Rn, i16),
2753                                                  (sra rGPR:$Rm, (i32 16)))))]>;
2754 def t2SMLATB : T2FourRegSMLA<0b001, 0b10, "smlatb",
2755              [(set rGPR:$Rd, (add rGPR:$Ra, (mul (sra rGPR:$Rn, (i32 16)),
2756                                                 (sext_inreg rGPR:$Rm, i16))))]>;
2757 def t2SMLATT : T2FourRegSMLA<0b001, 0b11, "smlatt",
2758              [(set rGPR:$Rd, (add rGPR:$Ra, (mul (sra rGPR:$Rn, (i32 16)),
2759                                                  (sra rGPR:$Rm, (i32 16)))))]>;
2760 def t2SMLAWB : T2FourRegSMLA<0b011, 0b00, "smlawb",
2761              [(set rGPR:$Rd, (add rGPR:$Ra, (ARMsmulwb rGPR:$Rn, rGPR:$Rm)))]>;
2762 def t2SMLAWT : T2FourRegSMLA<0b011, 0b01, "smlawt",
2763              [(set rGPR:$Rd, (add rGPR:$Ra, (ARMsmulwt rGPR:$Rn, rGPR:$Rm)))]>;
2764
2765 def : Thumb2DSPMulPat<(add rGPR:$Ra, (mul sext_16_node:$Rn, sext_16_node:$Rm)),
2766                       (t2SMLABB rGPR:$Rn, rGPR:$Rm, rGPR:$Ra)>;
2767 def : Thumb2DSPMulPat<(add rGPR:$Ra,
2768                         (mul sext_16_node:$Rn, (sra rGPR:$Rm, (i32 16)))),
2769                       (t2SMLABT rGPR:$Rn, rGPR:$Rm, rGPR:$Ra)>;
2770 def : Thumb2DSPMulPat<(add rGPR:$Ra,
2771                         (mul (sra rGPR:$Rn, (i32 16)), sext_16_node:$Rm)),
2772                       (t2SMLATB rGPR:$Rn, rGPR:$Rm, rGPR:$Ra)>;
2773
2774 def : Thumb2DSPPat<(int_arm_smlabb GPR:$a, GPR:$b, GPR:$acc),
2775                    (t2SMLABB GPR:$a, GPR:$b, GPR:$acc)>;
2776 def : Thumb2DSPPat<(int_arm_smlabt GPR:$a, GPR:$b, GPR:$acc),
2777                    (t2SMLABT GPR:$a, GPR:$b, GPR:$acc)>;
2778 def : Thumb2DSPPat<(int_arm_smlatb GPR:$a, GPR:$b, GPR:$acc),
2779                    (t2SMLATB GPR:$a, GPR:$b, GPR:$acc)>;
2780 def : Thumb2DSPPat<(int_arm_smlatt GPR:$a, GPR:$b, GPR:$acc),
2781                    (t2SMLATT GPR:$a, GPR:$b, GPR:$acc)>;
2782 def : Thumb2DSPPat<(int_arm_smlawb GPR:$a, GPR:$b, GPR:$acc),
2783                    (t2SMLAWB GPR:$a, GPR:$b, GPR:$acc)>;
2784 def : Thumb2DSPPat<(int_arm_smlawt GPR:$a, GPR:$b, GPR:$acc),
2785                    (t2SMLAWT GPR:$a, GPR:$b, GPR:$acc)>;
2786
2787 // Halfword multiple accumulate long: SMLAL<x><y>
2788 def t2SMLALBB : T2MlaLong<0b100, 0b1000, "smlalbb">,
2789                           Requires<[IsThumb2, HasDSP]>;
2790 def t2SMLALBT : T2MlaLong<0b100, 0b1001, "smlalbt">,
2791                           Requires<[IsThumb2, HasDSP]>;
2792 def t2SMLALTB : T2MlaLong<0b100, 0b1010, "smlaltb">,
2793                           Requires<[IsThumb2, HasDSP]>;
2794 def t2SMLALTT : T2MlaLong<0b100, 0b1011, "smlaltt">,
2795                           Requires<[IsThumb2, HasDSP]>;
2796
2797 def : Thumb2DSPPat<(ARMsmlalbb GPR:$Rn, GPR:$Rm, GPR:$RLo, GPR:$RHi),
2798                    (t2SMLALBB $Rn, $Rm, $RLo, $RHi)>;
2799 def : Thumb2DSPPat<(ARMsmlalbt GPR:$Rn, GPR:$Rm, GPR:$RLo, GPR:$RHi),
2800                    (t2SMLALBT $Rn, $Rm, $RLo, $RHi)>;
2801 def : Thumb2DSPPat<(ARMsmlaltb GPR:$Rn, GPR:$Rm, GPR:$RLo, GPR:$RHi),
2802                    (t2SMLALTB $Rn, $Rm, $RLo, $RHi)>;
2803 def : Thumb2DSPPat<(ARMsmlaltt GPR:$Rn, GPR:$Rm, GPR:$RLo, GPR:$RHi),
2804                    (t2SMLALTT $Rn, $Rm, $RLo, $RHi)>;
2805
2806 class T2DualHalfMul<bits<3> op22_20, bits<4> op7_4, string opc,
2807                     Intrinsic intrinsic>
2808   : T2ThreeReg_mac<0, op22_20, op7_4,
2809                    (outs rGPR:$Rd),
2810                    (ins rGPR:$Rn, rGPR:$Rm),
2811                    IIC_iMAC32, opc, "\t$Rd, $Rn, $Rm",
2812                    [(set rGPR:$Rd, (intrinsic rGPR:$Rn, rGPR:$Rm))]>,
2813                    Requires<[IsThumb2, HasDSP]>,
2814    Sched<[WriteMAC32, ReadMUL, ReadMUL, ReadMAC]> {
2815   let Inst{15-12} = 0b1111;
2816 }
2817
2818 // Dual halfword multiple: SMUAD, SMUSD, SMLAD, SMLSD, SMLALD, SMLSLD
2819 def t2SMUAD: T2DualHalfMul<0b010, 0b0000, "smuad", int_arm_smuad>;
2820 def t2SMUADX: T2DualHalfMul<0b010, 0b0001, "smuadx", int_arm_smuadx>;
2821 def t2SMUSD: T2DualHalfMul<0b100, 0b0000, "smusd", int_arm_smusd>;
2822 def t2SMUSDX: T2DualHalfMul<0b100, 0b0001, "smusdx", int_arm_smusdx>;
2823
2824 class T2DualHalfMulAdd<bits<3> op22_20, bits<4> op7_4, string opc,
2825                        Intrinsic intrinsic>
2826   : T2FourReg_mac<0, op22_20, op7_4,
2827                   (outs rGPR:$Rd),
2828                   (ins rGPR:$Rn, rGPR:$Rm, rGPR:$Ra),
2829                   IIC_iMAC32, opc, "\t$Rd, $Rn, $Rm, $Ra",
2830                   [(set rGPR:$Rd, (intrinsic rGPR:$Rn, rGPR:$Rm, rGPR:$Ra))]>,
2831                   Requires<[IsThumb2, HasDSP]>;
2832
2833 def t2SMLAD   : T2DualHalfMulAdd<0b010, 0b0000, "smlad", int_arm_smlad>;
2834 def t2SMLADX  : T2DualHalfMulAdd<0b010, 0b0001, "smladx", int_arm_smladx>;
2835 def t2SMLSD   : T2DualHalfMulAdd<0b100, 0b0000, "smlsd", int_arm_smlsd>;
2836 def t2SMLSDX  : T2DualHalfMulAdd<0b100, 0b0001, "smlsdx", int_arm_smlsdx>;
2837
2838 class T2DualHalfMulAddLong<bits<3> op22_20, bits<4> op7_4, string opc>
2839   : T2FourReg_mac<1, op22_20, op7_4,
2840                   (outs rGPR:$Ra, rGPR:$Rd),
2841                   (ins rGPR:$Rn, rGPR:$Rm, rGPR:$RLo, rGPR:$RHi),
2842                   IIC_iMAC64, opc, "\t$Ra, $Rd, $Rn, $Rm", []>,
2843                   RegConstraint<"$Ra = $RLo, $Rd = $RHi">,
2844                   Requires<[IsThumb2, HasDSP]>,
2845     Sched<[WriteMAC64Lo, WriteMAC64Hi, ReadMUL, ReadMUL, ReadMAC, ReadMAC]>;
2846
2847 def t2SMLALD  : T2DualHalfMulAddLong<0b100, 0b1100, "smlald">;
2848 def t2SMLALDX : T2DualHalfMulAddLong<0b100, 0b1101, "smlaldx">;
2849 def t2SMLSLD  : T2DualHalfMulAddLong<0b101, 0b1100, "smlsld">;
2850 def t2SMLSLDX : T2DualHalfMulAddLong<0b101, 0b1101, "smlsldx">;
2851
2852 def : Thumb2DSPPat<(ARMSmlald rGPR:$Rn, rGPR:$Rm, rGPR:$RLo, rGPR:$RHi),
2853                    (t2SMLALD rGPR:$Rn, rGPR:$Rm, rGPR:$RLo, rGPR:$RHi)>;
2854 def : Thumb2DSPPat<(ARMSmlaldx rGPR:$Rn, rGPR:$Rm, rGPR:$RLo, rGPR:$RHi),
2855                    (t2SMLALDX rGPR:$Rn, rGPR:$Rm, rGPR:$RLo, rGPR:$RHi)>;
2856 def : Thumb2DSPPat<(ARMSmlsld rGPR:$Rn, rGPR:$Rm, rGPR:$RLo, rGPR:$RHi),
2857                    (t2SMLSLD rGPR:$Rn, rGPR:$Rm, rGPR:$RLo, rGPR:$RHi)>;
2858 def : Thumb2DSPPat<(ARMSmlsldx rGPR:$Rn, rGPR:$Rm, rGPR:$RLo, rGPR:$RHi),
2859                    (t2SMLSLDX rGPR:$Rn, rGPR:$Rm, rGPR:$RLo, rGPR:$RHi)>;
2860
2861 //===----------------------------------------------------------------------===//
2862 //  Division Instructions.
2863 //  Signed and unsigned division on v7-M
2864 //
2865 def t2SDIV : T2ThreeReg<(outs rGPR:$Rd), (ins rGPR:$Rn, rGPR:$Rm), IIC_iDIV,
2866                  "sdiv", "\t$Rd, $Rn, $Rm",
2867                  [(set rGPR:$Rd, (sdiv rGPR:$Rn, rGPR:$Rm))]>,
2868                  Requires<[HasDivideInThumb, IsThumb, HasV8MBaseline]>,
2869              Sched<[WriteDIV]> {
2870   let Inst{31-27} = 0b11111;
2871   let Inst{26-21} = 0b011100;
2872   let Inst{20} = 0b1;
2873   let Inst{15-12} = 0b1111;
2874   let Inst{7-4} = 0b1111;
2875 }
2876
2877 def t2UDIV : T2ThreeReg<(outs rGPR:$Rd), (ins rGPR:$Rn, rGPR:$Rm), IIC_iDIV,
2878                  "udiv", "\t$Rd, $Rn, $Rm",
2879                  [(set rGPR:$Rd, (udiv rGPR:$Rn, rGPR:$Rm))]>,
2880                  Requires<[HasDivideInThumb, IsThumb, HasV8MBaseline]>,
2881              Sched<[WriteDIV]> {
2882   let Inst{31-27} = 0b11111;
2883   let Inst{26-21} = 0b011101;
2884   let Inst{20} = 0b1;
2885   let Inst{15-12} = 0b1111;
2886   let Inst{7-4} = 0b1111;
2887 }
2888
2889 //===----------------------------------------------------------------------===//
2890 //  Misc. Arithmetic Instructions.
2891 //
2892
2893 class T2I_misc<bits<2> op1, bits<2> op2, dag oops, dag iops,
2894       InstrItinClass itin, string opc, string asm, list<dag> pattern>
2895   : T2ThreeReg<oops, iops, itin, opc, asm, pattern> {
2896   let Inst{31-27} = 0b11111;
2897   let Inst{26-22} = 0b01010;
2898   let Inst{21-20} = op1;
2899   let Inst{15-12} = 0b1111;
2900   let Inst{7-6} = 0b10;
2901   let Inst{5-4} = op2;
2902   let Rn{3-0} = Rm;
2903 }
2904
2905 def t2CLZ : T2I_misc<0b11, 0b00, (outs rGPR:$Rd), (ins rGPR:$Rm), IIC_iUNAr,
2906                     "clz", "\t$Rd, $Rm", [(set rGPR:$Rd, (ctlz rGPR:$Rm))]>,
2907                     Sched<[WriteALU]>;
2908
2909 def t2RBIT : T2I_misc<0b01, 0b10, (outs rGPR:$Rd), (ins rGPR:$Rm), IIC_iUNAr,
2910                       "rbit", "\t$Rd, $Rm",
2911                       [(set rGPR:$Rd, (bitreverse rGPR:$Rm))]>,
2912                       Sched<[WriteALU]>;
2913
2914 def t2REV : T2I_misc<0b01, 0b00, (outs rGPR:$Rd), (ins rGPR:$Rm), IIC_iUNAr,
2915                  "rev", ".w\t$Rd, $Rm", [(set rGPR:$Rd, (bswap rGPR:$Rm))]>,
2916                  Sched<[WriteALU]>;
2917
2918 def t2REV16 : T2I_misc<0b01, 0b01, (outs rGPR:$Rd), (ins rGPR:$Rm), IIC_iUNAr,
2919                        "rev16", ".w\t$Rd, $Rm",
2920                 [(set rGPR:$Rd, (rotr (bswap rGPR:$Rm), (i32 16)))]>,
2921                 Sched<[WriteALU]>;
2922
2923 def t2REVSH : T2I_misc<0b01, 0b11, (outs rGPR:$Rd), (ins rGPR:$Rm), IIC_iUNAr,
2924                        "revsh", ".w\t$Rd, $Rm",
2925                  [(set rGPR:$Rd, (sra (bswap rGPR:$Rm), (i32 16)))]>,
2926                  Sched<[WriteALU]>;
2927
2928 def : T2Pat<(or (sra (shl rGPR:$Rm, (i32 24)), (i32 16)),
2929                 (and (srl rGPR:$Rm, (i32 8)), 0xFF)),
2930             (t2REVSH rGPR:$Rm)>;
2931
2932 def t2PKHBT : T2ThreeReg<
2933             (outs rGPR:$Rd), (ins rGPR:$Rn, rGPR:$Rm, pkh_lsl_amt:$sh),
2934                   IIC_iBITsi, "pkhbt", "\t$Rd, $Rn, $Rm$sh",
2935                   [(set rGPR:$Rd, (or (and rGPR:$Rn, 0xFFFF),
2936                                       (and (shl rGPR:$Rm, pkh_lsl_amt:$sh),
2937                                            0xFFFF0000)))]>,
2938                   Requires<[HasDSP, IsThumb2]>,
2939                   Sched<[WriteALUsi, ReadALU]> {
2940   let Inst{31-27} = 0b11101;
2941   let Inst{26-25} = 0b01;
2942   let Inst{24-20} = 0b01100;
2943   let Inst{5} = 0; // BT form
2944   let Inst{4} = 0;
2945
2946   bits<5> sh;
2947   let Inst{14-12} = sh{4-2};
2948   let Inst{7-6}   = sh{1-0};
2949 }
2950
2951 // Alternate cases for PKHBT where identities eliminate some nodes.
2952 def : T2Pat<(or (and rGPR:$src1, 0xFFFF), (and rGPR:$src2, 0xFFFF0000)),
2953             (t2PKHBT rGPR:$src1, rGPR:$src2, 0)>,
2954             Requires<[HasDSP, IsThumb2]>;
2955 def : T2Pat<(or (and rGPR:$src1, 0xFFFF), (shl rGPR:$src2, imm16_31:$sh)),
2956             (t2PKHBT rGPR:$src1, rGPR:$src2, imm16_31:$sh)>,
2957             Requires<[HasDSP, IsThumb2]>;
2958
2959 // Note: Shifts of 1-15 bits will be transformed to srl instead of sra and
2960 // will match the pattern below.
2961 def t2PKHTB : T2ThreeReg<
2962                   (outs rGPR:$Rd), (ins rGPR:$Rn, rGPR:$Rm, pkh_asr_amt:$sh),
2963                   IIC_iBITsi, "pkhtb", "\t$Rd, $Rn, $Rm$sh",
2964                   [(set rGPR:$Rd, (or (and rGPR:$Rn, 0xFFFF0000),
2965                                        (and (sra rGPR:$Rm, pkh_asr_amt:$sh),
2966                                             0xFFFF)))]>,
2967                   Requires<[HasDSP, IsThumb2]>,
2968                   Sched<[WriteALUsi, ReadALU]> {
2969   let Inst{31-27} = 0b11101;
2970   let Inst{26-25} = 0b01;
2971   let Inst{24-20} = 0b01100;
2972   let Inst{5} = 1; // TB form
2973   let Inst{4} = 0;
2974
2975   bits<5> sh;
2976   let Inst{14-12} = sh{4-2};
2977   let Inst{7-6}   = sh{1-0};
2978 }
2979
2980 // Alternate cases for PKHTB where identities eliminate some nodes.  Note that
2981 // a shift amount of 0 is *not legal* here, it is PKHBT instead.
2982 // We also can not replace a srl (17..31) by an arithmetic shift we would use in
2983 // pkhtb src1, src2, asr (17..31).
2984 def : T2Pat<(or (and rGPR:$src1, 0xFFFF0000), (srl rGPR:$src2, imm16:$sh)),
2985             (t2PKHTB rGPR:$src1, rGPR:$src2, imm16:$sh)>,
2986             Requires<[HasDSP, IsThumb2]>;
2987 def : T2Pat<(or (and rGPR:$src1, 0xFFFF0000), (sra rGPR:$src2, imm16_31:$sh)),
2988             (t2PKHTB rGPR:$src1, rGPR:$src2, imm16_31:$sh)>,
2989             Requires<[HasDSP, IsThumb2]>;
2990 def : T2Pat<(or (and rGPR:$src1, 0xFFFF0000),
2991                 (and (srl rGPR:$src2, imm1_15:$sh), 0xFFFF)),
2992             (t2PKHTB rGPR:$src1, rGPR:$src2, imm1_15:$sh)>,
2993             Requires<[HasDSP, IsThumb2]>;
2994
2995 //===----------------------------------------------------------------------===//
2996 // CRC32 Instructions
2997 //
2998 // Polynomials:
2999 // + CRC32{B,H,W}       0x04C11DB7
3000 // + CRC32C{B,H,W}      0x1EDC6F41
3001 //
3002
3003 class T2I_crc32<bit C, bits<2> sz, string suffix, SDPatternOperator builtin>
3004   : T2ThreeRegNoP<(outs rGPR:$Rd), (ins rGPR:$Rn, rGPR:$Rm), NoItinerary,
3005                !strconcat("crc32", suffix, "\t$Rd, $Rn, $Rm"),
3006                [(set rGPR:$Rd, (builtin rGPR:$Rn, rGPR:$Rm))]>,
3007                Requires<[IsThumb2, HasV8, HasCRC]> {
3008   let Inst{31-27} = 0b11111;
3009   let Inst{26-21} = 0b010110;
3010   let Inst{20}    = C;
3011   let Inst{15-12} = 0b1111;
3012   let Inst{7-6}   = 0b10;
3013   let Inst{5-4}   = sz;
3014 }
3015
3016 def t2CRC32B  : T2I_crc32<0, 0b00, "b", int_arm_crc32b>;
3017 def t2CRC32CB : T2I_crc32<1, 0b00, "cb", int_arm_crc32cb>;
3018 def t2CRC32H  : T2I_crc32<0, 0b01, "h", int_arm_crc32h>;
3019 def t2CRC32CH : T2I_crc32<1, 0b01, "ch", int_arm_crc32ch>;
3020 def t2CRC32W  : T2I_crc32<0, 0b10, "w", int_arm_crc32w>;
3021 def t2CRC32CW : T2I_crc32<1, 0b10, "cw", int_arm_crc32cw>;
3022
3023 //===----------------------------------------------------------------------===//
3024 //  Comparison Instructions...
3025 //
3026 defm t2CMP  : T2I_cmp_irs<0b1101, "cmp",
3027                           IIC_iCMPi, IIC_iCMPr, IIC_iCMPsi, ARMcmp>;
3028
3029 def : T2Pat<(ARMcmpZ  GPRnopc:$lhs, t2_so_imm:$imm),
3030             (t2CMPri  GPRnopc:$lhs, t2_so_imm:$imm)>;
3031 def : T2Pat<(ARMcmpZ  GPRnopc:$lhs, rGPR:$rhs),
3032             (t2CMPrr  GPRnopc:$lhs, rGPR:$rhs)>;
3033 def : T2Pat<(ARMcmpZ  GPRnopc:$lhs, t2_so_reg:$rhs),
3034             (t2CMPrs  GPRnopc:$lhs, t2_so_reg:$rhs)>;
3035
3036 let isCompare = 1, Defs = [CPSR] in {
3037    // shifted imm
3038    def t2CMNri : T2OneRegCmpImm<
3039                 (outs), (ins GPRnopc:$Rn, t2_so_imm:$imm), IIC_iCMPi,
3040                 "cmn", ".w\t$Rn, $imm",
3041                 [(ARMcmn GPRnopc:$Rn, (ineg t2_so_imm:$imm))]>,
3042                 Sched<[WriteCMP, ReadALU]> {
3043      let Inst{31-27} = 0b11110;
3044      let Inst{25} = 0;
3045      let Inst{24-21} = 0b1000;
3046      let Inst{20} = 1; // The S bit.
3047      let Inst{15} = 0;
3048      let Inst{11-8} = 0b1111; // Rd
3049    }
3050    // register
3051    def t2CMNzrr : T2TwoRegCmp<
3052                 (outs), (ins GPRnopc:$Rn, rGPR:$Rm), IIC_iCMPr,
3053                 "cmn", ".w\t$Rn, $Rm",
3054                 [(BinOpFrag<(ARMcmpZ node:$LHS,(ineg node:$RHS))>
3055                   GPRnopc:$Rn, rGPR:$Rm)]>, Sched<[WriteCMP, ReadALU, ReadALU]> {
3056      let Inst{31-27} = 0b11101;
3057      let Inst{26-25} = 0b01;
3058      let Inst{24-21} = 0b1000;
3059      let Inst{20} = 1; // The S bit.
3060      let Inst{14-12} = 0b000; // imm3
3061      let Inst{11-8} = 0b1111; // Rd
3062      let Inst{7-6} = 0b00; // imm2
3063      let Inst{5-4} = 0b00; // type
3064    }
3065    // shifted register
3066    def t2CMNzrs : T2OneRegCmpShiftedReg<
3067                 (outs), (ins GPRnopc:$Rn, t2_so_reg:$ShiftedRm), IIC_iCMPsi,
3068                 "cmn", ".w\t$Rn, $ShiftedRm",
3069                 [(BinOpFrag<(ARMcmpZ node:$LHS,(ineg node:$RHS))>
3070                   GPRnopc:$Rn, t2_so_reg:$ShiftedRm)]>,
3071                   Sched<[WriteCMPsi, ReadALU, ReadALU]> {
3072      let Inst{31-27} = 0b11101;
3073      let Inst{26-25} = 0b01;
3074      let Inst{24-21} = 0b1000;
3075      let Inst{20} = 1; // The S bit.
3076      let Inst{11-8} = 0b1111; // Rd
3077    }
3078 }
3079
3080 // Assembler aliases w/o the ".w" suffix.
3081 // No alias here for 'rr' version as not all instantiations of this multiclass
3082 // want one (CMP in particular, does not).
3083 def : t2InstAlias<"cmn${p} $Rn, $imm",
3084    (t2CMNri GPRnopc:$Rn, t2_so_imm:$imm, pred:$p)>;
3085 def : t2InstAlias<"cmn${p} $Rn, $shift",
3086    (t2CMNzrs GPRnopc:$Rn, t2_so_reg:$shift, pred:$p)>;
3087
3088 def : T2Pat<(ARMcmp  GPR:$src, t2_so_imm_neg:$imm),
3089             (t2CMNri GPR:$src, t2_so_imm_neg:$imm)>;
3090
3091 def : T2Pat<(ARMcmpZ GPRnopc:$src, t2_so_imm_neg:$imm),
3092             (t2CMNri GPRnopc:$src, t2_so_imm_neg:$imm)>;
3093
3094 defm t2TST  : T2I_cmp_irs<0b0000, "tst",
3095                           IIC_iTSTi, IIC_iTSTr, IIC_iTSTsi,
3096                          BinOpFrag<(ARMcmpZ (and_su node:$LHS, node:$RHS), 0)>>;
3097 defm t2TEQ  : T2I_cmp_irs<0b0100, "teq",
3098                           IIC_iTSTi, IIC_iTSTr, IIC_iTSTsi,
3099                          BinOpFrag<(ARMcmpZ (xor_su node:$LHS, node:$RHS), 0)>>;
3100
3101 // Conditional moves
3102 let hasSideEffects = 0 in {
3103
3104 let isCommutable = 1, isSelect = 1 in
3105 def t2MOVCCr : t2PseudoInst<(outs rGPR:$Rd),
3106                             (ins rGPR:$false, rGPR:$Rm, cmovpred:$p),
3107                             4, IIC_iCMOVr,
3108                             [(set rGPR:$Rd, (ARMcmov rGPR:$false, rGPR:$Rm,
3109                                                      cmovpred:$p))]>,
3110                RegConstraint<"$false = $Rd">, Sched<[WriteALU]>;
3111
3112 let isMoveImm = 1 in
3113 def t2MOVCCi
3114     : t2PseudoInst<(outs rGPR:$Rd),
3115                    (ins rGPR:$false, t2_so_imm:$imm, cmovpred:$p),
3116                    4, IIC_iCMOVi,
3117                    [(set rGPR:$Rd, (ARMcmov rGPR:$false,t2_so_imm:$imm,
3118                                             cmovpred:$p))]>,
3119       RegConstraint<"$false = $Rd">, Sched<[WriteALU]>;
3120
3121 let isCodeGenOnly = 1 in {
3122 let isMoveImm = 1 in
3123 def t2MOVCCi16
3124     : t2PseudoInst<(outs rGPR:$Rd),
3125                    (ins  rGPR:$false, imm0_65535_expr:$imm, cmovpred:$p),
3126                    4, IIC_iCMOVi,
3127                    [(set rGPR:$Rd, (ARMcmov rGPR:$false, imm0_65535:$imm,
3128                                             cmovpred:$p))]>,
3129       RegConstraint<"$false = $Rd">, Sched<[WriteALU]>;
3130
3131 let isMoveImm = 1 in
3132 def t2MVNCCi
3133     : t2PseudoInst<(outs rGPR:$Rd),
3134                    (ins rGPR:$false, t2_so_imm:$imm, cmovpred:$p),
3135                    4, IIC_iCMOVi,
3136                    [(set rGPR:$Rd,
3137                          (ARMcmov rGPR:$false, t2_so_imm_not:$imm,
3138                                   cmovpred:$p))]>,
3139       RegConstraint<"$false = $Rd">, Sched<[WriteALU]>;
3140
3141 class MOVCCShPseudo<SDPatternOperator opnode, Operand ty>
3142     : t2PseudoInst<(outs rGPR:$Rd),
3143                    (ins rGPR:$false, rGPR:$Rm, i32imm:$imm, cmovpred:$p),
3144                    4, IIC_iCMOVsi,
3145                    [(set rGPR:$Rd, (ARMcmov rGPR:$false,
3146                                             (opnode rGPR:$Rm, (i32 ty:$imm)),
3147                                             cmovpred:$p))]>,
3148       RegConstraint<"$false = $Rd">, Sched<[WriteALU]>;
3149
3150 def t2MOVCClsl : MOVCCShPseudo<shl,  imm0_31>;
3151 def t2MOVCClsr : MOVCCShPseudo<srl,  imm_sr>;
3152 def t2MOVCCasr : MOVCCShPseudo<sra,  imm_sr>;
3153 def t2MOVCCror : MOVCCShPseudo<rotr, imm0_31>;
3154
3155 let isMoveImm = 1 in
3156 def t2MOVCCi32imm
3157     : t2PseudoInst<(outs rGPR:$dst),
3158                    (ins rGPR:$false, i32imm:$src, cmovpred:$p),
3159                    8, IIC_iCMOVix2,
3160                    [(set rGPR:$dst, (ARMcmov rGPR:$false, imm:$src,
3161                                              cmovpred:$p))]>,
3162       RegConstraint<"$false = $dst">;
3163 } // isCodeGenOnly = 1
3164
3165 } // hasSideEffects
3166
3167 //===----------------------------------------------------------------------===//
3168 // Atomic operations intrinsics
3169 //
3170
3171 // memory barriers protect the atomic sequences
3172 let hasSideEffects = 1 in {
3173 def t2DMB : T2I<(outs), (ins memb_opt:$opt), NoItinerary,
3174                 "dmb", "\t$opt", [(int_arm_dmb (i32 imm0_15:$opt))]>,
3175                 Requires<[IsThumb, HasDB]> {
3176   bits<4> opt;
3177   let Inst{31-4} = 0xf3bf8f5;
3178   let Inst{3-0} = opt;
3179 }
3180
3181 def t2DSB : T2I<(outs), (ins memb_opt:$opt), NoItinerary,
3182                 "dsb", "\t$opt", [(int_arm_dsb (i32 imm0_15:$opt))]>,
3183                 Requires<[IsThumb, HasDB]> {
3184   bits<4> opt;
3185   let Inst{31-4} = 0xf3bf8f4;
3186   let Inst{3-0} = opt;
3187 }
3188
3189 def t2ISB : T2I<(outs), (ins instsyncb_opt:$opt), NoItinerary,
3190                 "isb", "\t$opt", [(int_arm_isb (i32 imm0_15:$opt))]>,
3191                 Requires<[IsThumb, HasDB]> {
3192   bits<4> opt;
3193   let Inst{31-4} = 0xf3bf8f6;
3194   let Inst{3-0} = opt;
3195 }
3196 }
3197
3198 class T2I_ldrex<bits<4> opcod, dag oops, dag iops, AddrMode am, int sz,
3199                 InstrItinClass itin, string opc, string asm, string cstr,
3200                 list<dag> pattern, bits<4> rt2 = 0b1111>
3201   : Thumb2I<oops, iops, am, sz, itin, opc, asm, cstr, pattern> {
3202   let Inst{31-27} = 0b11101;
3203   let Inst{26-20} = 0b0001101;
3204   let Inst{11-8} = rt2;
3205   let Inst{7-4} = opcod;
3206   let Inst{3-0} = 0b1111;
3207
3208   bits<4> addr;
3209   bits<4> Rt;
3210   let Inst{19-16} = addr;
3211   let Inst{15-12} = Rt;
3212 }
3213 class T2I_strex<bits<4> opcod, dag oops, dag iops, AddrMode am, int sz,
3214                 InstrItinClass itin, string opc, string asm, string cstr,
3215                 list<dag> pattern, bits<4> rt2 = 0b1111>
3216   : Thumb2I<oops, iops, am, sz, itin, opc, asm, cstr, pattern> {
3217   let Inst{31-27} = 0b11101;
3218   let Inst{26-20} = 0b0001100;
3219   let Inst{11-8} = rt2;
3220   let Inst{7-4} = opcod;
3221
3222   bits<4> Rd;
3223   bits<4> addr;
3224   bits<4> Rt;
3225   let Inst{3-0}  = Rd;
3226   let Inst{19-16} = addr;
3227   let Inst{15-12} = Rt;
3228 }
3229
3230 let mayLoad = 1 in {
3231 def t2LDREXB : T2I_ldrex<0b0100, (outs rGPR:$Rt), (ins addr_offset_none:$addr),
3232                          AddrModeNone, 4, NoItinerary,
3233                          "ldrexb", "\t$Rt, $addr", "",
3234                          [(set rGPR:$Rt, (ldrex_1 addr_offset_none:$addr))]>,
3235                Requires<[IsThumb, HasV8MBaseline]>;
3236 def t2LDREXH : T2I_ldrex<0b0101, (outs rGPR:$Rt), (ins addr_offset_none:$addr),
3237                          AddrModeNone, 4, NoItinerary,
3238                          "ldrexh", "\t$Rt, $addr", "",
3239                          [(set rGPR:$Rt, (ldrex_2 addr_offset_none:$addr))]>,
3240                Requires<[IsThumb, HasV8MBaseline]>;
3241 def t2LDREX  : Thumb2I<(outs rGPR:$Rt), (ins t2addrmode_imm0_1020s4:$addr),
3242                        AddrModeNone, 4, NoItinerary,
3243                        "ldrex", "\t$Rt, $addr", "",
3244                      [(set rGPR:$Rt, (ldrex_4 t2addrmode_imm0_1020s4:$addr))]>,
3245                Requires<[IsThumb, HasV8MBaseline]> {
3246   bits<4> Rt;
3247   bits<12> addr;
3248   let Inst{31-27} = 0b11101;
3249   let Inst{26-20} = 0b0000101;
3250   let Inst{19-16} = addr{11-8};
3251   let Inst{15-12} = Rt;
3252   let Inst{11-8} = 0b1111;
3253   let Inst{7-0} = addr{7-0};
3254 }
3255 let hasExtraDefRegAllocReq = 1 in
3256 def t2LDREXD : T2I_ldrex<0b0111, (outs rGPR:$Rt, rGPR:$Rt2),
3257                          (ins addr_offset_none:$addr),
3258                          AddrModeNone, 4, NoItinerary,
3259                          "ldrexd", "\t$Rt, $Rt2, $addr", "",
3260                          [], {?, ?, ?, ?}>,
3261                Requires<[IsThumb2, IsNotMClass]> {
3262   bits<4> Rt2;
3263   let Inst{11-8} = Rt2;
3264 }
3265 def t2LDAEXB : T2I_ldrex<0b1100, (outs rGPR:$Rt), (ins addr_offset_none:$addr),
3266                          AddrModeNone, 4, NoItinerary,
3267                          "ldaexb", "\t$Rt, $addr", "",
3268                          [(set rGPR:$Rt, (ldaex_1 addr_offset_none:$addr))]>,
3269                Requires<[IsThumb, HasAcquireRelease, HasV7Clrex]>;
3270 def t2LDAEXH : T2I_ldrex<0b1101, (outs rGPR:$Rt), (ins addr_offset_none:$addr),
3271                          AddrModeNone, 4, NoItinerary,
3272                          "ldaexh", "\t$Rt, $addr", "",
3273                          [(set rGPR:$Rt, (ldaex_2 addr_offset_none:$addr))]>,
3274                Requires<[IsThumb, HasAcquireRelease, HasV7Clrex]>;
3275 def t2LDAEX  : Thumb2I<(outs rGPR:$Rt), (ins addr_offset_none:$addr),
3276                        AddrModeNone, 4, NoItinerary,
3277                        "ldaex", "\t$Rt, $addr", "",
3278                          [(set rGPR:$Rt, (ldaex_4 addr_offset_none:$addr))]>,
3279                Requires<[IsThumb, HasAcquireRelease, HasV7Clrex]> {
3280   bits<4> Rt;
3281   bits<4> addr;
3282   let Inst{31-27} = 0b11101;
3283   let Inst{26-20} = 0b0001101;
3284   let Inst{19-16} = addr;
3285   let Inst{15-12} = Rt;
3286   let Inst{11-8} = 0b1111;
3287   let Inst{7-0} = 0b11101111;
3288 }
3289 let hasExtraDefRegAllocReq = 1 in
3290 def t2LDAEXD : T2I_ldrex<0b1111, (outs rGPR:$Rt, rGPR:$Rt2),
3291                          (ins addr_offset_none:$addr),
3292                          AddrModeNone, 4, NoItinerary,
3293                          "ldaexd", "\t$Rt, $Rt2, $addr", "",
3294                          [], {?, ?, ?, ?}>, Requires<[IsThumb,
3295                          HasAcquireRelease, HasV7Clrex, IsNotMClass]> {
3296   bits<4> Rt2;
3297   let Inst{11-8} = Rt2;
3298
3299   let Inst{7} = 1;
3300 }
3301 }
3302
3303 let mayStore = 1, Constraints = "@earlyclobber $Rd" in {
3304 def t2STREXB : T2I_strex<0b0100, (outs rGPR:$Rd),
3305                          (ins rGPR:$Rt, addr_offset_none:$addr),
3306                          AddrModeNone, 4, NoItinerary,
3307                          "strexb", "\t$Rd, $Rt, $addr", "",
3308                          [(set rGPR:$Rd,
3309                                (strex_1 rGPR:$Rt, addr_offset_none:$addr))]>,
3310                Requires<[IsThumb, HasV8MBaseline]>;
3311 def t2STREXH : T2I_strex<0b0101, (outs rGPR:$Rd),
3312                          (ins rGPR:$Rt, addr_offset_none:$addr),
3313                          AddrModeNone, 4, NoItinerary,
3314                          "strexh", "\t$Rd, $Rt, $addr", "",
3315                          [(set rGPR:$Rd,
3316                                (strex_2 rGPR:$Rt, addr_offset_none:$addr))]>,
3317                Requires<[IsThumb, HasV8MBaseline]>;
3318
3319 def t2STREX  : Thumb2I<(outs rGPR:$Rd), (ins rGPR:$Rt,
3320                              t2addrmode_imm0_1020s4:$addr),
3321                   AddrModeNone, 4, NoItinerary,
3322                   "strex", "\t$Rd, $Rt, $addr", "",
3323                   [(set rGPR:$Rd,
3324                         (strex_4 rGPR:$Rt, t2addrmode_imm0_1020s4:$addr))]>,
3325                Requires<[IsThumb, HasV8MBaseline]> {
3326   bits<4> Rd;
3327   bits<4> Rt;
3328   bits<12> addr;
3329   let Inst{31-27} = 0b11101;
3330   let Inst{26-20} = 0b0000100;
3331   let Inst{19-16} = addr{11-8};
3332   let Inst{15-12} = Rt;
3333   let Inst{11-8}  = Rd;
3334   let Inst{7-0} = addr{7-0};
3335 }
3336 let hasExtraSrcRegAllocReq = 1 in
3337 def t2STREXD : T2I_strex<0b0111, (outs rGPR:$Rd),
3338                          (ins rGPR:$Rt, rGPR:$Rt2, addr_offset_none:$addr),
3339                          AddrModeNone, 4, NoItinerary,
3340                          "strexd", "\t$Rd, $Rt, $Rt2, $addr", "", [],
3341                          {?, ?, ?, ?}>,
3342                Requires<[IsThumb2, IsNotMClass]> {
3343   bits<4> Rt2;
3344   let Inst{11-8} = Rt2;
3345 }
3346 def t2STLEXB : T2I_strex<0b1100, (outs rGPR:$Rd),
3347                          (ins rGPR:$Rt, addr_offset_none:$addr),
3348                          AddrModeNone, 4, NoItinerary,
3349                          "stlexb", "\t$Rd, $Rt, $addr", "",
3350                          [(set rGPR:$Rd,
3351                                (stlex_1 rGPR:$Rt, addr_offset_none:$addr))]>,
3352                          Requires<[IsThumb, HasAcquireRelease,
3353                                    HasV7Clrex]>;
3354
3355 def t2STLEXH : T2I_strex<0b1101, (outs rGPR:$Rd),
3356                          (ins rGPR:$Rt, addr_offset_none:$addr),
3357                          AddrModeNone, 4, NoItinerary,
3358                          "stlexh", "\t$Rd, $Rt, $addr", "",
3359                          [(set rGPR:$Rd,
3360                                (stlex_2 rGPR:$Rt, addr_offset_none:$addr))]>,
3361                          Requires<[IsThumb, HasAcquireRelease,
3362                                    HasV7Clrex]>;
3363
3364 def t2STLEX  : Thumb2I<(outs rGPR:$Rd), (ins rGPR:$Rt,
3365                              addr_offset_none:$addr),
3366                   AddrModeNone, 4, NoItinerary,
3367                   "stlex", "\t$Rd, $Rt, $addr", "",
3368                   [(set rGPR:$Rd,
3369                         (stlex_4 rGPR:$Rt, addr_offset_none:$addr))]>,
3370                   Requires<[IsThumb, HasAcquireRelease, HasV7Clrex]> {
3371   bits<4> Rd;
3372   bits<4> Rt;
3373   bits<4> addr;
3374   let Inst{31-27} = 0b11101;
3375   let Inst{26-20} = 0b0001100;
3376   let Inst{19-16} = addr;
3377   let Inst{15-12} = Rt;
3378   let Inst{11-4}  = 0b11111110;
3379   let Inst{3-0}   = Rd;
3380 }
3381 let hasExtraSrcRegAllocReq = 1 in
3382 def t2STLEXD : T2I_strex<0b1111, (outs rGPR:$Rd),
3383                          (ins rGPR:$Rt, rGPR:$Rt2, addr_offset_none:$addr),
3384                          AddrModeNone, 4, NoItinerary,
3385                          "stlexd", "\t$Rd, $Rt, $Rt2, $addr", "", [],
3386                          {?, ?, ?, ?}>, Requires<[IsThumb, HasAcquireRelease,
3387                          HasV7Clrex, IsNotMClass]> {
3388   bits<4> Rt2;
3389   let Inst{11-8} = Rt2;
3390 }
3391 }
3392
3393 def t2CLREX : T2I<(outs), (ins), NoItinerary, "clrex", "", [(int_arm_clrex)]>,
3394             Requires<[IsThumb, HasV7Clrex]>  {
3395   let Inst{31-16} = 0xf3bf;
3396   let Inst{15-14} = 0b10;
3397   let Inst{13} = 0;
3398   let Inst{12} = 0;
3399   let Inst{11-8} = 0b1111;
3400   let Inst{7-4} = 0b0010;
3401   let Inst{3-0} = 0b1111;
3402 }
3403
3404 def : T2Pat<(and (ldrex_1 addr_offset_none:$addr), 0xff),
3405             (t2LDREXB addr_offset_none:$addr)>,
3406             Requires<[IsThumb, HasV8MBaseline]>;
3407 def : T2Pat<(and (ldrex_2 addr_offset_none:$addr), 0xffff),
3408             (t2LDREXH addr_offset_none:$addr)>,
3409             Requires<[IsThumb, HasV8MBaseline]>;
3410 def : T2Pat<(strex_1 (and GPR:$Rt, 0xff), addr_offset_none:$addr),
3411             (t2STREXB GPR:$Rt, addr_offset_none:$addr)>,
3412             Requires<[IsThumb, HasV8MBaseline]>;
3413 def : T2Pat<(strex_2 (and GPR:$Rt, 0xffff), addr_offset_none:$addr),
3414             (t2STREXH GPR:$Rt, addr_offset_none:$addr)>,
3415             Requires<[IsThumb, HasV8MBaseline]>;
3416
3417 def : T2Pat<(and (ldaex_1 addr_offset_none:$addr), 0xff),
3418             (t2LDAEXB addr_offset_none:$addr)>,
3419             Requires<[IsThumb, HasAcquireRelease, HasV7Clrex]>;
3420 def : T2Pat<(and (ldaex_2 addr_offset_none:$addr), 0xffff),
3421             (t2LDAEXH addr_offset_none:$addr)>,
3422             Requires<[IsThumb, HasAcquireRelease, HasV7Clrex]>;
3423 def : T2Pat<(stlex_1 (and GPR:$Rt, 0xff), addr_offset_none:$addr),
3424             (t2STLEXB GPR:$Rt, addr_offset_none:$addr)>,
3425             Requires<[IsThumb, HasAcquireRelease, HasV7Clrex]>;
3426 def : T2Pat<(stlex_2 (and GPR:$Rt, 0xffff), addr_offset_none:$addr),
3427             (t2STLEXH GPR:$Rt, addr_offset_none:$addr)>,
3428             Requires<[IsThumb, HasAcquireRelease, HasV7Clrex]>;
3429
3430 //===----------------------------------------------------------------------===//
3431 // SJLJ Exception handling intrinsics
3432 //   eh_sjlj_setjmp() is an instruction sequence to store the return
3433 //   address and save #0 in R0 for the non-longjmp case.
3434 //   Since by its nature we may be coming from some other function to get
3435 //   here, and we're using the stack frame for the containing function to
3436 //   save/restore registers, we can't keep anything live in regs across
3437 //   the eh_sjlj_setjmp(), else it will almost certainly have been tromped upon
3438 //   when we get here from a longjmp(). We force everything out of registers
3439 //   except for our own input by listing the relevant registers in Defs. By
3440 //   doing so, we also cause the prologue/epilogue code to actively preserve
3441 //   all of the callee-saved resgisters, which is exactly what we want.
3442 //   $val is a scratch register for our use.
3443 let Defs =
3444   [ R0,  R1,  R2,  R3,  R4,  R5,  R6,  R7,  R8,  R9,  R10, R11, R12, LR, CPSR,
3445     Q0, Q1, Q2, Q3, Q8, Q9, Q10, Q11, Q12, Q13, Q14, Q15],
3446   hasSideEffects = 1, isBarrier = 1, isCodeGenOnly = 1,
3447   usesCustomInserter = 1 in {
3448   def t2Int_eh_sjlj_setjmp : Thumb2XI<(outs), (ins tGPR:$src, tGPR:$val),
3449                                AddrModeNone, 0, NoItinerary, "", "",
3450                           [(set R0, (ARMeh_sjlj_setjmp tGPR:$src, tGPR:$val))]>,
3451                              Requires<[IsThumb2, HasVFP2]>;
3452 }
3453
3454 let Defs =
3455   [ R0,  R1,  R2,  R3,  R4,  R5,  R6,  R7,  R8,  R9,  R10, R11, R12, LR, CPSR ],
3456   hasSideEffects = 1, isBarrier = 1, isCodeGenOnly = 1,
3457   usesCustomInserter = 1 in {
3458   def t2Int_eh_sjlj_setjmp_nofp : Thumb2XI<(outs), (ins tGPR:$src, tGPR:$val),
3459                                AddrModeNone, 0, NoItinerary, "", "",
3460                           [(set R0, (ARMeh_sjlj_setjmp tGPR:$src, tGPR:$val))]>,
3461                                   Requires<[IsThumb2, NoVFP]>;
3462 }
3463
3464
3465 //===----------------------------------------------------------------------===//
3466 // Control-Flow Instructions
3467 //
3468
3469 // FIXME: remove when we have a way to marking a MI with these properties.
3470 // FIXME: Should pc be an implicit operand like PICADD, etc?
3471 let isReturn = 1, isTerminator = 1, isBarrier = 1, mayLoad = 1,
3472     hasExtraDefRegAllocReq = 1, isCodeGenOnly = 1 in
3473 def t2LDMIA_RET: t2PseudoExpand<(outs GPR:$wb), (ins GPR:$Rn, pred:$p,
3474                                                    reglist:$regs, variable_ops),
3475                               4, IIC_iLoad_mBr, [],
3476             (t2LDMIA_UPD GPR:$wb, GPR:$Rn, pred:$p, reglist:$regs)>,
3477                          RegConstraint<"$Rn = $wb">;
3478
3479 let isBranch = 1, isTerminator = 1, isBarrier = 1 in {
3480 let isPredicable = 1 in
3481 def t2B   : T2I<(outs), (ins thumb_br_target:$target), IIC_Br,
3482                  "b", ".w\t$target",
3483                  [(br bb:$target)]>, Sched<[WriteBr]>,
3484                  Requires<[IsThumb, HasV8MBaseline]> {
3485   let Inst{31-27} = 0b11110;
3486   let Inst{15-14} = 0b10;
3487   let Inst{12} = 1;
3488
3489   bits<24> target;
3490   let Inst{26} = target{23};
3491   let Inst{13} = target{22};
3492   let Inst{11} = target{21};
3493   let Inst{25-16} = target{20-11};
3494   let Inst{10-0} = target{10-0};
3495   let DecoderMethod = "DecodeT2BInstruction";
3496   let AsmMatchConverter = "cvtThumbBranches";
3497 }
3498
3499 let Size = 4, isNotDuplicable = 1, isBranch = 1, isTerminator = 1,
3500     isBarrier = 1, isIndirectBranch = 1 in {
3501
3502 // available in both v8-M.Baseline and Thumb2 targets
3503 def t2BR_JT : t2basePseudoInst<(outs),
3504           (ins GPR:$target, GPR:$index, i32imm:$jt),
3505            0, IIC_Br,
3506           [(ARMbr2jt GPR:$target, GPR:$index, tjumptable:$jt)]>,
3507           Sched<[WriteBr]>;
3508
3509 // FIXME: Add a case that can be predicated.
3510 def t2TBB_JT : t2PseudoInst<(outs),
3511         (ins GPR:$base, GPR:$index, i32imm:$jt, i32imm:$pclbl), 0, IIC_Br, []>,
3512         Sched<[WriteBr]>;
3513
3514 def t2TBH_JT : t2PseudoInst<(outs),
3515         (ins GPR:$base, GPR:$index, i32imm:$jt, i32imm:$pclbl), 0, IIC_Br, []>,
3516         Sched<[WriteBr]>;
3517
3518 def t2TBB : T2I<(outs), (ins addrmode_tbb:$addr), IIC_Br,
3519                     "tbb", "\t$addr", []>, Sched<[WriteBrTbl]> {
3520   bits<4> Rn;
3521   bits<4> Rm;
3522   let Inst{31-20} = 0b111010001101;
3523   let Inst{19-16} = Rn;
3524   let Inst{15-5} = 0b11110000000;
3525   let Inst{4} = 0; // B form
3526   let Inst{3-0} = Rm;
3527
3528   let DecoderMethod = "DecodeThumbTableBranch";
3529 }
3530
3531 def t2TBH : T2I<(outs), (ins addrmode_tbh:$addr), IIC_Br,
3532                    "tbh", "\t$addr", []>, Sched<[WriteBrTbl]> {
3533   bits<4> Rn;
3534   bits<4> Rm;
3535   let Inst{31-20} = 0b111010001101;
3536   let Inst{19-16} = Rn;
3537   let Inst{15-5} = 0b11110000000;
3538   let Inst{4} = 1; // H form
3539   let Inst{3-0} = Rm;
3540
3541   let DecoderMethod = "DecodeThumbTableBranch";
3542 }
3543 } // isNotDuplicable, isIndirectBranch
3544
3545 } // isBranch, isTerminator, isBarrier
3546
3547 // FIXME: should be able to write a pattern for ARMBrcond, but can't use
3548 // a two-value operand where a dag node expects ", "two operands. :(
3549 let isBranch = 1, isTerminator = 1 in
3550 def t2Bcc : T2I<(outs), (ins brtarget:$target), IIC_Br,
3551                 "b", ".w\t$target",
3552                 [/*(ARMbrcond bb:$target, imm:$cc)*/]>, Sched<[WriteBr]> {
3553   let Inst{31-27} = 0b11110;
3554   let Inst{15-14} = 0b10;
3555   let Inst{12} = 0;
3556
3557   bits<4> p;
3558   let Inst{25-22} = p;
3559
3560   bits<21> target;
3561   let Inst{26} = target{20};
3562   let Inst{11} = target{19};
3563   let Inst{13} = target{18};
3564   let Inst{21-16} = target{17-12};
3565   let Inst{10-0} = target{11-1};
3566
3567   let DecoderMethod = "DecodeThumb2BCCInstruction";
3568   let AsmMatchConverter = "cvtThumbBranches";
3569 }
3570
3571 // Tail calls. The MachO version of thumb tail calls uses a t2 branch, so
3572 // it goes here.
3573 let isCall = 1, isTerminator = 1, isReturn = 1, isBarrier = 1 in {
3574   // IOS version.
3575   let Uses = [SP] in
3576   def tTAILJMPd: tPseudoExpand<(outs),
3577                    (ins thumb_br_target:$dst, pred:$p),
3578                    4, IIC_Br, [],
3579                    (t2B thumb_br_target:$dst, pred:$p)>,
3580                  Requires<[IsThumb2, IsMachO]>, Sched<[WriteBr]>;
3581 }
3582
3583 // IT block
3584 let Defs = [ITSTATE] in
3585 def t2IT : Thumb2XI<(outs), (ins it_pred:$cc, it_mask:$mask),
3586                     AddrModeNone, 2,  IIC_iALUx,
3587                     "it$mask\t$cc", "", []>,
3588            ComplexDeprecationPredicate<"IT"> {
3589   // 16-bit instruction.
3590   let Inst{31-16} = 0x0000;
3591   let Inst{15-8} = 0b10111111;
3592
3593   bits<4> cc;
3594   bits<4> mask;
3595   let Inst{7-4} = cc;
3596   let Inst{3-0} = mask;
3597
3598   let DecoderMethod = "DecodeIT";
3599 }
3600
3601 // Branch and Exchange Jazelle -- for disassembly only
3602 // Rm = Inst{19-16}
3603 let isBranch = 1, isTerminator = 1, isBarrier = 1, isIndirectBranch = 1 in
3604 def t2BXJ : T2I<(outs), (ins GPRnopc:$func), NoItinerary, "bxj", "\t$func", []>,
3605     Sched<[WriteBr]>, Requires<[IsThumb2, IsNotMClass]> {
3606   bits<4> func;
3607   let Inst{31-27} = 0b11110;
3608   let Inst{26} = 0;
3609   let Inst{25-20} = 0b111100;
3610   let Inst{19-16} = func;
3611   let Inst{15-0} = 0b1000111100000000;
3612 }
3613
3614 // Compare and branch on zero / non-zero
3615 let isBranch = 1, isTerminator = 1 in {
3616   def tCBZ  : T1I<(outs), (ins tGPR:$Rn, thumb_cb_target:$target), IIC_Br,
3617                   "cbz\t$Rn, $target", []>,
3618               T1Misc<{0,0,?,1,?,?,?}>,
3619               Requires<[IsThumb, HasV8MBaseline]>, Sched<[WriteBr]> {
3620     // A8.6.27
3621     bits<6> target;
3622     bits<3> Rn;
3623     let Inst{9}   = target{5};
3624     let Inst{7-3} = target{4-0};
3625     let Inst{2-0} = Rn;
3626   }
3627
3628   def tCBNZ : T1I<(outs), (ins tGPR:$Rn, thumb_cb_target:$target), IIC_Br,
3629                   "cbnz\t$Rn, $target", []>,
3630               T1Misc<{1,0,?,1,?,?,?}>,
3631               Requires<[IsThumb, HasV8MBaseline]>, Sched<[WriteBr]> {
3632     // A8.6.27
3633     bits<6> target;
3634     bits<3> Rn;
3635     let Inst{9}   = target{5};
3636     let Inst{7-3} = target{4-0};
3637     let Inst{2-0} = Rn;
3638   }
3639 }
3640
3641
3642 // Change Processor State is a system instruction.
3643 // FIXME: Since the asm parser has currently no clean way to handle optional
3644 // operands, create 3 versions of the same instruction. Once there's a clean
3645 // framework to represent optional operands, change this behavior.
3646 class t2CPS<dag iops, string asm_op> : T2XI<(outs), iops, NoItinerary,
3647             !strconcat("cps", asm_op), []>,
3648           Requires<[IsThumb2, IsNotMClass]> {
3649   bits<2> imod;
3650   bits<3> iflags;
3651   bits<5> mode;
3652   bit M;
3653
3654   let Inst{31-11} = 0b111100111010111110000;
3655   let Inst{10-9}  = imod;
3656   let Inst{8}     = M;
3657   let Inst{7-5}   = iflags;
3658   let Inst{4-0}   = mode;
3659   let DecoderMethod = "DecodeT2CPSInstruction";
3660 }
3661
3662 let M = 1 in
3663   def t2CPS3p : t2CPS<(ins imod_op:$imod, iflags_op:$iflags, i32imm:$mode),
3664                       "$imod\t$iflags, $mode">;
3665 let mode = 0, M = 0 in
3666   def t2CPS2p : t2CPS<(ins imod_op:$imod, iflags_op:$iflags),
3667                       "$imod.w\t$iflags">;
3668 let imod = 0, iflags = 0, M = 1 in
3669   def t2CPS1p : t2CPS<(ins imm0_31:$mode), "\t$mode">;
3670
3671 def : t2InstAlias<"cps$imod.w $iflags, $mode",
3672                    (t2CPS3p imod_op:$imod, iflags_op:$iflags, i32imm:$mode), 0>;
3673 def : t2InstAlias<"cps.w $mode", (t2CPS1p imm0_31:$mode), 0>;
3674
3675 // A6.3.4 Branches and miscellaneous control
3676 // Table A6-14 Change Processor State, and hint instructions
3677 def t2HINT : T2I<(outs), (ins imm0_239:$imm), NoItinerary, "hint", ".w\t$imm",
3678                   [(int_arm_hint imm0_239:$imm)]> {
3679   bits<8> imm;
3680   let Inst{31-3} = 0b11110011101011111000000000000;
3681   let Inst{7-0} = imm;
3682 }
3683
3684 def : t2InstAlias<"hint$p $imm", (t2HINT imm0_239:$imm, pred:$p), 0>;
3685 def : t2InstAlias<"nop$p.w", (t2HINT 0, pred:$p), 1>;
3686 def : t2InstAlias<"yield$p.w", (t2HINT 1, pred:$p), 1>;
3687 def : t2InstAlias<"wfe$p.w", (t2HINT 2, pred:$p), 1>;
3688 def : t2InstAlias<"wfi$p.w", (t2HINT 3, pred:$p), 1>;
3689 def : t2InstAlias<"sev$p.w", (t2HINT 4, pred:$p), 1>;
3690 def : t2InstAlias<"sevl$p.w", (t2HINT 5, pred:$p), 1> {
3691   let Predicates = [IsThumb2, HasV8];
3692 }
3693 def : t2InstAlias<"esb$p.w", (t2HINT 16, pred:$p), 1> {
3694   let Predicates = [IsThumb2, HasRAS];
3695 }
3696 def : t2InstAlias<"esb$p", (t2HINT 16, pred:$p), 0> {
3697   let Predicates = [IsThumb2, HasRAS];
3698 }
3699
3700 def t2DBG : T2I<(outs), (ins imm0_15:$opt), NoItinerary, "dbg", "\t$opt",
3701                 [(int_arm_dbg imm0_15:$opt)]> {
3702   bits<4> opt;
3703   let Inst{31-20} = 0b111100111010;
3704   let Inst{19-16} = 0b1111;
3705   let Inst{15-8} = 0b10000000;
3706   let Inst{7-4} = 0b1111;
3707   let Inst{3-0} = opt;
3708 }
3709
3710 // Secure Monitor Call is a system instruction.
3711 // Option = Inst{19-16}
3712 let isCall = 1, Uses = [SP] in
3713 def t2SMC : T2I<(outs), (ins imm0_15:$opt), NoItinerary, "smc", "\t$opt",
3714                 []>, Requires<[IsThumb2, HasTrustZone]> {
3715   let Inst{31-27} = 0b11110;
3716   let Inst{26-20} = 0b1111111;
3717   let Inst{15-12} = 0b1000;
3718
3719   bits<4> opt;
3720   let Inst{19-16} = opt;
3721 }
3722
3723 class T2DCPS<bits<2> opt, string opc>
3724   : T2I<(outs), (ins), NoItinerary, opc, "", []>, Requires<[IsThumb2, HasV8]> {
3725   let Inst{31-27} = 0b11110;
3726   let Inst{26-20} = 0b1111000;
3727   let Inst{19-16} = 0b1111;
3728   let Inst{15-12} = 0b1000;
3729   let Inst{11-2} = 0b0000000000;
3730   let Inst{1-0} = opt;
3731 }
3732
3733 def t2DCPS1 : T2DCPS<0b01, "dcps1">;
3734 def t2DCPS2 : T2DCPS<0b10, "dcps2">;
3735 def t2DCPS3 : T2DCPS<0b11, "dcps3">;
3736
3737 class T2SRS<bits<2> Op, bit W, dag oops, dag iops, InstrItinClass itin,
3738             string opc, string asm, list<dag> pattern>
3739   : T2I<oops, iops, itin, opc, asm, pattern>,
3740     Requires<[IsThumb2,IsNotMClass]> {
3741   bits<5> mode;
3742   let Inst{31-25} = 0b1110100;
3743   let Inst{24-23} = Op;
3744   let Inst{22} = 0;
3745   let Inst{21} = W;
3746   let Inst{20-16} = 0b01101;
3747   let Inst{15-5} = 0b11000000000;
3748   let Inst{4-0} = mode{4-0};
3749 }
3750
3751 // Store Return State is a system instruction.
3752 def t2SRSDB_UPD : T2SRS<0b00, 1, (outs), (ins imm0_31:$mode), NoItinerary,
3753                         "srsdb", "\tsp!, $mode", []>;
3754 def t2SRSDB  : T2SRS<0b00, 0, (outs), (ins imm0_31:$mode), NoItinerary,
3755                      "srsdb","\tsp, $mode", []>;
3756 def t2SRSIA_UPD : T2SRS<0b11, 1, (outs), (ins imm0_31:$mode), NoItinerary,
3757                         "srsia","\tsp!, $mode", []>;
3758 def t2SRSIA  : T2SRS<0b11, 0, (outs), (ins imm0_31:$mode), NoItinerary,
3759                      "srsia","\tsp, $mode", []>;
3760
3761
3762 def : t2InstAlias<"srsdb${p} $mode", (t2SRSDB imm0_31:$mode, pred:$p)>;
3763 def : t2InstAlias<"srsdb${p} $mode!", (t2SRSDB_UPD imm0_31:$mode, pred:$p)>;
3764
3765 def : t2InstAlias<"srsia${p} $mode", (t2SRSIA imm0_31:$mode, pred:$p)>;
3766 def : t2InstAlias<"srsia${p} $mode!", (t2SRSIA_UPD imm0_31:$mode, pred:$p)>;
3767
3768 // Return From Exception is a system instruction.
3769 let isReturn = 1, isBarrier = 1, isTerminator = 1, Defs = [PC] in
3770 class T2RFE<bits<12> op31_20, dag oops, dag iops, InstrItinClass itin,
3771           string opc, string asm, list<dag> pattern>
3772   : T2I<oops, iops, itin, opc, asm, pattern>,
3773     Requires<[IsThumb2,IsNotMClass]> {
3774   let Inst{31-20} = op31_20{11-0};
3775
3776   bits<4> Rn;
3777   let Inst{19-16} = Rn;
3778   let Inst{15-0} = 0xc000;
3779 }
3780
3781 def t2RFEDBW : T2RFE<0b111010000011,
3782                    (outs), (ins GPR:$Rn), NoItinerary, "rfedb", "\t$Rn!",
3783                    [/* For disassembly only; pattern left blank */]>;
3784 def t2RFEDB  : T2RFE<0b111010000001,
3785                    (outs), (ins GPR:$Rn), NoItinerary, "rfedb", "\t$Rn",
3786                    [/* For disassembly only; pattern left blank */]>;
3787 def t2RFEIAW : T2RFE<0b111010011011,
3788                    (outs), (ins GPR:$Rn), NoItinerary, "rfeia", "\t$Rn!",
3789                    [/* For disassembly only; pattern left blank */]>;
3790 def t2RFEIA  : T2RFE<0b111010011001,
3791                    (outs), (ins GPR:$Rn), NoItinerary, "rfeia", "\t$Rn",
3792                    [/* For disassembly only; pattern left blank */]>;
3793
3794 // B9.3.19 SUBS PC, LR, #imm (Thumb2) system instruction.
3795 // Exception return instruction is "subs pc, lr, #imm".
3796 let isReturn = 1, isBarrier = 1, isTerminator = 1, Defs = [PC] in
3797 def t2SUBS_PC_LR : T2I <(outs), (ins imm0_255:$imm), NoItinerary,
3798                         "subs", "\tpc, lr, $imm",
3799                         [(ARMintretflag imm0_255:$imm)]>,
3800                    Requires<[IsThumb2,IsNotMClass]> {
3801   let Inst{31-8} = 0b111100111101111010001111;
3802
3803   bits<8> imm;
3804   let Inst{7-0} = imm;
3805 }
3806
3807 // Hypervisor Call is a system instruction.
3808 let isCall = 1 in {
3809 def t2HVC : T2XI <(outs), (ins imm0_65535:$imm16), IIC_Br, "hvc.w\t$imm16", []>,
3810       Requires<[IsThumb2, HasVirtualization]>, Sched<[WriteBr]> {
3811     bits<16> imm16;
3812     let Inst{31-20} = 0b111101111110;
3813     let Inst{19-16} = imm16{15-12};
3814     let Inst{15-12} = 0b1000;
3815     let Inst{11-0} = imm16{11-0};
3816 }
3817 }
3818
3819 // Alias for HVC without the ".w" optional width specifier
3820 def : t2InstAlias<"hvc\t$imm16", (t2HVC imm0_65535:$imm16)>;
3821
3822 // ERET - Return from exception in Hypervisor mode.
3823 // B9.3.3, B9.3.20: ERET is an alias for "SUBS PC, LR, #0" in an implementation that
3824 // includes virtualization extensions.
3825 def t2ERET : InstAlias<"eret${p}", (t2SUBS_PC_LR 0, pred:$p), 1>,
3826              Requires<[IsThumb2, HasVirtualization]>;
3827
3828 //===----------------------------------------------------------------------===//
3829 // Non-Instruction Patterns
3830 //
3831
3832 // 32-bit immediate using movw + movt.
3833 // This is a single pseudo instruction to make it re-materializable.
3834 // FIXME: Remove this when we can do generalized remat.
3835 let isReMaterializable = 1, isMoveImm = 1 in
3836 def t2MOVi32imm : PseudoInst<(outs rGPR:$dst), (ins i32imm:$src), IIC_iMOVix2,
3837                             [(set rGPR:$dst, (i32 imm:$src))]>,
3838                             Requires<[IsThumb, UseMovt]>;
3839
3840 // Pseudo instruction that combines movw + movt + add pc (if pic).
3841 // It also makes it possible to rematerialize the instructions.
3842 // FIXME: Remove this when we can do generalized remat and when machine licm
3843 // can properly the instructions.
3844 let isReMaterializable = 1 in {
3845 def t2MOV_ga_pcrel : PseudoInst<(outs rGPR:$dst), (ins i32imm:$addr),
3846                                 IIC_iMOVix2addpc,
3847                           [(set rGPR:$dst, (ARMWrapperPIC tglobaladdr:$addr))]>,
3848                           Requires<[IsThumb, HasV8MBaseline, UseMovtInPic]>;
3849
3850 }
3851
3852 def : T2Pat<(ARMWrapperPIC tglobaltlsaddr :$dst),
3853             (t2MOV_ga_pcrel tglobaltlsaddr:$dst)>,
3854       Requires<[IsThumb2, UseMovtInPic]>;
3855 def : T2Pat<(ARMWrapper tglobaltlsaddr:$dst),
3856             (t2MOVi32imm tglobaltlsaddr:$dst)>,
3857       Requires<[IsThumb2, UseMovt]>;
3858
3859 // ConstantPool, GlobalAddress, and JumpTable
3860 def : T2Pat<(ARMWrapper tconstpool :$dst), (t2LEApcrel tconstpool :$dst)>;
3861 def : T2Pat<(ARMWrapper texternalsym :$dst), (t2MOVi32imm texternalsym :$dst)>,
3862     Requires<[IsThumb, HasV8MBaseline, UseMovt]>;
3863 def : T2Pat<(ARMWrapper tglobaladdr :$dst), (t2MOVi32imm tglobaladdr :$dst)>,
3864     Requires<[IsThumb, HasV8MBaseline, UseMovt]>;
3865
3866 def : T2Pat<(ARMWrapperJT tjumptable:$dst), (t2LEApcrelJT tjumptable:$dst)>;
3867
3868 // Pseudo instruction that combines ldr from constpool and add pc. This should
3869 // be expanded into two instructions late to allow if-conversion and
3870 // scheduling.
3871 let canFoldAsLoad = 1, isReMaterializable = 1 in
3872 def t2LDRpci_pic : PseudoInst<(outs rGPR:$dst), (ins i32imm:$addr, pclabel:$cp),
3873                    IIC_iLoadiALU,
3874               [(set rGPR:$dst, (ARMpic_add (load (ARMWrapper tconstpool:$addr)),
3875                                            imm:$cp))]>,
3876                Requires<[IsThumb2]>;
3877
3878 // Pseudo isntruction that combines movs + predicated rsbmi
3879 // to implement integer ABS
3880 let usesCustomInserter = 1, Defs = [CPSR] in {
3881 def t2ABS : PseudoInst<(outs rGPR:$dst), (ins rGPR:$src),
3882                        NoItinerary, []>, Requires<[IsThumb2]>;
3883 }
3884
3885 //===----------------------------------------------------------------------===//
3886 // Coprocessor load/store -- for disassembly only
3887 //
3888 class T2CI<bits<4> op31_28, dag oops, dag iops, string opc, string asm, list<dag> pattern>
3889   : T2I<oops, iops, NoItinerary, opc, asm, pattern> {
3890   let Inst{31-28} = op31_28;
3891   let Inst{27-25} = 0b110;
3892 }
3893
3894 multiclass t2LdStCop<bits<4> op31_28, bit load, bit Dbit, string asm, list<dag> pattern> {
3895   def _OFFSET : T2CI<op31_28,
3896                      (outs), (ins p_imm:$cop, c_imm:$CRd, addrmode5:$addr),
3897                      asm, "\t$cop, $CRd, $addr", pattern> {
3898     bits<13> addr;
3899     bits<4> cop;
3900     bits<4> CRd;
3901     let Inst{24} = 1; // P = 1
3902     let Inst{23} = addr{8};
3903     let Inst{22} = Dbit;
3904     let Inst{21} = 0; // W = 0
3905     let Inst{20} = load;
3906     let Inst{19-16} = addr{12-9};
3907     let Inst{15-12} = CRd;
3908     let Inst{11-8} = cop;
3909     let Inst{7-0} = addr{7-0};
3910     let DecoderMethod = "DecodeCopMemInstruction";
3911   }
3912   def _PRE : T2CI<op31_28,
3913                   (outs), (ins p_imm:$cop, c_imm:$CRd, addrmode5_pre:$addr),
3914                   asm, "\t$cop, $CRd, $addr!", []> {
3915     bits<13> addr;
3916     bits<4> cop;
3917     bits<4> CRd;
3918     let Inst{24} = 1; // P = 1
3919     let Inst{23} = addr{8};
3920     let Inst{22} = Dbit;
3921     let Inst{21} = 1; // W = 1
3922     let Inst{20} = load;
3923     let Inst{19-16} = addr{12-9};
3924     let Inst{15-12} = CRd;
3925     let Inst{11-8} = cop;
3926     let Inst{7-0} = addr{7-0};
3927     let DecoderMethod = "DecodeCopMemInstruction";
3928   }
3929   def _POST: T2CI<op31_28,
3930                   (outs), (ins p_imm:$cop, c_imm:$CRd, addr_offset_none:$addr,
3931                                postidx_imm8s4:$offset),
3932                  asm, "\t$cop, $CRd, $addr, $offset", []> {
3933     bits<9> offset;
3934     bits<4> addr;
3935     bits<4> cop;
3936     bits<4> CRd;
3937     let Inst{24} = 0; // P = 0
3938     let Inst{23} = offset{8};
3939     let Inst{22} = Dbit;
3940     let Inst{21} = 1; // W = 1
3941     let Inst{20} = load;
3942     let Inst{19-16} = addr;
3943     let Inst{15-12} = CRd;
3944     let Inst{11-8} = cop;
3945     let Inst{7-0} = offset{7-0};
3946     let DecoderMethod = "DecodeCopMemInstruction";
3947   }
3948   def _OPTION : T2CI<op31_28, (outs),
3949                      (ins p_imm:$cop, c_imm:$CRd, addr_offset_none:$addr,
3950                           coproc_option_imm:$option),
3951       asm, "\t$cop, $CRd, $addr, $option", []> {
3952     bits<8> option;
3953     bits<4> addr;
3954     bits<4> cop;
3955     bits<4> CRd;
3956     let Inst{24} = 0; // P = 0
3957     let Inst{23} = 1; // U = 1
3958     let Inst{22} = Dbit;
3959     let Inst{21} = 0; // W = 0
3960     let Inst{20} = load;
3961     let Inst{19-16} = addr;
3962     let Inst{15-12} = CRd;
3963     let Inst{11-8} = cop;
3964     let Inst{7-0} = option;
3965     let DecoderMethod = "DecodeCopMemInstruction";
3966   }
3967 }
3968
3969 let DecoderNamespace = "Thumb2CoProc" in {
3970 defm t2LDC   : t2LdStCop<0b1110, 1, 0, "ldc", [(int_arm_ldc imm:$cop, imm:$CRd, addrmode5:$addr)]>;
3971 defm t2LDCL  : t2LdStCop<0b1110, 1, 1, "ldcl", [(int_arm_ldcl imm:$cop, imm:$CRd, addrmode5:$addr)]>;
3972 defm t2LDC2  : t2LdStCop<0b1111, 1, 0, "ldc2", [(int_arm_ldc2 imm:$cop, imm:$CRd, addrmode5:$addr)]>, Requires<[PreV8,IsThumb2]>;
3973 defm t2LDC2L : t2LdStCop<0b1111, 1, 1, "ldc2l", [(int_arm_ldc2l imm:$cop, imm:$CRd, addrmode5:$addr)]>, Requires<[PreV8,IsThumb2]>;
3974
3975 defm t2STC   : t2LdStCop<0b1110, 0, 0, "stc", [(int_arm_stc imm:$cop, imm:$CRd, addrmode5:$addr)]>;
3976 defm t2STCL  : t2LdStCop<0b1110, 0, 1, "stcl", [(int_arm_stcl imm:$cop, imm:$CRd, addrmode5:$addr)]>;
3977 defm t2STC2  : t2LdStCop<0b1111, 0, 0, "stc2", [(int_arm_stc2 imm:$cop, imm:$CRd, addrmode5:$addr)]>, Requires<[PreV8,IsThumb2]>;
3978 defm t2STC2L : t2LdStCop<0b1111, 0, 1, "stc2l", [(int_arm_stc2l imm:$cop, imm:$CRd, addrmode5:$addr)]>, Requires<[PreV8,IsThumb2]>;
3979 }
3980
3981
3982 //===----------------------------------------------------------------------===//
3983 // Move between special register and ARM core register -- for disassembly only
3984 //
3985 // Move to ARM core register from Special Register
3986
3987 // A/R class MRS.
3988 //
3989 // A/R class can only move from CPSR or SPSR.
3990 def t2MRS_AR : T2I<(outs GPR:$Rd), (ins), NoItinerary, "mrs", "\t$Rd, apsr",
3991                   []>, Requires<[IsThumb2,IsNotMClass]> {
3992   bits<4> Rd;
3993   let Inst{31-12} = 0b11110011111011111000;
3994   let Inst{11-8} = Rd;
3995   let Inst{7-0} = 0b00000000;
3996 }
3997
3998 def : t2InstAlias<"mrs${p} $Rd, cpsr", (t2MRS_AR GPR:$Rd, pred:$p)>;
3999
4000 def t2MRSsys_AR: T2I<(outs GPR:$Rd), (ins), NoItinerary, "mrs", "\t$Rd, spsr",
4001                    []>, Requires<[IsThumb2,IsNotMClass]> {
4002   bits<4> Rd;
4003   let Inst{31-12} = 0b11110011111111111000;
4004   let Inst{11-8} = Rd;
4005   let Inst{7-0} = 0b00000000;
4006 }
4007
4008 def t2MRSbanked : T2I<(outs rGPR:$Rd), (ins banked_reg:$banked),
4009                       NoItinerary, "mrs", "\t$Rd, $banked", []>,
4010                   Requires<[IsThumb, HasVirtualization]> {
4011   bits<6> banked;
4012   bits<4> Rd;
4013
4014   let Inst{31-21} = 0b11110011111;
4015   let Inst{20} = banked{5}; // R bit
4016   let Inst{19-16} = banked{3-0};
4017   let Inst{15-12} = 0b1000;
4018   let Inst{11-8} = Rd;
4019   let Inst{7-5} = 0b001;
4020   let Inst{4} = banked{4};
4021   let Inst{3-0} = 0b0000;
4022 }
4023
4024
4025 // M class MRS.
4026 //
4027 // This MRS has a mask field in bits 7-0 and can take more values than
4028 // the A/R class (a full msr_mask).
4029 def t2MRS_M : T2I<(outs rGPR:$Rd), (ins msr_mask:$SYSm), NoItinerary,
4030                   "mrs", "\t$Rd, $SYSm", []>,
4031               Requires<[IsThumb,IsMClass]> {
4032   bits<4> Rd;
4033   bits<8> SYSm;
4034   let Inst{31-12} = 0b11110011111011111000;
4035   let Inst{11-8} = Rd;
4036   let Inst{7-0} = SYSm;
4037
4038   let Unpredictable{20-16} = 0b11111;
4039   let Unpredictable{13} = 0b1;
4040 }
4041
4042
4043 // Move from ARM core register to Special Register
4044 //
4045 // A/R class MSR.
4046 //
4047 // No need to have both system and application versions, the encodings are the
4048 // same and the assembly parser has no way to distinguish between them. The mask
4049 // operand contains the special register (R Bit) in bit 4 and bits 3-0 contains
4050 // the mask with the fields to be accessed in the special register.
4051 let Defs = [CPSR] in
4052 def t2MSR_AR : T2I<(outs), (ins msr_mask:$mask, rGPR:$Rn),
4053                    NoItinerary, "msr", "\t$mask, $Rn", []>,
4054                Requires<[IsThumb2,IsNotMClass]> {
4055   bits<5> mask;
4056   bits<4> Rn;
4057   let Inst{31-21} = 0b11110011100;
4058   let Inst{20}    = mask{4}; // R Bit
4059   let Inst{19-16} = Rn;
4060   let Inst{15-12} = 0b1000;
4061   let Inst{11-8}  = mask{3-0};
4062   let Inst{7-0}   = 0;
4063 }
4064
4065 // However, the MSR (banked register) system instruction (ARMv7VE) *does* have a
4066 // separate encoding (distinguished by bit 5.
4067 def t2MSRbanked : T2I<(outs), (ins banked_reg:$banked, rGPR:$Rn),
4068                       NoItinerary, "msr", "\t$banked, $Rn", []>,
4069                   Requires<[IsThumb, HasVirtualization]> {
4070   bits<6> banked;
4071   bits<4> Rn;
4072
4073   let Inst{31-21} = 0b11110011100;
4074   let Inst{20} = banked{5}; // R bit
4075   let Inst{19-16} = Rn;
4076   let Inst{15-12} = 0b1000;
4077   let Inst{11-8} = banked{3-0};
4078   let Inst{7-5} = 0b001;
4079   let Inst{4} = banked{4};
4080   let Inst{3-0} = 0b0000;
4081 }
4082
4083
4084 // M class MSR.
4085 //
4086 // Move from ARM core register to Special Register
4087 let Defs = [CPSR] in
4088 def t2MSR_M : T2I<(outs), (ins msr_mask:$SYSm, rGPR:$Rn),
4089                   NoItinerary, "msr", "\t$SYSm, $Rn", []>,
4090               Requires<[IsThumb,IsMClass]> {
4091   bits<12> SYSm;
4092   bits<4> Rn;
4093   let Inst{31-21} = 0b11110011100;
4094   let Inst{20}    = 0b0;
4095   let Inst{19-16} = Rn;
4096   let Inst{15-12} = 0b1000;
4097   let Inst{11-10} = SYSm{11-10};
4098   let Inst{9-8}   = 0b00;
4099   let Inst{7-0}   = SYSm{7-0};
4100
4101   let Unpredictable{20} = 0b1;
4102   let Unpredictable{13} = 0b1;
4103   let Unpredictable{9-8} = 0b11;
4104 }
4105
4106
4107 //===----------------------------------------------------------------------===//
4108 // Move between coprocessor and ARM core register
4109 //
4110
4111 class t2MovRCopro<bits<4> Op, string opc, bit direction, dag oops, dag iops,
4112                   list<dag> pattern>
4113   : T2Cop<Op, oops, iops, opc, "\t$cop, $opc1, $Rt, $CRn, $CRm, $opc2",
4114           pattern> {
4115   let Inst{27-24} = 0b1110;
4116   let Inst{20} = direction;
4117   let Inst{4} = 1;
4118
4119   bits<4> Rt;
4120   bits<4> cop;
4121   bits<3> opc1;
4122   bits<3> opc2;
4123   bits<4> CRm;
4124   bits<4> CRn;
4125
4126   let Inst{15-12} = Rt;
4127   let Inst{11-8}  = cop;
4128   let Inst{23-21} = opc1;
4129   let Inst{7-5}   = opc2;
4130   let Inst{3-0}   = CRm;
4131   let Inst{19-16} = CRn;
4132
4133   let DecoderNamespace = "Thumb2CoProc";
4134 }
4135
4136 class t2MovRRCopro<bits<4> Op, string opc, bit direction, dag oops, dag iops,
4137                    list<dag> pattern = []>
4138   : T2Cop<Op, oops, iops, opc, "\t$cop, $opc1, $Rt, $Rt2, $CRm", pattern> {
4139   let Inst{27-24} = 0b1100;
4140   let Inst{23-21} = 0b010;
4141   let Inst{20} = direction;
4142
4143   bits<4> Rt;
4144   bits<4> Rt2;
4145   bits<4> cop;
4146   bits<4> opc1;
4147   bits<4> CRm;
4148
4149   let Inst{15-12} = Rt;
4150   let Inst{19-16} = Rt2;
4151   let Inst{11-8}  = cop;
4152   let Inst{7-4}   = opc1;
4153   let Inst{3-0}   = CRm;
4154
4155   let DecoderNamespace = "Thumb2CoProc";
4156 }
4157
4158 /* from ARM core register to coprocessor */
4159 def t2MCR : t2MovRCopro<0b1110, "mcr", 0,
4160            (outs),
4161            (ins p_imm:$cop, imm0_7:$opc1, GPR:$Rt, c_imm:$CRn,
4162                 c_imm:$CRm, imm0_7:$opc2),
4163            [(int_arm_mcr imm:$cop, imm:$opc1, GPR:$Rt, imm:$CRn,
4164                          imm:$CRm, imm:$opc2)]>,
4165            ComplexDeprecationPredicate<"MCR">;
4166 def : t2InstAlias<"mcr${p} $cop, $opc1, $Rt, $CRn, $CRm",
4167                   (t2MCR p_imm:$cop, imm0_7:$opc1, GPR:$Rt, c_imm:$CRn,
4168                          c_imm:$CRm, 0, pred:$p)>;
4169 def t2MCR2 : t2MovRCopro<0b1111, "mcr2", 0,
4170              (outs), (ins p_imm:$cop, imm0_7:$opc1, GPR:$Rt, c_imm:$CRn,
4171                           c_imm:$CRm, imm0_7:$opc2),
4172              [(int_arm_mcr2 imm:$cop, imm:$opc1, GPR:$Rt, imm:$CRn,
4173                             imm:$CRm, imm:$opc2)]> {
4174   let Predicates = [IsThumb2, PreV8];
4175 }
4176 def : t2InstAlias<"mcr2${p} $cop, $opc1, $Rt, $CRn, $CRm",
4177                   (t2MCR2 p_imm:$cop, imm0_7:$opc1, GPR:$Rt, c_imm:$CRn,
4178                           c_imm:$CRm, 0, pred:$p)>;
4179
4180 /* from coprocessor to ARM core register */
4181 def t2MRC : t2MovRCopro<0b1110, "mrc", 1,
4182              (outs GPRwithAPSR:$Rt), (ins p_imm:$cop, imm0_7:$opc1, c_imm:$CRn,
4183                                   c_imm:$CRm, imm0_7:$opc2), []>;
4184 def : t2InstAlias<"mrc${p} $cop, $opc1, $Rt, $CRn, $CRm",
4185                   (t2MRC GPRwithAPSR:$Rt, p_imm:$cop, imm0_7:$opc1, c_imm:$CRn,
4186                          c_imm:$CRm, 0, pred:$p)>;
4187
4188 def t2MRC2 : t2MovRCopro<0b1111, "mrc2", 1,
4189              (outs GPRwithAPSR:$Rt), (ins p_imm:$cop, imm0_7:$opc1, c_imm:$CRn,
4190                                   c_imm:$CRm, imm0_7:$opc2), []> {
4191   let Predicates = [IsThumb2, PreV8];
4192 }
4193 def : t2InstAlias<"mrc2${p} $cop, $opc1, $Rt, $CRn, $CRm",
4194                   (t2MRC2 GPRwithAPSR:$Rt, p_imm:$cop, imm0_7:$opc1, c_imm:$CRn,
4195                           c_imm:$CRm, 0, pred:$p)>;
4196
4197 def : T2v6Pat<(int_arm_mrc  imm:$cop, imm:$opc1, imm:$CRn, imm:$CRm, imm:$opc2),
4198               (t2MRC imm:$cop, imm:$opc1, imm:$CRn, imm:$CRm, imm:$opc2)>;
4199
4200 def : T2v6Pat<(int_arm_mrc2 imm:$cop, imm:$opc1, imm:$CRn, imm:$CRm, imm:$opc2),
4201               (t2MRC2 imm:$cop, imm:$opc1, imm:$CRn, imm:$CRm, imm:$opc2)>;
4202
4203
4204 /* from ARM core register to coprocessor */
4205 def t2MCRR : t2MovRRCopro<0b1110, "mcrr", 0, (outs),
4206                          (ins p_imm:$cop, imm0_15:$opc1, GPR:$Rt, GPR:$Rt2,
4207                          c_imm:$CRm),
4208                         [(int_arm_mcrr imm:$cop, imm:$opc1, GPR:$Rt, GPR:$Rt2,
4209                                        imm:$CRm)]>;
4210 def t2MCRR2 : t2MovRRCopro<0b1111, "mcrr2", 0, (outs),
4211                           (ins p_imm:$cop, imm0_15:$opc1, GPR:$Rt, GPR:$Rt2,
4212                            c_imm:$CRm),
4213                           [(int_arm_mcrr2 imm:$cop, imm:$opc1, GPR:$Rt,
4214                                           GPR:$Rt2, imm:$CRm)]> {
4215   let Predicates = [IsThumb2, PreV8];
4216 }
4217
4218 /* from coprocessor to ARM core register */
4219 def t2MRRC : t2MovRRCopro<0b1110, "mrrc", 1, (outs GPR:$Rt, GPR:$Rt2),
4220                           (ins p_imm:$cop, imm0_15:$opc1, c_imm:$CRm)>;
4221
4222 def t2MRRC2 : t2MovRRCopro<0b1111, "mrrc2", 1, (outs GPR:$Rt, GPR:$Rt2),
4223                            (ins p_imm:$cop, imm0_15:$opc1, c_imm:$CRm)> {
4224   let Predicates = [IsThumb2, PreV8];
4225 }
4226
4227 //===----------------------------------------------------------------------===//
4228 // Other Coprocessor Instructions.
4229 //
4230
4231 def t2CDP : T2Cop<0b1110, (outs), (ins p_imm:$cop, imm0_15:$opc1,
4232                  c_imm:$CRd, c_imm:$CRn, c_imm:$CRm, imm0_7:$opc2),
4233                  "cdp", "\t$cop, $opc1, $CRd, $CRn, $CRm, $opc2",
4234                  [(int_arm_cdp imm:$cop, imm:$opc1, imm:$CRd, imm:$CRn,
4235                                imm:$CRm, imm:$opc2)]> {
4236   let Inst{27-24} = 0b1110;
4237
4238   bits<4> opc1;
4239   bits<4> CRn;
4240   bits<4> CRd;
4241   bits<4> cop;
4242   bits<3> opc2;
4243   bits<4> CRm;
4244
4245   let Inst{3-0}   = CRm;
4246   let Inst{4}     = 0;
4247   let Inst{7-5}   = opc2;
4248   let Inst{11-8}  = cop;
4249   let Inst{15-12} = CRd;
4250   let Inst{19-16} = CRn;
4251   let Inst{23-20} = opc1;
4252
4253   let Predicates = [IsThumb2, PreV8];
4254   let DecoderNamespace = "Thumb2CoProc";
4255 }
4256
4257 def t2CDP2 : T2Cop<0b1111, (outs), (ins p_imm:$cop, imm0_15:$opc1,
4258                    c_imm:$CRd, c_imm:$CRn, c_imm:$CRm, imm0_7:$opc2),
4259                    "cdp2", "\t$cop, $opc1, $CRd, $CRn, $CRm, $opc2",
4260                    [(int_arm_cdp2 imm:$cop, imm:$opc1, imm:$CRd, imm:$CRn,
4261                                   imm:$CRm, imm:$opc2)]> {
4262   let Inst{27-24} = 0b1110;
4263
4264   bits<4> opc1;
4265   bits<4> CRn;
4266   bits<4> CRd;
4267   bits<4> cop;
4268   bits<3> opc2;
4269   bits<4> CRm;
4270
4271   let Inst{3-0}   = CRm;
4272   let Inst{4}     = 0;
4273   let Inst{7-5}   = opc2;
4274   let Inst{11-8}  = cop;
4275   let Inst{15-12} = CRd;
4276   let Inst{19-16} = CRn;
4277   let Inst{23-20} = opc1;
4278
4279   let Predicates = [IsThumb2, PreV8];
4280   let DecoderNamespace = "Thumb2CoProc";
4281 }
4282
4283
4284
4285 //===----------------------------------------------------------------------===//
4286 // ARMv8.1 Privilege Access Never extension
4287 //
4288 // SETPAN #imm1
4289
4290 def t2SETPAN : T1I<(outs), (ins imm0_1:$imm), NoItinerary, "setpan\t$imm", []>,
4291                T1Misc<0b0110000>, Requires<[IsThumb2, HasV8, HasV8_1a]> {
4292   bits<1> imm;
4293
4294   let Inst{4} = 0b1;
4295   let Inst{3} = imm;
4296   let Inst{2-0} = 0b000;
4297
4298   let Unpredictable{4} = 0b1;
4299   let Unpredictable{2-0} = 0b111;
4300 }
4301
4302 //===----------------------------------------------------------------------===//
4303 // ARMv8-M Security Extensions instructions
4304 //
4305
4306 let hasSideEffects = 1 in
4307 def t2SG : T2I<(outs), (ins), NoItinerary, "sg", "", []>,
4308            Requires<[Has8MSecExt]> {
4309   let Inst = 0xe97fe97f;
4310 }
4311
4312 class T2TT<bits<2> at, string asm, list<dag> pattern>
4313   : T2I<(outs rGPR:$Rt), (ins GPRnopc:$Rn), NoItinerary, asm, "\t$Rt, $Rn",
4314         pattern> {
4315   bits<4> Rn;
4316   bits<4> Rt;
4317
4318   let Inst{31-20} = 0b111010000100;
4319   let Inst{19-16} = Rn;
4320   let Inst{15-12} = 0b1111;
4321   let Inst{11-8} = Rt;
4322   let Inst{7-6} = at;
4323   let Inst{5-0} = 0b000000;
4324
4325   let Unpredictable{5-0} = 0b111111;
4326 }
4327
4328 def t2TT   : T2TT<0b00, "tt",   []>, Requires<[IsThumb,Has8MSecExt]>;
4329 def t2TTT  : T2TT<0b01, "ttt",  []>, Requires<[IsThumb,Has8MSecExt]>;
4330 def t2TTA  : T2TT<0b10, "tta",  []>, Requires<[IsThumb,Has8MSecExt]>;
4331 def t2TTAT : T2TT<0b11, "ttat", []>, Requires<[IsThumb,Has8MSecExt]>;
4332
4333 //===----------------------------------------------------------------------===//
4334 // Non-Instruction Patterns
4335 //
4336
4337 // SXT/UXT with no rotate
4338 let AddedComplexity = 16 in {
4339 def : T2Pat<(and rGPR:$Rm, 0x000000FF), (t2UXTB rGPR:$Rm, 0)>,
4340            Requires<[IsThumb2]>;
4341 def : T2Pat<(and rGPR:$Rm, 0x0000FFFF), (t2UXTH rGPR:$Rm, 0)>,
4342            Requires<[IsThumb2]>;
4343 def : T2Pat<(and rGPR:$Rm, 0x00FF00FF), (t2UXTB16 rGPR:$Rm, 0)>,
4344            Requires<[HasDSP, IsThumb2]>;
4345 def : T2Pat<(add rGPR:$Rn, (and rGPR:$Rm, 0x00FF)),
4346             (t2UXTAB rGPR:$Rn, rGPR:$Rm, 0)>,
4347            Requires<[HasDSP, IsThumb2]>;
4348 def : T2Pat<(add rGPR:$Rn, (and rGPR:$Rm, 0xFFFF)),
4349             (t2UXTAH rGPR:$Rn, rGPR:$Rm, 0)>,
4350            Requires<[HasDSP, IsThumb2]>;
4351 }
4352
4353 def : T2Pat<(sext_inreg rGPR:$Src, i8),  (t2SXTB rGPR:$Src, 0)>,
4354            Requires<[IsThumb2]>;
4355 def : T2Pat<(sext_inreg rGPR:$Src, i16), (t2SXTH rGPR:$Src, 0)>,
4356            Requires<[IsThumb2]>;
4357 def : T2Pat<(add rGPR:$Rn, (sext_inreg rGPR:$Rm, i8)),
4358             (t2SXTAB rGPR:$Rn, rGPR:$Rm, 0)>,
4359            Requires<[HasDSP, IsThumb2]>;
4360 def : T2Pat<(add rGPR:$Rn, (sext_inreg rGPR:$Rm, i16)),
4361             (t2SXTAH rGPR:$Rn, rGPR:$Rm, 0)>,
4362            Requires<[HasDSP, IsThumb2]>;
4363
4364 // Atomic load/store patterns
4365 def : T2Pat<(atomic_load_8   t2addrmode_imm12:$addr),
4366             (t2LDRBi12  t2addrmode_imm12:$addr)>;
4367 def : T2Pat<(atomic_load_8   t2addrmode_negimm8:$addr),
4368             (t2LDRBi8   t2addrmode_negimm8:$addr)>;
4369 def : T2Pat<(atomic_load_8   t2addrmode_so_reg:$addr),
4370             (t2LDRBs    t2addrmode_so_reg:$addr)>;
4371 def : T2Pat<(atomic_load_16  t2addrmode_imm12:$addr),
4372             (t2LDRHi12  t2addrmode_imm12:$addr)>;
4373 def : T2Pat<(atomic_load_16  t2addrmode_negimm8:$addr),
4374             (t2LDRHi8   t2addrmode_negimm8:$addr)>;
4375 def : T2Pat<(atomic_load_16  t2addrmode_so_reg:$addr),
4376             (t2LDRHs    t2addrmode_so_reg:$addr)>;
4377 def : T2Pat<(atomic_load_32  t2addrmode_imm12:$addr),
4378             (t2LDRi12   t2addrmode_imm12:$addr)>;
4379 def : T2Pat<(atomic_load_32  t2addrmode_negimm8:$addr),
4380             (t2LDRi8    t2addrmode_negimm8:$addr)>;
4381 def : T2Pat<(atomic_load_32  t2addrmode_so_reg:$addr),
4382             (t2LDRs     t2addrmode_so_reg:$addr)>;
4383 def : T2Pat<(atomic_store_8  t2addrmode_imm12:$addr, GPR:$val),
4384             (t2STRBi12  GPR:$val, t2addrmode_imm12:$addr)>;
4385 def : T2Pat<(atomic_store_8  t2addrmode_negimm8:$addr, GPR:$val),
4386             (t2STRBi8   GPR:$val, t2addrmode_negimm8:$addr)>;
4387 def : T2Pat<(atomic_store_8  t2addrmode_so_reg:$addr, GPR:$val),
4388             (t2STRBs    GPR:$val, t2addrmode_so_reg:$addr)>;
4389 def : T2Pat<(atomic_store_16 t2addrmode_imm12:$addr, GPR:$val),
4390             (t2STRHi12  GPR:$val, t2addrmode_imm12:$addr)>;
4391 def : T2Pat<(atomic_store_16 t2addrmode_negimm8:$addr, GPR:$val),
4392             (t2STRHi8   GPR:$val, t2addrmode_negimm8:$addr)>;
4393 def : T2Pat<(atomic_store_16 t2addrmode_so_reg:$addr, GPR:$val),
4394             (t2STRHs    GPR:$val, t2addrmode_so_reg:$addr)>;
4395 def : T2Pat<(atomic_store_32 t2addrmode_imm12:$addr, GPR:$val),
4396             (t2STRi12   GPR:$val, t2addrmode_imm12:$addr)>;
4397 def : T2Pat<(atomic_store_32 t2addrmode_negimm8:$addr, GPR:$val),
4398             (t2STRi8    GPR:$val, t2addrmode_negimm8:$addr)>;
4399 def : T2Pat<(atomic_store_32 t2addrmode_so_reg:$addr, GPR:$val),
4400             (t2STRs     GPR:$val, t2addrmode_so_reg:$addr)>;
4401
4402 let AddedComplexity = 8 in {
4403   def : T2Pat<(atomic_load_acquire_8 addr_offset_none:$addr),  (t2LDAB addr_offset_none:$addr)>;
4404   def : T2Pat<(atomic_load_acquire_16 addr_offset_none:$addr), (t2LDAH addr_offset_none:$addr)>;
4405   def : T2Pat<(atomic_load_acquire_32 addr_offset_none:$addr), (t2LDA  addr_offset_none:$addr)>;
4406   def : T2Pat<(atomic_store_release_8 addr_offset_none:$addr, GPR:$val),  (t2STLB GPR:$val, addr_offset_none:$addr)>;
4407   def : T2Pat<(atomic_store_release_16 addr_offset_none:$addr, GPR:$val), (t2STLH GPR:$val, addr_offset_none:$addr)>;
4408   def : T2Pat<(atomic_store_release_32 addr_offset_none:$addr, GPR:$val), (t2STL  GPR:$val, addr_offset_none:$addr)>;
4409 }
4410
4411
4412 //===----------------------------------------------------------------------===//
4413 // Assembler aliases
4414 //
4415
4416 // Aliases for ADC without the ".w" optional width specifier.
4417 def : t2InstAlias<"adc${s}${p} $Rd, $Rn, $Rm",
4418                   (t2ADCrr rGPR:$Rd, rGPR:$Rn, rGPR:$Rm, pred:$p, cc_out:$s)>;
4419 def : t2InstAlias<"adc${s}${p} $Rd, $Rn, $ShiftedRm",
4420                   (t2ADCrs rGPR:$Rd, rGPR:$Rn, t2_so_reg:$ShiftedRm,
4421                            pred:$p, cc_out:$s)>;
4422
4423 // Aliases for SBC without the ".w" optional width specifier.
4424 def : t2InstAlias<"sbc${s}${p} $Rd, $Rn, $Rm",
4425                   (t2SBCrr rGPR:$Rd, rGPR:$Rn, rGPR:$Rm, pred:$p, cc_out:$s)>;
4426 def : t2InstAlias<"sbc${s}${p} $Rd, $Rn, $ShiftedRm",
4427                   (t2SBCrs rGPR:$Rd, rGPR:$Rn, t2_so_reg:$ShiftedRm,
4428                            pred:$p, cc_out:$s)>;
4429
4430 // Aliases for ADD without the ".w" optional width specifier.
4431 def : t2InstAlias<"add${s}${p} $Rd, $Rn, $imm",
4432         (t2ADDri GPRnopc:$Rd, GPRnopc:$Rn, t2_so_imm:$imm, pred:$p,
4433          cc_out:$s)>;
4434 def : t2InstAlias<"add${p} $Rd, $Rn, $imm",
4435            (t2ADDri12 GPRnopc:$Rd, GPR:$Rn, imm0_4095:$imm, pred:$p)>;
4436 def : t2InstAlias<"add${s}${p} $Rd, $Rn, $Rm",
4437               (t2ADDrr GPRnopc:$Rd, GPRnopc:$Rn, rGPR:$Rm, pred:$p, cc_out:$s)>;
4438 def : t2InstAlias<"add${s}${p} $Rd, $Rn, $ShiftedRm",
4439                   (t2ADDrs GPRnopc:$Rd, GPRnopc:$Rn, t2_so_reg:$ShiftedRm,
4440                            pred:$p, cc_out:$s)>;
4441 // ... and with the destination and source register combined.
4442 def : t2InstAlias<"add${s}${p} $Rdn, $imm",
4443       (t2ADDri GPRnopc:$Rdn, GPRnopc:$Rdn, t2_so_imm:$imm, pred:$p, cc_out:$s)>;
4444 def : t2InstAlias<"add${p} $Rdn, $imm",
4445            (t2ADDri12 GPRnopc:$Rdn, GPRnopc:$Rdn, imm0_4095:$imm, pred:$p)>;
4446 def : t2InstAlias<"add${s}${p} $Rdn, $Rm",
4447             (t2ADDrr GPRnopc:$Rdn, GPRnopc:$Rdn, rGPR:$Rm, pred:$p, cc_out:$s)>;
4448 def : t2InstAlias<"add${s}${p} $Rdn, $ShiftedRm",
4449                   (t2ADDrs GPRnopc:$Rdn, GPRnopc:$Rdn, t2_so_reg:$ShiftedRm,
4450                            pred:$p, cc_out:$s)>;
4451
4452 // add w/ negative immediates is just a sub.
4453 def : t2InstSubst<"add${s}${p} $Rd, $Rn, $imm",
4454         (t2SUBri GPRnopc:$Rd, GPRnopc:$Rn, t2_so_imm_neg:$imm, pred:$p,
4455                  cc_out:$s)>;
4456 def : t2InstSubst<"add${p} $Rd, $Rn, $imm",
4457            (t2SUBri12 GPRnopc:$Rd, GPR:$Rn, imm0_4095_neg:$imm, pred:$p)>;
4458 def : t2InstSubst<"add${s}${p} $Rdn, $imm",
4459       (t2SUBri GPRnopc:$Rdn, GPRnopc:$Rdn, t2_so_imm_neg:$imm, pred:$p,
4460                cc_out:$s)>;
4461 def : t2InstSubst<"add${p} $Rdn, $imm",
4462            (t2SUBri12 GPRnopc:$Rdn, GPRnopc:$Rdn, imm0_4095_neg:$imm, pred:$p)>;
4463
4464 def : t2InstSubst<"add${s}${p}.w $Rd, $Rn, $imm",
4465         (t2SUBri GPRnopc:$Rd, GPRnopc:$Rn, t2_so_imm_neg:$imm, pred:$p,
4466                  cc_out:$s)>;
4467 def : t2InstSubst<"addw${p} $Rd, $Rn, $imm",
4468            (t2SUBri12 GPRnopc:$Rd, GPR:$Rn, imm0_4095_neg:$imm, pred:$p)>;
4469 def : t2InstSubst<"add${s}${p}.w $Rdn, $imm",
4470       (t2SUBri GPRnopc:$Rdn, GPRnopc:$Rdn, t2_so_imm_neg:$imm, pred:$p,
4471                cc_out:$s)>;
4472 def : t2InstSubst<"addw${p} $Rdn, $imm",
4473            (t2SUBri12 GPRnopc:$Rdn, GPRnopc:$Rdn, imm0_4095_neg:$imm, pred:$p)>;
4474
4475
4476 // Aliases for SUB without the ".w" optional width specifier.
4477 def : t2InstAlias<"sub${s}${p} $Rd, $Rn, $imm",
4478         (t2SUBri GPRnopc:$Rd, GPRnopc:$Rn, t2_so_imm:$imm, pred:$p, cc_out:$s)>;
4479 def : t2InstAlias<"sub${p} $Rd, $Rn, $imm",
4480            (t2SUBri12 GPRnopc:$Rd, GPR:$Rn, imm0_4095:$imm, pred:$p)>;
4481 def : t2InstAlias<"sub${s}${p} $Rd, $Rn, $Rm",
4482               (t2SUBrr GPRnopc:$Rd, GPRnopc:$Rn, rGPR:$Rm, pred:$p, cc_out:$s)>;
4483 def : t2InstAlias<"sub${s}${p} $Rd, $Rn, $ShiftedRm",
4484                   (t2SUBrs GPRnopc:$Rd, GPRnopc:$Rn, t2_so_reg:$ShiftedRm,
4485                            pred:$p, cc_out:$s)>;
4486 // ... and with the destination and source register combined.
4487 def : t2InstAlias<"sub${s}${p} $Rdn, $imm",
4488       (t2SUBri GPRnopc:$Rdn, GPRnopc:$Rdn, t2_so_imm:$imm, pred:$p, cc_out:$s)>;
4489 def : t2InstAlias<"sub${p} $Rdn, $imm",
4490            (t2SUBri12 GPRnopc:$Rdn, GPRnopc:$Rdn, imm0_4095:$imm, pred:$p)>;
4491 def : t2InstAlias<"sub${s}${p}.w $Rdn, $Rm",
4492             (t2SUBrr GPRnopc:$Rdn, GPRnopc:$Rdn, rGPR:$Rm, pred:$p, cc_out:$s)>;
4493 def : t2InstAlias<"sub${s}${p} $Rdn, $Rm",
4494             (t2SUBrr GPRnopc:$Rdn, GPRnopc:$Rdn, rGPR:$Rm, pred:$p, cc_out:$s)>;
4495 def : t2InstAlias<"sub${s}${p} $Rdn, $ShiftedRm",
4496                   (t2SUBrs GPRnopc:$Rdn, GPRnopc:$Rdn, t2_so_reg:$ShiftedRm,
4497                            pred:$p, cc_out:$s)>;
4498
4499 // Alias for compares without the ".w" optional width specifier.
4500 def : t2InstAlias<"cmn${p} $Rn, $Rm",
4501                   (t2CMNzrr GPRnopc:$Rn, rGPR:$Rm, pred:$p)>;
4502 def : t2InstAlias<"teq${p} $Rn, $Rm",
4503                   (t2TEQrr GPRnopc:$Rn, rGPR:$Rm, pred:$p)>;
4504 def : t2InstAlias<"tst${p} $Rn, $Rm",
4505                   (t2TSTrr GPRnopc:$Rn, rGPR:$Rm, pred:$p)>;
4506
4507 // Memory barriers
4508 def : InstAlias<"dmb${p}", (t2DMB 0xf, pred:$p), 0>, Requires<[HasDB]>;
4509 def : InstAlias<"dsb${p}", (t2DSB 0xf, pred:$p), 0>, Requires<[HasDB]>;
4510 def : InstAlias<"isb${p}", (t2ISB 0xf, pred:$p), 0>, Requires<[HasDB]>;
4511 // Armv8-R 'Data Full Barrier'
4512 def : InstAlias<"dfb${p}", (t2DSB 0xc, pred:$p), 1>, Requires<[HasDFB]>;
4513
4514 // Alias for LDR, LDRB, LDRH, LDRSB, and LDRSH without the ".w" optional
4515 // width specifier.
4516 def : t2InstAlias<"ldr${p} $Rt, $addr",
4517                   (t2LDRi12 GPR:$Rt, t2addrmode_imm12:$addr, pred:$p)>;
4518 def : t2InstAlias<"ldrb${p} $Rt, $addr",
4519                   (t2LDRBi12 rGPR:$Rt, t2addrmode_imm12:$addr, pred:$p)>;
4520 def : t2InstAlias<"ldrh${p} $Rt, $addr",
4521                   (t2LDRHi12 rGPR:$Rt, t2addrmode_imm12:$addr, pred:$p)>;
4522 def : t2InstAlias<"ldrsb${p} $Rt, $addr",
4523                   (t2LDRSBi12 rGPR:$Rt, t2addrmode_imm12:$addr, pred:$p)>;
4524 def : t2InstAlias<"ldrsh${p} $Rt, $addr",
4525                   (t2LDRSHi12 rGPR:$Rt, t2addrmode_imm12:$addr, pred:$p)>;
4526
4527 def : t2InstAlias<"ldr${p} $Rt, $addr",
4528                   (t2LDRs GPR:$Rt, t2addrmode_so_reg:$addr, pred:$p)>;
4529 def : t2InstAlias<"ldrb${p} $Rt, $addr",
4530                   (t2LDRBs rGPR:$Rt, t2addrmode_so_reg:$addr, pred:$p)>;
4531 def : t2InstAlias<"ldrh${p} $Rt, $addr",
4532                   (t2LDRHs rGPR:$Rt, t2addrmode_so_reg:$addr, pred:$p)>;
4533 def : t2InstAlias<"ldrsb${p} $Rt, $addr",
4534                   (t2LDRSBs rGPR:$Rt, t2addrmode_so_reg:$addr, pred:$p)>;
4535 def : t2InstAlias<"ldrsh${p} $Rt, $addr",
4536                   (t2LDRSHs rGPR:$Rt, t2addrmode_so_reg:$addr, pred:$p)>;
4537
4538 def : t2InstAlias<"ldr${p} $Rt, $addr",
4539                   (t2LDRpci GPR:$Rt, t2ldrlabel:$addr, pred:$p)>;
4540 def : t2InstAlias<"ldrb${p} $Rt, $addr",
4541                   (t2LDRBpci rGPR:$Rt, t2ldrlabel:$addr, pred:$p)>;
4542 def : t2InstAlias<"ldrh${p} $Rt, $addr",
4543                   (t2LDRHpci rGPR:$Rt, t2ldrlabel:$addr, pred:$p)>;
4544 def : t2InstAlias<"ldrsb${p} $Rt, $addr",
4545                   (t2LDRSBpci rGPR:$Rt, t2ldrlabel:$addr, pred:$p)>;
4546 def : t2InstAlias<"ldrsh${p} $Rt, $addr",
4547                   (t2LDRSHpci rGPR:$Rt, t2ldrlabel:$addr, pred:$p)>;
4548
4549 // Alias for MVN with(out) the ".w" optional width specifier.
4550 def : t2InstAlias<"mvn${s}${p}.w $Rd, $imm",
4551            (t2MVNi rGPR:$Rd, t2_so_imm:$imm, pred:$p, cc_out:$s)>;
4552 def : t2InstAlias<"mvn${s}${p} $Rd, $Rm",
4553            (t2MVNr rGPR:$Rd, rGPR:$Rm, pred:$p, cc_out:$s)>;
4554 def : t2InstAlias<"mvn${s}${p} $Rd, $ShiftedRm",
4555            (t2MVNs rGPR:$Rd, t2_so_reg:$ShiftedRm, pred:$p, cc_out:$s)>;
4556
4557 // PKHBT/PKHTB with default shift amount. PKHTB is equivalent to PKHBT with the
4558 // input operands swapped when the shift amount is zero (i.e., unspecified).
4559 def : InstAlias<"pkhbt${p} $Rd, $Rn, $Rm",
4560                 (t2PKHBT rGPR:$Rd, rGPR:$Rn, rGPR:$Rm, 0, pred:$p), 0>,
4561             Requires<[HasDSP, IsThumb2]>;
4562 def : InstAlias<"pkhtb${p} $Rd, $Rn, $Rm",
4563                 (t2PKHBT rGPR:$Rd, rGPR:$Rm, rGPR:$Rn, 0, pred:$p), 0>,
4564             Requires<[HasDSP, IsThumb2]>;
4565
4566 // PUSH/POP aliases for STM/LDM
4567 def : t2InstAlias<"push${p}.w $regs", (t2STMDB_UPD SP, pred:$p, reglist:$regs)>;
4568 def : t2InstAlias<"push${p} $regs", (t2STMDB_UPD SP, pred:$p, reglist:$regs)>;
4569 def : t2InstAlias<"pop${p}.w $regs", (t2LDMIA_UPD SP, pred:$p, reglist:$regs)>;
4570 def : t2InstAlias<"pop${p} $regs", (t2LDMIA_UPD SP, pred:$p, reglist:$regs)>;
4571
4572 // STMIA/STMIA_UPD aliases w/o the optional .w suffix
4573 def : t2InstAlias<"stm${p} $Rn, $regs",
4574                   (t2STMIA GPR:$Rn, pred:$p, reglist:$regs)>;
4575 def : t2InstAlias<"stm${p} $Rn!, $regs",
4576                   (t2STMIA_UPD GPR:$Rn, pred:$p, reglist:$regs)>;
4577
4578 // LDMIA/LDMIA_UPD aliases w/o the optional .w suffix
4579 def : t2InstAlias<"ldm${p} $Rn, $regs",
4580                   (t2LDMIA GPR:$Rn, pred:$p, reglist:$regs)>;
4581 def : t2InstAlias<"ldm${p} $Rn!, $regs",
4582                   (t2LDMIA_UPD GPR:$Rn, pred:$p, reglist:$regs)>;
4583
4584 // STMDB/STMDB_UPD aliases w/ the optional .w suffix
4585 def : t2InstAlias<"stmdb${p}.w $Rn, $regs",
4586                   (t2STMDB GPR:$Rn, pred:$p, reglist:$regs)>;
4587 def : t2InstAlias<"stmdb${p}.w $Rn!, $regs",
4588                   (t2STMDB_UPD GPR:$Rn, pred:$p, reglist:$regs)>;
4589
4590 // LDMDB/LDMDB_UPD aliases w/ the optional .w suffix
4591 def : t2InstAlias<"ldmdb${p}.w $Rn, $regs",
4592                   (t2LDMDB GPR:$Rn, pred:$p, reglist:$regs)>;
4593 def : t2InstAlias<"ldmdb${p}.w $Rn!, $regs",
4594                   (t2LDMDB_UPD GPR:$Rn, pred:$p, reglist:$regs)>;
4595
4596 // Alias for REV/REV16/REVSH without the ".w" optional width specifier.
4597 def : t2InstAlias<"rev${p} $Rd, $Rm", (t2REV rGPR:$Rd, rGPR:$Rm, pred:$p)>;
4598 def : t2InstAlias<"rev16${p} $Rd, $Rm", (t2REV16 rGPR:$Rd, rGPR:$Rm, pred:$p)>;
4599 def : t2InstAlias<"revsh${p} $Rd, $Rm", (t2REVSH rGPR:$Rd, rGPR:$Rm, pred:$p)>;
4600
4601
4602 // Alias for RSB without the ".w" optional width specifier, and with optional
4603 // implied destination register.
4604 def : t2InstAlias<"rsb${s}${p} $Rd, $Rn, $imm",
4605            (t2RSBri rGPR:$Rd, rGPR:$Rn, t2_so_imm:$imm, pred:$p, cc_out:$s)>;
4606 def : t2InstAlias<"rsb${s}${p} $Rdn, $imm",
4607            (t2RSBri rGPR:$Rdn, rGPR:$Rdn, t2_so_imm:$imm, pred:$p, cc_out:$s)>;
4608 def : t2InstAlias<"rsb${s}${p} $Rdn, $Rm",
4609            (t2RSBrr rGPR:$Rdn, rGPR:$Rdn, rGPR:$Rm, pred:$p, cc_out:$s)>;
4610 def : t2InstAlias<"rsb${s}${p} $Rdn, $ShiftedRm",
4611            (t2RSBrs rGPR:$Rdn, rGPR:$Rdn, t2_so_reg:$ShiftedRm, pred:$p,
4612                     cc_out:$s)>;
4613
4614 // SSAT/USAT optional shift operand.
4615 def : t2InstAlias<"ssat${p} $Rd, $sat_imm, $Rn",
4616                   (t2SSAT rGPR:$Rd, imm1_32:$sat_imm, rGPR:$Rn, 0, pred:$p)>;
4617 def : t2InstAlias<"usat${p} $Rd, $sat_imm, $Rn",
4618                   (t2USAT rGPR:$Rd, imm0_31:$sat_imm, rGPR:$Rn, 0, pred:$p)>;
4619
4620 // STM w/o the .w suffix.
4621 def : t2InstAlias<"stm${p} $Rn, $regs",
4622                   (t2STMIA GPR:$Rn, pred:$p, reglist:$regs)>;
4623
4624 // Alias for STR, STRB, and STRH without the ".w" optional
4625 // width specifier.
4626 def : t2InstAlias<"str${p} $Rt, $addr",
4627                   (t2STRi12 GPR:$Rt, t2addrmode_imm12:$addr, pred:$p)>;
4628 def : t2InstAlias<"strb${p} $Rt, $addr",
4629                   (t2STRBi12 rGPR:$Rt, t2addrmode_imm12:$addr, pred:$p)>;
4630 def : t2InstAlias<"strh${p} $Rt, $addr",
4631                   (t2STRHi12 rGPR:$Rt, t2addrmode_imm12:$addr, pred:$p)>;
4632
4633 def : t2InstAlias<"str${p} $Rt, $addr",
4634                   (t2STRs GPR:$Rt, t2addrmode_so_reg:$addr, pred:$p)>;
4635 def : t2InstAlias<"strb${p} $Rt, $addr",
4636                   (t2STRBs rGPR:$Rt, t2addrmode_so_reg:$addr, pred:$p)>;
4637 def : t2InstAlias<"strh${p} $Rt, $addr",
4638                   (t2STRHs rGPR:$Rt, t2addrmode_so_reg:$addr, pred:$p)>;
4639
4640 // Extend instruction optional rotate operand.
4641 def : InstAlias<"sxtab${p} $Rd, $Rn, $Rm",
4642               (t2SXTAB rGPR:$Rd, rGPR:$Rn, rGPR:$Rm, 0, pred:$p), 0>,
4643               Requires<[HasDSP, IsThumb2]>;
4644 def : InstAlias<"sxtah${p} $Rd, $Rn, $Rm",
4645               (t2SXTAH rGPR:$Rd, rGPR:$Rn, rGPR:$Rm, 0, pred:$p), 0>,
4646               Requires<[HasDSP, IsThumb2]>;
4647 def : InstAlias<"sxtab16${p} $Rd, $Rn, $Rm",
4648               (t2SXTAB16 rGPR:$Rd, rGPR:$Rn, rGPR:$Rm, 0, pred:$p), 0>,
4649               Requires<[HasDSP, IsThumb2]>;
4650 def : InstAlias<"sxtb16${p} $Rd, $Rm",
4651               (t2SXTB16 rGPR:$Rd, rGPR:$Rm, 0, pred:$p), 0>,
4652               Requires<[HasDSP, IsThumb2]>;
4653
4654 def : t2InstAlias<"sxtb${p} $Rd, $Rm",
4655                 (t2SXTB rGPR:$Rd, rGPR:$Rm, 0, pred:$p)>;
4656 def : t2InstAlias<"sxth${p} $Rd, $Rm",
4657                 (t2SXTH rGPR:$Rd, rGPR:$Rm, 0, pred:$p)>;
4658 def : t2InstAlias<"sxtb${p}.w $Rd, $Rm",
4659                 (t2SXTB rGPR:$Rd, rGPR:$Rm, 0, pred:$p)>;
4660 def : t2InstAlias<"sxth${p}.w $Rd, $Rm",
4661                 (t2SXTH rGPR:$Rd, rGPR:$Rm, 0, pred:$p)>;
4662
4663 def : InstAlias<"uxtab${p} $Rd, $Rn, $Rm",
4664               (t2UXTAB rGPR:$Rd, rGPR:$Rn, rGPR:$Rm, 0, pred:$p), 0>,
4665               Requires<[HasDSP, IsThumb2]>;
4666 def : InstAlias<"uxtah${p} $Rd, $Rn, $Rm",
4667               (t2UXTAH rGPR:$Rd, rGPR:$Rn, rGPR:$Rm, 0, pred:$p), 0>,
4668               Requires<[HasDSP, IsThumb2]>;
4669 def : InstAlias<"uxtab16${p} $Rd, $Rn, $Rm",
4670               (t2UXTAB16 rGPR:$Rd, rGPR:$Rn, rGPR:$Rm, 0, pred:$p), 0>,
4671               Requires<[HasDSP, IsThumb2]>;
4672 def : InstAlias<"uxtb16${p} $Rd, $Rm",
4673               (t2UXTB16 rGPR:$Rd, rGPR:$Rm, 0, pred:$p), 0>,
4674               Requires<[HasDSP, IsThumb2]>;
4675
4676 def : t2InstAlias<"uxtb${p} $Rd, $Rm",
4677                 (t2UXTB rGPR:$Rd, rGPR:$Rm, 0, pred:$p)>;
4678 def : t2InstAlias<"uxth${p} $Rd, $Rm",
4679                 (t2UXTH rGPR:$Rd, rGPR:$Rm, 0, pred:$p)>;
4680 def : t2InstAlias<"uxtb${p}.w $Rd, $Rm",
4681                 (t2UXTB rGPR:$Rd, rGPR:$Rm, 0, pred:$p)>;
4682 def : t2InstAlias<"uxth${p}.w $Rd, $Rm",
4683                 (t2UXTH rGPR:$Rd, rGPR:$Rm, 0, pred:$p)>;
4684
4685 // Extend instruction w/o the ".w" optional width specifier.
4686 def : t2InstAlias<"uxtb${p} $Rd, $Rm$rot",
4687                   (t2UXTB rGPR:$Rd, rGPR:$Rm, rot_imm:$rot, pred:$p)>;
4688 def : InstAlias<"uxtb16${p} $Rd, $Rm$rot",
4689                 (t2UXTB16 rGPR:$Rd, rGPR:$Rm, rot_imm:$rot, pred:$p), 0>,
4690                 Requires<[HasDSP, IsThumb2]>;
4691 def : t2InstAlias<"uxth${p} $Rd, $Rm$rot",
4692                   (t2UXTH rGPR:$Rd, rGPR:$Rm, rot_imm:$rot, pred:$p)>;
4693
4694 def : t2InstAlias<"sxtb${p} $Rd, $Rm$rot",
4695                   (t2SXTB rGPR:$Rd, rGPR:$Rm, rot_imm:$rot, pred:$p)>;
4696 def : InstAlias<"sxtb16${p} $Rd, $Rm$rot",
4697                 (t2SXTB16 rGPR:$Rd, rGPR:$Rm, rot_imm:$rot, pred:$p), 0>,
4698                 Requires<[HasDSP, IsThumb2]>;
4699 def : t2InstAlias<"sxth${p} $Rd, $Rm$rot",
4700                   (t2SXTH rGPR:$Rd, rGPR:$Rm, rot_imm:$rot, pred:$p)>;
4701
4702
4703 // "mov Rd, t2_so_imm_not" can be handled via "mvn" in assembly, just like
4704 // for isel.
4705 def : t2InstSubst<"mov${p} $Rd, $imm",
4706                   (t2MVNi rGPR:$Rd, t2_so_imm_not:$imm, pred:$p, zero_reg)>;
4707 def : t2InstSubst<"mvn${s}${p} $Rd, $imm",
4708                   (t2MOVi rGPR:$Rd, t2_so_imm_not:$imm, pred:$p, s_cc_out:$s)>;
4709 // Same for AND <--> BIC
4710 def : t2InstSubst<"bic${s}${p} $Rd, $Rn, $imm",
4711                   (t2ANDri rGPR:$Rd, rGPR:$Rn, t2_so_imm_not:$imm,
4712                            pred:$p, cc_out:$s)>;
4713 def : t2InstSubst<"bic${s}${p} $Rdn, $imm",
4714                   (t2ANDri rGPR:$Rdn, rGPR:$Rdn, t2_so_imm_not:$imm,
4715                            pred:$p, cc_out:$s)>;
4716 def : t2InstSubst<"and${s}${p} $Rd, $Rn, $imm",
4717                   (t2BICri rGPR:$Rd, rGPR:$Rn, t2_so_imm_not:$imm,
4718                            pred:$p, cc_out:$s)>;
4719 def : t2InstSubst<"and${s}${p} $Rdn, $imm",
4720                   (t2BICri rGPR:$Rdn, rGPR:$Rdn, t2_so_imm_not:$imm,
4721                            pred:$p, cc_out:$s)>;
4722 // And ORR <--> ORN
4723 def : t2InstSubst<"orn${s}${p} $Rd, $Rn, $imm",
4724                   (t2ORRri rGPR:$Rd, rGPR:$Rn, t2_so_imm_not:$imm,
4725                            pred:$p, cc_out:$s)>;
4726 def : t2InstSubst<"orn${s}${p} $Rdn, $imm",
4727                   (t2ORRri rGPR:$Rdn, rGPR:$Rdn, t2_so_imm_not:$imm,
4728                            pred:$p, cc_out:$s)>;
4729 def : t2InstSubst<"orr${s}${p} $Rd, $Rn, $imm",
4730                   (t2ORNri rGPR:$Rd, rGPR:$Rn, t2_so_imm_not:$imm,
4731                            pred:$p, cc_out:$s)>;
4732 def : t2InstSubst<"orr${s}${p} $Rdn, $imm",
4733                   (t2ORNri rGPR:$Rdn, rGPR:$Rdn, t2_so_imm_not:$imm,
4734                            pred:$p, cc_out:$s)>;
4735 // Likewise, "add Rd, t2_so_imm_neg" -> sub
4736 def : t2InstSubst<"add${s}${p} $Rd, $Rn, $imm",
4737                   (t2SUBri GPRnopc:$Rd, GPRnopc:$Rn, t2_so_imm_neg:$imm,
4738                            pred:$p, cc_out:$s)>;
4739 def : t2InstSubst<"add${s}${p} $Rd, $imm",
4740                   (t2SUBri GPRnopc:$Rd, GPRnopc:$Rd, t2_so_imm_neg:$imm,
4741                            pred:$p, cc_out:$s)>;
4742 // Same for CMP <--> CMN via t2_so_imm_neg
4743 def : t2InstSubst<"cmp${p} $Rd, $imm",
4744                   (t2CMNri rGPR:$Rd, t2_so_imm_neg:$imm, pred:$p)>;
4745 def : t2InstSubst<"cmn${p} $Rd, $imm",
4746                   (t2CMPri rGPR:$Rd, t2_so_imm_neg:$imm, pred:$p)>;
4747
4748
4749 // Wide 'mul' encoding can be specified with only two operands.
4750 def : t2InstAlias<"mul${p} $Rn, $Rm",
4751                   (t2MUL rGPR:$Rn, rGPR:$Rm, rGPR:$Rn, pred:$p)>;
4752
4753 // "neg" is and alias for "rsb rd, rn, #0"
4754 def : t2InstAlias<"neg${s}${p} $Rd, $Rm",
4755                   (t2RSBri rGPR:$Rd, rGPR:$Rm, 0, pred:$p, cc_out:$s)>;
4756
4757 // MOV so_reg assembler pseudos. InstAlias isn't expressive enough for
4758 // these, unfortunately.
4759 // FIXME: LSL #0 in the shift should allow SP to be used as either the
4760 // source or destination (but not both).
4761 def t2MOVsi: t2AsmPseudo<"mov${p} $Rd, $shift",
4762                          (ins rGPR:$Rd, t2_so_reg:$shift, pred:$p)>;
4763 def t2MOVSsi: t2AsmPseudo<"movs${p} $Rd, $shift",
4764                           (ins rGPR:$Rd, t2_so_reg:$shift, pred:$p)>;
4765
4766 def t2MOVsr: t2AsmPseudo<"mov${p} $Rd, $shift",
4767                          (ins rGPR:$Rd, so_reg_reg:$shift, pred:$p)>;
4768 def t2MOVSsr: t2AsmPseudo<"movs${p} $Rd, $shift",
4769                           (ins rGPR:$Rd, so_reg_reg:$shift, pred:$p)>;
4770
4771 // Aliases for the above with the .w qualifier
4772 def : t2InstAlias<"mov${p}.w $Rd, $shift",
4773                   (t2MOVsi rGPR:$Rd, t2_so_reg:$shift, pred:$p)>;
4774 def : t2InstAlias<"movs${p}.w $Rd, $shift",
4775                   (t2MOVSsi rGPR:$Rd, t2_so_reg:$shift, pred:$p)>;
4776 def : t2InstAlias<"mov${p}.w $Rd, $shift",
4777                   (t2MOVsr rGPR:$Rd, so_reg_reg:$shift, pred:$p)>;
4778 def : t2InstAlias<"movs${p}.w $Rd, $shift",
4779                   (t2MOVSsr rGPR:$Rd, so_reg_reg:$shift, pred:$p)>;
4780
4781 // ADR w/o the .w suffix
4782 def : t2InstAlias<"adr${p} $Rd, $addr",
4783                   (t2ADR rGPR:$Rd, t2adrlabel:$addr, pred:$p)>;
4784
4785 // LDR(literal) w/ alternate [pc, #imm] syntax.
4786 def t2LDRpcrel   : t2AsmPseudo<"ldr${p} $Rt, $addr",
4787                          (ins GPR:$Rt, t2ldr_pcrel_imm12:$addr, pred:$p)>;
4788 def t2LDRBpcrel  : t2AsmPseudo<"ldrb${p} $Rt, $addr",
4789                          (ins GPRnopc:$Rt, t2ldr_pcrel_imm12:$addr, pred:$p)>;
4790 def t2LDRHpcrel  : t2AsmPseudo<"ldrh${p} $Rt, $addr",
4791                          (ins GPRnopc:$Rt, t2ldr_pcrel_imm12:$addr, pred:$p)>;
4792 def t2LDRSBpcrel  : t2AsmPseudo<"ldrsb${p} $Rt, $addr",
4793                          (ins GPRnopc:$Rt, t2ldr_pcrel_imm12:$addr, pred:$p)>;
4794 def t2LDRSHpcrel  : t2AsmPseudo<"ldrsh${p} $Rt, $addr",
4795                          (ins GPRnopc:$Rt, t2ldr_pcrel_imm12:$addr, pred:$p)>;
4796     // Version w/ the .w suffix.
4797 def : t2InstAlias<"ldr${p}.w $Rt, $addr",
4798                   (t2LDRpcrel GPR:$Rt, t2ldr_pcrel_imm12:$addr, pred:$p), 0>;
4799 def : t2InstAlias<"ldrb${p}.w $Rt, $addr",
4800                   (t2LDRBpcrel GPRnopc:$Rt, t2ldr_pcrel_imm12:$addr, pred:$p)>;
4801 def : t2InstAlias<"ldrh${p}.w $Rt, $addr",
4802                   (t2LDRHpcrel GPRnopc:$Rt, t2ldr_pcrel_imm12:$addr, pred:$p)>;
4803 def : t2InstAlias<"ldrsb${p}.w $Rt, $addr",
4804                   (t2LDRSBpcrel GPRnopc:$Rt, t2ldr_pcrel_imm12:$addr, pred:$p)>;
4805 def : t2InstAlias<"ldrsh${p}.w $Rt, $addr",
4806                   (t2LDRSHpcrel GPRnopc:$Rt, t2ldr_pcrel_imm12:$addr, pred:$p)>;
4807
4808 def : t2InstAlias<"add${p} $Rd, pc, $imm",
4809                   (t2ADR rGPR:$Rd, imm0_4095:$imm, pred:$p)>;
4810
4811 // Pseudo instruction ldr Rt, =immediate
4812 def t2LDRConstPool
4813   : t2AsmPseudo<"ldr${p} $Rt, $immediate",
4814                 (ins GPR:$Rt, const_pool_asm_imm:$immediate, pred:$p)>;
4815 // Version w/ the .w suffix.
4816 def : t2InstAlias<"ldr${p}.w $Rt, $immediate",
4817                   (t2LDRConstPool GPRnopc:$Rt,
4818                   const_pool_asm_imm:$immediate, pred:$p)>;
4819
4820 // PLD/PLDW/PLI with alternate literal form.
4821 def : t2InstAlias<"pld${p} $addr",
4822                   (t2PLDpci t2ldr_pcrel_imm12:$addr, pred:$p)>;
4823 def : InstAlias<"pli${p} $addr",
4824                  (t2PLIpci  t2ldr_pcrel_imm12:$addr, pred:$p), 0>,
4825       Requires<[IsThumb2,HasV7]>;