]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/llvm/lib/Target/ARM/ARMInstrThumb2.td
Merge llvm, clang, lld, lldb, compiler-rt and libc++ r304460, and update
[FreeBSD/FreeBSD.git] / contrib / llvm / 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<(int_arm_ssat GPR:$a, imm1_32:$pos),
2340             (t2SSAT imm1_32:$pos, GPR:$a, 0)>;
2341 def : T2Pat<(int_arm_usat GPR:$a, imm0_31:$pos),
2342             (t2USAT imm0_31:$pos, GPR:$a, 0)>;
2343 def : T2Pat<(int_arm_ssat16 GPR:$a, imm1_16:$pos),
2344             (t2SSAT16 imm1_16:$pos, GPR:$a)>;
2345 def : T2Pat<(int_arm_usat16 GPR:$a, imm0_15:$pos),
2346             (t2USAT16 imm0_15:$pos, GPR:$a)>;
2347
2348 //===----------------------------------------------------------------------===//
2349 //  Shift and rotate Instructions.
2350 //
2351
2352 defm t2LSL  : T2I_sh_ir<0b00, "lsl", imm1_31, shl>;
2353 defm t2LSR  : T2I_sh_ir<0b01, "lsr", imm_sr,  srl>;
2354 defm t2ASR  : T2I_sh_ir<0b10, "asr", imm_sr,  sra>;
2355 defm t2ROR  : T2I_sh_ir<0b11, "ror", imm0_31, rotr>;
2356
2357 // LSL #0 is actually MOV, and has slightly different permitted registers to
2358 // LSL with non-zero shift
2359 def : t2InstAlias<"lsl${s}${p} $Rd, $Rm, #0",
2360                   (t2MOVr GPRnopc:$Rd, GPRnopc:$Rm, pred:$p, cc_out:$s)>;
2361 def : t2InstAlias<"lsl${s}${p}.w $Rd, $Rm, #0",
2362                   (t2MOVr GPRnopc:$Rd, GPRnopc:$Rm, pred:$p, cc_out:$s)>;
2363
2364 // (rotr x, (and y, 0x...1f)) ==> (ROR x, y)
2365 def : T2Pat<(rotr rGPR:$lhs, (and rGPR:$rhs, lo5AllOne)),
2366             (t2RORrr rGPR:$lhs, rGPR:$rhs)>;
2367
2368 let Uses = [CPSR] in {
2369 def t2RRX : T2sTwoReg<(outs rGPR:$Rd), (ins rGPR:$Rm), IIC_iMOVsi,
2370                    "rrx", "\t$Rd, $Rm",
2371                    [(set rGPR:$Rd, (ARMrrx rGPR:$Rm))]>, Sched<[WriteALU]> {
2372   let Inst{31-27} = 0b11101;
2373   let Inst{26-25} = 0b01;
2374   let Inst{24-21} = 0b0010;
2375   let Inst{19-16} = 0b1111; // Rn
2376   let Inst{14-12} = 0b000;
2377   let Inst{7-4} = 0b0011;
2378 }
2379 }
2380
2381 let isCodeGenOnly = 1, Defs = [CPSR] in {
2382 def t2MOVsrl_flag : T2TwoRegShiftImm<
2383                         (outs rGPR:$Rd), (ins rGPR:$Rm), IIC_iMOVsi,
2384                         "lsrs", ".w\t$Rd, $Rm, #1",
2385                         [(set rGPR:$Rd, (ARMsrl_flag rGPR:$Rm))]>,
2386                         Sched<[WriteALU]> {
2387   let Inst{31-27} = 0b11101;
2388   let Inst{26-25} = 0b01;
2389   let Inst{24-21} = 0b0010;
2390   let Inst{20} = 1; // The S bit.
2391   let Inst{19-16} = 0b1111; // Rn
2392   let Inst{5-4} = 0b01; // Shift type.
2393   // Shift amount = Inst{14-12:7-6} = 1.
2394   let Inst{14-12} = 0b000;
2395   let Inst{7-6} = 0b01;
2396 }
2397 def t2MOVsra_flag : T2TwoRegShiftImm<
2398                         (outs rGPR:$Rd), (ins rGPR:$Rm), IIC_iMOVsi,
2399                         "asrs", ".w\t$Rd, $Rm, #1",
2400                         [(set rGPR:$Rd, (ARMsra_flag rGPR:$Rm))]>,
2401                         Sched<[WriteALU]> {
2402   let Inst{31-27} = 0b11101;
2403   let Inst{26-25} = 0b01;
2404   let Inst{24-21} = 0b0010;
2405   let Inst{20} = 1; // The S bit.
2406   let Inst{19-16} = 0b1111; // Rn
2407   let Inst{5-4} = 0b10; // Shift type.
2408   // Shift amount = Inst{14-12:7-6} = 1.
2409   let Inst{14-12} = 0b000;
2410   let Inst{7-6} = 0b01;
2411 }
2412 }
2413
2414 //===----------------------------------------------------------------------===//
2415 //  Bitwise Instructions.
2416 //
2417
2418 defm t2AND  : T2I_bin_w_irs<0b0000, "and",
2419                             IIC_iBITi, IIC_iBITr, IIC_iBITsi, and, 1>;
2420 defm t2ORR  : T2I_bin_w_irs<0b0010, "orr",
2421                             IIC_iBITi, IIC_iBITr, IIC_iBITsi, or, 1>;
2422 defm t2EOR  : T2I_bin_w_irs<0b0100, "eor",
2423                             IIC_iBITi, IIC_iBITr, IIC_iBITsi, xor, 1>;
2424
2425 defm t2BIC  : T2I_bin_w_irs<0b0001, "bic",
2426                             IIC_iBITi, IIC_iBITr, IIC_iBITsi,
2427                             BinOpFrag<(and node:$LHS, (not node:$RHS))>>;
2428
2429 class T2BitFI<dag oops, dag iops, InstrItinClass itin,
2430               string opc, string asm, list<dag> pattern>
2431     : T2I<oops, iops, itin, opc, asm, pattern> {
2432   bits<4> Rd;
2433   bits<5> msb;
2434   bits<5> lsb;
2435
2436   let Inst{11-8}  = Rd;
2437   let Inst{4-0}   = msb{4-0};
2438   let Inst{14-12} = lsb{4-2};
2439   let Inst{7-6}   = lsb{1-0};
2440 }
2441
2442 class T2TwoRegBitFI<dag oops, dag iops, InstrItinClass itin,
2443               string opc, string asm, list<dag> pattern>
2444     : T2BitFI<oops, iops, itin, opc, asm, pattern> {
2445   bits<4> Rn;
2446
2447   let Inst{19-16} = Rn;
2448 }
2449
2450 let Constraints = "$src = $Rd" in
2451 def t2BFC : T2BitFI<(outs rGPR:$Rd), (ins rGPR:$src, bf_inv_mask_imm:$imm),
2452                 IIC_iUNAsi, "bfc", "\t$Rd, $imm",
2453                 [(set rGPR:$Rd, (and rGPR:$src, bf_inv_mask_imm:$imm))]> {
2454   let Inst{31-27} = 0b11110;
2455   let Inst{26} = 0; // should be 0.
2456   let Inst{25} = 1;
2457   let Inst{24-20} = 0b10110;
2458   let Inst{19-16} = 0b1111; // Rn
2459   let Inst{15} = 0;
2460   let Inst{5} = 0; // should be 0.
2461
2462   bits<10> imm;
2463   let msb{4-0} = imm{9-5};
2464   let lsb{4-0} = imm{4-0};
2465 }
2466
2467 def t2SBFX: T2TwoRegBitFI<
2468                 (outs rGPR:$Rd), (ins rGPR:$Rn, imm0_31:$lsb, imm1_32:$msb),
2469                  IIC_iUNAsi, "sbfx", "\t$Rd, $Rn, $lsb, $msb", []> {
2470   let Inst{31-27} = 0b11110;
2471   let Inst{25} = 1;
2472   let Inst{24-20} = 0b10100;
2473   let Inst{15} = 0;
2474 }
2475
2476 def t2UBFX: T2TwoRegBitFI<
2477                 (outs rGPR:$Rd), (ins rGPR:$Rn, imm0_31:$lsb, imm1_32:$msb),
2478                  IIC_iUNAsi, "ubfx", "\t$Rd, $Rn, $lsb, $msb", []> {
2479   let Inst{31-27} = 0b11110;
2480   let Inst{25} = 1;
2481   let Inst{24-20} = 0b11100;
2482   let Inst{15} = 0;
2483 }
2484
2485 // A8.8.247  UDF - Undefined (Encoding T2)
2486 def t2UDF : T2XI<(outs), (ins imm0_65535:$imm16), IIC_Br, "udf.w\t$imm16",
2487                  [(int_arm_undefined imm0_65535:$imm16)]> {
2488   bits<16> imm16;
2489   let Inst{31-29} = 0b111;
2490   let Inst{28-27} = 0b10;
2491   let Inst{26-20} = 0b1111111;
2492   let Inst{19-16} = imm16{15-12};
2493   let Inst{15} = 0b1;
2494   let Inst{14-12} = 0b010;
2495   let Inst{11-0} = imm16{11-0};
2496 }
2497
2498 // A8.6.18  BFI - Bitfield insert (Encoding T1)
2499 let Constraints = "$src = $Rd" in {
2500   def t2BFI : T2TwoRegBitFI<(outs rGPR:$Rd),
2501                   (ins rGPR:$src, rGPR:$Rn, bf_inv_mask_imm:$imm),
2502                   IIC_iBITi, "bfi", "\t$Rd, $Rn, $imm",
2503                   [(set rGPR:$Rd, (ARMbfi rGPR:$src, rGPR:$Rn,
2504                                    bf_inv_mask_imm:$imm))]> {
2505     let Inst{31-27} = 0b11110;
2506     let Inst{26} = 0; // should be 0.
2507     let Inst{25} = 1;
2508     let Inst{24-20} = 0b10110;
2509     let Inst{15} = 0;
2510     let Inst{5} = 0; // should be 0.
2511
2512     bits<10> imm;
2513     let msb{4-0} = imm{9-5};
2514     let lsb{4-0} = imm{4-0};
2515   }
2516 }
2517
2518 defm t2ORN  : T2I_bin_irs<0b0011, "orn",
2519                           IIC_iBITi, IIC_iBITr, IIC_iBITsi,
2520                           BinOpFrag<(or node:$LHS, (not node:$RHS))>, 0, "">;
2521
2522 /// T2I_un_irs - Defines a set of (op reg, {so_imm|r|so_reg}) patterns for a
2523 /// unary operation that produces a value. These are predicable and can be
2524 /// changed to modify CPSR.
2525 multiclass T2I_un_irs<bits<4> opcod, string opc,
2526                      InstrItinClass iii, InstrItinClass iir, InstrItinClass iis,
2527                       PatFrag opnode,
2528                       bit Cheap = 0, bit ReMat = 0, bit MoveImm = 0> {
2529    // shifted imm
2530    def i : T2sOneRegImm<(outs rGPR:$Rd), (ins t2_so_imm:$imm), iii,
2531                 opc, "\t$Rd, $imm",
2532                 [(set rGPR:$Rd, (opnode t2_so_imm:$imm))]>, Sched<[WriteALU]> {
2533      let isAsCheapAsAMove = Cheap;
2534      let isReMaterializable = ReMat;
2535      let isMoveImm = MoveImm;
2536      let Inst{31-27} = 0b11110;
2537      let Inst{25} = 0;
2538      let Inst{24-21} = opcod;
2539      let Inst{19-16} = 0b1111; // Rn
2540      let Inst{15} = 0;
2541    }
2542    // register
2543    def r : T2sTwoReg<(outs rGPR:$Rd), (ins rGPR:$Rm), iir,
2544                 opc, ".w\t$Rd, $Rm",
2545                 [(set rGPR:$Rd, (opnode rGPR:$Rm))]>, Sched<[WriteALU]> {
2546      let Inst{31-27} = 0b11101;
2547      let Inst{26-25} = 0b01;
2548      let Inst{24-21} = opcod;
2549      let Inst{19-16} = 0b1111; // Rn
2550      let Inst{14-12} = 0b000; // imm3
2551      let Inst{7-6} = 0b00; // imm2
2552      let Inst{5-4} = 0b00; // type
2553    }
2554    // shifted register
2555    def s : T2sOneRegShiftedReg<(outs rGPR:$Rd), (ins t2_so_reg:$ShiftedRm), iis,
2556                 opc, ".w\t$Rd, $ShiftedRm",
2557                 [(set rGPR:$Rd, (opnode t2_so_reg:$ShiftedRm))]>,
2558                 Sched<[WriteALU]> {
2559      let Inst{31-27} = 0b11101;
2560      let Inst{26-25} = 0b01;
2561      let Inst{24-21} = opcod;
2562      let Inst{19-16} = 0b1111; // Rn
2563    }
2564 }
2565
2566 // Prefer over of t2EORri ra, rb, -1 because mvn has 16-bit version
2567 let AddedComplexity = 1 in
2568 defm t2MVN  : T2I_un_irs <0b0011, "mvn",
2569                           IIC_iMVNi, IIC_iMVNr, IIC_iMVNsi,
2570                           not, 1, 1, 1>;
2571
2572 let AddedComplexity = 1 in
2573 def : T2Pat<(and     rGPR:$src, t2_so_imm_not:$imm),
2574             (t2BICri rGPR:$src, t2_so_imm_not:$imm)>;
2575
2576 // top16Zero - answer true if the upper 16 bits of $src are 0, false otherwise
2577 def top16Zero: PatLeaf<(i32 rGPR:$src), [{
2578   return CurDAG->MaskedValueIsZero(SDValue(N,0), APInt::getHighBitsSet(32, 16));
2579   }]>;
2580
2581 // so_imm_notSext is needed instead of so_imm_not, as the value of imm
2582 // will match the extended, not the original bitWidth for $src.
2583 def : T2Pat<(and top16Zero:$src, t2_so_imm_notSext:$imm),
2584             (t2BICri rGPR:$src, t2_so_imm_notSext:$imm)>;
2585
2586
2587 // FIXME: Disable this pattern on Darwin to workaround an assembler bug.
2588 def : T2Pat<(or      rGPR:$src, t2_so_imm_not:$imm),
2589             (t2ORNri rGPR:$src, t2_so_imm_not:$imm)>,
2590             Requires<[IsThumb2]>;
2591
2592 def : T2Pat<(t2_so_imm_not:$src),
2593             (t2MVNi t2_so_imm_not:$src)>;
2594
2595 //===----------------------------------------------------------------------===//
2596 //  Multiply Instructions.
2597 //
2598 let isCommutable = 1 in
2599 def t2MUL: T2ThreeReg<(outs rGPR:$Rd), (ins rGPR:$Rn, rGPR:$Rm), IIC_iMUL32,
2600                 "mul", "\t$Rd, $Rn, $Rm",
2601                 [(set rGPR:$Rd, (mul rGPR:$Rn, rGPR:$Rm))]>,
2602            Sched<[WriteMUL32, ReadMUL, ReadMUL]> {
2603   let Inst{31-27} = 0b11111;
2604   let Inst{26-23} = 0b0110;
2605   let Inst{22-20} = 0b000;
2606   let Inst{15-12} = 0b1111; // Ra = 0b1111 (no accumulate)
2607   let Inst{7-4} = 0b0000; // Multiply
2608 }
2609
2610 class T2FourRegMLA<bits<4> op7_4, string opc, list<dag> pattern>
2611   : T2FourReg<(outs rGPR:$Rd), (ins rGPR:$Rn, rGPR:$Rm, rGPR:$Ra), IIC_iMAC32,
2612                opc, "\t$Rd, $Rn, $Rm, $Ra", pattern>,
2613                Requires<[IsThumb2, UseMulOps]>,
2614     Sched<[WriteMAC32, ReadMUL, ReadMUL, ReadMAC]>  {
2615   let Inst{31-27} = 0b11111;
2616   let Inst{26-23} = 0b0110;
2617   let Inst{22-20} = 0b000;
2618   let Inst{7-4} = op7_4;
2619 }
2620
2621 def t2MLA : T2FourRegMLA<0b0000, "mla",
2622                          [(set rGPR:$Rd, (add (mul rGPR:$Rn, rGPR:$Rm),
2623                                                rGPR:$Ra))]>;
2624 def t2MLS: T2FourRegMLA<0b0001, "mls",
2625                         [(set rGPR:$Rd, (sub rGPR:$Ra, (mul rGPR:$Rn,
2626                                                             rGPR:$Rm)))]>;
2627
2628 // Extra precision multiplies with low / high results
2629 let hasSideEffects = 0 in {
2630 let isCommutable = 1 in {
2631 def t2SMULL : T2MulLong<0b000, 0b0000, "smull",
2632                         [(set rGPR:$RdLo, rGPR:$RdHi,
2633                               (smullohi rGPR:$Rn, rGPR:$Rm))]>;
2634 def t2UMULL : T2MulLong<0b010, 0b0000, "umull",
2635                         [(set rGPR:$RdLo, rGPR:$RdHi,
2636                               (umullohi rGPR:$Rn, rGPR:$Rm))]>;
2637 } // isCommutable
2638
2639 // Multiply + accumulate
2640 def t2SMLAL : T2MlaLong<0b100, 0b0000, "smlal">;
2641 def t2UMLAL : T2MlaLong<0b110, 0b0000, "umlal">;
2642 def t2UMAAL : T2MlaLong<0b110, 0b0110, "umaal">, Requires<[IsThumb2, HasDSP]>;
2643 } // hasSideEffects
2644
2645 // Rounding variants of the below included for disassembly only
2646
2647 // Most significant word multiply
2648 class T2SMMUL<bits<4> op7_4, string opc, list<dag> pattern>
2649   : T2ThreeReg<(outs rGPR:$Rd),
2650                (ins rGPR:$Rn, rGPR:$Rm), IIC_iMUL32,
2651                opc, "\t$Rd, $Rn, $Rm", pattern>,
2652                Requires<[IsThumb2, HasDSP]>,
2653     Sched<[WriteMUL32, ReadMUL, ReadMUL]> {
2654   let Inst{31-27} = 0b11111;
2655   let Inst{26-23} = 0b0110;
2656   let Inst{22-20} = 0b101;
2657   let Inst{15-12} = 0b1111; // Ra = 0b1111 (no accumulate)
2658   let Inst{7-4} = op7_4;
2659 }
2660 def t2SMMUL : T2SMMUL<0b0000, "smmul", [(set rGPR:$Rd, (mulhs rGPR:$Rn,
2661                                                               rGPR:$Rm))]>;
2662 def t2SMMULR : T2SMMUL<0b0001, "smmulr", []>;
2663
2664 class T2FourRegSMMLA<bits<3> op22_20, bits<4> op7_4, string opc,
2665                      list<dag> pattern>
2666   : T2FourReg<(outs rGPR:$Rd), (ins rGPR:$Rn, rGPR:$Rm, rGPR:$Ra), IIC_iMAC32,
2667               opc, "\t$Rd, $Rn, $Rm, $Ra", pattern>,
2668               Requires<[IsThumb2, HasDSP, UseMulOps]>,
2669     Sched<[WriteMAC32, ReadMUL, ReadMUL, ReadMAC]> {
2670   let Inst{31-27} = 0b11111;
2671   let Inst{26-23} = 0b0110;
2672   let Inst{22-20} = op22_20;
2673   let Inst{7-4} = op7_4;
2674 }
2675
2676 def t2SMMLA :   T2FourRegSMMLA<0b101, 0b0000, "smmla",
2677                 [(set rGPR:$Rd, (add (mulhs rGPR:$Rm, rGPR:$Rn), rGPR:$Ra))]>;
2678 def t2SMMLAR:   T2FourRegSMMLA<0b101, 0b0001, "smmlar", []>;
2679 def t2SMMLS:    T2FourRegSMMLA<0b110, 0b0000, "smmls", []>;
2680 def t2SMMLSR:   T2FourRegSMMLA<0b110, 0b0001, "smmlsr", []>;
2681
2682 class T2ThreeRegSMUL<bits<3> op22_20, bits<2> op5_4, string opc,
2683                      list<dag> pattern>
2684   : T2ThreeReg<(outs rGPR:$Rd), (ins rGPR:$Rn, rGPR:$Rm), IIC_iMUL16, opc,
2685                "\t$Rd, $Rn, $Rm", pattern>,
2686     Requires<[IsThumb2, HasDSP]>,
2687     Sched<[WriteMUL16, ReadMUL, ReadMUL]> {
2688     let Inst{31-27} = 0b11111;
2689     let Inst{26-23} = 0b0110;
2690     let Inst{22-20} = op22_20;
2691     let Inst{15-12} = 0b1111; // Ra = 0b1111 (no accumulate)
2692     let Inst{7-6} = 0b00;
2693     let Inst{5-4} = op5_4;
2694 }
2695
2696 def t2SMULBB : T2ThreeRegSMUL<0b001, 0b00, "smulbb",
2697              [(set rGPR:$Rd, (mul (sext_inreg rGPR:$Rn, i16),
2698                                    (sext_inreg rGPR:$Rm, i16)))]>;
2699 def t2SMULBT : T2ThreeRegSMUL<0b001, 0b01, "smulbt",
2700              [(set rGPR:$Rd, (mul (sext_inreg rGPR:$Rn, i16),
2701                                    (sra rGPR:$Rm, (i32 16))))]>;
2702 def t2SMULTB : T2ThreeRegSMUL<0b001, 0b10, "smultb",
2703              [(set rGPR:$Rd, (mul (sra rGPR:$Rn, (i32 16)),
2704                                    (sext_inreg rGPR:$Rm, i16)))]>;
2705 def t2SMULTT : T2ThreeRegSMUL<0b001, 0b11, "smultt",
2706              [(set rGPR:$Rd, (mul (sra rGPR:$Rn, (i32 16)),
2707                                    (sra rGPR:$Rm, (i32 16))))]>;
2708 def t2SMULWB : T2ThreeRegSMUL<0b011, 0b00, "smulwb",
2709              [(set rGPR:$Rd, (ARMsmulwb rGPR:$Rn, rGPR:$Rm))]>;
2710 def t2SMULWT : T2ThreeRegSMUL<0b011, 0b01, "smulwt",
2711              [(set rGPR:$Rd, (ARMsmulwt rGPR:$Rn, rGPR:$Rm))]>;
2712
2713 def : Thumb2DSPPat<(mul sext_16_node:$Rm, sext_16_node:$Rn),
2714                    (t2SMULBB rGPR:$Rm, rGPR:$Rn)>;
2715 def : Thumb2DSPPat<(mul sext_16_node:$Rn, (sra rGPR:$Rm, (i32 16))),
2716                    (t2SMULBT rGPR:$Rn, rGPR:$Rm)>;
2717 def : Thumb2DSPPat<(mul (sra rGPR:$Rn, (i32 16)), sext_16_node:$Rm),
2718                    (t2SMULTB rGPR:$Rn, rGPR:$Rm)>;
2719 def : Thumb2DSPPat<(int_arm_smulbb rGPR:$Rn, rGPR:$Rm),
2720                    (t2SMULBB rGPR:$Rn, rGPR:$Rm)>;
2721 def : Thumb2DSPPat<(int_arm_smulbt rGPR:$Rn, rGPR:$Rm),
2722                    (t2SMULBT rGPR:$Rn, rGPR:$Rm)>;
2723 def : Thumb2DSPPat<(int_arm_smultb rGPR:$Rn, rGPR:$Rm),
2724                    (t2SMULTB rGPR:$Rn, rGPR:$Rm)>;
2725 def : Thumb2DSPPat<(int_arm_smultt rGPR:$Rn, rGPR:$Rm),
2726                    (t2SMULTT rGPR:$Rn, rGPR:$Rm)>;
2727 def : Thumb2DSPPat<(int_arm_smulwb rGPR:$Rn, rGPR:$Rm),
2728                    (t2SMULWB rGPR:$Rn, rGPR:$Rm)>;
2729 def : Thumb2DSPPat<(int_arm_smulwt rGPR:$Rn, rGPR:$Rm),
2730                    (t2SMULWT rGPR:$Rn, rGPR:$Rm)>;
2731
2732 class T2FourRegSMLA<bits<3> op22_20, bits<2> op5_4, string opc,
2733                     list<dag> pattern>
2734   : T2FourReg<(outs rGPR:$Rd), (ins rGPR:$Rn, rGPR:$Rm, rGPR:$Ra), IIC_iMUL16,
2735                opc, "\t$Rd, $Rn, $Rm, $Ra", pattern>,
2736     Requires<[IsThumb2, HasDSP, UseMulOps]>,
2737     Sched<[WriteMAC16, ReadMUL, ReadMUL, ReadMAC]>  {
2738     let Inst{31-27} = 0b11111;
2739     let Inst{26-23} = 0b0110;
2740     let Inst{22-20} = op22_20;
2741     let Inst{7-6} = 0b00;
2742     let Inst{5-4} = op5_4;
2743 }
2744
2745 def t2SMLABB : T2FourRegSMLA<0b001, 0b00, "smlabb",
2746              [(set rGPR:$Rd, (add rGPR:$Ra,
2747                                (mul (sext_inreg rGPR:$Rn, i16),
2748                                      (sext_inreg rGPR:$Rm, i16))))]>;
2749 def t2SMLABT : T2FourRegSMLA<0b001, 0b01, "smlabt",
2750              [(set rGPR:$Rd, (add rGPR:$Ra, (mul (sext_inreg rGPR:$Rn, i16),
2751                                                  (sra rGPR:$Rm, (i32 16)))))]>;
2752 def t2SMLATB : T2FourRegSMLA<0b001, 0b10, "smlatb",
2753              [(set rGPR:$Rd, (add rGPR:$Ra, (mul (sra rGPR:$Rn, (i32 16)),
2754                                                 (sext_inreg rGPR:$Rm, i16))))]>;
2755 def t2SMLATT : T2FourRegSMLA<0b001, 0b11, "smlatt",
2756              [(set rGPR:$Rd, (add rGPR:$Ra, (mul (sra rGPR:$Rn, (i32 16)),
2757                                                  (sra rGPR:$Rm, (i32 16)))))]>;
2758 def t2SMLAWB : T2FourRegSMLA<0b011, 0b00, "smlawb",
2759              [(set rGPR:$Rd, (add rGPR:$Ra, (ARMsmulwb rGPR:$Rn, rGPR:$Rm)))]>;
2760 def t2SMLAWT : T2FourRegSMLA<0b011, 0b01, "smlawt",
2761              [(set rGPR:$Rd, (add rGPR:$Ra, (ARMsmulwt rGPR:$Rn, rGPR:$Rm)))]>;
2762
2763 def : Thumb2DSPMulPat<(add rGPR:$Ra, (mul sext_16_node:$Rn, sext_16_node:$Rm)),
2764                       (t2SMLABB rGPR:$Rn, rGPR:$Rm, rGPR:$Ra)>;
2765 def : Thumb2DSPMulPat<(add rGPR:$Ra,
2766                         (mul sext_16_node:$Rn, (sra rGPR:$Rm, (i32 16)))),
2767                       (t2SMLABT rGPR:$Rn, rGPR:$Rm, rGPR:$Ra)>;
2768 def : Thumb2DSPMulPat<(add rGPR:$Ra,
2769                         (mul (sra rGPR:$Rn, (i32 16)), sext_16_node:$Rm)),
2770                       (t2SMLATB rGPR:$Rn, rGPR:$Rm, rGPR:$Ra)>;
2771
2772 def : Thumb2DSPPat<(int_arm_smlabb GPR:$a, GPR:$b, GPR:$acc),
2773                    (t2SMLABB GPR:$a, GPR:$b, GPR:$acc)>;
2774 def : Thumb2DSPPat<(int_arm_smlabt GPR:$a, GPR:$b, GPR:$acc),
2775                    (t2SMLABT GPR:$a, GPR:$b, GPR:$acc)>;
2776 def : Thumb2DSPPat<(int_arm_smlatb GPR:$a, GPR:$b, GPR:$acc),
2777                    (t2SMLATB GPR:$a, GPR:$b, GPR:$acc)>;
2778 def : Thumb2DSPPat<(int_arm_smlatt GPR:$a, GPR:$b, GPR:$acc),
2779                    (t2SMLATT GPR:$a, GPR:$b, GPR:$acc)>;
2780 def : Thumb2DSPPat<(int_arm_smlawb GPR:$a, GPR:$b, GPR:$acc),
2781                    (t2SMLAWB GPR:$a, GPR:$b, GPR:$acc)>;
2782 def : Thumb2DSPPat<(int_arm_smlawt GPR:$a, GPR:$b, GPR:$acc),
2783                    (t2SMLAWT GPR:$a, GPR:$b, GPR:$acc)>;
2784
2785 // Halfword multiple accumulate long: SMLAL<x><y>
2786 def t2SMLALBB : T2MlaLong<0b100, 0b1000, "smlalbb">,
2787                           Requires<[IsThumb2, HasDSP]>;
2788 def t2SMLALBT : T2MlaLong<0b100, 0b1001, "smlalbt">,
2789                           Requires<[IsThumb2, HasDSP]>;
2790 def t2SMLALTB : T2MlaLong<0b100, 0b1010, "smlaltb">,
2791                           Requires<[IsThumb2, HasDSP]>;
2792 def t2SMLALTT : T2MlaLong<0b100, 0b1011, "smlaltt">,
2793                           Requires<[IsThumb2, HasDSP]>;
2794
2795 def : Thumb2DSPPat<(ARMsmlalbb GPR:$Rn, GPR:$Rm, GPR:$RLo, GPR:$RHi),
2796                    (t2SMLALBB $Rn, $Rm, $RLo, $RHi)>;
2797 def : Thumb2DSPPat<(ARMsmlalbt GPR:$Rn, GPR:$Rm, GPR:$RLo, GPR:$RHi),
2798                    (t2SMLALBT $Rn, $Rm, $RLo, $RHi)>;
2799 def : Thumb2DSPPat<(ARMsmlaltb GPR:$Rn, GPR:$Rm, GPR:$RLo, GPR:$RHi),
2800                    (t2SMLALTB $Rn, $Rm, $RLo, $RHi)>;
2801 def : Thumb2DSPPat<(ARMsmlaltt GPR:$Rn, GPR:$Rm, GPR:$RLo, GPR:$RHi),
2802                    (t2SMLALTT $Rn, $Rm, $RLo, $RHi)>;
2803
2804 class T2DualHalfMul<bits<3> op22_20, bits<4> op7_4, string opc,
2805                     Intrinsic intrinsic>
2806   : T2ThreeReg_mac<0, op22_20, op7_4,
2807                    (outs rGPR:$Rd),
2808                    (ins rGPR:$Rn, rGPR:$Rm),
2809                    IIC_iMAC32, opc, "\t$Rd, $Rn, $Rm",
2810                    [(set rGPR:$Rd, (intrinsic rGPR:$Rn, rGPR:$Rm))]>,
2811                    Requires<[IsThumb2, HasDSP]>,
2812    Sched<[WriteMAC32, ReadMUL, ReadMUL, ReadMAC]> {
2813   let Inst{15-12} = 0b1111;
2814 }
2815
2816 // Dual halfword multiple: SMUAD, SMUSD, SMLAD, SMLSD, SMLALD, SMLSLD
2817 def t2SMUAD: T2DualHalfMul<0b010, 0b0000, "smuad", int_arm_smuad>;
2818 def t2SMUADX: T2DualHalfMul<0b010, 0b0001, "smuadx", int_arm_smuadx>;
2819 def t2SMUSD: T2DualHalfMul<0b100, 0b0000, "smusd", int_arm_smusd>;
2820 def t2SMUSDX: T2DualHalfMul<0b100, 0b0001, "smusdx", int_arm_smusdx>;
2821
2822 class T2DualHalfMulAdd<bits<3> op22_20, bits<4> op7_4, string opc,
2823                        Intrinsic intrinsic>
2824   : T2FourReg_mac<0, op22_20, op7_4,
2825                   (outs rGPR:$Rd),
2826                   (ins rGPR:$Rn, rGPR:$Rm, rGPR:$Ra),
2827                   IIC_iMAC32, opc, "\t$Rd, $Rn, $Rm, $Ra",
2828                   [(set rGPR:$Rd, (intrinsic rGPR:$Rn, rGPR:$Rm, rGPR:$Ra))]>,
2829                   Requires<[IsThumb2, HasDSP]>;
2830
2831 def t2SMLAD   : T2DualHalfMulAdd<0b010, 0b0000, "smlad", int_arm_smlad>;
2832 def t2SMLADX  : T2DualHalfMulAdd<0b010, 0b0001, "smladx", int_arm_smladx>;
2833 def t2SMLSD   : T2DualHalfMulAdd<0b100, 0b0000, "smlsd", int_arm_smlsd>;
2834 def t2SMLSDX  : T2DualHalfMulAdd<0b100, 0b0001, "smlsdx", int_arm_smlsdx>;
2835
2836 class T2DualHalfMulAddLong<bits<3> op22_20, bits<4> op7_4, string opc>
2837   : T2FourReg_mac<1, op22_20, op7_4,
2838                   (outs rGPR:$Ra, rGPR:$Rd),
2839                   (ins rGPR:$Rn, rGPR:$Rm, rGPR:$RLo, rGPR:$RHi),
2840                   IIC_iMAC64, opc, "\t$Ra, $Rd, $Rn, $Rm", []>,
2841                   RegConstraint<"$Ra = $RLo, $Rd = $RHi">,
2842                   Requires<[IsThumb2, HasDSP]>,
2843     Sched<[WriteMAC64Lo, WriteMAC64Hi, ReadMUL, ReadMUL, ReadMAC, ReadMAC]>;
2844
2845 def t2SMLALD  : T2DualHalfMulAddLong<0b100, 0b1100, "smlald">;
2846 def t2SMLALDX : T2DualHalfMulAddLong<0b100, 0b1101, "smlaldx">;
2847 def t2SMLSLD  : T2DualHalfMulAddLong<0b101, 0b1100, "smlsld">;
2848 def t2SMLSLDX : T2DualHalfMulAddLong<0b101, 0b1101, "smlsldx">;
2849
2850 def : Thumb2DSPPat<(ARMSmlald rGPR:$Rn, rGPR:$Rm, rGPR:$RLo, rGPR:$RHi),
2851                    (t2SMLALD rGPR:$Rn, rGPR:$Rm, rGPR:$RLo, rGPR:$RHi)>;
2852 def : Thumb2DSPPat<(ARMSmlaldx rGPR:$Rn, rGPR:$Rm, rGPR:$RLo, rGPR:$RHi),
2853                    (t2SMLALDX rGPR:$Rn, rGPR:$Rm, rGPR:$RLo, rGPR:$RHi)>;
2854 def : Thumb2DSPPat<(ARMSmlsld rGPR:$Rn, rGPR:$Rm, rGPR:$RLo, rGPR:$RHi),
2855                    (t2SMLSLD rGPR:$Rn, rGPR:$Rm, rGPR:$RLo, rGPR:$RHi)>;
2856 def : Thumb2DSPPat<(ARMSmlsldx rGPR:$Rn, rGPR:$Rm, rGPR:$RLo, rGPR:$RHi),
2857                    (t2SMLSLDX rGPR:$Rn, rGPR:$Rm, rGPR:$RLo, rGPR:$RHi)>;
2858
2859 //===----------------------------------------------------------------------===//
2860 //  Division Instructions.
2861 //  Signed and unsigned division on v7-M
2862 //
2863 def t2SDIV : T2ThreeReg<(outs rGPR:$Rd), (ins rGPR:$Rn, rGPR:$Rm), IIC_iDIV,
2864                  "sdiv", "\t$Rd, $Rn, $Rm",
2865                  [(set rGPR:$Rd, (sdiv rGPR:$Rn, rGPR:$Rm))]>,
2866                  Requires<[HasDivideInThumb, IsThumb, HasV8MBaseline]>,
2867              Sched<[WriteDIV]> {
2868   let Inst{31-27} = 0b11111;
2869   let Inst{26-21} = 0b011100;
2870   let Inst{20} = 0b1;
2871   let Inst{15-12} = 0b1111;
2872   let Inst{7-4} = 0b1111;
2873 }
2874
2875 def t2UDIV : T2ThreeReg<(outs rGPR:$Rd), (ins rGPR:$Rn, rGPR:$Rm), IIC_iDIV,
2876                  "udiv", "\t$Rd, $Rn, $Rm",
2877                  [(set rGPR:$Rd, (udiv rGPR:$Rn, rGPR:$Rm))]>,
2878                  Requires<[HasDivideInThumb, IsThumb, HasV8MBaseline]>,
2879              Sched<[WriteDIV]> {
2880   let Inst{31-27} = 0b11111;
2881   let Inst{26-21} = 0b011101;
2882   let Inst{20} = 0b1;
2883   let Inst{15-12} = 0b1111;
2884   let Inst{7-4} = 0b1111;
2885 }
2886
2887 //===----------------------------------------------------------------------===//
2888 //  Misc. Arithmetic Instructions.
2889 //
2890
2891 class T2I_misc<bits<2> op1, bits<2> op2, dag oops, dag iops,
2892       InstrItinClass itin, string opc, string asm, list<dag> pattern>
2893   : T2ThreeReg<oops, iops, itin, opc, asm, pattern> {
2894   let Inst{31-27} = 0b11111;
2895   let Inst{26-22} = 0b01010;
2896   let Inst{21-20} = op1;
2897   let Inst{15-12} = 0b1111;
2898   let Inst{7-6} = 0b10;
2899   let Inst{5-4} = op2;
2900   let Rn{3-0} = Rm;
2901 }
2902
2903 def t2CLZ : T2I_misc<0b11, 0b00, (outs rGPR:$Rd), (ins rGPR:$Rm), IIC_iUNAr,
2904                     "clz", "\t$Rd, $Rm", [(set rGPR:$Rd, (ctlz rGPR:$Rm))]>,
2905                     Sched<[WriteALU]>;
2906
2907 def t2RBIT : T2I_misc<0b01, 0b10, (outs rGPR:$Rd), (ins rGPR:$Rm), IIC_iUNAr,
2908                       "rbit", "\t$Rd, $Rm",
2909                       [(set rGPR:$Rd, (bitreverse rGPR:$Rm))]>,
2910                       Sched<[WriteALU]>;
2911
2912 def t2REV : T2I_misc<0b01, 0b00, (outs rGPR:$Rd), (ins rGPR:$Rm), IIC_iUNAr,
2913                  "rev", ".w\t$Rd, $Rm", [(set rGPR:$Rd, (bswap rGPR:$Rm))]>,
2914                  Sched<[WriteALU]>;
2915
2916 def t2REV16 : T2I_misc<0b01, 0b01, (outs rGPR:$Rd), (ins rGPR:$Rm), IIC_iUNAr,
2917                        "rev16", ".w\t$Rd, $Rm",
2918                 [(set rGPR:$Rd, (rotr (bswap rGPR:$Rm), (i32 16)))]>,
2919                 Sched<[WriteALU]>;
2920
2921 def t2REVSH : T2I_misc<0b01, 0b11, (outs rGPR:$Rd), (ins rGPR:$Rm), IIC_iUNAr,
2922                        "revsh", ".w\t$Rd, $Rm",
2923                  [(set rGPR:$Rd, (sra (bswap rGPR:$Rm), (i32 16)))]>,
2924                  Sched<[WriteALU]>;
2925
2926 def : T2Pat<(or (sra (shl rGPR:$Rm, (i32 24)), (i32 16)),
2927                 (and (srl rGPR:$Rm, (i32 8)), 0xFF)),
2928             (t2REVSH rGPR:$Rm)>;
2929
2930 def t2PKHBT : T2ThreeReg<
2931             (outs rGPR:$Rd), (ins rGPR:$Rn, rGPR:$Rm, pkh_lsl_amt:$sh),
2932                   IIC_iBITsi, "pkhbt", "\t$Rd, $Rn, $Rm$sh",
2933                   [(set rGPR:$Rd, (or (and rGPR:$Rn, 0xFFFF),
2934                                       (and (shl rGPR:$Rm, pkh_lsl_amt:$sh),
2935                                            0xFFFF0000)))]>,
2936                   Requires<[HasDSP, IsThumb2]>,
2937                   Sched<[WriteALUsi, ReadALU]> {
2938   let Inst{31-27} = 0b11101;
2939   let Inst{26-25} = 0b01;
2940   let Inst{24-20} = 0b01100;
2941   let Inst{5} = 0; // BT form
2942   let Inst{4} = 0;
2943
2944   bits<5> sh;
2945   let Inst{14-12} = sh{4-2};
2946   let Inst{7-6}   = sh{1-0};
2947 }
2948
2949 // Alternate cases for PKHBT where identities eliminate some nodes.
2950 def : T2Pat<(or (and rGPR:$src1, 0xFFFF), (and rGPR:$src2, 0xFFFF0000)),
2951             (t2PKHBT rGPR:$src1, rGPR:$src2, 0)>,
2952             Requires<[HasDSP, IsThumb2]>;
2953 def : T2Pat<(or (and rGPR:$src1, 0xFFFF), (shl rGPR:$src2, imm16_31:$sh)),
2954             (t2PKHBT rGPR:$src1, rGPR:$src2, imm16_31:$sh)>,
2955             Requires<[HasDSP, IsThumb2]>;
2956
2957 // Note: Shifts of 1-15 bits will be transformed to srl instead of sra and
2958 // will match the pattern below.
2959 def t2PKHTB : T2ThreeReg<
2960                   (outs rGPR:$Rd), (ins rGPR:$Rn, rGPR:$Rm, pkh_asr_amt:$sh),
2961                   IIC_iBITsi, "pkhtb", "\t$Rd, $Rn, $Rm$sh",
2962                   [(set rGPR:$Rd, (or (and rGPR:$Rn, 0xFFFF0000),
2963                                        (and (sra rGPR:$Rm, pkh_asr_amt:$sh),
2964                                             0xFFFF)))]>,
2965                   Requires<[HasDSP, IsThumb2]>,
2966                   Sched<[WriteALUsi, ReadALU]> {
2967   let Inst{31-27} = 0b11101;
2968   let Inst{26-25} = 0b01;
2969   let Inst{24-20} = 0b01100;
2970   let Inst{5} = 1; // TB form
2971   let Inst{4} = 0;
2972
2973   bits<5> sh;
2974   let Inst{14-12} = sh{4-2};
2975   let Inst{7-6}   = sh{1-0};
2976 }
2977
2978 // Alternate cases for PKHTB where identities eliminate some nodes.  Note that
2979 // a shift amount of 0 is *not legal* here, it is PKHBT instead.
2980 // We also can not replace a srl (17..31) by an arithmetic shift we would use in
2981 // pkhtb src1, src2, asr (17..31).
2982 def : T2Pat<(or (and rGPR:$src1, 0xFFFF0000), (srl rGPR:$src2, imm16:$sh)),
2983             (t2PKHTB rGPR:$src1, rGPR:$src2, imm16:$sh)>,
2984             Requires<[HasDSP, IsThumb2]>;
2985 def : T2Pat<(or (and rGPR:$src1, 0xFFFF0000), (sra rGPR:$src2, imm16_31:$sh)),
2986             (t2PKHTB rGPR:$src1, rGPR:$src2, imm16_31:$sh)>,
2987             Requires<[HasDSP, IsThumb2]>;
2988 def : T2Pat<(or (and rGPR:$src1, 0xFFFF0000),
2989                 (and (srl rGPR:$src2, imm1_15:$sh), 0xFFFF)),
2990             (t2PKHTB rGPR:$src1, rGPR:$src2, imm1_15:$sh)>,
2991             Requires<[HasDSP, IsThumb2]>;
2992
2993 //===----------------------------------------------------------------------===//
2994 // CRC32 Instructions
2995 //
2996 // Polynomials:
2997 // + CRC32{B,H,W}       0x04C11DB7
2998 // + CRC32C{B,H,W}      0x1EDC6F41
2999 //
3000
3001 class T2I_crc32<bit C, bits<2> sz, string suffix, SDPatternOperator builtin>
3002   : T2ThreeRegNoP<(outs rGPR:$Rd), (ins rGPR:$Rn, rGPR:$Rm), NoItinerary,
3003                !strconcat("crc32", suffix, "\t$Rd, $Rn, $Rm"),
3004                [(set rGPR:$Rd, (builtin rGPR:$Rn, rGPR:$Rm))]>,
3005                Requires<[IsThumb2, HasV8, HasCRC]> {
3006   let Inst{31-27} = 0b11111;
3007   let Inst{26-21} = 0b010110;
3008   let Inst{20}    = C;
3009   let Inst{15-12} = 0b1111;
3010   let Inst{7-6}   = 0b10;
3011   let Inst{5-4}   = sz;
3012 }
3013
3014 def t2CRC32B  : T2I_crc32<0, 0b00, "b", int_arm_crc32b>;
3015 def t2CRC32CB : T2I_crc32<1, 0b00, "cb", int_arm_crc32cb>;
3016 def t2CRC32H  : T2I_crc32<0, 0b01, "h", int_arm_crc32h>;
3017 def t2CRC32CH : T2I_crc32<1, 0b01, "ch", int_arm_crc32ch>;
3018 def t2CRC32W  : T2I_crc32<0, 0b10, "w", int_arm_crc32w>;
3019 def t2CRC32CW : T2I_crc32<1, 0b10, "cw", int_arm_crc32cw>;
3020
3021 //===----------------------------------------------------------------------===//
3022 //  Comparison Instructions...
3023 //
3024 defm t2CMP  : T2I_cmp_irs<0b1101, "cmp",
3025                           IIC_iCMPi, IIC_iCMPr, IIC_iCMPsi, ARMcmp>;
3026
3027 def : T2Pat<(ARMcmpZ  GPRnopc:$lhs, t2_so_imm:$imm),
3028             (t2CMPri  GPRnopc:$lhs, t2_so_imm:$imm)>;
3029 def : T2Pat<(ARMcmpZ  GPRnopc:$lhs, rGPR:$rhs),
3030             (t2CMPrr  GPRnopc:$lhs, rGPR:$rhs)>;
3031 def : T2Pat<(ARMcmpZ  GPRnopc:$lhs, t2_so_reg:$rhs),
3032             (t2CMPrs  GPRnopc:$lhs, t2_so_reg:$rhs)>;
3033
3034 let isCompare = 1, Defs = [CPSR] in {
3035    // shifted imm
3036    def t2CMNri : T2OneRegCmpImm<
3037                 (outs), (ins GPRnopc:$Rn, t2_so_imm:$imm), IIC_iCMPi,
3038                 "cmn", ".w\t$Rn, $imm",
3039                 [(ARMcmn GPRnopc:$Rn, (ineg t2_so_imm:$imm))]>,
3040                 Sched<[WriteCMP, ReadALU]> {
3041      let Inst{31-27} = 0b11110;
3042      let Inst{25} = 0;
3043      let Inst{24-21} = 0b1000;
3044      let Inst{20} = 1; // The S bit.
3045      let Inst{15} = 0;
3046      let Inst{11-8} = 0b1111; // Rd
3047    }
3048    // register
3049    def t2CMNzrr : T2TwoRegCmp<
3050                 (outs), (ins GPRnopc:$Rn, rGPR:$Rm), IIC_iCMPr,
3051                 "cmn", ".w\t$Rn, $Rm",
3052                 [(BinOpFrag<(ARMcmpZ node:$LHS,(ineg node:$RHS))>
3053                   GPRnopc:$Rn, rGPR:$Rm)]>, Sched<[WriteCMP, ReadALU, ReadALU]> {
3054      let Inst{31-27} = 0b11101;
3055      let Inst{26-25} = 0b01;
3056      let Inst{24-21} = 0b1000;
3057      let Inst{20} = 1; // The S bit.
3058      let Inst{14-12} = 0b000; // imm3
3059      let Inst{11-8} = 0b1111; // Rd
3060      let Inst{7-6} = 0b00; // imm2
3061      let Inst{5-4} = 0b00; // type
3062    }
3063    // shifted register
3064    def t2CMNzrs : T2OneRegCmpShiftedReg<
3065                 (outs), (ins GPRnopc:$Rn, t2_so_reg:$ShiftedRm), IIC_iCMPsi,
3066                 "cmn", ".w\t$Rn, $ShiftedRm",
3067                 [(BinOpFrag<(ARMcmpZ node:$LHS,(ineg node:$RHS))>
3068                   GPRnopc:$Rn, t2_so_reg:$ShiftedRm)]>,
3069                   Sched<[WriteCMPsi, ReadALU, ReadALU]> {
3070      let Inst{31-27} = 0b11101;
3071      let Inst{26-25} = 0b01;
3072      let Inst{24-21} = 0b1000;
3073      let Inst{20} = 1; // The S bit.
3074      let Inst{11-8} = 0b1111; // Rd
3075    }
3076 }
3077
3078 // Assembler aliases w/o the ".w" suffix.
3079 // No alias here for 'rr' version as not all instantiations of this multiclass
3080 // want one (CMP in particular, does not).
3081 def : t2InstAlias<"cmn${p} $Rn, $imm",
3082    (t2CMNri GPRnopc:$Rn, t2_so_imm:$imm, pred:$p)>;
3083 def : t2InstAlias<"cmn${p} $Rn, $shift",
3084    (t2CMNzrs GPRnopc:$Rn, t2_so_reg:$shift, pred:$p)>;
3085
3086 def : T2Pat<(ARMcmp  GPR:$src, t2_so_imm_neg:$imm),
3087             (t2CMNri GPR:$src, t2_so_imm_neg:$imm)>;
3088
3089 def : T2Pat<(ARMcmpZ GPRnopc:$src, t2_so_imm_neg:$imm),
3090             (t2CMNri GPRnopc:$src, t2_so_imm_neg:$imm)>;
3091
3092 defm t2TST  : T2I_cmp_irs<0b0000, "tst",
3093                           IIC_iTSTi, IIC_iTSTr, IIC_iTSTsi,
3094                          BinOpFrag<(ARMcmpZ (and_su node:$LHS, node:$RHS), 0)>>;
3095 defm t2TEQ  : T2I_cmp_irs<0b0100, "teq",
3096                           IIC_iTSTi, IIC_iTSTr, IIC_iTSTsi,
3097                          BinOpFrag<(ARMcmpZ (xor_su node:$LHS, node:$RHS), 0)>>;
3098
3099 // Conditional moves
3100 let hasSideEffects = 0 in {
3101
3102 let isCommutable = 1, isSelect = 1 in
3103 def t2MOVCCr : t2PseudoInst<(outs rGPR:$Rd),
3104                             (ins rGPR:$false, rGPR:$Rm, cmovpred:$p),
3105                             4, IIC_iCMOVr,
3106                             [(set rGPR:$Rd, (ARMcmov rGPR:$false, rGPR:$Rm,
3107                                                      cmovpred:$p))]>,
3108                RegConstraint<"$false = $Rd">, Sched<[WriteALU]>;
3109
3110 let isMoveImm = 1 in
3111 def t2MOVCCi
3112     : t2PseudoInst<(outs rGPR:$Rd),
3113                    (ins rGPR:$false, t2_so_imm:$imm, cmovpred:$p),
3114                    4, IIC_iCMOVi,
3115                    [(set rGPR:$Rd, (ARMcmov rGPR:$false,t2_so_imm:$imm,
3116                                             cmovpred:$p))]>,
3117       RegConstraint<"$false = $Rd">, Sched<[WriteALU]>;
3118
3119 let isCodeGenOnly = 1 in {
3120 let isMoveImm = 1 in
3121 def t2MOVCCi16
3122     : t2PseudoInst<(outs rGPR:$Rd),
3123                    (ins  rGPR:$false, imm0_65535_expr:$imm, cmovpred:$p),
3124                    4, IIC_iCMOVi,
3125                    [(set rGPR:$Rd, (ARMcmov rGPR:$false, imm0_65535:$imm,
3126                                             cmovpred:$p))]>,
3127       RegConstraint<"$false = $Rd">, Sched<[WriteALU]>;
3128
3129 let isMoveImm = 1 in
3130 def t2MVNCCi
3131     : t2PseudoInst<(outs rGPR:$Rd),
3132                    (ins rGPR:$false, t2_so_imm:$imm, cmovpred:$p),
3133                    4, IIC_iCMOVi,
3134                    [(set rGPR:$Rd,
3135                          (ARMcmov rGPR:$false, t2_so_imm_not:$imm,
3136                                   cmovpred:$p))]>,
3137       RegConstraint<"$false = $Rd">, Sched<[WriteALU]>;
3138
3139 class MOVCCShPseudo<SDPatternOperator opnode, Operand ty>
3140     : t2PseudoInst<(outs rGPR:$Rd),
3141                    (ins rGPR:$false, rGPR:$Rm, i32imm:$imm, cmovpred:$p),
3142                    4, IIC_iCMOVsi,
3143                    [(set rGPR:$Rd, (ARMcmov rGPR:$false,
3144                                             (opnode rGPR:$Rm, (i32 ty:$imm)),
3145                                             cmovpred:$p))]>,
3146       RegConstraint<"$false = $Rd">, Sched<[WriteALU]>;
3147
3148 def t2MOVCClsl : MOVCCShPseudo<shl,  imm0_31>;
3149 def t2MOVCClsr : MOVCCShPseudo<srl,  imm_sr>;
3150 def t2MOVCCasr : MOVCCShPseudo<sra,  imm_sr>;
3151 def t2MOVCCror : MOVCCShPseudo<rotr, imm0_31>;
3152
3153 let isMoveImm = 1 in
3154 def t2MOVCCi32imm
3155     : t2PseudoInst<(outs rGPR:$dst),
3156                    (ins rGPR:$false, i32imm:$src, cmovpred:$p),
3157                    8, IIC_iCMOVix2,
3158                    [(set rGPR:$dst, (ARMcmov rGPR:$false, imm:$src,
3159                                              cmovpred:$p))]>,
3160       RegConstraint<"$false = $dst">;
3161 } // isCodeGenOnly = 1
3162
3163 } // hasSideEffects
3164
3165 //===----------------------------------------------------------------------===//
3166 // Atomic operations intrinsics
3167 //
3168
3169 // memory barriers protect the atomic sequences
3170 let hasSideEffects = 1 in {
3171 def t2DMB : T2I<(outs), (ins memb_opt:$opt), NoItinerary,
3172                 "dmb", "\t$opt", [(int_arm_dmb (i32 imm0_15:$opt))]>,
3173                 Requires<[IsThumb, HasDB]> {
3174   bits<4> opt;
3175   let Inst{31-4} = 0xf3bf8f5;
3176   let Inst{3-0} = opt;
3177 }
3178
3179 def t2DSB : T2I<(outs), (ins memb_opt:$opt), NoItinerary,
3180                 "dsb", "\t$opt", [(int_arm_dsb (i32 imm0_15:$opt))]>,
3181                 Requires<[IsThumb, HasDB]> {
3182   bits<4> opt;
3183   let Inst{31-4} = 0xf3bf8f4;
3184   let Inst{3-0} = opt;
3185 }
3186
3187 def t2ISB : T2I<(outs), (ins instsyncb_opt:$opt), NoItinerary,
3188                 "isb", "\t$opt", [(int_arm_isb (i32 imm0_15:$opt))]>,
3189                 Requires<[IsThumb, HasDB]> {
3190   bits<4> opt;
3191   let Inst{31-4} = 0xf3bf8f6;
3192   let Inst{3-0} = opt;
3193 }
3194 }
3195
3196 class T2I_ldrex<bits<4> opcod, dag oops, dag iops, AddrMode am, int sz,
3197                 InstrItinClass itin, string opc, string asm, string cstr,
3198                 list<dag> pattern, bits<4> rt2 = 0b1111>
3199   : Thumb2I<oops, iops, am, sz, itin, opc, asm, cstr, pattern> {
3200   let Inst{31-27} = 0b11101;
3201   let Inst{26-20} = 0b0001101;
3202   let Inst{11-8} = rt2;
3203   let Inst{7-4} = opcod;
3204   let Inst{3-0} = 0b1111;
3205
3206   bits<4> addr;
3207   bits<4> Rt;
3208   let Inst{19-16} = addr;
3209   let Inst{15-12} = Rt;
3210 }
3211 class T2I_strex<bits<4> opcod, dag oops, dag iops, AddrMode am, int sz,
3212                 InstrItinClass itin, string opc, string asm, string cstr,
3213                 list<dag> pattern, bits<4> rt2 = 0b1111>
3214   : Thumb2I<oops, iops, am, sz, itin, opc, asm, cstr, pattern> {
3215   let Inst{31-27} = 0b11101;
3216   let Inst{26-20} = 0b0001100;
3217   let Inst{11-8} = rt2;
3218   let Inst{7-4} = opcod;
3219
3220   bits<4> Rd;
3221   bits<4> addr;
3222   bits<4> Rt;
3223   let Inst{3-0}  = Rd;
3224   let Inst{19-16} = addr;
3225   let Inst{15-12} = Rt;
3226 }
3227
3228 let mayLoad = 1 in {
3229 def t2LDREXB : T2I_ldrex<0b0100, (outs rGPR:$Rt), (ins addr_offset_none:$addr),
3230                          AddrModeNone, 4, NoItinerary,
3231                          "ldrexb", "\t$Rt, $addr", "",
3232                          [(set rGPR:$Rt, (ldrex_1 addr_offset_none:$addr))]>,
3233                Requires<[IsThumb, HasV8MBaseline]>;
3234 def t2LDREXH : T2I_ldrex<0b0101, (outs rGPR:$Rt), (ins addr_offset_none:$addr),
3235                          AddrModeNone, 4, NoItinerary,
3236                          "ldrexh", "\t$Rt, $addr", "",
3237                          [(set rGPR:$Rt, (ldrex_2 addr_offset_none:$addr))]>,
3238                Requires<[IsThumb, HasV8MBaseline]>;
3239 def t2LDREX  : Thumb2I<(outs rGPR:$Rt), (ins t2addrmode_imm0_1020s4:$addr),
3240                        AddrModeNone, 4, NoItinerary,
3241                        "ldrex", "\t$Rt, $addr", "",
3242                      [(set rGPR:$Rt, (ldrex_4 t2addrmode_imm0_1020s4:$addr))]>,
3243                Requires<[IsThumb, HasV8MBaseline]> {
3244   bits<4> Rt;
3245   bits<12> addr;
3246   let Inst{31-27} = 0b11101;
3247   let Inst{26-20} = 0b0000101;
3248   let Inst{19-16} = addr{11-8};
3249   let Inst{15-12} = Rt;
3250   let Inst{11-8} = 0b1111;
3251   let Inst{7-0} = addr{7-0};
3252 }
3253 let hasExtraDefRegAllocReq = 1 in
3254 def t2LDREXD : T2I_ldrex<0b0111, (outs rGPR:$Rt, rGPR:$Rt2),
3255                          (ins addr_offset_none:$addr),
3256                          AddrModeNone, 4, NoItinerary,
3257                          "ldrexd", "\t$Rt, $Rt2, $addr", "",
3258                          [], {?, ?, ?, ?}>,
3259                Requires<[IsThumb2, IsNotMClass]> {
3260   bits<4> Rt2;
3261   let Inst{11-8} = Rt2;
3262 }
3263 def t2LDAEXB : T2I_ldrex<0b1100, (outs rGPR:$Rt), (ins addr_offset_none:$addr),
3264                          AddrModeNone, 4, NoItinerary,
3265                          "ldaexb", "\t$Rt, $addr", "",
3266                          [(set rGPR:$Rt, (ldaex_1 addr_offset_none:$addr))]>,
3267                Requires<[IsThumb, HasAcquireRelease, HasV7Clrex]>;
3268 def t2LDAEXH : T2I_ldrex<0b1101, (outs rGPR:$Rt), (ins addr_offset_none:$addr),
3269                          AddrModeNone, 4, NoItinerary,
3270                          "ldaexh", "\t$Rt, $addr", "",
3271                          [(set rGPR:$Rt, (ldaex_2 addr_offset_none:$addr))]>,
3272                Requires<[IsThumb, HasAcquireRelease, HasV7Clrex]>;
3273 def t2LDAEX  : Thumb2I<(outs rGPR:$Rt), (ins addr_offset_none:$addr),
3274                        AddrModeNone, 4, NoItinerary,
3275                        "ldaex", "\t$Rt, $addr", "",
3276                          [(set rGPR:$Rt, (ldaex_4 addr_offset_none:$addr))]>,
3277                Requires<[IsThumb, HasAcquireRelease, HasV7Clrex]> {
3278   bits<4> Rt;
3279   bits<4> addr;
3280   let Inst{31-27} = 0b11101;
3281   let Inst{26-20} = 0b0001101;
3282   let Inst{19-16} = addr;
3283   let Inst{15-12} = Rt;
3284   let Inst{11-8} = 0b1111;
3285   let Inst{7-0} = 0b11101111;
3286 }
3287 let hasExtraDefRegAllocReq = 1 in
3288 def t2LDAEXD : T2I_ldrex<0b1111, (outs rGPR:$Rt, rGPR:$Rt2),
3289                          (ins addr_offset_none:$addr),
3290                          AddrModeNone, 4, NoItinerary,
3291                          "ldaexd", "\t$Rt, $Rt2, $addr", "",
3292                          [], {?, ?, ?, ?}>, Requires<[IsThumb,
3293                          HasAcquireRelease, HasV7Clrex, IsNotMClass]> {
3294   bits<4> Rt2;
3295   let Inst{11-8} = Rt2;
3296
3297   let Inst{7} = 1;
3298 }
3299 }
3300
3301 let mayStore = 1, Constraints = "@earlyclobber $Rd" in {
3302 def t2STREXB : T2I_strex<0b0100, (outs rGPR:$Rd),
3303                          (ins rGPR:$Rt, addr_offset_none:$addr),
3304                          AddrModeNone, 4, NoItinerary,
3305                          "strexb", "\t$Rd, $Rt, $addr", "",
3306                          [(set rGPR:$Rd,
3307                                (strex_1 rGPR:$Rt, addr_offset_none:$addr))]>,
3308                Requires<[IsThumb, HasV8MBaseline]>;
3309 def t2STREXH : T2I_strex<0b0101, (outs rGPR:$Rd),
3310                          (ins rGPR:$Rt, addr_offset_none:$addr),
3311                          AddrModeNone, 4, NoItinerary,
3312                          "strexh", "\t$Rd, $Rt, $addr", "",
3313                          [(set rGPR:$Rd,
3314                                (strex_2 rGPR:$Rt, addr_offset_none:$addr))]>,
3315                Requires<[IsThumb, HasV8MBaseline]>;
3316
3317 def t2STREX  : Thumb2I<(outs rGPR:$Rd), (ins rGPR:$Rt,
3318                              t2addrmode_imm0_1020s4:$addr),
3319                   AddrModeNone, 4, NoItinerary,
3320                   "strex", "\t$Rd, $Rt, $addr", "",
3321                   [(set rGPR:$Rd,
3322                         (strex_4 rGPR:$Rt, t2addrmode_imm0_1020s4:$addr))]>,
3323                Requires<[IsThumb, HasV8MBaseline]> {
3324   bits<4> Rd;
3325   bits<4> Rt;
3326   bits<12> addr;
3327   let Inst{31-27} = 0b11101;
3328   let Inst{26-20} = 0b0000100;
3329   let Inst{19-16} = addr{11-8};
3330   let Inst{15-12} = Rt;
3331   let Inst{11-8}  = Rd;
3332   let Inst{7-0} = addr{7-0};
3333 }
3334 let hasExtraSrcRegAllocReq = 1 in
3335 def t2STREXD : T2I_strex<0b0111, (outs rGPR:$Rd),
3336                          (ins rGPR:$Rt, rGPR:$Rt2, addr_offset_none:$addr),
3337                          AddrModeNone, 4, NoItinerary,
3338                          "strexd", "\t$Rd, $Rt, $Rt2, $addr", "", [],
3339                          {?, ?, ?, ?}>,
3340                Requires<[IsThumb2, IsNotMClass]> {
3341   bits<4> Rt2;
3342   let Inst{11-8} = Rt2;
3343 }
3344 def t2STLEXB : T2I_strex<0b1100, (outs rGPR:$Rd),
3345                          (ins rGPR:$Rt, addr_offset_none:$addr),
3346                          AddrModeNone, 4, NoItinerary,
3347                          "stlexb", "\t$Rd, $Rt, $addr", "",
3348                          [(set rGPR:$Rd,
3349                                (stlex_1 rGPR:$Rt, addr_offset_none:$addr))]>,
3350                          Requires<[IsThumb, HasAcquireRelease,
3351                                    HasV7Clrex]>;
3352
3353 def t2STLEXH : T2I_strex<0b1101, (outs rGPR:$Rd),
3354                          (ins rGPR:$Rt, addr_offset_none:$addr),
3355                          AddrModeNone, 4, NoItinerary,
3356                          "stlexh", "\t$Rd, $Rt, $addr", "",
3357                          [(set rGPR:$Rd,
3358                                (stlex_2 rGPR:$Rt, addr_offset_none:$addr))]>,
3359                          Requires<[IsThumb, HasAcquireRelease,
3360                                    HasV7Clrex]>;
3361
3362 def t2STLEX  : Thumb2I<(outs rGPR:$Rd), (ins rGPR:$Rt,
3363                              addr_offset_none:$addr),
3364                   AddrModeNone, 4, NoItinerary,
3365                   "stlex", "\t$Rd, $Rt, $addr", "",
3366                   [(set rGPR:$Rd,
3367                         (stlex_4 rGPR:$Rt, addr_offset_none:$addr))]>,
3368                   Requires<[IsThumb, HasAcquireRelease, HasV7Clrex]> {
3369   bits<4> Rd;
3370   bits<4> Rt;
3371   bits<4> addr;
3372   let Inst{31-27} = 0b11101;
3373   let Inst{26-20} = 0b0001100;
3374   let Inst{19-16} = addr;
3375   let Inst{15-12} = Rt;
3376   let Inst{11-4}  = 0b11111110;
3377   let Inst{3-0}   = Rd;
3378 }
3379 let hasExtraSrcRegAllocReq = 1 in
3380 def t2STLEXD : T2I_strex<0b1111, (outs rGPR:$Rd),
3381                          (ins rGPR:$Rt, rGPR:$Rt2, addr_offset_none:$addr),
3382                          AddrModeNone, 4, NoItinerary,
3383                          "stlexd", "\t$Rd, $Rt, $Rt2, $addr", "", [],
3384                          {?, ?, ?, ?}>, Requires<[IsThumb, HasAcquireRelease,
3385                          HasV7Clrex, IsNotMClass]> {
3386   bits<4> Rt2;
3387   let Inst{11-8} = Rt2;
3388 }
3389 }
3390
3391 def t2CLREX : T2I<(outs), (ins), NoItinerary, "clrex", "", [(int_arm_clrex)]>,
3392             Requires<[IsThumb, HasV7Clrex]>  {
3393   let Inst{31-16} = 0xf3bf;
3394   let Inst{15-14} = 0b10;
3395   let Inst{13} = 0;
3396   let Inst{12} = 0;
3397   let Inst{11-8} = 0b1111;
3398   let Inst{7-4} = 0b0010;
3399   let Inst{3-0} = 0b1111;
3400 }
3401
3402 def : T2Pat<(and (ldrex_1 addr_offset_none:$addr), 0xff),
3403             (t2LDREXB addr_offset_none:$addr)>,
3404             Requires<[IsThumb, HasV8MBaseline]>;
3405 def : T2Pat<(and (ldrex_2 addr_offset_none:$addr), 0xffff),
3406             (t2LDREXH addr_offset_none:$addr)>,
3407             Requires<[IsThumb, HasV8MBaseline]>;
3408 def : T2Pat<(strex_1 (and GPR:$Rt, 0xff), addr_offset_none:$addr),
3409             (t2STREXB GPR:$Rt, addr_offset_none:$addr)>,
3410             Requires<[IsThumb, HasV8MBaseline]>;
3411 def : T2Pat<(strex_2 (and GPR:$Rt, 0xffff), addr_offset_none:$addr),
3412             (t2STREXH GPR:$Rt, addr_offset_none:$addr)>,
3413             Requires<[IsThumb, HasV8MBaseline]>;
3414
3415 def : T2Pat<(and (ldaex_1 addr_offset_none:$addr), 0xff),
3416             (t2LDAEXB addr_offset_none:$addr)>,
3417             Requires<[IsThumb, HasAcquireRelease, HasV7Clrex]>;
3418 def : T2Pat<(and (ldaex_2 addr_offset_none:$addr), 0xffff),
3419             (t2LDAEXH addr_offset_none:$addr)>,
3420             Requires<[IsThumb, HasAcquireRelease, HasV7Clrex]>;
3421 def : T2Pat<(stlex_1 (and GPR:$Rt, 0xff), addr_offset_none:$addr),
3422             (t2STLEXB GPR:$Rt, addr_offset_none:$addr)>,
3423             Requires<[IsThumb, HasAcquireRelease, HasV7Clrex]>;
3424 def : T2Pat<(stlex_2 (and GPR:$Rt, 0xffff), addr_offset_none:$addr),
3425             (t2STLEXH GPR:$Rt, addr_offset_none:$addr)>,
3426             Requires<[IsThumb, HasAcquireRelease, HasV7Clrex]>;
3427
3428 //===----------------------------------------------------------------------===//
3429 // SJLJ Exception handling intrinsics
3430 //   eh_sjlj_setjmp() is an instruction sequence to store the return
3431 //   address and save #0 in R0 for the non-longjmp case.
3432 //   Since by its nature we may be coming from some other function to get
3433 //   here, and we're using the stack frame for the containing function to
3434 //   save/restore registers, we can't keep anything live in regs across
3435 //   the eh_sjlj_setjmp(), else it will almost certainly have been tromped upon
3436 //   when we get here from a longjmp(). We force everything out of registers
3437 //   except for our own input by listing the relevant registers in Defs. By
3438 //   doing so, we also cause the prologue/epilogue code to actively preserve
3439 //   all of the callee-saved resgisters, which is exactly what we want.
3440 //   $val is a scratch register for our use.
3441 let Defs =
3442   [ R0,  R1,  R2,  R3,  R4,  R5,  R6,  R7,  R8,  R9,  R10, R11, R12, LR, CPSR,
3443     Q0, Q1, Q2, Q3, Q8, Q9, Q10, Q11, Q12, Q13, Q14, Q15],
3444   hasSideEffects = 1, isBarrier = 1, isCodeGenOnly = 1,
3445   usesCustomInserter = 1 in {
3446   def t2Int_eh_sjlj_setjmp : Thumb2XI<(outs), (ins tGPR:$src, tGPR:$val),
3447                                AddrModeNone, 0, NoItinerary, "", "",
3448                           [(set R0, (ARMeh_sjlj_setjmp tGPR:$src, tGPR:$val))]>,
3449                              Requires<[IsThumb2, HasVFP2]>;
3450 }
3451
3452 let Defs =
3453   [ R0,  R1,  R2,  R3,  R4,  R5,  R6,  R7,  R8,  R9,  R10, R11, R12, LR, CPSR ],
3454   hasSideEffects = 1, isBarrier = 1, isCodeGenOnly = 1,
3455   usesCustomInserter = 1 in {
3456   def t2Int_eh_sjlj_setjmp_nofp : Thumb2XI<(outs), (ins tGPR:$src, tGPR:$val),
3457                                AddrModeNone, 0, NoItinerary, "", "",
3458                           [(set R0, (ARMeh_sjlj_setjmp tGPR:$src, tGPR:$val))]>,
3459                                   Requires<[IsThumb2, NoVFP]>;
3460 }
3461
3462
3463 //===----------------------------------------------------------------------===//
3464 // Control-Flow Instructions
3465 //
3466
3467 // FIXME: remove when we have a way to marking a MI with these properties.
3468 // FIXME: Should pc be an implicit operand like PICADD, etc?
3469 let isReturn = 1, isTerminator = 1, isBarrier = 1, mayLoad = 1,
3470     hasExtraDefRegAllocReq = 1, isCodeGenOnly = 1 in
3471 def t2LDMIA_RET: t2PseudoExpand<(outs GPR:$wb), (ins GPR:$Rn, pred:$p,
3472                                                    reglist:$regs, variable_ops),
3473                               4, IIC_iLoad_mBr, [],
3474             (t2LDMIA_UPD GPR:$wb, GPR:$Rn, pred:$p, reglist:$regs)>,
3475                          RegConstraint<"$Rn = $wb">;
3476
3477 let isBranch = 1, isTerminator = 1, isBarrier = 1 in {
3478 let isPredicable = 1 in
3479 def t2B   : T2I<(outs), (ins thumb_br_target:$target), IIC_Br,
3480                  "b", ".w\t$target",
3481                  [(br bb:$target)]>, Sched<[WriteBr]>,
3482                  Requires<[IsThumb, HasV8MBaseline]> {
3483   let Inst{31-27} = 0b11110;
3484   let Inst{15-14} = 0b10;
3485   let Inst{12} = 1;
3486
3487   bits<24> target;
3488   let Inst{26} = target{23};
3489   let Inst{13} = target{22};
3490   let Inst{11} = target{21};
3491   let Inst{25-16} = target{20-11};
3492   let Inst{10-0} = target{10-0};
3493   let DecoderMethod = "DecodeT2BInstruction";
3494   let AsmMatchConverter = "cvtThumbBranches";
3495 }
3496
3497 let Size = 4, isNotDuplicable = 1, isBranch = 1, isTerminator = 1,
3498     isBarrier = 1, isIndirectBranch = 1 in {
3499
3500 // available in both v8-M.Baseline and Thumb2 targets
3501 def t2BR_JT : t2basePseudoInst<(outs),
3502           (ins GPR:$target, GPR:$index, i32imm:$jt),
3503            0, IIC_Br,
3504           [(ARMbr2jt GPR:$target, GPR:$index, tjumptable:$jt)]>,
3505           Sched<[WriteBr]>;
3506
3507 // FIXME: Add a case that can be predicated.
3508 def t2TBB_JT : t2PseudoInst<(outs),
3509         (ins GPR:$base, GPR:$index, i32imm:$jt, i32imm:$pclbl), 0, IIC_Br, []>,
3510         Sched<[WriteBr]>;
3511
3512 def t2TBH_JT : t2PseudoInst<(outs),
3513         (ins GPR:$base, GPR:$index, i32imm:$jt, i32imm:$pclbl), 0, IIC_Br, []>,
3514         Sched<[WriteBr]>;
3515
3516 def t2TBB : T2I<(outs), (ins addrmode_tbb:$addr), IIC_Br,
3517                     "tbb", "\t$addr", []>, Sched<[WriteBrTbl]> {
3518   bits<4> Rn;
3519   bits<4> Rm;
3520   let Inst{31-20} = 0b111010001101;
3521   let Inst{19-16} = Rn;
3522   let Inst{15-5} = 0b11110000000;
3523   let Inst{4} = 0; // B form
3524   let Inst{3-0} = Rm;
3525
3526   let DecoderMethod = "DecodeThumbTableBranch";
3527 }
3528
3529 def t2TBH : T2I<(outs), (ins addrmode_tbh:$addr), IIC_Br,
3530                    "tbh", "\t$addr", []>, Sched<[WriteBrTbl]> {
3531   bits<4> Rn;
3532   bits<4> Rm;
3533   let Inst{31-20} = 0b111010001101;
3534   let Inst{19-16} = Rn;
3535   let Inst{15-5} = 0b11110000000;
3536   let Inst{4} = 1; // H form
3537   let Inst{3-0} = Rm;
3538
3539   let DecoderMethod = "DecodeThumbTableBranch";
3540 }
3541 } // isNotDuplicable, isIndirectBranch
3542
3543 } // isBranch, isTerminator, isBarrier
3544
3545 // FIXME: should be able to write a pattern for ARMBrcond, but can't use
3546 // a two-value operand where a dag node expects ", "two operands. :(
3547 let isBranch = 1, isTerminator = 1 in
3548 def t2Bcc : T2I<(outs), (ins brtarget:$target), IIC_Br,
3549                 "b", ".w\t$target",
3550                 [/*(ARMbrcond bb:$target, imm:$cc)*/]>, Sched<[WriteBr]> {
3551   let Inst{31-27} = 0b11110;
3552   let Inst{15-14} = 0b10;
3553   let Inst{12} = 0;
3554
3555   bits<4> p;
3556   let Inst{25-22} = p;
3557
3558   bits<21> target;
3559   let Inst{26} = target{20};
3560   let Inst{11} = target{19};
3561   let Inst{13} = target{18};
3562   let Inst{21-16} = target{17-12};
3563   let Inst{10-0} = target{11-1};
3564
3565   let DecoderMethod = "DecodeThumb2BCCInstruction";
3566   let AsmMatchConverter = "cvtThumbBranches";
3567 }
3568
3569 // Tail calls. The MachO version of thumb tail calls uses a t2 branch, so
3570 // it goes here.
3571 let isCall = 1, isTerminator = 1, isReturn = 1, isBarrier = 1 in {
3572   // IOS version.
3573   let Uses = [SP] in
3574   def tTAILJMPd: tPseudoExpand<(outs),
3575                    (ins thumb_br_target:$dst, pred:$p),
3576                    4, IIC_Br, [],
3577                    (t2B thumb_br_target:$dst, pred:$p)>,
3578                  Requires<[IsThumb2, IsMachO]>, Sched<[WriteBr]>;
3579 }
3580
3581 // IT block
3582 let Defs = [ITSTATE] in
3583 def t2IT : Thumb2XI<(outs), (ins it_pred:$cc, it_mask:$mask),
3584                     AddrModeNone, 2,  IIC_iALUx,
3585                     "it$mask\t$cc", "", []>,
3586            ComplexDeprecationPredicate<"IT"> {
3587   // 16-bit instruction.
3588   let Inst{31-16} = 0x0000;
3589   let Inst{15-8} = 0b10111111;
3590
3591   bits<4> cc;
3592   bits<4> mask;
3593   let Inst{7-4} = cc;
3594   let Inst{3-0} = mask;
3595
3596   let DecoderMethod = "DecodeIT";
3597 }
3598
3599 // Branch and Exchange Jazelle -- for disassembly only
3600 // Rm = Inst{19-16}
3601 let isBranch = 1, isTerminator = 1, isBarrier = 1, isIndirectBranch = 1 in
3602 def t2BXJ : T2I<(outs), (ins GPRnopc:$func), NoItinerary, "bxj", "\t$func", []>,
3603     Sched<[WriteBr]>, Requires<[IsThumb2, IsNotMClass]> {
3604   bits<4> func;
3605   let Inst{31-27} = 0b11110;
3606   let Inst{26} = 0;
3607   let Inst{25-20} = 0b111100;
3608   let Inst{19-16} = func;
3609   let Inst{15-0} = 0b1000111100000000;
3610 }
3611
3612 // Compare and branch on zero / non-zero
3613 let isBranch = 1, isTerminator = 1 in {
3614   def tCBZ  : T1I<(outs), (ins tGPR:$Rn, thumb_cb_target:$target), IIC_Br,
3615                   "cbz\t$Rn, $target", []>,
3616               T1Misc<{0,0,?,1,?,?,?}>,
3617               Requires<[IsThumb, HasV8MBaseline]>, Sched<[WriteBr]> {
3618     // A8.6.27
3619     bits<6> target;
3620     bits<3> Rn;
3621     let Inst{9}   = target{5};
3622     let Inst{7-3} = target{4-0};
3623     let Inst{2-0} = Rn;
3624   }
3625
3626   def tCBNZ : T1I<(outs), (ins tGPR:$Rn, thumb_cb_target:$target), IIC_Br,
3627                   "cbnz\t$Rn, $target", []>,
3628               T1Misc<{1,0,?,1,?,?,?}>,
3629               Requires<[IsThumb, HasV8MBaseline]>, Sched<[WriteBr]> {
3630     // A8.6.27
3631     bits<6> target;
3632     bits<3> Rn;
3633     let Inst{9}   = target{5};
3634     let Inst{7-3} = target{4-0};
3635     let Inst{2-0} = Rn;
3636   }
3637 }
3638
3639
3640 // Change Processor State is a system instruction.
3641 // FIXME: Since the asm parser has currently no clean way to handle optional
3642 // operands, create 3 versions of the same instruction. Once there's a clean
3643 // framework to represent optional operands, change this behavior.
3644 class t2CPS<dag iops, string asm_op> : T2XI<(outs), iops, NoItinerary,
3645             !strconcat("cps", asm_op), []>,
3646           Requires<[IsThumb2, IsNotMClass]> {
3647   bits<2> imod;
3648   bits<3> iflags;
3649   bits<5> mode;
3650   bit M;
3651
3652   let Inst{31-11} = 0b111100111010111110000;
3653   let Inst{10-9}  = imod;
3654   let Inst{8}     = M;
3655   let Inst{7-5}   = iflags;
3656   let Inst{4-0}   = mode;
3657   let DecoderMethod = "DecodeT2CPSInstruction";
3658 }
3659
3660 let M = 1 in
3661   def t2CPS3p : t2CPS<(ins imod_op:$imod, iflags_op:$iflags, i32imm:$mode),
3662                       "$imod\t$iflags, $mode">;
3663 let mode = 0, M = 0 in
3664   def t2CPS2p : t2CPS<(ins imod_op:$imod, iflags_op:$iflags),
3665                       "$imod.w\t$iflags">;
3666 let imod = 0, iflags = 0, M = 1 in
3667   def t2CPS1p : t2CPS<(ins imm0_31:$mode), "\t$mode">;
3668
3669 def : t2InstAlias<"cps$imod.w $iflags, $mode",
3670                    (t2CPS3p imod_op:$imod, iflags_op:$iflags, i32imm:$mode), 0>;
3671 def : t2InstAlias<"cps.w $mode", (t2CPS1p imm0_31:$mode), 0>;
3672
3673 // A6.3.4 Branches and miscellaneous control
3674 // Table A6-14 Change Processor State, and hint instructions
3675 def t2HINT : T2I<(outs), (ins imm0_239:$imm), NoItinerary, "hint", ".w\t$imm",
3676                   [(int_arm_hint imm0_239:$imm)]> {
3677   bits<8> imm;
3678   let Inst{31-3} = 0b11110011101011111000000000000;
3679   let Inst{7-0} = imm;
3680 }
3681
3682 def : t2InstAlias<"hint$p $imm", (t2HINT imm0_239:$imm, pred:$p), 0>;
3683 def : t2InstAlias<"nop$p.w", (t2HINT 0, pred:$p), 1>;
3684 def : t2InstAlias<"yield$p.w", (t2HINT 1, pred:$p), 1>;
3685 def : t2InstAlias<"wfe$p.w", (t2HINT 2, pred:$p), 1>;
3686 def : t2InstAlias<"wfi$p.w", (t2HINT 3, pred:$p), 1>;
3687 def : t2InstAlias<"sev$p.w", (t2HINT 4, pred:$p), 1>;
3688 def : t2InstAlias<"sevl$p.w", (t2HINT 5, pred:$p), 1> {
3689   let Predicates = [IsThumb2, HasV8];
3690 }
3691 def : t2InstAlias<"esb$p.w", (t2HINT 16, pred:$p), 1> {
3692   let Predicates = [IsThumb2, HasRAS];
3693 }
3694 def : t2InstAlias<"esb$p", (t2HINT 16, pred:$p), 0> {
3695   let Predicates = [IsThumb2, HasRAS];
3696 }
3697
3698 def t2DBG : T2I<(outs), (ins imm0_15:$opt), NoItinerary, "dbg", "\t$opt",
3699                 [(int_arm_dbg imm0_15:$opt)]> {
3700   bits<4> opt;
3701   let Inst{31-20} = 0b111100111010;
3702   let Inst{19-16} = 0b1111;
3703   let Inst{15-8} = 0b10000000;
3704   let Inst{7-4} = 0b1111;
3705   let Inst{3-0} = opt;
3706 }
3707
3708 // Secure Monitor Call is a system instruction.
3709 // Option = Inst{19-16}
3710 let isCall = 1, Uses = [SP] in
3711 def t2SMC : T2I<(outs), (ins imm0_15:$opt), NoItinerary, "smc", "\t$opt",
3712                 []>, Requires<[IsThumb2, HasTrustZone]> {
3713   let Inst{31-27} = 0b11110;
3714   let Inst{26-20} = 0b1111111;
3715   let Inst{15-12} = 0b1000;
3716
3717   bits<4> opt;
3718   let Inst{19-16} = opt;
3719 }
3720
3721 class T2DCPS<bits<2> opt, string opc>
3722   : T2I<(outs), (ins), NoItinerary, opc, "", []>, Requires<[IsThumb2, HasV8]> {
3723   let Inst{31-27} = 0b11110;
3724   let Inst{26-20} = 0b1111000;
3725   let Inst{19-16} = 0b1111;
3726   let Inst{15-12} = 0b1000;
3727   let Inst{11-2} = 0b0000000000;
3728   let Inst{1-0} = opt;
3729 }
3730
3731 def t2DCPS1 : T2DCPS<0b01, "dcps1">;
3732 def t2DCPS2 : T2DCPS<0b10, "dcps2">;
3733 def t2DCPS3 : T2DCPS<0b11, "dcps3">;
3734
3735 class T2SRS<bits<2> Op, bit W, dag oops, dag iops, InstrItinClass itin,
3736             string opc, string asm, list<dag> pattern>
3737   : T2I<oops, iops, itin, opc, asm, pattern>,
3738     Requires<[IsThumb2,IsNotMClass]> {
3739   bits<5> mode;
3740   let Inst{31-25} = 0b1110100;
3741   let Inst{24-23} = Op;
3742   let Inst{22} = 0;
3743   let Inst{21} = W;
3744   let Inst{20-16} = 0b01101;
3745   let Inst{15-5} = 0b11000000000;
3746   let Inst{4-0} = mode{4-0};
3747 }
3748
3749 // Store Return State is a system instruction.
3750 def t2SRSDB_UPD : T2SRS<0b00, 1, (outs), (ins imm0_31:$mode), NoItinerary,
3751                         "srsdb", "\tsp!, $mode", []>;
3752 def t2SRSDB  : T2SRS<0b00, 0, (outs), (ins imm0_31:$mode), NoItinerary,
3753                      "srsdb","\tsp, $mode", []>;
3754 def t2SRSIA_UPD : T2SRS<0b11, 1, (outs), (ins imm0_31:$mode), NoItinerary,
3755                         "srsia","\tsp!, $mode", []>;
3756 def t2SRSIA  : T2SRS<0b11, 0, (outs), (ins imm0_31:$mode), NoItinerary,
3757                      "srsia","\tsp, $mode", []>;
3758
3759
3760 def : t2InstAlias<"srsdb${p} $mode", (t2SRSDB imm0_31:$mode, pred:$p)>;
3761 def : t2InstAlias<"srsdb${p} $mode!", (t2SRSDB_UPD imm0_31:$mode, pred:$p)>;
3762
3763 def : t2InstAlias<"srsia${p} $mode", (t2SRSIA imm0_31:$mode, pred:$p)>;
3764 def : t2InstAlias<"srsia${p} $mode!", (t2SRSIA_UPD imm0_31:$mode, pred:$p)>;
3765
3766 // Return From Exception is a system instruction.
3767 let isReturn = 1, isBarrier = 1, isTerminator = 1, Defs = [PC] in
3768 class T2RFE<bits<12> op31_20, dag oops, dag iops, InstrItinClass itin,
3769           string opc, string asm, list<dag> pattern>
3770   : T2I<oops, iops, itin, opc, asm, pattern>,
3771     Requires<[IsThumb2,IsNotMClass]> {
3772   let Inst{31-20} = op31_20{11-0};
3773
3774   bits<4> Rn;
3775   let Inst{19-16} = Rn;
3776   let Inst{15-0} = 0xc000;
3777 }
3778
3779 def t2RFEDBW : T2RFE<0b111010000011,
3780                    (outs), (ins GPR:$Rn), NoItinerary, "rfedb", "\t$Rn!",
3781                    [/* For disassembly only; pattern left blank */]>;
3782 def t2RFEDB  : T2RFE<0b111010000001,
3783                    (outs), (ins GPR:$Rn), NoItinerary, "rfedb", "\t$Rn",
3784                    [/* For disassembly only; pattern left blank */]>;
3785 def t2RFEIAW : T2RFE<0b111010011011,
3786                    (outs), (ins GPR:$Rn), NoItinerary, "rfeia", "\t$Rn!",
3787                    [/* For disassembly only; pattern left blank */]>;
3788 def t2RFEIA  : T2RFE<0b111010011001,
3789                    (outs), (ins GPR:$Rn), NoItinerary, "rfeia", "\t$Rn",
3790                    [/* For disassembly only; pattern left blank */]>;
3791
3792 // B9.3.19 SUBS PC, LR, #imm (Thumb2) system instruction.
3793 // Exception return instruction is "subs pc, lr, #imm".
3794 let isReturn = 1, isBarrier = 1, isTerminator = 1, Defs = [PC] in
3795 def t2SUBS_PC_LR : T2I <(outs), (ins imm0_255:$imm), NoItinerary,
3796                         "subs", "\tpc, lr, $imm",
3797                         [(ARMintretflag imm0_255:$imm)]>,
3798                    Requires<[IsThumb2,IsNotMClass]> {
3799   let Inst{31-8} = 0b111100111101111010001111;
3800
3801   bits<8> imm;
3802   let Inst{7-0} = imm;
3803 }
3804
3805 // Hypervisor Call is a system instruction.
3806 let isCall = 1 in {
3807 def t2HVC : T2XI <(outs), (ins imm0_65535:$imm16), IIC_Br, "hvc.w\t$imm16", []>,
3808       Requires<[IsThumb2, HasVirtualization]>, Sched<[WriteBr]> {
3809     bits<16> imm16;
3810     let Inst{31-20} = 0b111101111110;
3811     let Inst{19-16} = imm16{15-12};
3812     let Inst{15-12} = 0b1000;
3813     let Inst{11-0} = imm16{11-0};
3814 }
3815 }
3816
3817 // Alias for HVC without the ".w" optional width specifier
3818 def : t2InstAlias<"hvc\t$imm16", (t2HVC imm0_65535:$imm16)>;
3819
3820 // ERET - Return from exception in Hypervisor mode.
3821 // B9.3.3, B9.3.20: ERET is an alias for "SUBS PC, LR, #0" in an implementation that
3822 // includes virtualization extensions.
3823 def t2ERET : InstAlias<"eret${p}", (t2SUBS_PC_LR 0, pred:$p), 1>,
3824              Requires<[IsThumb2, HasVirtualization]>;
3825
3826 //===----------------------------------------------------------------------===//
3827 // Non-Instruction Patterns
3828 //
3829
3830 // 32-bit immediate using movw + movt.
3831 // This is a single pseudo instruction to make it re-materializable.
3832 // FIXME: Remove this when we can do generalized remat.
3833 let isReMaterializable = 1, isMoveImm = 1 in
3834 def t2MOVi32imm : PseudoInst<(outs rGPR:$dst), (ins i32imm:$src), IIC_iMOVix2,
3835                             [(set rGPR:$dst, (i32 imm:$src))]>,
3836                             Requires<[IsThumb, UseMovt]>;
3837
3838 // Pseudo instruction that combines movw + movt + add pc (if pic).
3839 // It also makes it possible to rematerialize the instructions.
3840 // FIXME: Remove this when we can do generalized remat and when machine licm
3841 // can properly the instructions.
3842 let isReMaterializable = 1 in {
3843 def t2MOV_ga_pcrel : PseudoInst<(outs rGPR:$dst), (ins i32imm:$addr),
3844                                 IIC_iMOVix2addpc,
3845                           [(set rGPR:$dst, (ARMWrapperPIC tglobaladdr:$addr))]>,
3846                           Requires<[IsThumb, HasV8MBaseline, UseMovt]>;
3847
3848 }
3849
3850 def : T2Pat<(ARMWrapperPIC tglobaltlsaddr :$dst),
3851             (t2MOV_ga_pcrel tglobaltlsaddr:$dst)>,
3852       Requires<[IsThumb2, UseMovt]>;
3853 def : T2Pat<(ARMWrapper tglobaltlsaddr:$dst),
3854             (t2MOVi32imm tglobaltlsaddr:$dst)>,
3855       Requires<[IsThumb2, UseMovt]>;
3856
3857 // ConstantPool, GlobalAddress, and JumpTable
3858 def : T2Pat<(ARMWrapper tconstpool :$dst), (t2LEApcrel tconstpool :$dst)>;
3859 def : T2Pat<(ARMWrapper texternalsym :$dst), (t2MOVi32imm texternalsym :$dst)>,
3860     Requires<[IsThumb, HasV8MBaseline, UseMovt]>;
3861 def : T2Pat<(ARMWrapper tglobaladdr :$dst), (t2MOVi32imm tglobaladdr :$dst)>,
3862     Requires<[IsThumb, HasV8MBaseline, UseMovt]>;
3863
3864 def : T2Pat<(ARMWrapperJT tjumptable:$dst), (t2LEApcrelJT tjumptable:$dst)>;
3865
3866 // Pseudo instruction that combines ldr from constpool and add pc. This should
3867 // be expanded into two instructions late to allow if-conversion and
3868 // scheduling.
3869 let canFoldAsLoad = 1, isReMaterializable = 1 in
3870 def t2LDRpci_pic : PseudoInst<(outs rGPR:$dst), (ins i32imm:$addr, pclabel:$cp),
3871                    IIC_iLoadiALU,
3872               [(set rGPR:$dst, (ARMpic_add (load (ARMWrapper tconstpool:$addr)),
3873                                            imm:$cp))]>,
3874                Requires<[IsThumb2]>;
3875
3876 // Pseudo isntruction that combines movs + predicated rsbmi
3877 // to implement integer ABS
3878 let usesCustomInserter = 1, Defs = [CPSR] in {
3879 def t2ABS : PseudoInst<(outs rGPR:$dst), (ins rGPR:$src),
3880                        NoItinerary, []>, Requires<[IsThumb2]>;
3881 }
3882
3883 //===----------------------------------------------------------------------===//
3884 // Coprocessor load/store -- for disassembly only
3885 //
3886 class T2CI<bits<4> op31_28, dag oops, dag iops, string opc, string asm, list<dag> pattern>
3887   : T2I<oops, iops, NoItinerary, opc, asm, pattern> {
3888   let Inst{31-28} = op31_28;
3889   let Inst{27-25} = 0b110;
3890 }
3891
3892 multiclass t2LdStCop<bits<4> op31_28, bit load, bit Dbit, string asm, list<dag> pattern> {
3893   def _OFFSET : T2CI<op31_28,
3894                      (outs), (ins p_imm:$cop, c_imm:$CRd, addrmode5:$addr),
3895                      asm, "\t$cop, $CRd, $addr", pattern> {
3896     bits<13> addr;
3897     bits<4> cop;
3898     bits<4> CRd;
3899     let Inst{24} = 1; // P = 1
3900     let Inst{23} = addr{8};
3901     let Inst{22} = Dbit;
3902     let Inst{21} = 0; // W = 0
3903     let Inst{20} = load;
3904     let Inst{19-16} = addr{12-9};
3905     let Inst{15-12} = CRd;
3906     let Inst{11-8} = cop;
3907     let Inst{7-0} = addr{7-0};
3908     let DecoderMethod = "DecodeCopMemInstruction";
3909   }
3910   def _PRE : T2CI<op31_28,
3911                   (outs), (ins p_imm:$cop, c_imm:$CRd, addrmode5_pre:$addr),
3912                   asm, "\t$cop, $CRd, $addr!", []> {
3913     bits<13> addr;
3914     bits<4> cop;
3915     bits<4> CRd;
3916     let Inst{24} = 1; // P = 1
3917     let Inst{23} = addr{8};
3918     let Inst{22} = Dbit;
3919     let Inst{21} = 1; // W = 1
3920     let Inst{20} = load;
3921     let Inst{19-16} = addr{12-9};
3922     let Inst{15-12} = CRd;
3923     let Inst{11-8} = cop;
3924     let Inst{7-0} = addr{7-0};
3925     let DecoderMethod = "DecodeCopMemInstruction";
3926   }
3927   def _POST: T2CI<op31_28,
3928                   (outs), (ins p_imm:$cop, c_imm:$CRd, addr_offset_none:$addr,
3929                                postidx_imm8s4:$offset),
3930                  asm, "\t$cop, $CRd, $addr, $offset", []> {
3931     bits<9> offset;
3932     bits<4> addr;
3933     bits<4> cop;
3934     bits<4> CRd;
3935     let Inst{24} = 0; // P = 0
3936     let Inst{23} = offset{8};
3937     let Inst{22} = Dbit;
3938     let Inst{21} = 1; // W = 1
3939     let Inst{20} = load;
3940     let Inst{19-16} = addr;
3941     let Inst{15-12} = CRd;
3942     let Inst{11-8} = cop;
3943     let Inst{7-0} = offset{7-0};
3944     let DecoderMethod = "DecodeCopMemInstruction";
3945   }
3946   def _OPTION : T2CI<op31_28, (outs),
3947                      (ins p_imm:$cop, c_imm:$CRd, addr_offset_none:$addr,
3948                           coproc_option_imm:$option),
3949       asm, "\t$cop, $CRd, $addr, $option", []> {
3950     bits<8> option;
3951     bits<4> addr;
3952     bits<4> cop;
3953     bits<4> CRd;
3954     let Inst{24} = 0; // P = 0
3955     let Inst{23} = 1; // U = 1
3956     let Inst{22} = Dbit;
3957     let Inst{21} = 0; // W = 0
3958     let Inst{20} = load;
3959     let Inst{19-16} = addr;
3960     let Inst{15-12} = CRd;
3961     let Inst{11-8} = cop;
3962     let Inst{7-0} = option;
3963     let DecoderMethod = "DecodeCopMemInstruction";
3964   }
3965 }
3966
3967 defm t2LDC   : t2LdStCop<0b1110, 1, 0, "ldc", [(int_arm_ldc imm:$cop, imm:$CRd, addrmode5:$addr)]>;
3968 defm t2LDCL  : t2LdStCop<0b1110, 1, 1, "ldcl", [(int_arm_ldcl imm:$cop, imm:$CRd, addrmode5:$addr)]>;
3969 defm t2LDC2  : t2LdStCop<0b1111, 1, 0, "ldc2", [(int_arm_ldc2 imm:$cop, imm:$CRd, addrmode5:$addr)]>, Requires<[PreV8,IsThumb2]>;
3970 defm t2LDC2L : t2LdStCop<0b1111, 1, 1, "ldc2l", [(int_arm_ldc2l imm:$cop, imm:$CRd, addrmode5:$addr)]>, Requires<[PreV8,IsThumb2]>;
3971
3972 defm t2STC   : t2LdStCop<0b1110, 0, 0, "stc", [(int_arm_stc imm:$cop, imm:$CRd, addrmode5:$addr)]>;
3973 defm t2STCL  : t2LdStCop<0b1110, 0, 1, "stcl", [(int_arm_stcl imm:$cop, imm:$CRd, addrmode5:$addr)]>;
3974 defm t2STC2  : t2LdStCop<0b1111, 0, 0, "stc2", [(int_arm_stc2 imm:$cop, imm:$CRd, addrmode5:$addr)]>, Requires<[PreV8,IsThumb2]>;
3975 defm t2STC2L : t2LdStCop<0b1111, 0, 1, "stc2l", [(int_arm_stc2l imm:$cop, imm:$CRd, addrmode5:$addr)]>, Requires<[PreV8,IsThumb2]>;
3976
3977
3978 //===----------------------------------------------------------------------===//
3979 // Move between special register and ARM core register -- for disassembly only
3980 //
3981 // Move to ARM core register from Special Register
3982
3983 // A/R class MRS.
3984 //
3985 // A/R class can only move from CPSR or SPSR.
3986 def t2MRS_AR : T2I<(outs GPR:$Rd), (ins), NoItinerary, "mrs", "\t$Rd, apsr",
3987                   []>, Requires<[IsThumb2,IsNotMClass]> {
3988   bits<4> Rd;
3989   let Inst{31-12} = 0b11110011111011111000;
3990   let Inst{11-8} = Rd;
3991   let Inst{7-0} = 0b00000000;
3992 }
3993
3994 def : t2InstAlias<"mrs${p} $Rd, cpsr", (t2MRS_AR GPR:$Rd, pred:$p)>;
3995
3996 def t2MRSsys_AR: T2I<(outs GPR:$Rd), (ins), NoItinerary, "mrs", "\t$Rd, spsr",
3997                    []>, Requires<[IsThumb2,IsNotMClass]> {
3998   bits<4> Rd;
3999   let Inst{31-12} = 0b11110011111111111000;
4000   let Inst{11-8} = Rd;
4001   let Inst{7-0} = 0b00000000;
4002 }
4003
4004 def t2MRSbanked : T2I<(outs rGPR:$Rd), (ins banked_reg:$banked),
4005                       NoItinerary, "mrs", "\t$Rd, $banked", []>,
4006                   Requires<[IsThumb, HasVirtualization]> {
4007   bits<6> banked;
4008   bits<4> Rd;
4009
4010   let Inst{31-21} = 0b11110011111;
4011   let Inst{20} = banked{5}; // R bit
4012   let Inst{19-16} = banked{3-0};
4013   let Inst{15-12} = 0b1000;
4014   let Inst{11-8} = Rd;
4015   let Inst{7-5} = 0b001;
4016   let Inst{4} = banked{4};
4017   let Inst{3-0} = 0b0000;
4018 }
4019
4020
4021 // M class MRS.
4022 //
4023 // This MRS has a mask field in bits 7-0 and can take more values than
4024 // the A/R class (a full msr_mask).
4025 def t2MRS_M : T2I<(outs rGPR:$Rd), (ins msr_mask:$SYSm), NoItinerary,
4026                   "mrs", "\t$Rd, $SYSm", []>,
4027               Requires<[IsThumb,IsMClass]> {
4028   bits<4> Rd;
4029   bits<8> SYSm;
4030   let Inst{31-12} = 0b11110011111011111000;
4031   let Inst{11-8} = Rd;
4032   let Inst{7-0} = SYSm;
4033
4034   let Unpredictable{20-16} = 0b11111;
4035   let Unpredictable{13} = 0b1;
4036 }
4037
4038
4039 // Move from ARM core register to Special Register
4040 //
4041 // A/R class MSR.
4042 //
4043 // No need to have both system and application versions, the encodings are the
4044 // same and the assembly parser has no way to distinguish between them. The mask
4045 // operand contains the special register (R Bit) in bit 4 and bits 3-0 contains
4046 // the mask with the fields to be accessed in the special register.
4047 let Defs = [CPSR] in
4048 def t2MSR_AR : T2I<(outs), (ins msr_mask:$mask, rGPR:$Rn),
4049                    NoItinerary, "msr", "\t$mask, $Rn", []>,
4050                Requires<[IsThumb2,IsNotMClass]> {
4051   bits<5> mask;
4052   bits<4> Rn;
4053   let Inst{31-21} = 0b11110011100;
4054   let Inst{20}    = mask{4}; // R Bit
4055   let Inst{19-16} = Rn;
4056   let Inst{15-12} = 0b1000;
4057   let Inst{11-8}  = mask{3-0};
4058   let Inst{7-0}   = 0;
4059 }
4060
4061 // However, the MSR (banked register) system instruction (ARMv7VE) *does* have a
4062 // separate encoding (distinguished by bit 5.
4063 def t2MSRbanked : T2I<(outs), (ins banked_reg:$banked, rGPR:$Rn),
4064                       NoItinerary, "msr", "\t$banked, $Rn", []>,
4065                   Requires<[IsThumb, HasVirtualization]> {
4066   bits<6> banked;
4067   bits<4> Rn;
4068
4069   let Inst{31-21} = 0b11110011100;
4070   let Inst{20} = banked{5}; // R bit
4071   let Inst{19-16} = Rn;
4072   let Inst{15-12} = 0b1000;
4073   let Inst{11-8} = banked{3-0};
4074   let Inst{7-5} = 0b001;
4075   let Inst{4} = banked{4};
4076   let Inst{3-0} = 0b0000;
4077 }
4078
4079
4080 // M class MSR.
4081 //
4082 // Move from ARM core register to Special Register
4083 let Defs = [CPSR] in
4084 def t2MSR_M : T2I<(outs), (ins msr_mask:$SYSm, rGPR:$Rn),
4085                   NoItinerary, "msr", "\t$SYSm, $Rn", []>,
4086               Requires<[IsThumb,IsMClass]> {
4087   bits<12> SYSm;
4088   bits<4> Rn;
4089   let Inst{31-21} = 0b11110011100;
4090   let Inst{20}    = 0b0;
4091   let Inst{19-16} = Rn;
4092   let Inst{15-12} = 0b1000;
4093   let Inst{11-10} = SYSm{11-10};
4094   let Inst{9-8}   = 0b00;
4095   let Inst{7-0}   = SYSm{7-0};
4096
4097   let Unpredictable{20} = 0b1;
4098   let Unpredictable{13} = 0b1;
4099   let Unpredictable{9-8} = 0b11;
4100 }
4101
4102
4103 //===----------------------------------------------------------------------===//
4104 // Move between coprocessor and ARM core register
4105 //
4106
4107 class t2MovRCopro<bits<4> Op, string opc, bit direction, dag oops, dag iops,
4108                   list<dag> pattern>
4109   : T2Cop<Op, oops, iops, opc, "\t$cop, $opc1, $Rt, $CRn, $CRm, $opc2",
4110           pattern> {
4111   let Inst{27-24} = 0b1110;
4112   let Inst{20} = direction;
4113   let Inst{4} = 1;
4114
4115   bits<4> Rt;
4116   bits<4> cop;
4117   bits<3> opc1;
4118   bits<3> opc2;
4119   bits<4> CRm;
4120   bits<4> CRn;
4121
4122   let Inst{15-12} = Rt;
4123   let Inst{11-8}  = cop;
4124   let Inst{23-21} = opc1;
4125   let Inst{7-5}   = opc2;
4126   let Inst{3-0}   = CRm;
4127   let Inst{19-16} = CRn;
4128 }
4129
4130 class t2MovRRCopro<bits<4> Op, string opc, bit direction, dag oops, dag iops,
4131                    list<dag> pattern = []>
4132   : T2Cop<Op, oops, iops, opc, "\t$cop, $opc1, $Rt, $Rt2, $CRm", pattern> {
4133   let Inst{27-24} = 0b1100;
4134   let Inst{23-21} = 0b010;
4135   let Inst{20} = direction;
4136
4137   bits<4> Rt;
4138   bits<4> Rt2;
4139   bits<4> cop;
4140   bits<4> opc1;
4141   bits<4> CRm;
4142
4143   let Inst{15-12} = Rt;
4144   let Inst{19-16} = Rt2;
4145   let Inst{11-8}  = cop;
4146   let Inst{7-4}   = opc1;
4147   let Inst{3-0}   = CRm;
4148 }
4149
4150 /* from ARM core register to coprocessor */
4151 def t2MCR : t2MovRCopro<0b1110, "mcr", 0,
4152            (outs),
4153            (ins p_imm:$cop, imm0_7:$opc1, GPR:$Rt, c_imm:$CRn,
4154                 c_imm:$CRm, imm0_7:$opc2),
4155            [(int_arm_mcr imm:$cop, imm:$opc1, GPR:$Rt, imm:$CRn,
4156                          imm:$CRm, imm:$opc2)]>,
4157            ComplexDeprecationPredicate<"MCR">;
4158 def : t2InstAlias<"mcr${p} $cop, $opc1, $Rt, $CRn, $CRm",
4159                   (t2MCR p_imm:$cop, imm0_7:$opc1, GPR:$Rt, c_imm:$CRn,
4160                          c_imm:$CRm, 0, pred:$p)>;
4161 def t2MCR2 : t2MovRCopro<0b1111, "mcr2", 0,
4162              (outs), (ins p_imm:$cop, imm0_7:$opc1, GPR:$Rt, c_imm:$CRn,
4163                           c_imm:$CRm, imm0_7:$opc2),
4164              [(int_arm_mcr2 imm:$cop, imm:$opc1, GPR:$Rt, imm:$CRn,
4165                             imm:$CRm, imm:$opc2)]> {
4166   let Predicates = [IsThumb2, PreV8];
4167 }
4168 def : t2InstAlias<"mcr2${p} $cop, $opc1, $Rt, $CRn, $CRm",
4169                   (t2MCR2 p_imm:$cop, imm0_7:$opc1, GPR:$Rt, c_imm:$CRn,
4170                           c_imm:$CRm, 0, pred:$p)>;
4171
4172 /* from coprocessor to ARM core register */
4173 def t2MRC : t2MovRCopro<0b1110, "mrc", 1,
4174              (outs GPRwithAPSR:$Rt), (ins p_imm:$cop, imm0_7:$opc1, c_imm:$CRn,
4175                                   c_imm:$CRm, imm0_7:$opc2), []>;
4176 def : t2InstAlias<"mrc${p} $cop, $opc1, $Rt, $CRn, $CRm",
4177                   (t2MRC GPRwithAPSR:$Rt, p_imm:$cop, imm0_7:$opc1, c_imm:$CRn,
4178                          c_imm:$CRm, 0, pred:$p)>;
4179
4180 def t2MRC2 : t2MovRCopro<0b1111, "mrc2", 1,
4181              (outs GPRwithAPSR:$Rt), (ins p_imm:$cop, imm0_7:$opc1, c_imm:$CRn,
4182                                   c_imm:$CRm, imm0_7:$opc2), []> {
4183   let Predicates = [IsThumb2, PreV8];
4184 }
4185 def : t2InstAlias<"mrc2${p} $cop, $opc1, $Rt, $CRn, $CRm",
4186                   (t2MRC2 GPRwithAPSR:$Rt, p_imm:$cop, imm0_7:$opc1, c_imm:$CRn,
4187                           c_imm:$CRm, 0, pred:$p)>;
4188
4189 def : T2v6Pat<(int_arm_mrc  imm:$cop, imm:$opc1, imm:$CRn, imm:$CRm, imm:$opc2),
4190               (t2MRC imm:$cop, imm:$opc1, imm:$CRn, imm:$CRm, imm:$opc2)>;
4191
4192 def : T2v6Pat<(int_arm_mrc2 imm:$cop, imm:$opc1, imm:$CRn, imm:$CRm, imm:$opc2),
4193               (t2MRC2 imm:$cop, imm:$opc1, imm:$CRn, imm:$CRm, imm:$opc2)>;
4194
4195
4196 /* from ARM core register to coprocessor */
4197 def t2MCRR : t2MovRRCopro<0b1110, "mcrr", 0, (outs),
4198                          (ins p_imm:$cop, imm0_15:$opc1, GPR:$Rt, GPR:$Rt2,
4199                          c_imm:$CRm),
4200                         [(int_arm_mcrr imm:$cop, imm:$opc1, GPR:$Rt, GPR:$Rt2,
4201                                        imm:$CRm)]>;
4202 def t2MCRR2 : t2MovRRCopro<0b1111, "mcrr2", 0, (outs),
4203                           (ins p_imm:$cop, imm0_15:$opc1, GPR:$Rt, GPR:$Rt2,
4204                            c_imm:$CRm),
4205                           [(int_arm_mcrr2 imm:$cop, imm:$opc1, GPR:$Rt,
4206                                           GPR:$Rt2, imm:$CRm)]> {
4207   let Predicates = [IsThumb2, PreV8];
4208 }
4209
4210 /* from coprocessor to ARM core register */
4211 def t2MRRC : t2MovRRCopro<0b1110, "mrrc", 1, (outs GPR:$Rt, GPR:$Rt2),
4212                           (ins p_imm:$cop, imm0_15:$opc1, c_imm:$CRm)>;
4213
4214 def t2MRRC2 : t2MovRRCopro<0b1111, "mrrc2", 1, (outs GPR:$Rt, GPR:$Rt2),
4215                            (ins p_imm:$cop, imm0_15:$opc1, c_imm:$CRm)> {
4216   let Predicates = [IsThumb2, PreV8];
4217 }
4218
4219 //===----------------------------------------------------------------------===//
4220 // Other Coprocessor Instructions.
4221 //
4222
4223 def t2CDP : T2Cop<0b1110, (outs), (ins p_imm:$cop, imm0_15:$opc1,
4224                  c_imm:$CRd, c_imm:$CRn, c_imm:$CRm, imm0_7:$opc2),
4225                  "cdp", "\t$cop, $opc1, $CRd, $CRn, $CRm, $opc2",
4226                  [(int_arm_cdp imm:$cop, imm:$opc1, imm:$CRd, imm:$CRn,
4227                                imm:$CRm, imm:$opc2)]> {
4228   let Inst{27-24} = 0b1110;
4229
4230   bits<4> opc1;
4231   bits<4> CRn;
4232   bits<4> CRd;
4233   bits<4> cop;
4234   bits<3> opc2;
4235   bits<4> CRm;
4236
4237   let Inst{3-0}   = CRm;
4238   let Inst{4}     = 0;
4239   let Inst{7-5}   = opc2;
4240   let Inst{11-8}  = cop;
4241   let Inst{15-12} = CRd;
4242   let Inst{19-16} = CRn;
4243   let Inst{23-20} = opc1;
4244
4245   let Predicates = [IsThumb2, PreV8];
4246 }
4247
4248 def t2CDP2 : T2Cop<0b1111, (outs), (ins p_imm:$cop, imm0_15:$opc1,
4249                    c_imm:$CRd, c_imm:$CRn, c_imm:$CRm, imm0_7:$opc2),
4250                    "cdp2", "\t$cop, $opc1, $CRd, $CRn, $CRm, $opc2",
4251                    [(int_arm_cdp2 imm:$cop, imm:$opc1, imm:$CRd, imm:$CRn,
4252                                   imm:$CRm, imm:$opc2)]> {
4253   let Inst{27-24} = 0b1110;
4254
4255   bits<4> opc1;
4256   bits<4> CRn;
4257   bits<4> CRd;
4258   bits<4> cop;
4259   bits<3> opc2;
4260   bits<4> CRm;
4261
4262   let Inst{3-0}   = CRm;
4263   let Inst{4}     = 0;
4264   let Inst{7-5}   = opc2;
4265   let Inst{11-8}  = cop;
4266   let Inst{15-12} = CRd;
4267   let Inst{19-16} = CRn;
4268   let Inst{23-20} = opc1;
4269
4270   let Predicates = [IsThumb2, PreV8];
4271 }
4272
4273
4274
4275 //===----------------------------------------------------------------------===//
4276 // ARMv8.1 Privilege Access Never extension
4277 //
4278 // SETPAN #imm1
4279
4280 def t2SETPAN : T1I<(outs), (ins imm0_1:$imm), NoItinerary, "setpan\t$imm", []>,
4281                T1Misc<0b0110000>, Requires<[IsThumb2, HasV8, HasV8_1a]> {
4282   bits<1> imm;
4283
4284   let Inst{4} = 0b1;
4285   let Inst{3} = imm;
4286   let Inst{2-0} = 0b000;
4287
4288   let Unpredictable{4} = 0b1;
4289   let Unpredictable{2-0} = 0b111;
4290 }
4291
4292 //===----------------------------------------------------------------------===//
4293 // ARMv8-M Security Extensions instructions
4294 //
4295
4296 let hasSideEffects = 1 in
4297 def t2SG : T2I<(outs), (ins), NoItinerary, "sg", "", []>,
4298            Requires<[Has8MSecExt]> {
4299   let Inst = 0xe97fe97f;
4300 }
4301
4302 class T2TT<bits<2> at, string asm, list<dag> pattern>
4303   : T2I<(outs rGPR:$Rt), (ins GPRnopc:$Rn), NoItinerary, asm, "\t$Rt, $Rn",
4304         pattern> {
4305   bits<4> Rn;
4306   bits<4> Rt;
4307
4308   let Inst{31-20} = 0b111010000100;
4309   let Inst{19-16} = Rn;
4310   let Inst{15-12} = 0b1111;
4311   let Inst{11-8} = Rt;
4312   let Inst{7-6} = at;
4313   let Inst{5-0} = 0b000000;
4314
4315   let Unpredictable{5-0} = 0b111111;
4316 }
4317
4318 def t2TT   : T2TT<0b00, "tt",   []>, Requires<[IsThumb,Has8MSecExt]>;
4319 def t2TTT  : T2TT<0b01, "ttt",  []>, Requires<[IsThumb,Has8MSecExt]>;
4320 def t2TTA  : T2TT<0b10, "tta",  []>, Requires<[IsThumb,Has8MSecExt]>;
4321 def t2TTAT : T2TT<0b11, "ttat", []>, Requires<[IsThumb,Has8MSecExt]>;
4322
4323 //===----------------------------------------------------------------------===//
4324 // Non-Instruction Patterns
4325 //
4326
4327 // SXT/UXT with no rotate
4328 let AddedComplexity = 16 in {
4329 def : T2Pat<(and rGPR:$Rm, 0x000000FF), (t2UXTB rGPR:$Rm, 0)>,
4330            Requires<[IsThumb2]>;
4331 def : T2Pat<(and rGPR:$Rm, 0x0000FFFF), (t2UXTH rGPR:$Rm, 0)>,
4332            Requires<[IsThumb2]>;
4333 def : T2Pat<(and rGPR:$Rm, 0x00FF00FF), (t2UXTB16 rGPR:$Rm, 0)>,
4334            Requires<[HasDSP, IsThumb2]>;
4335 def : T2Pat<(add rGPR:$Rn, (and rGPR:$Rm, 0x00FF)),
4336             (t2UXTAB rGPR:$Rn, rGPR:$Rm, 0)>,
4337            Requires<[HasDSP, IsThumb2]>;
4338 def : T2Pat<(add rGPR:$Rn, (and rGPR:$Rm, 0xFFFF)),
4339             (t2UXTAH rGPR:$Rn, rGPR:$Rm, 0)>,
4340            Requires<[HasDSP, IsThumb2]>;
4341 }
4342
4343 def : T2Pat<(sext_inreg rGPR:$Src, i8),  (t2SXTB rGPR:$Src, 0)>,
4344            Requires<[IsThumb2]>;
4345 def : T2Pat<(sext_inreg rGPR:$Src, i16), (t2SXTH rGPR:$Src, 0)>,
4346            Requires<[IsThumb2]>;
4347 def : T2Pat<(add rGPR:$Rn, (sext_inreg rGPR:$Rm, i8)),
4348             (t2SXTAB rGPR:$Rn, rGPR:$Rm, 0)>,
4349            Requires<[HasDSP, IsThumb2]>;
4350 def : T2Pat<(add rGPR:$Rn, (sext_inreg rGPR:$Rm, i16)),
4351             (t2SXTAH rGPR:$Rn, rGPR:$Rm, 0)>,
4352            Requires<[HasDSP, IsThumb2]>;
4353
4354 // Atomic load/store patterns
4355 def : T2Pat<(atomic_load_8   t2addrmode_imm12:$addr),
4356             (t2LDRBi12  t2addrmode_imm12:$addr)>;
4357 def : T2Pat<(atomic_load_8   t2addrmode_negimm8:$addr),
4358             (t2LDRBi8   t2addrmode_negimm8:$addr)>;
4359 def : T2Pat<(atomic_load_8   t2addrmode_so_reg:$addr),
4360             (t2LDRBs    t2addrmode_so_reg:$addr)>;
4361 def : T2Pat<(atomic_load_16  t2addrmode_imm12:$addr),
4362             (t2LDRHi12  t2addrmode_imm12:$addr)>;
4363 def : T2Pat<(atomic_load_16  t2addrmode_negimm8:$addr),
4364             (t2LDRHi8   t2addrmode_negimm8:$addr)>;
4365 def : T2Pat<(atomic_load_16  t2addrmode_so_reg:$addr),
4366             (t2LDRHs    t2addrmode_so_reg:$addr)>;
4367 def : T2Pat<(atomic_load_32  t2addrmode_imm12:$addr),
4368             (t2LDRi12   t2addrmode_imm12:$addr)>;
4369 def : T2Pat<(atomic_load_32  t2addrmode_negimm8:$addr),
4370             (t2LDRi8    t2addrmode_negimm8:$addr)>;
4371 def : T2Pat<(atomic_load_32  t2addrmode_so_reg:$addr),
4372             (t2LDRs     t2addrmode_so_reg:$addr)>;
4373 def : T2Pat<(atomic_store_8  t2addrmode_imm12:$addr, GPR:$val),
4374             (t2STRBi12  GPR:$val, t2addrmode_imm12:$addr)>;
4375 def : T2Pat<(atomic_store_8  t2addrmode_negimm8:$addr, GPR:$val),
4376             (t2STRBi8   GPR:$val, t2addrmode_negimm8:$addr)>;
4377 def : T2Pat<(atomic_store_8  t2addrmode_so_reg:$addr, GPR:$val),
4378             (t2STRBs    GPR:$val, t2addrmode_so_reg:$addr)>;
4379 def : T2Pat<(atomic_store_16 t2addrmode_imm12:$addr, GPR:$val),
4380             (t2STRHi12  GPR:$val, t2addrmode_imm12:$addr)>;
4381 def : T2Pat<(atomic_store_16 t2addrmode_negimm8:$addr, GPR:$val),
4382             (t2STRHi8   GPR:$val, t2addrmode_negimm8:$addr)>;
4383 def : T2Pat<(atomic_store_16 t2addrmode_so_reg:$addr, GPR:$val),
4384             (t2STRHs    GPR:$val, t2addrmode_so_reg:$addr)>;
4385 def : T2Pat<(atomic_store_32 t2addrmode_imm12:$addr, GPR:$val),
4386             (t2STRi12   GPR:$val, t2addrmode_imm12:$addr)>;
4387 def : T2Pat<(atomic_store_32 t2addrmode_negimm8:$addr, GPR:$val),
4388             (t2STRi8    GPR:$val, t2addrmode_negimm8:$addr)>;
4389 def : T2Pat<(atomic_store_32 t2addrmode_so_reg:$addr, GPR:$val),
4390             (t2STRs     GPR:$val, t2addrmode_so_reg:$addr)>;
4391
4392 let AddedComplexity = 8 in {
4393   def : T2Pat<(atomic_load_acquire_8 addr_offset_none:$addr),  (t2LDAB addr_offset_none:$addr)>;
4394   def : T2Pat<(atomic_load_acquire_16 addr_offset_none:$addr), (t2LDAH addr_offset_none:$addr)>;
4395   def : T2Pat<(atomic_load_acquire_32 addr_offset_none:$addr), (t2LDA  addr_offset_none:$addr)>;
4396   def : T2Pat<(atomic_store_release_8 addr_offset_none:$addr, GPR:$val),  (t2STLB GPR:$val, addr_offset_none:$addr)>;
4397   def : T2Pat<(atomic_store_release_16 addr_offset_none:$addr, GPR:$val), (t2STLH GPR:$val, addr_offset_none:$addr)>;
4398   def : T2Pat<(atomic_store_release_32 addr_offset_none:$addr, GPR:$val), (t2STL  GPR:$val, addr_offset_none:$addr)>;
4399 }
4400
4401
4402 //===----------------------------------------------------------------------===//
4403 // Assembler aliases
4404 //
4405
4406 // Aliases for ADC without the ".w" optional width specifier.
4407 def : t2InstAlias<"adc${s}${p} $Rd, $Rn, $Rm",
4408                   (t2ADCrr rGPR:$Rd, rGPR:$Rn, rGPR:$Rm, pred:$p, cc_out:$s)>;
4409 def : t2InstAlias<"adc${s}${p} $Rd, $Rn, $ShiftedRm",
4410                   (t2ADCrs rGPR:$Rd, rGPR:$Rn, t2_so_reg:$ShiftedRm,
4411                            pred:$p, cc_out:$s)>;
4412
4413 // Aliases for SBC without the ".w" optional width specifier.
4414 def : t2InstAlias<"sbc${s}${p} $Rd, $Rn, $Rm",
4415                   (t2SBCrr rGPR:$Rd, rGPR:$Rn, rGPR:$Rm, pred:$p, cc_out:$s)>;
4416 def : t2InstAlias<"sbc${s}${p} $Rd, $Rn, $ShiftedRm",
4417                   (t2SBCrs rGPR:$Rd, rGPR:$Rn, t2_so_reg:$ShiftedRm,
4418                            pred:$p, cc_out:$s)>;
4419
4420 // Aliases for ADD without the ".w" optional width specifier.
4421 def : t2InstAlias<"add${s}${p} $Rd, $Rn, $imm",
4422         (t2ADDri GPRnopc:$Rd, GPRnopc:$Rn, t2_so_imm:$imm, pred:$p,
4423          cc_out:$s)>;
4424 def : t2InstAlias<"add${p} $Rd, $Rn, $imm",
4425            (t2ADDri12 GPRnopc:$Rd, GPR:$Rn, imm0_4095:$imm, pred:$p)>;
4426 def : t2InstAlias<"add${s}${p} $Rd, $Rn, $Rm",
4427               (t2ADDrr GPRnopc:$Rd, GPRnopc:$Rn, rGPR:$Rm, pred:$p, cc_out:$s)>;
4428 def : t2InstAlias<"add${s}${p} $Rd, $Rn, $ShiftedRm",
4429                   (t2ADDrs GPRnopc:$Rd, GPRnopc:$Rn, t2_so_reg:$ShiftedRm,
4430                            pred:$p, cc_out:$s)>;
4431 // ... and with the destination and source register combined.
4432 def : t2InstAlias<"add${s}${p} $Rdn, $imm",
4433       (t2ADDri GPRnopc:$Rdn, GPRnopc:$Rdn, t2_so_imm:$imm, pred:$p, cc_out:$s)>;
4434 def : t2InstAlias<"add${p} $Rdn, $imm",
4435            (t2ADDri12 GPRnopc:$Rdn, GPRnopc:$Rdn, imm0_4095:$imm, pred:$p)>;
4436 def : t2InstAlias<"add${s}${p} $Rdn, $Rm",
4437             (t2ADDrr GPRnopc:$Rdn, GPRnopc:$Rdn, rGPR:$Rm, pred:$p, cc_out:$s)>;
4438 def : t2InstAlias<"add${s}${p} $Rdn, $ShiftedRm",
4439                   (t2ADDrs GPRnopc:$Rdn, GPRnopc:$Rdn, t2_so_reg:$ShiftedRm,
4440                            pred:$p, cc_out:$s)>;
4441
4442 // add w/ negative immediates is just a sub.
4443 def : t2InstSubst<"add${s}${p} $Rd, $Rn, $imm",
4444         (t2SUBri GPRnopc:$Rd, GPRnopc:$Rn, t2_so_imm_neg:$imm, pred:$p,
4445                  cc_out:$s)>;
4446 def : t2InstSubst<"add${p} $Rd, $Rn, $imm",
4447            (t2SUBri12 GPRnopc:$Rd, GPR:$Rn, imm0_4095_neg:$imm, pred:$p)>;
4448 def : t2InstSubst<"add${s}${p} $Rdn, $imm",
4449       (t2SUBri GPRnopc:$Rdn, GPRnopc:$Rdn, t2_so_imm_neg:$imm, pred:$p,
4450                cc_out:$s)>;
4451 def : t2InstSubst<"add${p} $Rdn, $imm",
4452            (t2SUBri12 GPRnopc:$Rdn, GPRnopc:$Rdn, imm0_4095_neg:$imm, pred:$p)>;
4453
4454 def : t2InstSubst<"add${s}${p}.w $Rd, $Rn, $imm",
4455         (t2SUBri GPRnopc:$Rd, GPRnopc:$Rn, t2_so_imm_neg:$imm, pred:$p,
4456                  cc_out:$s)>;
4457 def : t2InstSubst<"addw${p} $Rd, $Rn, $imm",
4458            (t2SUBri12 GPRnopc:$Rd, GPR:$Rn, imm0_4095_neg:$imm, pred:$p)>;
4459 def : t2InstSubst<"add${s}${p}.w $Rdn, $imm",
4460       (t2SUBri GPRnopc:$Rdn, GPRnopc:$Rdn, t2_so_imm_neg:$imm, pred:$p,
4461                cc_out:$s)>;
4462 def : t2InstSubst<"addw${p} $Rdn, $imm",
4463            (t2SUBri12 GPRnopc:$Rdn, GPRnopc:$Rdn, imm0_4095_neg:$imm, pred:$p)>;
4464
4465
4466 // Aliases for SUB without the ".w" optional width specifier.
4467 def : t2InstAlias<"sub${s}${p} $Rd, $Rn, $imm",
4468         (t2SUBri GPRnopc:$Rd, GPRnopc:$Rn, t2_so_imm:$imm, pred:$p, cc_out:$s)>;
4469 def : t2InstAlias<"sub${p} $Rd, $Rn, $imm",
4470            (t2SUBri12 GPRnopc:$Rd, GPR:$Rn, imm0_4095:$imm, pred:$p)>;
4471 def : t2InstAlias<"sub${s}${p} $Rd, $Rn, $Rm",
4472               (t2SUBrr GPRnopc:$Rd, GPRnopc:$Rn, rGPR:$Rm, pred:$p, cc_out:$s)>;
4473 def : t2InstAlias<"sub${s}${p} $Rd, $Rn, $ShiftedRm",
4474                   (t2SUBrs GPRnopc:$Rd, GPRnopc:$Rn, t2_so_reg:$ShiftedRm,
4475                            pred:$p, cc_out:$s)>;
4476 // ... and with the destination and source register combined.
4477 def : t2InstAlias<"sub${s}${p} $Rdn, $imm",
4478       (t2SUBri GPRnopc:$Rdn, GPRnopc:$Rdn, t2_so_imm:$imm, pred:$p, cc_out:$s)>;
4479 def : t2InstAlias<"sub${p} $Rdn, $imm",
4480            (t2SUBri12 GPRnopc:$Rdn, GPRnopc:$Rdn, imm0_4095:$imm, pred:$p)>;
4481 def : t2InstAlias<"sub${s}${p}.w $Rdn, $Rm",
4482             (t2SUBrr GPRnopc:$Rdn, GPRnopc:$Rdn, rGPR:$Rm, pred:$p, cc_out:$s)>;
4483 def : t2InstAlias<"sub${s}${p} $Rdn, $Rm",
4484             (t2SUBrr GPRnopc:$Rdn, GPRnopc:$Rdn, rGPR:$Rm, pred:$p, cc_out:$s)>;
4485 def : t2InstAlias<"sub${s}${p} $Rdn, $ShiftedRm",
4486                   (t2SUBrs GPRnopc:$Rdn, GPRnopc:$Rdn, t2_so_reg:$ShiftedRm,
4487                            pred:$p, cc_out:$s)>;
4488
4489 // Alias for compares without the ".w" optional width specifier.
4490 def : t2InstAlias<"cmn${p} $Rn, $Rm",
4491                   (t2CMNzrr GPRnopc:$Rn, rGPR:$Rm, pred:$p)>;
4492 def : t2InstAlias<"teq${p} $Rn, $Rm",
4493                   (t2TEQrr GPRnopc:$Rn, rGPR:$Rm, pred:$p)>;
4494 def : t2InstAlias<"tst${p} $Rn, $Rm",
4495                   (t2TSTrr GPRnopc:$Rn, rGPR:$Rm, pred:$p)>;
4496
4497 // Memory barriers
4498 def : InstAlias<"dmb${p}", (t2DMB 0xf, pred:$p), 0>, Requires<[HasDB]>;
4499 def : InstAlias<"dsb${p}", (t2DSB 0xf, pred:$p), 0>, Requires<[HasDB]>;
4500 def : InstAlias<"isb${p}", (t2ISB 0xf, pred:$p), 0>, Requires<[HasDB]>;
4501
4502 // Alias for LDR, LDRB, LDRH, LDRSB, and LDRSH without the ".w" optional
4503 // width specifier.
4504 def : t2InstAlias<"ldr${p} $Rt, $addr",
4505                   (t2LDRi12 GPR:$Rt, t2addrmode_imm12:$addr, pred:$p)>;
4506 def : t2InstAlias<"ldrb${p} $Rt, $addr",
4507                   (t2LDRBi12 rGPR:$Rt, t2addrmode_imm12:$addr, pred:$p)>;
4508 def : t2InstAlias<"ldrh${p} $Rt, $addr",
4509                   (t2LDRHi12 rGPR:$Rt, t2addrmode_imm12:$addr, pred:$p)>;
4510 def : t2InstAlias<"ldrsb${p} $Rt, $addr",
4511                   (t2LDRSBi12 rGPR:$Rt, t2addrmode_imm12:$addr, pred:$p)>;
4512 def : t2InstAlias<"ldrsh${p} $Rt, $addr",
4513                   (t2LDRSHi12 rGPR:$Rt, t2addrmode_imm12:$addr, pred:$p)>;
4514
4515 def : t2InstAlias<"ldr${p} $Rt, $addr",
4516                   (t2LDRs GPR:$Rt, t2addrmode_so_reg:$addr, pred:$p)>;
4517 def : t2InstAlias<"ldrb${p} $Rt, $addr",
4518                   (t2LDRBs rGPR:$Rt, t2addrmode_so_reg:$addr, pred:$p)>;
4519 def : t2InstAlias<"ldrh${p} $Rt, $addr",
4520                   (t2LDRHs rGPR:$Rt, t2addrmode_so_reg:$addr, pred:$p)>;
4521 def : t2InstAlias<"ldrsb${p} $Rt, $addr",
4522                   (t2LDRSBs rGPR:$Rt, t2addrmode_so_reg:$addr, pred:$p)>;
4523 def : t2InstAlias<"ldrsh${p} $Rt, $addr",
4524                   (t2LDRSHs rGPR:$Rt, t2addrmode_so_reg:$addr, pred:$p)>;
4525
4526 def : t2InstAlias<"ldr${p} $Rt, $addr",
4527                   (t2LDRpci GPR:$Rt, t2ldrlabel:$addr, pred:$p)>;
4528 def : t2InstAlias<"ldrb${p} $Rt, $addr",
4529                   (t2LDRBpci rGPR:$Rt, t2ldrlabel:$addr, pred:$p)>;
4530 def : t2InstAlias<"ldrh${p} $Rt, $addr",
4531                   (t2LDRHpci rGPR:$Rt, t2ldrlabel:$addr, pred:$p)>;
4532 def : t2InstAlias<"ldrsb${p} $Rt, $addr",
4533                   (t2LDRSBpci rGPR:$Rt, t2ldrlabel:$addr, pred:$p)>;
4534 def : t2InstAlias<"ldrsh${p} $Rt, $addr",
4535                   (t2LDRSHpci rGPR:$Rt, t2ldrlabel:$addr, pred:$p)>;
4536
4537 // Alias for MVN with(out) the ".w" optional width specifier.
4538 def : t2InstAlias<"mvn${s}${p}.w $Rd, $imm",
4539            (t2MVNi rGPR:$Rd, t2_so_imm:$imm, pred:$p, cc_out:$s)>;
4540 def : t2InstAlias<"mvn${s}${p} $Rd, $Rm",
4541            (t2MVNr rGPR:$Rd, rGPR:$Rm, pred:$p, cc_out:$s)>;
4542 def : t2InstAlias<"mvn${s}${p} $Rd, $ShiftedRm",
4543            (t2MVNs rGPR:$Rd, t2_so_reg:$ShiftedRm, pred:$p, cc_out:$s)>;
4544
4545 // PKHBT/PKHTB with default shift amount. PKHTB is equivalent to PKHBT with the
4546 // input operands swapped when the shift amount is zero (i.e., unspecified).
4547 def : InstAlias<"pkhbt${p} $Rd, $Rn, $Rm",
4548                 (t2PKHBT rGPR:$Rd, rGPR:$Rn, rGPR:$Rm, 0, pred:$p), 0>,
4549             Requires<[HasDSP, IsThumb2]>;
4550 def : InstAlias<"pkhtb${p} $Rd, $Rn, $Rm",
4551                 (t2PKHBT rGPR:$Rd, rGPR:$Rm, rGPR:$Rn, 0, pred:$p), 0>,
4552             Requires<[HasDSP, IsThumb2]>;
4553
4554 // PUSH/POP aliases for STM/LDM
4555 def : t2InstAlias<"push${p}.w $regs", (t2STMDB_UPD SP, pred:$p, reglist:$regs)>;
4556 def : t2InstAlias<"push${p} $regs", (t2STMDB_UPD SP, pred:$p, reglist:$regs)>;
4557 def : t2InstAlias<"pop${p}.w $regs", (t2LDMIA_UPD SP, pred:$p, reglist:$regs)>;
4558 def : t2InstAlias<"pop${p} $regs", (t2LDMIA_UPD SP, pred:$p, reglist:$regs)>;
4559
4560 // STMIA/STMIA_UPD aliases w/o the optional .w suffix
4561 def : t2InstAlias<"stm${p} $Rn, $regs",
4562                   (t2STMIA GPR:$Rn, pred:$p, reglist:$regs)>;
4563 def : t2InstAlias<"stm${p} $Rn!, $regs",
4564                   (t2STMIA_UPD GPR:$Rn, pred:$p, reglist:$regs)>;
4565
4566 // LDMIA/LDMIA_UPD aliases w/o the optional .w suffix
4567 def : t2InstAlias<"ldm${p} $Rn, $regs",
4568                   (t2LDMIA GPR:$Rn, pred:$p, reglist:$regs)>;
4569 def : t2InstAlias<"ldm${p} $Rn!, $regs",
4570                   (t2LDMIA_UPD GPR:$Rn, pred:$p, reglist:$regs)>;
4571
4572 // STMDB/STMDB_UPD aliases w/ the optional .w suffix
4573 def : t2InstAlias<"stmdb${p}.w $Rn, $regs",
4574                   (t2STMDB GPR:$Rn, pred:$p, reglist:$regs)>;
4575 def : t2InstAlias<"stmdb${p}.w $Rn!, $regs",
4576                   (t2STMDB_UPD GPR:$Rn, pred:$p, reglist:$regs)>;
4577
4578 // LDMDB/LDMDB_UPD aliases w/ the optional .w suffix
4579 def : t2InstAlias<"ldmdb${p}.w $Rn, $regs",
4580                   (t2LDMDB GPR:$Rn, pred:$p, reglist:$regs)>;
4581 def : t2InstAlias<"ldmdb${p}.w $Rn!, $regs",
4582                   (t2LDMDB_UPD GPR:$Rn, pred:$p, reglist:$regs)>;
4583
4584 // Alias for REV/REV16/REVSH without the ".w" optional width specifier.
4585 def : t2InstAlias<"rev${p} $Rd, $Rm", (t2REV rGPR:$Rd, rGPR:$Rm, pred:$p)>;
4586 def : t2InstAlias<"rev16${p} $Rd, $Rm", (t2REV16 rGPR:$Rd, rGPR:$Rm, pred:$p)>;
4587 def : t2InstAlias<"revsh${p} $Rd, $Rm", (t2REVSH rGPR:$Rd, rGPR:$Rm, pred:$p)>;
4588
4589
4590 // Alias for RSB without the ".w" optional width specifier, and with optional
4591 // implied destination register.
4592 def : t2InstAlias<"rsb${s}${p} $Rd, $Rn, $imm",
4593            (t2RSBri rGPR:$Rd, rGPR:$Rn, t2_so_imm:$imm, pred:$p, cc_out:$s)>;
4594 def : t2InstAlias<"rsb${s}${p} $Rdn, $imm",
4595            (t2RSBri rGPR:$Rdn, rGPR:$Rdn, t2_so_imm:$imm, pred:$p, cc_out:$s)>;
4596 def : t2InstAlias<"rsb${s}${p} $Rdn, $Rm",
4597            (t2RSBrr rGPR:$Rdn, rGPR:$Rdn, rGPR:$Rm, pred:$p, cc_out:$s)>;
4598 def : t2InstAlias<"rsb${s}${p} $Rdn, $ShiftedRm",
4599            (t2RSBrs rGPR:$Rdn, rGPR:$Rdn, t2_so_reg:$ShiftedRm, pred:$p,
4600                     cc_out:$s)>;
4601
4602 // SSAT/USAT optional shift operand.
4603 def : t2InstAlias<"ssat${p} $Rd, $sat_imm, $Rn",
4604                   (t2SSAT rGPR:$Rd, imm1_32:$sat_imm, rGPR:$Rn, 0, pred:$p)>;
4605 def : t2InstAlias<"usat${p} $Rd, $sat_imm, $Rn",
4606                   (t2USAT rGPR:$Rd, imm0_31:$sat_imm, rGPR:$Rn, 0, pred:$p)>;
4607
4608 // STM w/o the .w suffix.
4609 def : t2InstAlias<"stm${p} $Rn, $regs",
4610                   (t2STMIA GPR:$Rn, pred:$p, reglist:$regs)>;
4611
4612 // Alias for STR, STRB, and STRH without the ".w" optional
4613 // width specifier.
4614 def : t2InstAlias<"str${p} $Rt, $addr",
4615                   (t2STRi12 GPR:$Rt, t2addrmode_imm12:$addr, pred:$p)>;
4616 def : t2InstAlias<"strb${p} $Rt, $addr",
4617                   (t2STRBi12 rGPR:$Rt, t2addrmode_imm12:$addr, pred:$p)>;
4618 def : t2InstAlias<"strh${p} $Rt, $addr",
4619                   (t2STRHi12 rGPR:$Rt, t2addrmode_imm12:$addr, pred:$p)>;
4620
4621 def : t2InstAlias<"str${p} $Rt, $addr",
4622                   (t2STRs GPR:$Rt, t2addrmode_so_reg:$addr, pred:$p)>;
4623 def : t2InstAlias<"strb${p} $Rt, $addr",
4624                   (t2STRBs rGPR:$Rt, t2addrmode_so_reg:$addr, pred:$p)>;
4625 def : t2InstAlias<"strh${p} $Rt, $addr",
4626                   (t2STRHs rGPR:$Rt, t2addrmode_so_reg:$addr, pred:$p)>;
4627
4628 // Extend instruction optional rotate operand.
4629 def : InstAlias<"sxtab${p} $Rd, $Rn, $Rm",
4630               (t2SXTAB rGPR:$Rd, rGPR:$Rn, rGPR:$Rm, 0, pred:$p), 0>,
4631               Requires<[HasDSP, IsThumb2]>;
4632 def : InstAlias<"sxtah${p} $Rd, $Rn, $Rm",
4633               (t2SXTAH rGPR:$Rd, rGPR:$Rn, rGPR:$Rm, 0, pred:$p), 0>,
4634               Requires<[HasDSP, IsThumb2]>;
4635 def : InstAlias<"sxtab16${p} $Rd, $Rn, $Rm",
4636               (t2SXTAB16 rGPR:$Rd, rGPR:$Rn, rGPR:$Rm, 0, pred:$p), 0>,
4637               Requires<[HasDSP, IsThumb2]>;
4638 def : InstAlias<"sxtb16${p} $Rd, $Rm",
4639               (t2SXTB16 rGPR:$Rd, rGPR:$Rm, 0, pred:$p), 0>,
4640               Requires<[HasDSP, IsThumb2]>;
4641
4642 def : t2InstAlias<"sxtb${p} $Rd, $Rm",
4643                 (t2SXTB rGPR:$Rd, rGPR:$Rm, 0, pred:$p)>;
4644 def : t2InstAlias<"sxth${p} $Rd, $Rm",
4645                 (t2SXTH rGPR:$Rd, rGPR:$Rm, 0, pred:$p)>;
4646 def : t2InstAlias<"sxtb${p}.w $Rd, $Rm",
4647                 (t2SXTB rGPR:$Rd, rGPR:$Rm, 0, pred:$p)>;
4648 def : t2InstAlias<"sxth${p}.w $Rd, $Rm",
4649                 (t2SXTH rGPR:$Rd, rGPR:$Rm, 0, pred:$p)>;
4650
4651 def : InstAlias<"uxtab${p} $Rd, $Rn, $Rm",
4652               (t2UXTAB rGPR:$Rd, rGPR:$Rn, rGPR:$Rm, 0, pred:$p), 0>,
4653               Requires<[HasDSP, IsThumb2]>;
4654 def : InstAlias<"uxtah${p} $Rd, $Rn, $Rm",
4655               (t2UXTAH rGPR:$Rd, rGPR:$Rn, rGPR:$Rm, 0, pred:$p), 0>,
4656               Requires<[HasDSP, IsThumb2]>;
4657 def : InstAlias<"uxtab16${p} $Rd, $Rn, $Rm",
4658               (t2UXTAB16 rGPR:$Rd, rGPR:$Rn, rGPR:$Rm, 0, pred:$p), 0>,
4659               Requires<[HasDSP, IsThumb2]>;
4660 def : InstAlias<"uxtb16${p} $Rd, $Rm",
4661               (t2UXTB16 rGPR:$Rd, rGPR:$Rm, 0, pred:$p), 0>,
4662               Requires<[HasDSP, IsThumb2]>;
4663
4664 def : t2InstAlias<"uxtb${p} $Rd, $Rm",
4665                 (t2UXTB rGPR:$Rd, rGPR:$Rm, 0, pred:$p)>;
4666 def : t2InstAlias<"uxth${p} $Rd, $Rm",
4667                 (t2UXTH rGPR:$Rd, rGPR:$Rm, 0, pred:$p)>;
4668 def : t2InstAlias<"uxtb${p}.w $Rd, $Rm",
4669                 (t2UXTB rGPR:$Rd, rGPR:$Rm, 0, pred:$p)>;
4670 def : t2InstAlias<"uxth${p}.w $Rd, $Rm",
4671                 (t2UXTH rGPR:$Rd, rGPR:$Rm, 0, pred:$p)>;
4672
4673 // Extend instruction w/o the ".w" optional width specifier.
4674 def : t2InstAlias<"uxtb${p} $Rd, $Rm$rot",
4675                   (t2UXTB rGPR:$Rd, rGPR:$Rm, rot_imm:$rot, pred:$p)>;
4676 def : InstAlias<"uxtb16${p} $Rd, $Rm$rot",
4677                 (t2UXTB16 rGPR:$Rd, rGPR:$Rm, rot_imm:$rot, pred:$p), 0>,
4678                 Requires<[HasDSP, IsThumb2]>;
4679 def : t2InstAlias<"uxth${p} $Rd, $Rm$rot",
4680                   (t2UXTH rGPR:$Rd, rGPR:$Rm, rot_imm:$rot, pred:$p)>;
4681
4682 def : t2InstAlias<"sxtb${p} $Rd, $Rm$rot",
4683                   (t2SXTB rGPR:$Rd, rGPR:$Rm, rot_imm:$rot, pred:$p)>;
4684 def : InstAlias<"sxtb16${p} $Rd, $Rm$rot",
4685                 (t2SXTB16 rGPR:$Rd, rGPR:$Rm, rot_imm:$rot, pred:$p), 0>,
4686                 Requires<[HasDSP, IsThumb2]>;
4687 def : t2InstAlias<"sxth${p} $Rd, $Rm$rot",
4688                   (t2SXTH rGPR:$Rd, rGPR:$Rm, rot_imm:$rot, pred:$p)>;
4689
4690
4691 // "mov Rd, t2_so_imm_not" can be handled via "mvn" in assembly, just like
4692 // for isel.
4693 def : t2InstSubst<"mov${p} $Rd, $imm",
4694                   (t2MVNi rGPR:$Rd, t2_so_imm_not:$imm, pred:$p, zero_reg)>;
4695 def : t2InstSubst<"mvn${s}${p} $Rd, $imm",
4696                   (t2MOVi rGPR:$Rd, t2_so_imm_not:$imm, pred:$p, s_cc_out:$s)>;
4697 // Same for AND <--> BIC
4698 def : t2InstSubst<"bic${s}${p} $Rd, $Rn, $imm",
4699                   (t2ANDri rGPR:$Rd, rGPR:$Rn, t2_so_imm_not:$imm,
4700                            pred:$p, cc_out:$s)>;
4701 def : t2InstSubst<"bic${s}${p} $Rdn, $imm",
4702                   (t2ANDri rGPR:$Rdn, rGPR:$Rdn, t2_so_imm_not:$imm,
4703                            pred:$p, cc_out:$s)>;
4704 def : t2InstSubst<"and${s}${p} $Rd, $Rn, $imm",
4705                   (t2BICri rGPR:$Rd, rGPR:$Rn, t2_so_imm_not:$imm,
4706                            pred:$p, cc_out:$s)>;
4707 def : t2InstSubst<"and${s}${p} $Rdn, $imm",
4708                   (t2BICri rGPR:$Rdn, rGPR:$Rdn, t2_so_imm_not:$imm,
4709                            pred:$p, cc_out:$s)>;
4710 // And ORR <--> ORN
4711 def : t2InstSubst<"orn${s}${p} $Rd, $Rn, $imm",
4712                   (t2ORRri rGPR:$Rd, rGPR:$Rn, t2_so_imm_not:$imm,
4713                            pred:$p, cc_out:$s)>;
4714 def : t2InstSubst<"orn${s}${p} $Rdn, $imm",
4715                   (t2ORRri rGPR:$Rdn, rGPR:$Rdn, t2_so_imm_not:$imm,
4716                            pred:$p, cc_out:$s)>;
4717 def : t2InstSubst<"orr${s}${p} $Rd, $Rn, $imm",
4718                   (t2ORNri rGPR:$Rd, rGPR:$Rn, t2_so_imm_not:$imm,
4719                            pred:$p, cc_out:$s)>;
4720 def : t2InstSubst<"orr${s}${p} $Rdn, $imm",
4721                   (t2ORNri rGPR:$Rdn, rGPR:$Rdn, t2_so_imm_not:$imm,
4722                            pred:$p, cc_out:$s)>;
4723 // Likewise, "add Rd, t2_so_imm_neg" -> sub
4724 def : t2InstSubst<"add${s}${p} $Rd, $Rn, $imm",
4725                   (t2SUBri GPRnopc:$Rd, GPRnopc:$Rn, t2_so_imm_neg:$imm,
4726                            pred:$p, cc_out:$s)>;
4727 def : t2InstSubst<"add${s}${p} $Rd, $imm",
4728                   (t2SUBri GPRnopc:$Rd, GPRnopc:$Rd, t2_so_imm_neg:$imm,
4729                            pred:$p, cc_out:$s)>;
4730 // Same for CMP <--> CMN via t2_so_imm_neg
4731 def : t2InstSubst<"cmp${p} $Rd, $imm",
4732                   (t2CMNri rGPR:$Rd, t2_so_imm_neg:$imm, pred:$p)>;
4733 def : t2InstSubst<"cmn${p} $Rd, $imm",
4734                   (t2CMPri rGPR:$Rd, t2_so_imm_neg:$imm, pred:$p)>;
4735
4736
4737 // Wide 'mul' encoding can be specified with only two operands.
4738 def : t2InstAlias<"mul${p} $Rn, $Rm",
4739                   (t2MUL rGPR:$Rn, rGPR:$Rm, rGPR:$Rn, pred:$p)>;
4740
4741 // "neg" is and alias for "rsb rd, rn, #0"
4742 def : t2InstAlias<"neg${s}${p} $Rd, $Rm",
4743                   (t2RSBri rGPR:$Rd, rGPR:$Rm, 0, pred:$p, cc_out:$s)>;
4744
4745 // MOV so_reg assembler pseudos. InstAlias isn't expressive enough for
4746 // these, unfortunately.
4747 // FIXME: LSL #0 in the shift should allow SP to be used as either the
4748 // source or destination (but not both).
4749 def t2MOVsi: t2AsmPseudo<"mov${p} $Rd, $shift",
4750                          (ins rGPR:$Rd, t2_so_reg:$shift, pred:$p)>;
4751 def t2MOVSsi: t2AsmPseudo<"movs${p} $Rd, $shift",
4752                           (ins rGPR:$Rd, t2_so_reg:$shift, pred:$p)>;
4753
4754 def t2MOVsr: t2AsmPseudo<"mov${p} $Rd, $shift",
4755                          (ins rGPR:$Rd, so_reg_reg:$shift, pred:$p)>;
4756 def t2MOVSsr: t2AsmPseudo<"movs${p} $Rd, $shift",
4757                           (ins rGPR:$Rd, so_reg_reg:$shift, pred:$p)>;
4758
4759 // ADR w/o the .w suffix
4760 def : t2InstAlias<"adr${p} $Rd, $addr",
4761                   (t2ADR rGPR:$Rd, t2adrlabel:$addr, pred:$p)>;
4762
4763 // LDR(literal) w/ alternate [pc, #imm] syntax.
4764 def t2LDRpcrel   : t2AsmPseudo<"ldr${p} $Rt, $addr",
4765                          (ins GPR:$Rt, t2ldr_pcrel_imm12:$addr, pred:$p)>;
4766 def t2LDRBpcrel  : t2AsmPseudo<"ldrb${p} $Rt, $addr",
4767                          (ins GPRnopc:$Rt, t2ldr_pcrel_imm12:$addr, pred:$p)>;
4768 def t2LDRHpcrel  : t2AsmPseudo<"ldrh${p} $Rt, $addr",
4769                          (ins GPRnopc:$Rt, t2ldr_pcrel_imm12:$addr, pred:$p)>;
4770 def t2LDRSBpcrel  : t2AsmPseudo<"ldrsb${p} $Rt, $addr",
4771                          (ins GPRnopc:$Rt, t2ldr_pcrel_imm12:$addr, pred:$p)>;
4772 def t2LDRSHpcrel  : t2AsmPseudo<"ldrsh${p} $Rt, $addr",
4773                          (ins GPRnopc:$Rt, t2ldr_pcrel_imm12:$addr, pred:$p)>;
4774     // Version w/ the .w suffix.
4775 def : t2InstAlias<"ldr${p}.w $Rt, $addr",
4776                   (t2LDRpcrel GPR:$Rt, t2ldr_pcrel_imm12:$addr, pred:$p), 0>;
4777 def : t2InstAlias<"ldrb${p}.w $Rt, $addr",
4778                   (t2LDRBpcrel GPRnopc:$Rt, t2ldr_pcrel_imm12:$addr, pred:$p)>;
4779 def : t2InstAlias<"ldrh${p}.w $Rt, $addr",
4780                   (t2LDRHpcrel GPRnopc:$Rt, t2ldr_pcrel_imm12:$addr, pred:$p)>;
4781 def : t2InstAlias<"ldrsb${p}.w $Rt, $addr",
4782                   (t2LDRSBpcrel GPRnopc:$Rt, t2ldr_pcrel_imm12:$addr, pred:$p)>;
4783 def : t2InstAlias<"ldrsh${p}.w $Rt, $addr",
4784                   (t2LDRSHpcrel GPRnopc:$Rt, t2ldr_pcrel_imm12:$addr, pred:$p)>;
4785
4786 def : t2InstAlias<"add${p} $Rd, pc, $imm",
4787                   (t2ADR rGPR:$Rd, imm0_4095:$imm, pred:$p)>;
4788
4789 // Pseudo instruction ldr Rt, =immediate
4790 def t2LDRConstPool
4791   : t2AsmPseudo<"ldr${p} $Rt, $immediate",
4792                 (ins GPRnopc:$Rt, const_pool_asm_imm:$immediate, pred:$p)>;
4793 // Version w/ the .w suffix.
4794 def : t2InstAlias<"ldr${p}.w $Rt, $immediate",
4795                   (t2LDRConstPool GPRnopc:$Rt,
4796                   const_pool_asm_imm:$immediate, pred:$p)>;
4797
4798 // PLD/PLDW/PLI with alternate literal form.
4799 def : t2InstAlias<"pld${p} $addr",
4800                   (t2PLDpci t2ldr_pcrel_imm12:$addr, pred:$p)>;
4801 def : InstAlias<"pli${p} $addr",
4802                  (t2PLIpci  t2ldr_pcrel_imm12:$addr, pred:$p), 0>,
4803       Requires<[IsThumb2,HasV7]>;