649b5c374cb891cbef1a8c71412a5a9971cb6621
[oota-llvm.git] / lib / Target / ARM / ARMInstrThumb2.td
1 //===- ARMInstrThumb2.td - Thumb2 support for ARM -------------------------===//
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 : Operand<i32> {
16   let PrintMethod = "printMandatoryPredicateOperand";
17 }
18
19 // IT block condition mask
20 def it_mask : Operand<i32> {
21   let PrintMethod = "printThumbITMask";
22 }
23
24 // Table branch address
25 def tb_addrmode : Operand<i32> {
26   let PrintMethod = "printTBAddrMode";
27 }
28
29 // Shifted operands. No register controlled shifts for Thumb2.
30 // Note: We do not support rrx shifted operands yet.
31 def t2_so_reg : Operand<i32>,    // reg imm
32                 ComplexPattern<i32, 2, "SelectT2ShifterOperandReg",
33                                [shl,srl,sra,rotr]> {
34   let PrintMethod = "printT2SOOperand";
35   let MIOperandInfo = (ops rGPR, i32imm);
36 }
37
38 // t2_so_imm_not_XFORM - Return the complement of a t2_so_imm value
39 def t2_so_imm_not_XFORM : SDNodeXForm<imm, [{
40   return CurDAG->getTargetConstant(~((uint32_t)N->getZExtValue()), MVT::i32);
41 }]>;
42
43 // t2_so_imm_neg_XFORM - Return the negation of a t2_so_imm value
44 def t2_so_imm_neg_XFORM : SDNodeXForm<imm, [{
45   return CurDAG->getTargetConstant(-((int)N->getZExtValue()), MVT::i32);
46 }]>;
47
48 // t2_so_imm - Match a 32-bit immediate operand, which is an
49 // 8-bit immediate rotated by an arbitrary number of bits, or an 8-bit
50 // immediate splatted into multiple bytes of the word. t2_so_imm values are
51 // represented in the imm field in the same 12-bit form that they are encoded
52 // into t2_so_imm instructions: the 8-bit immediate is the least significant
53 // bits [bits 0-7], the 4-bit shift/splat amount is the next 4 bits [bits 8-11].
54 def t2_so_imm : Operand<i32>, PatLeaf<(imm), [{ return Pred_t2_so_imm(N); }]>;
55
56 // t2_so_imm_not - Match an immediate that is a complement
57 // of a t2_so_imm.
58 def t2_so_imm_not : Operand<i32>,
59                     PatLeaf<(imm), [{
60   return ARM_AM::getT2SOImmVal(~((uint32_t)N->getZExtValue())) != -1;
61 }], t2_so_imm_not_XFORM>;
62
63 // t2_so_imm_neg - Match an immediate that is a negation of a t2_so_imm.
64 def t2_so_imm_neg : Operand<i32>,
65                     PatLeaf<(imm), [{
66   return ARM_AM::getT2SOImmVal(-((int)N->getZExtValue())) != -1;
67 }], t2_so_imm_neg_XFORM>;
68
69 // Break t2_so_imm's up into two pieces.  This handles immediates with up to 16
70 // bits set in them.  This uses t2_so_imm2part to match and t2_so_imm2part_[12]
71 // to get the first/second pieces.
72 def t2_so_imm2part : Operand<i32>,
73                   PatLeaf<(imm), [{
74       return ARM_AM::isT2SOImmTwoPartVal((unsigned)N->getZExtValue());
75     }]> {
76 }
77
78 def t2_so_imm2part_1 : SDNodeXForm<imm, [{
79   unsigned V = ARM_AM::getT2SOImmTwoPartFirst((unsigned)N->getZExtValue());
80   return CurDAG->getTargetConstant(V, MVT::i32);
81 }]>;
82
83 def t2_so_imm2part_2 : SDNodeXForm<imm, [{
84   unsigned V = ARM_AM::getT2SOImmTwoPartSecond((unsigned)N->getZExtValue());
85   return CurDAG->getTargetConstant(V, MVT::i32);
86 }]>;
87
88 def t2_so_neg_imm2part : Operand<i32>, PatLeaf<(imm), [{
89       return ARM_AM::isT2SOImmTwoPartVal(-(int)N->getZExtValue());
90     }]> {
91 }
92
93 def t2_so_neg_imm2part_1 : SDNodeXForm<imm, [{
94   unsigned V = ARM_AM::getT2SOImmTwoPartFirst(-(int)N->getZExtValue());
95   return CurDAG->getTargetConstant(V, MVT::i32);
96 }]>;
97
98 def t2_so_neg_imm2part_2 : SDNodeXForm<imm, [{
99   unsigned V = ARM_AM::getT2SOImmTwoPartSecond(-(int)N->getZExtValue());
100   return CurDAG->getTargetConstant(V, MVT::i32);
101 }]>;
102
103 /// imm1_31 predicate - True if the 32-bit immediate is in the range [1,31].
104 def imm1_31 : PatLeaf<(i32 imm), [{
105   return (int32_t)N->getZExtValue() >= 1 && (int32_t)N->getZExtValue() < 32;
106 }]>;
107
108 /// imm0_4095 predicate - True if the 32-bit immediate is in the range [0.4095].
109 def imm0_4095 : Operand<i32>,
110                 PatLeaf<(i32 imm), [{
111   return (uint32_t)N->getZExtValue() < 4096;
112 }]>;
113
114 def imm0_4095_neg : PatLeaf<(i32 imm), [{
115  return (uint32_t)(-N->getZExtValue()) < 4096;
116 }], imm_neg_XFORM>;
117
118 def imm0_255_neg : PatLeaf<(i32 imm), [{
119   return (uint32_t)(-N->getZExtValue()) < 255;
120 }], imm_neg_XFORM>;
121
122 def imm0_255_not : PatLeaf<(i32 imm), [{
123   return (uint32_t)(~N->getZExtValue()) < 255;
124 }], imm_comp_XFORM>;
125
126 // Define Thumb2 specific addressing modes.
127
128 // t2addrmode_imm12  := reg + imm12
129 def t2addrmode_imm12 : Operand<i32>,
130                        ComplexPattern<i32, 2, "SelectT2AddrModeImm12", []> {
131   let PrintMethod = "printT2AddrModeImm12Operand";
132   let MIOperandInfo = (ops GPR:$base, i32imm:$offsimm);
133 }
134
135 // t2addrmode_imm8  := reg +/- imm8
136 def t2addrmode_imm8 : Operand<i32>,
137                       ComplexPattern<i32, 2, "SelectT2AddrModeImm8", []> {
138   let PrintMethod = "printT2AddrModeImm8Operand";
139   let MIOperandInfo = (ops GPR:$base, i32imm:$offsimm);
140 }
141
142 def t2am_imm8_offset : Operand<i32>,
143                        ComplexPattern<i32, 1, "SelectT2AddrModeImm8Offset", []>{
144   let PrintMethod = "printT2AddrModeImm8OffsetOperand";
145 }
146
147 // t2addrmode_imm8s4  := reg +/- (imm8 << 2)
148 def t2addrmode_imm8s4 : Operand<i32>,
149                         ComplexPattern<i32, 2, "SelectT2AddrModeImm8s4", []> {
150   let PrintMethod = "printT2AddrModeImm8s4Operand";
151   let MIOperandInfo = (ops GPR:$base, i32imm:$offsimm);
152 }
153
154 def t2am_imm8s4_offset : Operand<i32> {
155   let PrintMethod = "printT2AddrModeImm8s4OffsetOperand";
156 }
157
158 // t2addrmode_so_reg  := reg + (reg << imm2)
159 def t2addrmode_so_reg : Operand<i32>,
160                         ComplexPattern<i32, 3, "SelectT2AddrModeSoReg", []> {
161   let PrintMethod = "printT2AddrModeSoRegOperand";
162   let MIOperandInfo = (ops GPR:$base, rGPR:$offsreg, i32imm:$offsimm);
163 }
164
165
166 //===----------------------------------------------------------------------===//
167 // Multiclass helpers...
168 //
169
170 /// T2I_un_irs - Defines a set of (op reg, {so_imm|r|so_reg}) patterns for a
171 /// unary operation that produces a value. These are predicable and can be
172 /// changed to modify CPSR.
173 multiclass T2I_un_irs<bits<4> opcod, string opc, PatFrag opnode,
174                       bit Cheap = 0, bit ReMat = 0> {
175    // shifted imm
176    def i : T2sI<(outs rGPR:$dst), (ins t2_so_imm:$src), IIC_iMOVi,
177                 opc, "\t$dst, $src",
178                 [(set rGPR:$dst, (opnode t2_so_imm:$src))]> {
179      let isAsCheapAsAMove = Cheap;
180      let isReMaterializable = ReMat;
181      let Inst{31-27} = 0b11110;
182      let Inst{25} = 0;
183      let Inst{24-21} = opcod;
184      let Inst{20} = ?; // The S bit.
185      let Inst{19-16} = 0b1111; // Rn
186      let Inst{15} = 0;
187    }
188    // register
189    def r : T2sI<(outs rGPR:$dst), (ins rGPR:$src), IIC_iMOVr,
190                 opc, ".w\t$dst, $src",
191                 [(set rGPR:$dst, (opnode rGPR:$src))]> {
192      let Inst{31-27} = 0b11101;
193      let Inst{26-25} = 0b01;
194      let Inst{24-21} = opcod;
195      let Inst{20} = ?; // The S bit.
196      let Inst{19-16} = 0b1111; // Rn
197      let Inst{14-12} = 0b000; // imm3
198      let Inst{7-6} = 0b00; // imm2
199      let Inst{5-4} = 0b00; // type
200    }
201    // shifted register
202    def s : T2sI<(outs rGPR:$dst), (ins t2_so_reg:$src), IIC_iMOVsi,
203                 opc, ".w\t$dst, $src",
204                 [(set rGPR:$dst, (opnode t2_so_reg:$src))]> {
205      let Inst{31-27} = 0b11101;
206      let Inst{26-25} = 0b01;
207      let Inst{24-21} = opcod;
208      let Inst{20} = ?; // The S bit.
209      let Inst{19-16} = 0b1111; // Rn
210    }
211 }
212
213 /// T2I_bin_irs - Defines a set of (op reg, {so_imm|r|so_reg}) patterns for a
214 /// binary operation that produces a value. These are predicable and can be
215 /// changed to modify CPSR.
216 multiclass T2I_bin_irs<bits<4> opcod, string opc, PatFrag opnode,
217                        bit Commutable = 0, string wide =""> {
218    // shifted imm
219    def ri : T2sI<(outs rGPR:$dst), (ins rGPR:$lhs, t2_so_imm:$rhs), IIC_iALUi,
220                  opc, "\t$dst, $lhs, $rhs",
221                  [(set rGPR:$dst, (opnode rGPR:$lhs, t2_so_imm:$rhs))]> {
222      let Inst{31-27} = 0b11110;
223      let Inst{25} = 0;
224      let Inst{24-21} = opcod;
225      let Inst{20} = ?; // The S bit.
226      let Inst{15} = 0;
227    }
228    // register
229    def rr : T2sI<(outs rGPR:$dst), (ins rGPR:$lhs, rGPR:$rhs), IIC_iALUr,
230                  opc, !strconcat(wide, "\t$dst, $lhs, $rhs"),
231                  [(set rGPR:$dst, (opnode rGPR:$lhs, rGPR:$rhs))]> {
232      let isCommutable = Commutable;
233      let Inst{31-27} = 0b11101;
234      let Inst{26-25} = 0b01;
235      let Inst{24-21} = opcod;
236      let Inst{20} = ?; // The S bit.
237      let Inst{14-12} = 0b000; // imm3
238      let Inst{7-6} = 0b00; // imm2
239      let Inst{5-4} = 0b00; // type
240    }
241    // shifted register
242    def rs : T2sI<(outs rGPR:$dst), (ins rGPR:$lhs, t2_so_reg:$rhs), IIC_iALUsi,
243                  opc, !strconcat(wide, "\t$dst, $lhs, $rhs"),
244                  [(set rGPR:$dst, (opnode rGPR:$lhs, t2_so_reg:$rhs))]> {
245      let Inst{31-27} = 0b11101;
246      let Inst{26-25} = 0b01;
247      let Inst{24-21} = opcod;
248      let Inst{20} = ?; // The S bit.
249    }
250 }
251
252 /// T2I_bin_w_irs - Same as T2I_bin_irs except these operations need
253 //  the ".w" prefix to indicate that they are wide.
254 multiclass T2I_bin_w_irs<bits<4> opcod, string opc, PatFrag opnode,
255                          bit Commutable = 0> :
256     T2I_bin_irs<opcod, opc, opnode, Commutable, ".w">;
257
258 /// T2I_rbin_is - Same as T2I_bin_irs except the order of operands are
259 /// reversed.  The 'rr' form is only defined for the disassembler; for codegen
260 /// it is equivalent to the T2I_bin_irs counterpart.
261 multiclass T2I_rbin_irs<bits<4> opcod, string opc, PatFrag opnode> {
262    // shifted imm
263    def ri : T2sI<(outs rGPR:$dst), (ins rGPR:$rhs, t2_so_imm:$lhs), IIC_iALUi,
264                  opc, ".w\t$dst, $rhs, $lhs",
265                  [(set rGPR:$dst, (opnode t2_so_imm:$lhs, rGPR:$rhs))]> {
266      let Inst{31-27} = 0b11110;
267      let Inst{25} = 0;
268      let Inst{24-21} = opcod;
269      let Inst{20} = ?; // The S bit.
270      let Inst{15} = 0;
271    }
272    // register
273    def rr : T2sI<(outs rGPR:$dst), (ins rGPR:$rhs, rGPR:$lhs), IIC_iALUr,
274                  opc, "\t$dst, $rhs, $lhs",
275                  [/* For disassembly only; pattern left blank */]> {
276      let Inst{31-27} = 0b11101;
277      let Inst{26-25} = 0b01;
278      let Inst{24-21} = opcod;
279      let Inst{20} = ?; // The S bit.
280      let Inst{14-12} = 0b000; // imm3
281      let Inst{7-6} = 0b00; // imm2
282      let Inst{5-4} = 0b00; // type
283    }
284    // shifted register
285    def rs : T2sI<(outs rGPR:$dst), (ins rGPR:$rhs, t2_so_reg:$lhs), IIC_iALUsi,
286                  opc, "\t$dst, $rhs, $lhs",
287                  [(set rGPR:$dst, (opnode t2_so_reg:$lhs, rGPR:$rhs))]> {
288      let Inst{31-27} = 0b11101;
289      let Inst{26-25} = 0b01;
290      let Inst{24-21} = opcod;
291      let Inst{20} = ?; // The S bit.
292    }
293 }
294
295 /// T2I_bin_s_irs - Similar to T2I_bin_irs except it sets the 's' bit so the
296 /// instruction modifies the CPSR register.
297 let Defs = [CPSR] in {
298 multiclass T2I_bin_s_irs<bits<4> opcod, string opc, PatFrag opnode,
299                          bit Commutable = 0> {
300    // shifted imm
301    def ri : T2I<(outs rGPR:$dst), (ins GPR:$lhs, t2_so_imm:$rhs), IIC_iALUi,
302                 !strconcat(opc, "s"), ".w\t$dst, $lhs, $rhs",
303                 [(set rGPR:$dst, (opnode GPR:$lhs, t2_so_imm:$rhs))]> {
304      let Inst{31-27} = 0b11110;
305      let Inst{25} = 0;
306      let Inst{24-21} = opcod;
307      let Inst{20} = 1; // The S bit.
308      let Inst{15} = 0;
309    }
310    // register
311    def rr : T2I<(outs rGPR:$dst), (ins GPR:$lhs, rGPR:$rhs), IIC_iALUr,
312                 !strconcat(opc, "s"), ".w\t$dst, $lhs, $rhs",
313                 [(set rGPR:$dst, (opnode GPR:$lhs, rGPR:$rhs))]> {
314      let isCommutable = Commutable;
315      let Inst{31-27} = 0b11101;
316      let Inst{26-25} = 0b01;
317      let Inst{24-21} = opcod;
318      let Inst{20} = 1; // The S bit.
319      let Inst{14-12} = 0b000; // imm3
320      let Inst{7-6} = 0b00; // imm2
321      let Inst{5-4} = 0b00; // type
322    }
323    // shifted register
324    def rs : T2I<(outs rGPR:$dst), (ins GPR:$lhs, t2_so_reg:$rhs), IIC_iALUsi,
325                 !strconcat(opc, "s"), ".w\t$dst, $lhs, $rhs",
326                 [(set rGPR:$dst, (opnode GPR:$lhs, t2_so_reg:$rhs))]> {
327      let Inst{31-27} = 0b11101;
328      let Inst{26-25} = 0b01;
329      let Inst{24-21} = opcod;
330      let Inst{20} = 1; // The S bit.
331    }
332 }
333 }
334
335 /// T2I_bin_ii12rs - Defines a set of (op reg, {so_imm|imm0_4095|r|so_reg})
336 /// patterns for a binary operation that produces a value.
337 multiclass T2I_bin_ii12rs<bits<3> op23_21, string opc, PatFrag opnode,
338                           bit Commutable = 0> {
339    // shifted imm
340    def ri : T2sI<(outs rGPR:$dst), (ins GPR:$lhs, t2_so_imm:$rhs), IIC_iALUi,
341                  opc, ".w\t$dst, $lhs, $rhs",
342                  [(set rGPR:$dst, (opnode GPR:$lhs, t2_so_imm:$rhs))]> {
343      let Inst{31-27} = 0b11110;
344      let Inst{25} = 0;
345      let Inst{24} = 1;
346      let Inst{23-21} = op23_21;
347      let Inst{20} = 0; // The S bit.
348      let Inst{15} = 0;
349    }
350    // 12-bit imm
351    def ri12 : T2I<(outs rGPR:$dst), (ins GPR:$lhs, imm0_4095:$rhs), IIC_iALUi,
352                   !strconcat(opc, "w"), "\t$dst, $lhs, $rhs",
353                   [(set rGPR:$dst, (opnode GPR:$lhs, imm0_4095:$rhs))]> {
354      let Inst{31-27} = 0b11110;
355      let Inst{25} = 1;
356      let Inst{24} = 0;
357      let Inst{23-21} = op23_21;
358      let Inst{20} = 0; // The S bit.
359      let Inst{15} = 0;
360    }
361    // register
362    def rr : T2sI<(outs rGPR:$dst), (ins GPR:$lhs, rGPR:$rhs), IIC_iALUr,
363                  opc, ".w\t$dst, $lhs, $rhs",
364                  [(set rGPR:$dst, (opnode GPR:$lhs, rGPR:$rhs))]> {
365      let isCommutable = Commutable;
366      let Inst{31-27} = 0b11101;
367      let Inst{26-25} = 0b01;
368      let Inst{24} = 1;
369      let Inst{23-21} = op23_21;
370      let Inst{20} = 0; // The S bit.
371      let Inst{14-12} = 0b000; // imm3
372      let Inst{7-6} = 0b00; // imm2
373      let Inst{5-4} = 0b00; // type
374    }
375    // shifted register
376    def rs : T2sI<(outs rGPR:$dst), (ins GPR:$lhs, t2_so_reg:$rhs), IIC_iALUsi,
377                  opc, ".w\t$dst, $lhs, $rhs",
378                  [(set rGPR:$dst, (opnode GPR:$lhs, t2_so_reg:$rhs))]> {
379      let Inst{31-27} = 0b11101;
380      let Inst{26-25} = 0b01;
381      let Inst{24} = 1;
382      let Inst{23-21} = op23_21;
383      let Inst{20} = 0; // The S bit.
384    }
385 }
386
387 /// T2I_adde_sube_irs - Defines a set of (op reg, {so_imm|r|so_reg}) patterns
388 /// for a binary operation that produces a value and use the carry
389 /// bit. It's not predicable.
390 let Uses = [CPSR] in {
391 multiclass T2I_adde_sube_irs<bits<4> opcod, string opc, PatFrag opnode,
392                              bit Commutable = 0> {
393    // shifted imm
394    def ri : T2sI<(outs rGPR:$dst), (ins rGPR:$lhs, t2_so_imm:$rhs), IIC_iALUi,
395                  opc, "\t$dst, $lhs, $rhs",
396                  [(set rGPR:$dst, (opnode rGPR:$lhs, t2_so_imm:$rhs))]>,
397                  Requires<[IsThumb2]> {
398      let Inst{31-27} = 0b11110;
399      let Inst{25} = 0;
400      let Inst{24-21} = opcod;
401      let Inst{20} = 0; // The S bit.
402      let Inst{15} = 0;
403    }
404    // register
405    def rr : T2sI<(outs rGPR:$dst), (ins rGPR:$lhs, rGPR:$rhs), IIC_iALUr,
406                  opc, ".w\t$dst, $lhs, $rhs",
407                  [(set rGPR:$dst, (opnode rGPR:$lhs, rGPR:$rhs))]>,
408                  Requires<[IsThumb2]> {
409      let isCommutable = Commutable;
410      let Inst{31-27} = 0b11101;
411      let Inst{26-25} = 0b01;
412      let Inst{24-21} = opcod;
413      let Inst{20} = 0; // The S bit.
414      let Inst{14-12} = 0b000; // imm3
415      let Inst{7-6} = 0b00; // imm2
416      let Inst{5-4} = 0b00; // type
417    }
418    // shifted register
419    def rs : T2sI<(outs rGPR:$dst), (ins rGPR:$lhs, t2_so_reg:$rhs), IIC_iALUsi,
420                  opc, ".w\t$dst, $lhs, $rhs",
421                  [(set rGPR:$dst, (opnode rGPR:$lhs, t2_so_reg:$rhs))]>,
422                  Requires<[IsThumb2]> {
423      let Inst{31-27} = 0b11101;
424      let Inst{26-25} = 0b01;
425      let Inst{24-21} = opcod;
426      let Inst{20} = 0; // The S bit.
427    }
428 }
429
430 // Carry setting variants
431 let Defs = [CPSR] in {
432 multiclass T2I_adde_sube_s_irs<bits<4> opcod, string opc, PatFrag opnode,
433                                bit Commutable = 0> {
434    // shifted imm
435    def ri : T2sI<(outs rGPR:$dst), (ins rGPR:$lhs, t2_so_imm:$rhs), IIC_iALUi,
436                  opc, "\t$dst, $lhs, $rhs",
437                  [(set rGPR:$dst, (opnode rGPR:$lhs, t2_so_imm:$rhs))]>,
438                  Requires<[IsThumb2]> {
439      let Inst{31-27} = 0b11110;
440      let Inst{25} = 0;
441      let Inst{24-21} = opcod;
442      let Inst{20} = 1; // The S bit.
443      let Inst{15} = 0;
444    }
445    // register
446    def rr : T2sI<(outs rGPR:$dst), (ins rGPR:$lhs, rGPR:$rhs), IIC_iALUr,
447                  opc, ".w\t$dst, $lhs, $rhs",
448                  [(set rGPR:$dst, (opnode rGPR:$lhs, rGPR:$rhs))]>,
449                  Requires<[IsThumb2]> {
450      let isCommutable = Commutable;
451      let Inst{31-27} = 0b11101;
452      let Inst{26-25} = 0b01;
453      let Inst{24-21} = opcod;
454      let Inst{20} = 1; // The S bit.
455      let Inst{14-12} = 0b000; // imm3
456      let Inst{7-6} = 0b00; // imm2
457      let Inst{5-4} = 0b00; // type
458    }
459    // shifted register
460    def rs : T2sI<(outs rGPR:$dst), (ins rGPR:$lhs, t2_so_reg:$rhs), IIC_iALUsi,
461                  opc, ".w\t$dst, $lhs, $rhs",
462                  [(set rGPR:$dst, (opnode rGPR:$lhs, t2_so_reg:$rhs))]>,
463                  Requires<[IsThumb2]> {
464      let Inst{31-27} = 0b11101;
465      let Inst{26-25} = 0b01;
466      let Inst{24-21} = opcod;
467      let Inst{20} = 1; // The S bit.
468    }
469 }
470 }
471 }
472
473 /// T2I_rbin_s_is - Same as T2I_rbin_irs except sets 's' bit and the register
474 /// version is not needed since this is only for codegen.
475 let Defs = [CPSR] in {
476 multiclass T2I_rbin_s_is<bits<4> opcod, string opc, PatFrag opnode> {
477    // shifted imm
478    def ri : T2I<(outs rGPR:$dst), (ins rGPR:$rhs, t2_so_imm:$lhs), IIC_iALUi,
479                 !strconcat(opc, "s"), ".w\t$dst, $rhs, $lhs",
480                 [(set rGPR:$dst, (opnode t2_so_imm:$lhs, rGPR:$rhs))]> {
481      let Inst{31-27} = 0b11110;
482      let Inst{25} = 0;
483      let Inst{24-21} = opcod;
484      let Inst{20} = 1; // The S bit.
485      let Inst{15} = 0;
486    }
487    // shifted register
488    def rs : T2I<(outs rGPR:$dst), (ins rGPR:$rhs, t2_so_reg:$lhs), IIC_iALUsi,
489                 !strconcat(opc, "s"), "\t$dst, $rhs, $lhs",
490                 [(set rGPR:$dst, (opnode t2_so_reg:$lhs, rGPR:$rhs))]> {
491      let Inst{31-27} = 0b11101;
492      let Inst{26-25} = 0b01;
493      let Inst{24-21} = opcod;
494      let Inst{20} = 1; // The S bit.
495    }
496 }
497 }
498
499 /// T2I_sh_ir - Defines a set of (op reg, {so_imm|r}) patterns for a shift /
500 //  rotate operation that produces a value.
501 multiclass T2I_sh_ir<bits<2> opcod, string opc, PatFrag opnode> {
502    // 5-bit imm
503    def ri : T2sI<(outs rGPR:$dst), (ins rGPR:$lhs, i32imm:$rhs), IIC_iMOVsi,
504                  opc, ".w\t$dst, $lhs, $rhs",
505                  [(set rGPR:$dst, (opnode rGPR:$lhs, imm1_31:$rhs))]> {
506      let Inst{31-27} = 0b11101;
507      let Inst{26-21} = 0b010010;
508      let Inst{19-16} = 0b1111; // Rn
509      let Inst{5-4} = opcod;
510    }
511    // register
512    def rr : T2sI<(outs rGPR:$dst), (ins rGPR:$lhs, rGPR:$rhs), IIC_iMOVsr,
513                  opc, ".w\t$dst, $lhs, $rhs",
514                  [(set rGPR:$dst, (opnode rGPR:$lhs, rGPR:$rhs))]> {
515      let Inst{31-27} = 0b11111;
516      let Inst{26-23} = 0b0100;
517      let Inst{22-21} = opcod;
518      let Inst{15-12} = 0b1111;
519      let Inst{7-4} = 0b0000;
520    }
521 }
522
523 /// T2I_cmp_irs - Defines a set of (op r, {so_imm|r|so_reg}) cmp / test
524 /// patterns. Similar to T2I_bin_irs except the instruction does not produce
525 /// a explicit result, only implicitly set CPSR.
526 let Defs = [CPSR] in {
527 multiclass T2I_cmp_irs<bits<4> opcod, string opc, PatFrag opnode> {
528    // shifted imm
529    def ri : T2I<(outs), (ins GPR:$lhs, t2_so_imm:$rhs), IIC_iCMPi,
530                 opc, ".w\t$lhs, $rhs",
531                 [(opnode GPR:$lhs, t2_so_imm:$rhs)]> {
532      let Inst{31-27} = 0b11110;
533      let Inst{25} = 0;
534      let Inst{24-21} = opcod;
535      let Inst{20} = 1; // The S bit.
536      let Inst{15} = 0;
537      let Inst{11-8} = 0b1111; // Rd
538    }
539    // register
540    def rr : T2I<(outs), (ins GPR:$lhs, rGPR:$rhs), IIC_iCMPr,
541                 opc, ".w\t$lhs, $rhs",
542                 [(opnode GPR:$lhs, rGPR:$rhs)]> {
543      let Inst{31-27} = 0b11101;
544      let Inst{26-25} = 0b01;
545      let Inst{24-21} = opcod;
546      let Inst{20} = 1; // The S bit.
547      let Inst{14-12} = 0b000; // imm3
548      let Inst{11-8} = 0b1111; // Rd
549      let Inst{7-6} = 0b00; // imm2
550      let Inst{5-4} = 0b00; // type
551    }
552    // shifted register
553    def rs : T2I<(outs), (ins GPR:$lhs, t2_so_reg:$rhs), IIC_iCMPsi,
554                 opc, ".w\t$lhs, $rhs",
555                 [(opnode GPR:$lhs, t2_so_reg:$rhs)]> {
556      let Inst{31-27} = 0b11101;
557      let Inst{26-25} = 0b01;
558      let Inst{24-21} = opcod;
559      let Inst{20} = 1; // The S bit.
560      let Inst{11-8} = 0b1111; // Rd
561    }
562 }
563 }
564
565 /// T2I_ld - Defines a set of (op r, {imm12|imm8|so_reg}) load patterns.
566 multiclass T2I_ld<bit signed, bits<2> opcod, string opc, PatFrag opnode> {
567   def i12 : T2Ii12<(outs GPR:$dst), (ins t2addrmode_imm12:$addr), IIC_iLoadi,
568                    opc, ".w\t$dst, $addr",
569                    [(set GPR:$dst, (opnode t2addrmode_imm12:$addr))]> {
570     let Inst{31-27} = 0b11111;
571     let Inst{26-25} = 0b00;
572     let Inst{24} = signed;
573     let Inst{23} = 1;
574     let Inst{22-21} = opcod;
575     let Inst{20} = 1; // load
576   }
577   def i8  : T2Ii8 <(outs GPR:$dst), (ins t2addrmode_imm8:$addr), IIC_iLoadi,
578                    opc, "\t$dst, $addr",
579                    [(set GPR:$dst, (opnode t2addrmode_imm8:$addr))]> {
580     let Inst{31-27} = 0b11111;
581     let Inst{26-25} = 0b00;
582     let Inst{24} = signed;
583     let Inst{23} = 0;
584     let Inst{22-21} = opcod;
585     let Inst{20} = 1; // load
586     let Inst{11} = 1;
587     // Offset: index==TRUE, wback==FALSE
588     let Inst{10} = 1; // The P bit.
589     let Inst{8} = 0; // The W bit.
590   }
591   def s   : T2Iso <(outs GPR:$dst), (ins t2addrmode_so_reg:$addr), IIC_iLoadr,
592                    opc, ".w\t$dst, $addr",
593                    [(set GPR:$dst, (opnode t2addrmode_so_reg:$addr))]> {
594     let Inst{31-27} = 0b11111;
595     let Inst{26-25} = 0b00;
596     let Inst{24} = signed;
597     let Inst{23} = 0;
598     let Inst{22-21} = opcod;
599     let Inst{20} = 1; // load
600     let Inst{11-6} = 0b000000;
601   }
602   def pci : T2Ipc <(outs GPR:$dst), (ins i32imm:$addr), IIC_iLoadi,
603                    opc, ".w\t$dst, $addr",
604                    [(set GPR:$dst, (opnode (ARMWrapper tconstpool:$addr)))]> {
605     let isReMaterializable = 1;
606     let Inst{31-27} = 0b11111;
607     let Inst{26-25} = 0b00;
608     let Inst{24} = signed;
609     let Inst{23} = ?; // add = (U == '1')
610     let Inst{22-21} = opcod;
611     let Inst{20} = 1; // load
612     let Inst{19-16} = 0b1111; // Rn
613   }
614 }
615
616 /// T2I_st - Defines a set of (op r, {imm12|imm8|so_reg}) store patterns.
617 multiclass T2I_st<bits<2> opcod, string opc, PatFrag opnode> {
618   def i12 : T2Ii12<(outs), (ins GPR:$src, t2addrmode_imm12:$addr), IIC_iStorei,
619                    opc, ".w\t$src, $addr",
620                    [(opnode GPR:$src, t2addrmode_imm12:$addr)]> {
621     let Inst{31-27} = 0b11111;
622     let Inst{26-23} = 0b0001;
623     let Inst{22-21} = opcod;
624     let Inst{20} = 0; // !load
625   }
626   def i8  : T2Ii8 <(outs), (ins GPR:$src, t2addrmode_imm8:$addr), IIC_iStorei,
627                    opc, "\t$src, $addr",
628                    [(opnode GPR:$src, t2addrmode_imm8:$addr)]> {
629     let Inst{31-27} = 0b11111;
630     let Inst{26-23} = 0b0000;
631     let Inst{22-21} = opcod;
632     let Inst{20} = 0; // !load
633     let Inst{11} = 1;
634     // Offset: index==TRUE, wback==FALSE
635     let Inst{10} = 1; // The P bit.
636     let Inst{8} = 0; // The W bit.
637   }
638   def s   : T2Iso <(outs), (ins GPR:$src, t2addrmode_so_reg:$addr), IIC_iStorer,
639                    opc, ".w\t$src, $addr",
640                    [(opnode GPR:$src, t2addrmode_so_reg:$addr)]> {
641     let Inst{31-27} = 0b11111;
642     let Inst{26-23} = 0b0000;
643     let Inst{22-21} = opcod;
644     let Inst{20} = 0; // !load
645     let Inst{11-6} = 0b000000;
646   }
647 }
648
649 /// T2I_unary_rrot - A unary operation with two forms: one whose operand is a
650 /// register and one whose operand is a register rotated by 8/16/24.
651 multiclass T2I_unary_rrot<bits<3> opcod, string opc, PatFrag opnode> {
652   def r     : T2I<(outs rGPR:$dst), (ins rGPR:$src), IIC_iUNAr,
653                   opc, ".w\t$dst, $src",
654                  [(set rGPR:$dst, (opnode rGPR:$src))]> {
655      let Inst{31-27} = 0b11111;
656      let Inst{26-23} = 0b0100;
657      let Inst{22-20} = opcod;
658      let Inst{19-16} = 0b1111; // Rn
659      let Inst{15-12} = 0b1111;
660      let Inst{7} = 1;
661      let Inst{5-4} = 0b00; // rotate
662    }
663   def r_rot : T2I<(outs rGPR:$dst), (ins rGPR:$src, i32imm:$rot), IIC_iUNAsi,
664                   opc, ".w\t$dst, $src, ror $rot",
665                  [(set rGPR:$dst, (opnode (rotr rGPR:$src, rot_imm:$rot)))]> {
666      let Inst{31-27} = 0b11111;
667      let Inst{26-23} = 0b0100;
668      let Inst{22-20} = opcod;
669      let Inst{19-16} = 0b1111; // Rn
670      let Inst{15-12} = 0b1111;
671      let Inst{7} = 1;
672      let Inst{5-4} = {?,?}; // rotate
673    }
674 }
675
676 // UXTB16 - Requres T2ExtractPack, does not need the .w qualifier.
677 multiclass T2I_unary_rrot_uxtb16<bits<3> opcod, string opc, PatFrag opnode> {
678   def r     : T2I<(outs rGPR:$dst), (ins rGPR:$src), IIC_iUNAr,
679                   opc, "\t$dst, $src",
680                  [(set rGPR:$dst, (opnode rGPR:$src))]>,
681                  Requires<[HasT2ExtractPack]> {
682      let Inst{31-27} = 0b11111;
683      let Inst{26-23} = 0b0100;
684      let Inst{22-20} = opcod;
685      let Inst{19-16} = 0b1111; // Rn
686      let Inst{15-12} = 0b1111;
687      let Inst{7} = 1;
688      let Inst{5-4} = 0b00; // rotate
689    }
690   def r_rot : T2I<(outs rGPR:$dst), (ins rGPR:$src, i32imm:$rot), IIC_iUNAsi,
691                   opc, "\t$dst, $src, ror $rot",
692                  [(set rGPR:$dst, (opnode (rotr rGPR:$src, rot_imm:$rot)))]>,
693                  Requires<[HasT2ExtractPack]> {
694      let Inst{31-27} = 0b11111;
695      let Inst{26-23} = 0b0100;
696      let Inst{22-20} = opcod;
697      let Inst{19-16} = 0b1111; // Rn
698      let Inst{15-12} = 0b1111;
699      let Inst{7} = 1;
700      let Inst{5-4} = {?,?}; // rotate
701    }
702 }
703
704 // SXTB16 - Requres T2ExtractPack, does not need the .w qualifier, no pattern
705 // supported yet.
706 multiclass T2I_unary_rrot_sxtb16<bits<3> opcod, string opc> {
707   def r     : T2I<(outs rGPR:$dst), (ins rGPR:$src), IIC_iUNAr,
708                   opc, "\t$dst, $src", []> {
709      let Inst{31-27} = 0b11111;
710      let Inst{26-23} = 0b0100;
711      let Inst{22-20} = opcod;
712      let Inst{19-16} = 0b1111; // Rn
713      let Inst{15-12} = 0b1111;
714      let Inst{7} = 1;
715      let Inst{5-4} = 0b00; // rotate
716    }
717   def r_rot : T2I<(outs rGPR:$dst), (ins rGPR:$src, i32imm:$rot), IIC_iUNAsi,
718                   opc, "\t$dst, $src, ror $rot", []> {
719      let Inst{31-27} = 0b11111;
720      let Inst{26-23} = 0b0100;
721      let Inst{22-20} = opcod;
722      let Inst{19-16} = 0b1111; // Rn
723      let Inst{15-12} = 0b1111;
724      let Inst{7} = 1;
725      let Inst{5-4} = {?,?}; // rotate
726    }
727 }
728
729 /// T2I_bin_rrot - A binary operation with two forms: one whose operand is a
730 /// register and one whose operand is a register rotated by 8/16/24.
731 multiclass T2I_bin_rrot<bits<3> opcod, string opc, PatFrag opnode> {
732   def rr     : T2I<(outs rGPR:$dst), (ins rGPR:$LHS, rGPR:$RHS), IIC_iALUr,
733                   opc, "\t$dst, $LHS, $RHS",
734                   [(set rGPR:$dst, (opnode rGPR:$LHS, rGPR:$RHS))]>,
735                   Requires<[HasT2ExtractPack]> {
736      let Inst{31-27} = 0b11111;
737      let Inst{26-23} = 0b0100;
738      let Inst{22-20} = opcod;
739      let Inst{15-12} = 0b1111;
740      let Inst{7} = 1;
741      let Inst{5-4} = 0b00; // rotate
742    }
743   def rr_rot : T2I<(outs rGPR:$dst), (ins rGPR:$LHS, rGPR:$RHS, i32imm:$rot),
744                   IIC_iALUsr, opc, "\t$dst, $LHS, $RHS, ror $rot",
745                   [(set rGPR:$dst, (opnode rGPR:$LHS,
746                                           (rotr rGPR:$RHS, rot_imm:$rot)))]>,
747                   Requires<[HasT2ExtractPack]> {
748      let Inst{31-27} = 0b11111;
749      let Inst{26-23} = 0b0100;
750      let Inst{22-20} = opcod;
751      let Inst{15-12} = 0b1111;
752      let Inst{7} = 1;
753      let Inst{5-4} = {?,?}; // rotate
754    }
755 }
756
757 // DO variant - disassembly only, no pattern
758
759 multiclass T2I_bin_rrot_DO<bits<3> opcod, string opc> {
760   def rr     : T2I<(outs rGPR:$dst), (ins rGPR:$LHS, rGPR:$RHS), IIC_iALUr,
761                   opc, "\t$dst, $LHS, $RHS", []> {
762      let Inst{31-27} = 0b11111;
763      let Inst{26-23} = 0b0100;
764      let Inst{22-20} = opcod;
765      let Inst{15-12} = 0b1111;
766      let Inst{7} = 1;
767      let Inst{5-4} = 0b00; // rotate
768    }
769   def rr_rot : T2I<(outs rGPR:$dst), (ins rGPR:$LHS, rGPR:$RHS, i32imm:$rot),
770                   IIC_iALUsr, opc, "\t$dst, $LHS, $RHS, ror $rot", []> {
771      let Inst{31-27} = 0b11111;
772      let Inst{26-23} = 0b0100;
773      let Inst{22-20} = opcod;
774      let Inst{15-12} = 0b1111;
775      let Inst{7} = 1;
776      let Inst{5-4} = {?,?}; // rotate
777    }
778 }
779
780 //===----------------------------------------------------------------------===//
781 // Instructions
782 //===----------------------------------------------------------------------===//
783
784 //===----------------------------------------------------------------------===//
785 //  Miscellaneous Instructions.
786 //
787
788 // LEApcrel - Load a pc-relative address into a register without offending the
789 // assembler.
790 let neverHasSideEffects = 1 in {
791 let isReMaterializable = 1 in
792 def t2LEApcrel : T2XI<(outs rGPR:$dst), (ins i32imm:$label, pred:$p), IIC_iALUi,
793                       "adr${p}.w\t$dst, #$label", []> {
794   let Inst{31-27} = 0b11110;
795   let Inst{25-24} = 0b10;
796   // Inst{23:21} = '11' (add = FALSE) or '00' (add = TRUE)
797   let Inst{22} = 0;
798   let Inst{20} = 0;
799   let Inst{19-16} = 0b1111; // Rn
800   let Inst{15} = 0;
801 }
802 } // neverHasSideEffects
803 def t2LEApcrelJT : T2XI<(outs rGPR:$dst),
804                         (ins i32imm:$label, nohash_imm:$id, pred:$p), IIC_iALUi,
805                         "adr${p}.w\t$dst, #${label}_${id}", []> {
806   let Inst{31-27} = 0b11110;
807   let Inst{25-24} = 0b10;
808   // Inst{23:21} = '11' (add = FALSE) or '00' (add = TRUE)
809   let Inst{22} = 0;
810   let Inst{20} = 0;
811   let Inst{19-16} = 0b1111; // Rn
812   let Inst{15} = 0;
813 }
814
815 // ADD r, sp, {so_imm|i12}
816 def t2ADDrSPi   : T2sI<(outs GPR:$dst), (ins GPR:$sp, t2_so_imm:$imm),
817                         IIC_iALUi, "add", ".w\t$dst, $sp, $imm", []> {
818   let Inst{31-27} = 0b11110;
819   let Inst{25} = 0;
820   let Inst{24-21} = 0b1000;
821   let Inst{20} = ?; // The S bit.
822   let Inst{19-16} = 0b1101; // Rn = sp
823   let Inst{15} = 0;
824 }
825 def t2ADDrSPi12 : T2I<(outs GPR:$dst), (ins GPR:$sp, imm0_4095:$imm),
826                        IIC_iALUi, "addw", "\t$dst, $sp, $imm", []> {
827   let Inst{31-27} = 0b11110;
828   let Inst{25} = 1;
829   let Inst{24-21} = 0b0000;
830   let Inst{20} = 0; // The S bit.
831   let Inst{19-16} = 0b1101; // Rn = sp
832   let Inst{15} = 0;
833 }
834
835 // ADD r, sp, so_reg
836 def t2ADDrSPs   : T2sI<(outs GPR:$dst), (ins GPR:$sp, t2_so_reg:$rhs),
837                         IIC_iALUsi, "add", ".w\t$dst, $sp, $rhs", []> {
838   let Inst{31-27} = 0b11101;
839   let Inst{26-25} = 0b01;
840   let Inst{24-21} = 0b1000;
841   let Inst{20} = ?; // The S bit.
842   let Inst{19-16} = 0b1101; // Rn = sp
843   let Inst{15} = 0;
844 }
845
846 // SUB r, sp, {so_imm|i12}
847 def t2SUBrSPi   : T2sI<(outs GPR:$dst), (ins GPR:$sp, t2_so_imm:$imm),
848                         IIC_iALUi, "sub", ".w\t$dst, $sp, $imm", []> {
849   let Inst{31-27} = 0b11110;
850   let Inst{25} = 0;
851   let Inst{24-21} = 0b1101;
852   let Inst{20} = ?; // The S bit.
853   let Inst{19-16} = 0b1101; // Rn = sp
854   let Inst{15} = 0;
855 }
856 def t2SUBrSPi12 : T2I<(outs GPR:$dst), (ins GPR:$sp, imm0_4095:$imm),
857                        IIC_iALUi, "subw", "\t$dst, $sp, $imm", []> {
858   let Inst{31-27} = 0b11110;
859   let Inst{25} = 1;
860   let Inst{24-21} = 0b0101;
861   let Inst{20} = 0; // The S bit.
862   let Inst{19-16} = 0b1101; // Rn = sp
863   let Inst{15} = 0;
864 }
865
866 // SUB r, sp, so_reg
867 def t2SUBrSPs   : T2sI<(outs GPR:$dst), (ins GPR:$sp, t2_so_reg:$rhs),
868                        IIC_iALUsi,
869                        "sub", "\t$dst, $sp, $rhs", []> {
870   let Inst{31-27} = 0b11101;
871   let Inst{26-25} = 0b01;
872   let Inst{24-21} = 0b1101;
873   let Inst{20} = ?; // The S bit.
874   let Inst{19-16} = 0b1101; // Rn = sp
875   let Inst{15} = 0;
876 }
877
878 // Signed and unsigned division on v7-M
879 def t2SDIV : T2I<(outs rGPR:$dst), (ins rGPR:$a, rGPR:$b), IIC_iALUi, 
880                  "sdiv", "\t$dst, $a, $b",
881                  [(set rGPR:$dst, (sdiv rGPR:$a, rGPR:$b))]>,
882                  Requires<[HasDivide]> {
883   let Inst{31-27} = 0b11111;
884   let Inst{26-21} = 0b011100;
885   let Inst{20} = 0b1;
886   let Inst{15-12} = 0b1111;
887   let Inst{7-4} = 0b1111;
888 }
889
890 def t2UDIV : T2I<(outs rGPR:$dst), (ins rGPR:$a, rGPR:$b), IIC_iALUi, 
891                  "udiv", "\t$dst, $a, $b",
892                  [(set rGPR:$dst, (udiv rGPR:$a, rGPR:$b))]>,
893                  Requires<[HasDivide]> {
894   let Inst{31-27} = 0b11111;
895   let Inst{26-21} = 0b011101;
896   let Inst{20} = 0b1;
897   let Inst{15-12} = 0b1111;
898   let Inst{7-4} = 0b1111;
899 }
900
901 //===----------------------------------------------------------------------===//
902 //  Load / store Instructions.
903 //
904
905 // Load
906 let canFoldAsLoad = 1, isReMaterializable = 1  in
907 defm t2LDR   : T2I_ld<0, 0b10, "ldr",  UnOpFrag<(load node:$Src)>>;
908
909 // Loads with zero extension
910 defm t2LDRH  : T2I_ld<0, 0b01, "ldrh", UnOpFrag<(zextloadi16 node:$Src)>>;
911 defm t2LDRB  : T2I_ld<0, 0b00, "ldrb", UnOpFrag<(zextloadi8  node:$Src)>>;
912
913 // Loads with sign extension
914 defm t2LDRSH : T2I_ld<1, 0b01, "ldrsh", UnOpFrag<(sextloadi16 node:$Src)>>;
915 defm t2LDRSB : T2I_ld<1, 0b00, "ldrsb", UnOpFrag<(sextloadi8  node:$Src)>>;
916
917 let mayLoad = 1, neverHasSideEffects = 1, hasExtraDefRegAllocReq = 1 in {
918 // Load doubleword
919 def t2LDRDi8  : T2Ii8s4<1, 0, 1, (outs rGPR:$dst1, rGPR:$dst2),
920                         (ins t2addrmode_imm8s4:$addr),
921                         IIC_iLoadi, "ldrd", "\t$dst1, $addr", []>;
922 def t2LDRDpci : T2Ii8s4<1, 0, 1, (outs rGPR:$dst1, rGPR:$dst2),
923                         (ins i32imm:$addr), IIC_iLoadi,
924                        "ldrd", "\t$dst1, $addr", []> {
925   let Inst{19-16} = 0b1111; // Rn
926 }
927 } // mayLoad = 1, neverHasSideEffects = 1, hasExtraDefRegAllocReq = 1
928
929 // zextload i1 -> zextload i8
930 def : T2Pat<(zextloadi1 t2addrmode_imm12:$addr),
931             (t2LDRBi12  t2addrmode_imm12:$addr)>;
932 def : T2Pat<(zextloadi1 t2addrmode_imm8:$addr),
933             (t2LDRBi8   t2addrmode_imm8:$addr)>;
934 def : T2Pat<(zextloadi1 t2addrmode_so_reg:$addr),
935             (t2LDRBs    t2addrmode_so_reg:$addr)>;
936 def : T2Pat<(zextloadi1 (ARMWrapper tconstpool:$addr)),
937             (t2LDRBpci  tconstpool:$addr)>;
938
939 // extload -> zextload
940 // FIXME: Reduce the number of patterns by legalizing extload to zextload
941 // earlier?
942 def : T2Pat<(extloadi1  t2addrmode_imm12:$addr),
943             (t2LDRBi12  t2addrmode_imm12:$addr)>;
944 def : T2Pat<(extloadi1  t2addrmode_imm8:$addr),
945             (t2LDRBi8   t2addrmode_imm8:$addr)>;
946 def : T2Pat<(extloadi1  t2addrmode_so_reg:$addr),
947             (t2LDRBs    t2addrmode_so_reg:$addr)>;
948 def : T2Pat<(extloadi1  (ARMWrapper tconstpool:$addr)),
949             (t2LDRBpci  tconstpool:$addr)>;
950
951 def : T2Pat<(extloadi8  t2addrmode_imm12:$addr),
952             (t2LDRBi12  t2addrmode_imm12:$addr)>;
953 def : T2Pat<(extloadi8  t2addrmode_imm8:$addr),
954             (t2LDRBi8   t2addrmode_imm8:$addr)>;
955 def : T2Pat<(extloadi8  t2addrmode_so_reg:$addr),
956             (t2LDRBs    t2addrmode_so_reg:$addr)>;
957 def : T2Pat<(extloadi8  (ARMWrapper tconstpool:$addr)),
958             (t2LDRBpci  tconstpool:$addr)>;
959
960 def : T2Pat<(extloadi16 t2addrmode_imm12:$addr),
961             (t2LDRHi12  t2addrmode_imm12:$addr)>;
962 def : T2Pat<(extloadi16 t2addrmode_imm8:$addr),
963             (t2LDRHi8   t2addrmode_imm8:$addr)>;
964 def : T2Pat<(extloadi16 t2addrmode_so_reg:$addr),
965             (t2LDRHs    t2addrmode_so_reg:$addr)>;
966 def : T2Pat<(extloadi16 (ARMWrapper tconstpool:$addr)),
967             (t2LDRHpci  tconstpool:$addr)>;
968
969 // FIXME: The destination register of the loads and stores can't be PC, but
970 //        can be SP. We need another regclass (similar to rGPR) to represent
971 //        that. Not a pressing issue since these are selected manually,
972 //        not via pattern.
973
974 // Indexed loads
975 let mayLoad = 1, neverHasSideEffects = 1 in {
976 def t2LDR_PRE  : T2Iidxldst<0, 0b10, 1, 1, (outs GPR:$dst, GPR:$base_wb),
977                             (ins t2addrmode_imm8:$addr),
978                             AddrModeT2_i8, IndexModePre, IIC_iLoadiu,
979                             "ldr", "\t$dst, $addr!", "$addr.base = $base_wb",
980                             []>;
981
982 def t2LDR_POST : T2Iidxldst<0, 0b10, 1, 0, (outs GPR:$dst, GPR:$base_wb),
983                             (ins GPR:$base, t2am_imm8_offset:$offset),
984                             AddrModeT2_i8, IndexModePost, IIC_iLoadiu,
985                           "ldr", "\t$dst, [$base], $offset", "$base = $base_wb",
986                             []>;
987
988 def t2LDRB_PRE : T2Iidxldst<0, 0b00, 1, 1, (outs GPR:$dst, GPR:$base_wb),
989                             (ins t2addrmode_imm8:$addr),
990                             AddrModeT2_i8, IndexModePre, IIC_iLoadiu,
991                             "ldrb", "\t$dst, $addr!", "$addr.base = $base_wb",
992                             []>;
993 def t2LDRB_POST : T2Iidxldst<0, 0b00, 1, 0, (outs GPR:$dst, GPR:$base_wb),
994                             (ins GPR:$base, t2am_imm8_offset:$offset),
995                             AddrModeT2_i8, IndexModePost, IIC_iLoadiu,
996                          "ldrb", "\t$dst, [$base], $offset", "$base = $base_wb",
997                             []>;
998
999 def t2LDRH_PRE : T2Iidxldst<0, 0b01, 1, 1, (outs GPR:$dst, GPR:$base_wb),
1000                             (ins t2addrmode_imm8:$addr),
1001                             AddrModeT2_i8, IndexModePre, IIC_iLoadiu,
1002                             "ldrh", "\t$dst, $addr!", "$addr.base = $base_wb",
1003                             []>;
1004 def t2LDRH_POST : T2Iidxldst<0, 0b01, 1, 0, (outs GPR:$dst, GPR:$base_wb),
1005                             (ins GPR:$base, t2am_imm8_offset:$offset),
1006                             AddrModeT2_i8, IndexModePost, IIC_iLoadiu,
1007                          "ldrh", "\t$dst, [$base], $offset", "$base = $base_wb",
1008                             []>;
1009
1010 def t2LDRSB_PRE : T2Iidxldst<1, 0b00, 1, 1, (outs GPR:$dst, GPR:$base_wb),
1011                             (ins t2addrmode_imm8:$addr),
1012                             AddrModeT2_i8, IndexModePre, IIC_iLoadiu,
1013                             "ldrsb", "\t$dst, $addr!", "$addr.base = $base_wb",
1014                             []>;
1015 def t2LDRSB_POST : T2Iidxldst<1, 0b00, 1, 0, (outs GPR:$dst, GPR:$base_wb),
1016                             (ins GPR:$base, t2am_imm8_offset:$offset),
1017                             AddrModeT2_i8, IndexModePost, IIC_iLoadiu,
1018                         "ldrsb", "\t$dst, [$base], $offset", "$base = $base_wb",
1019                             []>;
1020
1021 def t2LDRSH_PRE : T2Iidxldst<1, 0b01, 1, 1, (outs GPR:$dst, GPR:$base_wb),
1022                             (ins t2addrmode_imm8:$addr),
1023                             AddrModeT2_i8, IndexModePre, IIC_iLoadiu,
1024                             "ldrsh", "\t$dst, $addr!", "$addr.base = $base_wb",
1025                             []>;
1026 def t2LDRSH_POST : T2Iidxldst<1, 0b01, 1, 0, (outs GPR:$dst, GPR:$base_wb),
1027                             (ins GPR:$base, t2am_imm8_offset:$offset),
1028                             AddrModeT2_i8, IndexModePost, IIC_iLoadiu,
1029                         "ldrsh", "\t$dst, [$base], $offset", "$base = $base_wb",
1030                             []>;
1031 } // mayLoad = 1, neverHasSideEffects = 1 
1032
1033 // LDRT, LDRBT, LDRHT, LDRSBT, LDRSHT all have offset mode (PUW=0b110) and are
1034 // for disassembly only.
1035 // Ref: A8.6.57 LDR (immediate, Thumb) Encoding T4
1036 class T2IldT<bit signed, bits<2> type, string opc>
1037   : T2Ii8<(outs GPR:$dst), (ins t2addrmode_imm8:$addr), IIC_iLoadi, opc,
1038           "\t$dst, $addr", []> {
1039   let Inst{31-27} = 0b11111;
1040   let Inst{26-25} = 0b00;
1041   let Inst{24} = signed;
1042   let Inst{23} = 0;
1043   let Inst{22-21} = type;
1044   let Inst{20} = 1; // load
1045   let Inst{11} = 1;
1046   let Inst{10-8} = 0b110; // PUW.
1047 }
1048
1049 def t2LDRT   : T2IldT<0, 0b10, "ldrt">;
1050 def t2LDRBT  : T2IldT<0, 0b00, "ldrbt">;
1051 def t2LDRHT  : T2IldT<0, 0b01, "ldrht">;
1052 def t2LDRSBT : T2IldT<1, 0b00, "ldrsbt">;
1053 def t2LDRSHT : T2IldT<1, 0b01, "ldrsht">;
1054
1055 // Store
1056 defm t2STR :T2I_st<0b10,"str", BinOpFrag<(store node:$LHS, node:$RHS)>>;
1057 defm t2STRB:T2I_st<0b00,"strb",BinOpFrag<(truncstorei8 node:$LHS, node:$RHS)>>;
1058 defm t2STRH:T2I_st<0b01,"strh",BinOpFrag<(truncstorei16 node:$LHS, node:$RHS)>>;
1059
1060 // Store doubleword
1061 let mayLoad = 1, neverHasSideEffects = 1, hasExtraSrcRegAllocReq = 1 in
1062 def t2STRDi8 : T2Ii8s4<1, 0, 0, (outs),
1063                        (ins GPR:$src1, GPR:$src2, t2addrmode_imm8s4:$addr),
1064                IIC_iStorer, "strd", "\t$src1, $addr", []>;
1065
1066 // Indexed stores
1067 def t2STR_PRE  : T2Iidxldst<0, 0b10, 0, 1, (outs GPR:$base_wb),
1068                             (ins GPR:$src, GPR:$base, t2am_imm8_offset:$offset),
1069                             AddrModeT2_i8, IndexModePre, IIC_iStoreiu,
1070                          "str", "\t$src, [$base, $offset]!", "$base = $base_wb",
1071              [(set GPR:$base_wb,
1072                    (pre_store GPR:$src, GPR:$base, t2am_imm8_offset:$offset))]>;
1073
1074 def t2STR_POST : T2Iidxldst<0, 0b10, 0, 0, (outs GPR:$base_wb),
1075                             (ins GPR:$src, GPR:$base, t2am_imm8_offset:$offset),
1076                             AddrModeT2_i8, IndexModePost, IIC_iStoreiu,
1077                           "str", "\t$src, [$base], $offset", "$base = $base_wb",
1078              [(set GPR:$base_wb,
1079                   (post_store GPR:$src, GPR:$base, t2am_imm8_offset:$offset))]>;
1080
1081 def t2STRH_PRE  : T2Iidxldst<0, 0b01, 0, 1, (outs GPR:$base_wb),
1082                             (ins GPR:$src, GPR:$base, t2am_imm8_offset:$offset),
1083                             AddrModeT2_i8, IndexModePre, IIC_iStoreiu,
1084                         "strh", "\t$src, [$base, $offset]!", "$base = $base_wb",
1085         [(set GPR:$base_wb,
1086               (pre_truncsti16 GPR:$src, GPR:$base, t2am_imm8_offset:$offset))]>;
1087
1088 def t2STRH_POST : T2Iidxldst<0, 0b01, 0, 0, (outs GPR:$base_wb),
1089                             (ins GPR:$src, GPR:$base, t2am_imm8_offset:$offset),
1090                             AddrModeT2_i8, IndexModePost, IIC_iStoreiu,
1091                          "strh", "\t$src, [$base], $offset", "$base = $base_wb",
1092        [(set GPR:$base_wb,
1093              (post_truncsti16 GPR:$src, GPR:$base, t2am_imm8_offset:$offset))]>;
1094
1095 def t2STRB_PRE  : T2Iidxldst<0, 0b00, 0, 1, (outs GPR:$base_wb),
1096                             (ins GPR:$src, GPR:$base, t2am_imm8_offset:$offset),
1097                             AddrModeT2_i8, IndexModePre, IIC_iStoreiu,
1098                         "strb", "\t$src, [$base, $offset]!", "$base = $base_wb",
1099          [(set GPR:$base_wb,
1100                (pre_truncsti8 GPR:$src, GPR:$base, t2am_imm8_offset:$offset))]>;
1101
1102 def t2STRB_POST : T2Iidxldst<0, 0b00, 0, 0, (outs GPR:$base_wb),
1103                             (ins GPR:$src, GPR:$base, t2am_imm8_offset:$offset),
1104                             AddrModeT2_i8, IndexModePost, IIC_iStoreiu,
1105                          "strb", "\t$src, [$base], $offset", "$base = $base_wb",
1106         [(set GPR:$base_wb,
1107               (post_truncsti8 GPR:$src, GPR:$base, t2am_imm8_offset:$offset))]>;
1108
1109 // STRT, STRBT, STRHT all have offset mode (PUW=0b110) and are for disassembly
1110 // only.
1111 // Ref: A8.6.193 STR (immediate, Thumb) Encoding T4
1112 class T2IstT<bits<2> type, string opc>
1113   : T2Ii8<(outs GPR:$src), (ins t2addrmode_imm8:$addr), IIC_iStorei, opc,
1114           "\t$src, $addr", []> {
1115   let Inst{31-27} = 0b11111;
1116   let Inst{26-25} = 0b00;
1117   let Inst{24} = 0; // not signed
1118   let Inst{23} = 0;
1119   let Inst{22-21} = type;
1120   let Inst{20} = 0; // store
1121   let Inst{11} = 1;
1122   let Inst{10-8} = 0b110; // PUW
1123 }
1124
1125 def t2STRT   : T2IstT<0b10, "strt">;
1126 def t2STRBT  : T2IstT<0b00, "strbt">;
1127 def t2STRHT  : T2IstT<0b01, "strht">;
1128
1129 // ldrd / strd pre / post variants
1130 // For disassembly only.
1131
1132 def t2LDRD_PRE  : T2Ii8s4<1, 1, 1, (outs GPR:$dst1, GPR:$dst2),
1133                  (ins GPR:$base, t2am_imm8s4_offset:$imm), NoItinerary,
1134                  "ldrd", "\t$dst1, $dst2, [$base, $imm]!", []>;
1135
1136 def t2LDRD_POST : T2Ii8s4<0, 1, 1, (outs GPR:$dst1, GPR:$dst2),
1137                  (ins GPR:$base, t2am_imm8s4_offset:$imm), NoItinerary,
1138                  "ldrd", "\t$dst1, $dst2, [$base], $imm", []>;
1139
1140 def t2STRD_PRE  : T2Ii8s4<1, 1, 0, (outs),
1141                  (ins GPR:$src1, GPR:$src2, GPR:$base, t2am_imm8s4_offset:$imm),
1142                  NoItinerary, "strd", "\t$src1, $src2, [$base, $imm]!", []>;
1143
1144 def t2STRD_POST : T2Ii8s4<0, 1, 0, (outs),
1145                  (ins GPR:$src1, GPR:$src2, GPR:$base, t2am_imm8s4_offset:$imm),
1146                  NoItinerary, "strd", "\t$src1, $src2, [$base], $imm", []>;
1147
1148 // T2Ipl (Preload Data/Instruction) signals the memory system of possible future
1149 // data/instruction access.  These are for disassembly only.
1150 //
1151 // A8.6.117, A8.6.118.  Different instructions are generated for #0 and #-0.
1152 // The neg_zero operand translates -0 to -1, -1 to -2, ..., etc.
1153 multiclass T2Ipl<bit instr, bit write, string opc> {
1154
1155   def i12 : T2I<(outs), (ins GPR:$base, i32imm:$imm), IIC_iLoadi, opc,
1156                 "\t[$base, $imm]", []> {
1157     let Inst{31-25} = 0b1111100;
1158     let Inst{24} = instr;
1159     let Inst{23} = 1; // U = 1
1160     let Inst{22} = 0;
1161     let Inst{21} = write;
1162     let Inst{20} = 1;
1163     let Inst{15-12} = 0b1111;
1164   }
1165
1166   def i8 : T2I<(outs), (ins GPR:$base, neg_zero:$imm), IIC_iLoadi, opc,
1167                 "\t[$base, $imm]", []> {
1168     let Inst{31-25} = 0b1111100;
1169     let Inst{24} = instr;
1170     let Inst{23} = 0; // U = 0
1171     let Inst{22} = 0;
1172     let Inst{21} = write;
1173     let Inst{20} = 1;
1174     let Inst{15-12} = 0b1111;
1175     let Inst{11-8} = 0b1100;
1176   }
1177
1178   def pci : T2I<(outs), (ins GPR:$base, neg_zero:$imm), IIC_iLoadi, opc,
1179                 "\t[pc, $imm]", []> {
1180     let Inst{31-25} = 0b1111100;
1181     let Inst{24} = instr;
1182     let Inst{23} = ?; // add = (U == 1)
1183     let Inst{22} = 0;
1184     let Inst{21} = write;
1185     let Inst{20} = 1;
1186     let Inst{19-16} = 0b1111; // Rn = 0b1111
1187     let Inst{15-12} = 0b1111;
1188   }
1189
1190   def r   : T2I<(outs), (ins GPR:$base, GPR:$a), IIC_iLoadi, opc,
1191                 "\t[$base, $a]", []> {
1192     let Inst{31-25} = 0b1111100;
1193     let Inst{24} = instr;
1194     let Inst{23} = 0; // add = TRUE for T1
1195     let Inst{22} = 0;
1196     let Inst{21} = write;
1197     let Inst{20} = 1;
1198     let Inst{15-12} = 0b1111;
1199     let Inst{11-6} = 0000000;
1200     let Inst{5-4} = 0b00; // no shift is applied
1201   }
1202
1203   def s   : T2I<(outs), (ins GPR:$base, GPR:$a, i32imm:$shamt), IIC_iLoadi, opc,
1204                 "\t[$base, $a, lsl $shamt]", []> {
1205     let Inst{31-25} = 0b1111100;
1206     let Inst{24} = instr;
1207     let Inst{23} = 0; // add = TRUE for T1
1208     let Inst{22} = 0;
1209     let Inst{21} = write;
1210     let Inst{20} = 1;
1211     let Inst{15-12} = 0b1111;
1212     let Inst{11-6} = 0000000;
1213   }
1214 }
1215
1216 defm t2PLD  : T2Ipl<0, 0, "pld">;
1217 defm t2PLDW : T2Ipl<0, 1, "pldw">;
1218 defm t2PLI  : T2Ipl<1, 0, "pli">;
1219
1220 //===----------------------------------------------------------------------===//
1221 //  Load / store multiple Instructions.
1222 //
1223
1224 let mayLoad = 1, neverHasSideEffects = 1, hasExtraDefRegAllocReq = 1 in {
1225 def t2LDM : T2XI<(outs), (ins addrmode4:$addr, pred:$p,
1226                           reglist:$dsts, variable_ops), IIC_iLoadm,
1227                  "ldm${addr:submode}${p}${addr:wide}\t$addr, $dsts", []> {
1228   let Inst{31-27} = 0b11101;
1229   let Inst{26-25} = 0b00;
1230   let Inst{24-23} = {?, ?}; // IA: '01', DB: '10'
1231   let Inst{22} = 0;
1232   let Inst{21} = 0; // The W bit.
1233   let Inst{20} = 1; // Load
1234 }
1235
1236 def t2LDM_UPD : T2XIt<(outs GPR:$wb), (ins addrmode4:$addr, pred:$p,
1237                                        reglist:$dsts, variable_ops), IIC_iLoadm,
1238                       "ldm${addr:submode}${p}${addr:wide}\t$addr!, $dsts",
1239                       "$addr.addr = $wb", []> {
1240   let Inst{31-27} = 0b11101;
1241   let Inst{26-25} = 0b00;
1242   let Inst{24-23} = {?, ?}; // IA: '01', DB: '10'
1243   let Inst{22} = 0;
1244   let Inst{21} = 1; // The W bit.
1245   let Inst{20} = 1; // Load
1246 }
1247 } // mayLoad, neverHasSideEffects, hasExtraDefRegAllocReq
1248
1249 let mayStore = 1, neverHasSideEffects = 1, hasExtraSrcRegAllocReq = 1 in {
1250 def t2STM : T2XI<(outs), (ins addrmode4:$addr, pred:$p,
1251                           reglist:$srcs, variable_ops), IIC_iStorem,
1252                  "stm${addr:submode}${p}${addr:wide}\t$addr, $srcs", []> {
1253   let Inst{31-27} = 0b11101;
1254   let Inst{26-25} = 0b00;
1255   let Inst{24-23} = {?, ?}; // IA: '01', DB: '10'
1256   let Inst{22} = 0;
1257   let Inst{21} = 0; // The W bit.
1258   let Inst{20} = 0; // Store
1259 }
1260
1261 def t2STM_UPD : T2XIt<(outs GPR:$wb), (ins addrmode4:$addr, pred:$p,
1262                                        reglist:$srcs, variable_ops),
1263                       IIC_iStorem,
1264                       "stm${addr:submode}${p}${addr:wide}\t$addr!, $srcs",
1265                       "$addr.addr = $wb", []> {
1266   let Inst{31-27} = 0b11101;
1267   let Inst{26-25} = 0b00;
1268   let Inst{24-23} = {?, ?}; // IA: '01', DB: '10'
1269   let Inst{22} = 0;
1270   let Inst{21} = 1; // The W bit.
1271   let Inst{20} = 0; // Store
1272 }
1273 } // mayStore, neverHasSideEffects, hasExtraSrcRegAllocReq
1274
1275 //===----------------------------------------------------------------------===//
1276 //  Move Instructions.
1277 //
1278
1279 let neverHasSideEffects = 1 in
1280 def t2MOVr : T2sI<(outs GPR:$dst), (ins GPR:$src), IIC_iMOVr,
1281                    "mov", ".w\t$dst, $src", []> {
1282   let Inst{31-27} = 0b11101;
1283   let Inst{26-25} = 0b01;
1284   let Inst{24-21} = 0b0010;
1285   let Inst{20} = ?; // The S bit.
1286   let Inst{19-16} = 0b1111; // Rn
1287   let Inst{14-12} = 0b000;
1288   let Inst{7-4} = 0b0000;
1289 }
1290
1291 // AddedComplexity to ensure isel tries t2MOVi before t2MOVi16.
1292 let isReMaterializable = 1, isAsCheapAsAMove = 1, AddedComplexity = 1 in
1293 def t2MOVi : T2sI<(outs rGPR:$dst), (ins t2_so_imm:$src), IIC_iMOVi,
1294                    "mov", ".w\t$dst, $src",
1295                    [(set rGPR:$dst, t2_so_imm:$src)]> {
1296   let Inst{31-27} = 0b11110;
1297   let Inst{25} = 0;
1298   let Inst{24-21} = 0b0010;
1299   let Inst{20} = ?; // The S bit.
1300   let Inst{19-16} = 0b1111; // Rn
1301   let Inst{15} = 0;
1302 }
1303
1304 let isReMaterializable = 1, isAsCheapAsAMove = 1 in
1305 def t2MOVi16 : T2I<(outs rGPR:$dst), (ins i32imm:$src), IIC_iMOVi,
1306                    "movw", "\t$dst, $src",
1307                    [(set rGPR:$dst, imm0_65535:$src)]> {
1308   let Inst{31-27} = 0b11110;
1309   let Inst{25} = 1;
1310   let Inst{24-21} = 0b0010;
1311   let Inst{20} = 0; // The S bit.
1312   let Inst{15} = 0;
1313 }
1314
1315 let Constraints = "$src = $dst" in
1316 def t2MOVTi16 : T2I<(outs rGPR:$dst), (ins rGPR:$src, i32imm:$imm), IIC_iMOVi,
1317                     "movt", "\t$dst, $imm",
1318                     [(set rGPR:$dst,
1319                           (or (and rGPR:$src, 0xffff), lo16AllZero:$imm))]> {
1320   let Inst{31-27} = 0b11110;
1321   let Inst{25} = 1;
1322   let Inst{24-21} = 0b0110;
1323   let Inst{20} = 0; // The S bit.
1324   let Inst{15} = 0;
1325 }
1326
1327 def : T2Pat<(or rGPR:$src, 0xffff0000), (t2MOVTi16 rGPR:$src, 0xffff)>;
1328
1329 //===----------------------------------------------------------------------===//
1330 //  Extend Instructions.
1331 //
1332
1333 // Sign extenders
1334
1335 defm t2SXTB  : T2I_unary_rrot<0b100, "sxtb",
1336                               UnOpFrag<(sext_inreg node:$Src, i8)>>;
1337 defm t2SXTH  : T2I_unary_rrot<0b000, "sxth",
1338                               UnOpFrag<(sext_inreg node:$Src, i16)>>;
1339 defm t2SXTB16 : T2I_unary_rrot_sxtb16<0b010, "sxtb16">;
1340
1341 defm t2SXTAB : T2I_bin_rrot<0b100, "sxtab",
1342                         BinOpFrag<(add node:$LHS, (sext_inreg node:$RHS, i8))>>;
1343 defm t2SXTAH : T2I_bin_rrot<0b000, "sxtah",
1344                         BinOpFrag<(add node:$LHS, (sext_inreg node:$RHS,i16))>>;
1345 defm t2SXTAB16 : T2I_bin_rrot_DO<0b010, "sxtab16">;
1346
1347 // TODO: SXT(A){B|H}16 - done for disassembly only
1348
1349 // Zero extenders
1350
1351 let AddedComplexity = 16 in {
1352 defm t2UXTB   : T2I_unary_rrot<0b101, "uxtb",
1353                                UnOpFrag<(and node:$Src, 0x000000FF)>>;
1354 defm t2UXTH   : T2I_unary_rrot<0b001, "uxth",
1355                                UnOpFrag<(and node:$Src, 0x0000FFFF)>>;
1356 defm t2UXTB16 : T2I_unary_rrot_uxtb16<0b011, "uxtb16",
1357                                UnOpFrag<(and node:$Src, 0x00FF00FF)>>;
1358
1359 // FIXME: This pattern incorrectly assumes the shl operator is a rotate.
1360 //        The transformation should probably be done as a combiner action
1361 //        instead so we can include a check for masking back in the upper
1362 //        eight bits of the source into the lower eight bits of the result.
1363 //def : T2Pat<(and (shl rGPR:$Src, (i32 8)), 0xFF00FF),
1364 //            (t2UXTB16r_rot rGPR:$Src, 24)>, Requires<[HasT2ExtractPack]>;
1365 def : T2Pat<(and (srl rGPR:$Src, (i32 8)), 0xFF00FF),
1366             (t2UXTB16r_rot rGPR:$Src, 8)>, Requires<[HasT2ExtractPack]>;
1367
1368 defm t2UXTAB : T2I_bin_rrot<0b101, "uxtab",
1369                            BinOpFrag<(add node:$LHS, (and node:$RHS, 0x00FF))>>;
1370 defm t2UXTAH : T2I_bin_rrot<0b001, "uxtah",
1371                            BinOpFrag<(add node:$LHS, (and node:$RHS, 0xFFFF))>>;
1372 defm t2UXTAB16 : T2I_bin_rrot_DO<0b011, "uxtab16">;
1373 }
1374
1375 //===----------------------------------------------------------------------===//
1376 //  Arithmetic Instructions.
1377 //
1378
1379 defm t2ADD  : T2I_bin_ii12rs<0b000, "add",
1380                              BinOpFrag<(add  node:$LHS, node:$RHS)>, 1>;
1381 defm t2SUB  : T2I_bin_ii12rs<0b101, "sub",
1382                              BinOpFrag<(sub  node:$LHS, node:$RHS)>>;
1383
1384 // ADD and SUB with 's' bit set. No 12-bit immediate (T4) variants.
1385 defm t2ADDS : T2I_bin_s_irs <0b1000, "add",
1386                              BinOpFrag<(addc node:$LHS, node:$RHS)>, 1>;
1387 defm t2SUBS : T2I_bin_s_irs <0b1101, "sub",
1388                              BinOpFrag<(subc node:$LHS, node:$RHS)>>;
1389
1390 defm t2ADC  : T2I_adde_sube_irs<0b1010, "adc",
1391                           BinOpFrag<(adde_dead_carry node:$LHS, node:$RHS)>, 1>;
1392 defm t2SBC  : T2I_adde_sube_irs<0b1011, "sbc",
1393                           BinOpFrag<(sube_dead_carry node:$LHS, node:$RHS)>>;
1394 defm t2ADCS : T2I_adde_sube_s_irs<0b1010, "adc",
1395                           BinOpFrag<(adde_live_carry node:$LHS, node:$RHS)>, 1>;
1396 defm t2SBCS : T2I_adde_sube_s_irs<0b1011, "sbc",
1397                           BinOpFrag<(sube_live_carry node:$LHS, node:$RHS)>>;
1398
1399 // RSB
1400 defm t2RSB  : T2I_rbin_irs  <0b1110, "rsb",
1401                              BinOpFrag<(sub  node:$LHS, node:$RHS)>>;
1402 defm t2RSBS : T2I_rbin_s_is <0b1110, "rsb",
1403                              BinOpFrag<(subc node:$LHS, node:$RHS)>>;
1404
1405 // (sub X, imm) gets canonicalized to (add X, -imm).  Match this form.
1406 // The assume-no-carry-in form uses the negation of the input since add/sub
1407 // assume opposite meanings of the carry flag (i.e., carry == !borrow).
1408 // See the definition of AddWithCarry() in the ARM ARM A2.2.1 for the gory
1409 // details.
1410 // The AddedComplexity preferences the first variant over the others since
1411 // it can be shrunk to a 16-bit wide encoding, while the others cannot.
1412 let AddedComplexity = 1 in
1413 def : T2Pat<(add        GPR:$src, imm0_255_neg:$imm),
1414             (t2SUBri    GPR:$src, imm0_255_neg:$imm)>;
1415 def : T2Pat<(add        GPR:$src, t2_so_imm_neg:$imm),
1416             (t2SUBri    GPR:$src, t2_so_imm_neg:$imm)>;
1417 def : T2Pat<(add        GPR:$src, imm0_4095_neg:$imm),
1418             (t2SUBri12  GPR:$src, imm0_4095_neg:$imm)>;
1419 let AddedComplexity = 1 in
1420 def : T2Pat<(addc       rGPR:$src, imm0_255_neg:$imm),
1421             (t2SUBSri   rGPR:$src, imm0_255_neg:$imm)>;
1422 def : T2Pat<(addc       rGPR:$src, t2_so_imm_neg:$imm),
1423             (t2SUBSri   rGPR:$src, t2_so_imm_neg:$imm)>;
1424 // The with-carry-in form matches bitwise not instead of the negation.
1425 // Effectively, the inverse interpretation of the carry flag already accounts
1426 // for part of the negation.
1427 let AddedComplexity = 1 in
1428 def : T2Pat<(adde       rGPR:$src, imm0_255_not:$imm),
1429             (t2SBCSri   rGPR:$src, imm0_255_not:$imm)>;
1430 def : T2Pat<(adde       rGPR:$src, t2_so_imm_not:$imm),
1431             (t2SBCSri   rGPR:$src, t2_so_imm_not:$imm)>;
1432
1433 // Select Bytes -- for disassembly only
1434
1435 def t2SEL : T2I<(outs GPR:$dst), (ins GPR:$a, GPR:$b), NoItinerary, "sel",
1436                 "\t$dst, $a, $b", []> {
1437   let Inst{31-27} = 0b11111;
1438   let Inst{26-24} = 0b010;
1439   let Inst{23} = 0b1;
1440   let Inst{22-20} = 0b010;
1441   let Inst{15-12} = 0b1111;
1442   let Inst{7} = 0b1;
1443   let Inst{6-4} = 0b000;
1444 }
1445
1446 // A6.3.13, A6.3.14, A6.3.15 Parallel addition and subtraction (signed/unsigned)
1447 // And Miscellaneous operations -- for disassembly only
1448 class T2I_pam<bits<3> op22_20, bits<4> op7_4, string opc,
1449               list<dag> pat = [/* For disassembly only; pattern left blank */]>
1450   : T2I<(outs rGPR:$dst), (ins rGPR:$a, rGPR:$b), NoItinerary, opc,
1451         "\t$dst, $a, $b", pat> {
1452   let Inst{31-27} = 0b11111;
1453   let Inst{26-23} = 0b0101;
1454   let Inst{22-20} = op22_20;
1455   let Inst{15-12} = 0b1111;
1456   let Inst{7-4} = op7_4;
1457 }
1458
1459 // Saturating add/subtract -- for disassembly only
1460
1461 def t2QADD    : T2I_pam<0b000, 0b1000, "qadd",
1462                         [(set rGPR:$dst, (int_arm_qadd rGPR:$a, rGPR:$b))]>;
1463 def t2QADD16  : T2I_pam<0b001, 0b0001, "qadd16">;
1464 def t2QADD8   : T2I_pam<0b000, 0b0001, "qadd8">;
1465 def t2QASX    : T2I_pam<0b010, 0b0001, "qasx">;
1466 def t2QDADD   : T2I_pam<0b000, 0b1001, "qdadd">;
1467 def t2QDSUB   : T2I_pam<0b000, 0b1011, "qdsub">;
1468 def t2QSAX    : T2I_pam<0b110, 0b0001, "qsax">;
1469 def t2QSUB    : T2I_pam<0b000, 0b1010, "qsub",
1470                         [(set rGPR:$dst, (int_arm_qsub rGPR:$a, rGPR:$b))]>;
1471 def t2QSUB16  : T2I_pam<0b101, 0b0001, "qsub16">;
1472 def t2QSUB8   : T2I_pam<0b100, 0b0001, "qsub8">;
1473 def t2UQADD16 : T2I_pam<0b001, 0b0101, "uqadd16">;
1474 def t2UQADD8  : T2I_pam<0b000, 0b0101, "uqadd8">;
1475 def t2UQASX   : T2I_pam<0b010, 0b0101, "uqasx">;
1476 def t2UQSAX   : T2I_pam<0b110, 0b0101, "uqsax">;
1477 def t2UQSUB16 : T2I_pam<0b101, 0b0101, "uqsub16">;
1478 def t2UQSUB8  : T2I_pam<0b100, 0b0101, "uqsub8">;
1479
1480 // Signed/Unsigned add/subtract -- for disassembly only
1481
1482 def t2SASX    : T2I_pam<0b010, 0b0000, "sasx">;
1483 def t2SADD16  : T2I_pam<0b001, 0b0000, "sadd16">;
1484 def t2SADD8   : T2I_pam<0b000, 0b0000, "sadd8">;
1485 def t2SSAX    : T2I_pam<0b110, 0b0000, "ssax">;
1486 def t2SSUB16  : T2I_pam<0b101, 0b0000, "ssub16">;
1487 def t2SSUB8   : T2I_pam<0b100, 0b0000, "ssub8">;
1488 def t2UASX    : T2I_pam<0b010, 0b0100, "uasx">;
1489 def t2UADD16  : T2I_pam<0b001, 0b0100, "uadd16">;
1490 def t2UADD8   : T2I_pam<0b000, 0b0100, "uadd8">;
1491 def t2USAX    : T2I_pam<0b110, 0b0100, "usax">;
1492 def t2USUB16  : T2I_pam<0b101, 0b0100, "usub16">;
1493 def t2USUB8   : T2I_pam<0b100, 0b0100, "usub8">;
1494
1495 // Signed/Unsigned halving add/subtract -- for disassembly only
1496
1497 def t2SHASX   : T2I_pam<0b010, 0b0010, "shasx">;
1498 def t2SHADD16 : T2I_pam<0b001, 0b0010, "shadd16">;
1499 def t2SHADD8  : T2I_pam<0b000, 0b0010, "shadd8">;
1500 def t2SHSAX   : T2I_pam<0b110, 0b0010, "shsax">;
1501 def t2SHSUB16 : T2I_pam<0b101, 0b0010, "shsub16">;
1502 def t2SHSUB8  : T2I_pam<0b100, 0b0010, "shsub8">;
1503 def t2UHASX   : T2I_pam<0b010, 0b0110, "uhasx">;
1504 def t2UHADD16 : T2I_pam<0b001, 0b0110, "uhadd16">;
1505 def t2UHADD8  : T2I_pam<0b000, 0b0110, "uhadd8">;
1506 def t2UHSAX   : T2I_pam<0b110, 0b0110, "uhsax">;
1507 def t2UHSUB16 : T2I_pam<0b101, 0b0110, "uhsub16">;
1508 def t2UHSUB8  : T2I_pam<0b100, 0b0110, "uhsub8">;
1509
1510 // Unsigned Sum of Absolute Differences [and Accumulate] -- for disassembly only
1511
1512 def t2USAD8   : T2I_mac<0, 0b111, 0b0000, (outs rGPR:$dst),
1513                                            (ins rGPR:$a, rGPR:$b),
1514                         NoItinerary, "usad8", "\t$dst, $a, $b", []> {
1515   let Inst{15-12} = 0b1111;
1516 }
1517 def t2USADA8  : T2I_mac<0, 0b111, 0b0000, (outs rGPR:$dst),
1518                        (ins rGPR:$a, rGPR:$b, rGPR:$acc), NoItinerary, "usada8",
1519                         "\t$dst, $a, $b, $acc", []>;
1520
1521 // Signed/Unsigned saturate -- for disassembly only
1522
1523 def t2SSAT: T2I<(outs rGPR:$dst), (ins i32imm:$bit_pos, rGPR:$a, shift_imm:$sh),
1524                 NoItinerary, "ssat", "\t$dst, $bit_pos, $a$sh",
1525                 [/* For disassembly only; pattern left blank */]> {
1526   let Inst{31-27} = 0b11110;
1527   let Inst{25-22} = 0b1100;
1528   let Inst{20} = 0;
1529   let Inst{15} = 0;
1530 }
1531
1532 def t2SSAT16: T2I<(outs rGPR:$dst), (ins i32imm:$bit_pos, rGPR:$a), NoItinerary,
1533                    "ssat16", "\t$dst, $bit_pos, $a",
1534                    [/* For disassembly only; pattern left blank */]> {
1535   let Inst{31-27} = 0b11110;
1536   let Inst{25-22} = 0b1100;
1537   let Inst{20} = 0;
1538   let Inst{15} = 0;
1539   let Inst{21} = 1;        // sh = '1'
1540   let Inst{14-12} = 0b000; // imm3 = '000'
1541   let Inst{7-6} = 0b00;    // imm2 = '00'
1542 }
1543
1544 def t2USAT: T2I<(outs rGPR:$dst), (ins i32imm:$bit_pos, rGPR:$a, shift_imm:$sh),
1545                 NoItinerary, "usat", "\t$dst, $bit_pos, $a$sh",
1546                 [/* For disassembly only; pattern left blank */]> {
1547   let Inst{31-27} = 0b11110;
1548   let Inst{25-22} = 0b1110;
1549   let Inst{20} = 0;
1550   let Inst{15} = 0;
1551 }
1552
1553 def t2USAT16: T2I<(outs rGPR:$dst), (ins i32imm:$bit_pos, rGPR:$a), NoItinerary,
1554                    "usat16", "\t$dst, $bit_pos, $a",
1555                    [/* For disassembly only; pattern left blank */]> {
1556   let Inst{31-27} = 0b11110;
1557   let Inst{25-22} = 0b1110;
1558   let Inst{20} = 0;
1559   let Inst{15} = 0;
1560   let Inst{21} = 1;        // sh = '1'
1561   let Inst{14-12} = 0b000; // imm3 = '000'
1562   let Inst{7-6} = 0b00;    // imm2 = '00'
1563 }
1564
1565 def : T2Pat<(int_arm_ssat GPR:$a, imm:$pos), (t2SSAT imm:$pos, GPR:$a, 0)>;
1566 def : T2Pat<(int_arm_usat GPR:$a, imm:$pos), (t2USAT imm:$pos, GPR:$a, 0)>;
1567
1568 //===----------------------------------------------------------------------===//
1569 //  Shift and rotate Instructions.
1570 //
1571
1572 defm t2LSL  : T2I_sh_ir<0b00, "lsl", BinOpFrag<(shl  node:$LHS, node:$RHS)>>;
1573 defm t2LSR  : T2I_sh_ir<0b01, "lsr", BinOpFrag<(srl  node:$LHS, node:$RHS)>>;
1574 defm t2ASR  : T2I_sh_ir<0b10, "asr", BinOpFrag<(sra  node:$LHS, node:$RHS)>>;
1575 defm t2ROR  : T2I_sh_ir<0b11, "ror", BinOpFrag<(rotr node:$LHS, node:$RHS)>>;
1576
1577 let Uses = [CPSR] in {
1578 def t2MOVrx : T2sI<(outs rGPR:$dst), (ins rGPR:$src), IIC_iMOVsi,
1579                    "rrx", "\t$dst, $src",
1580                    [(set rGPR:$dst, (ARMrrx rGPR:$src))]> {
1581   let Inst{31-27} = 0b11101;
1582   let Inst{26-25} = 0b01;
1583   let Inst{24-21} = 0b0010;
1584   let Inst{20} = ?; // The S bit.
1585   let Inst{19-16} = 0b1111; // Rn
1586   let Inst{14-12} = 0b000;
1587   let Inst{7-4} = 0b0011;
1588 }
1589 }
1590
1591 let Defs = [CPSR] in {
1592 def t2MOVsrl_flag : T2I<(outs rGPR:$dst), (ins rGPR:$src), IIC_iMOVsi,
1593                         "lsrs", ".w\t$dst, $src, #1",
1594                         [(set rGPR:$dst, (ARMsrl_flag rGPR:$src))]> {
1595   let Inst{31-27} = 0b11101;
1596   let Inst{26-25} = 0b01;
1597   let Inst{24-21} = 0b0010;
1598   let Inst{20} = 1; // The S bit.
1599   let Inst{19-16} = 0b1111; // Rn
1600   let Inst{5-4} = 0b01; // Shift type.
1601   // Shift amount = Inst{14-12:7-6} = 1.
1602   let Inst{14-12} = 0b000;
1603   let Inst{7-6} = 0b01;
1604 }
1605 def t2MOVsra_flag : T2I<(outs rGPR:$dst), (ins rGPR:$src), IIC_iMOVsi,
1606                         "asrs", ".w\t$dst, $src, #1",
1607                         [(set rGPR:$dst, (ARMsra_flag rGPR:$src))]> {
1608   let Inst{31-27} = 0b11101;
1609   let Inst{26-25} = 0b01;
1610   let Inst{24-21} = 0b0010;
1611   let Inst{20} = 1; // The S bit.
1612   let Inst{19-16} = 0b1111; // Rn
1613   let Inst{5-4} = 0b10; // Shift type.
1614   // Shift amount = Inst{14-12:7-6} = 1.
1615   let Inst{14-12} = 0b000;
1616   let Inst{7-6} = 0b01;
1617 }
1618 }
1619
1620 //===----------------------------------------------------------------------===//
1621 //  Bitwise Instructions.
1622 //
1623
1624 defm t2AND  : T2I_bin_w_irs<0b0000, "and",
1625                             BinOpFrag<(and node:$LHS, node:$RHS)>, 1>;
1626 defm t2ORR  : T2I_bin_w_irs<0b0010, "orr",
1627                             BinOpFrag<(or  node:$LHS, node:$RHS)>, 1>;
1628 defm t2EOR  : T2I_bin_w_irs<0b0100, "eor",
1629                             BinOpFrag<(xor node:$LHS, node:$RHS)>, 1>;
1630
1631 defm t2BIC  : T2I_bin_w_irs<0b0001, "bic",
1632                             BinOpFrag<(and node:$LHS, (not node:$RHS))>>;
1633
1634 let Constraints = "$src = $dst" in
1635 def t2BFC : T2I<(outs rGPR:$dst), (ins rGPR:$src, bf_inv_mask_imm:$imm),
1636                 IIC_iUNAsi, "bfc", "\t$dst, $imm",
1637                 [(set rGPR:$dst, (and rGPR:$src, bf_inv_mask_imm:$imm))]> {
1638   let Inst{31-27} = 0b11110;
1639   let Inst{25} = 1;
1640   let Inst{24-20} = 0b10110;
1641   let Inst{19-16} = 0b1111; // Rn
1642   let Inst{15} = 0;
1643 }
1644
1645 def t2SBFX: T2I<(outs rGPR:$dst), (ins rGPR:$src, imm0_31:$lsb, imm0_31:$width),
1646                  IIC_iALUi, "sbfx", "\t$dst, $src, $lsb, $width", []> {
1647   let Inst{31-27} = 0b11110;
1648   let Inst{25} = 1;
1649   let Inst{24-20} = 0b10100;
1650   let Inst{15} = 0;
1651 }
1652
1653 def t2UBFX: T2I<(outs rGPR:$dst), (ins rGPR:$src, imm0_31:$lsb, imm0_31:$width),
1654                  IIC_iALUi, "ubfx", "\t$dst, $src, $lsb, $width", []> {
1655   let Inst{31-27} = 0b11110;
1656   let Inst{25} = 1;
1657   let Inst{24-20} = 0b11100;
1658   let Inst{15} = 0;
1659 }
1660
1661 // A8.6.18  BFI - Bitfield insert (Encoding T1)
1662 let Constraints = "$src = $dst" in
1663 def t2BFI : T2I<(outs rGPR:$dst),
1664                 (ins rGPR:$src, rGPR:$val, bf_inv_mask_imm:$imm),
1665                 IIC_iALUi, "bfi", "\t$dst, $val, $imm",
1666                 [(set rGPR:$dst, (ARMbfi rGPR:$src, rGPR:$val,
1667                                  bf_inv_mask_imm:$imm))]> {
1668   let Inst{31-27} = 0b11110;
1669   let Inst{25} = 1;
1670   let Inst{24-20} = 0b10110;
1671   let Inst{15} = 0;
1672 }
1673
1674 defm t2ORN  : T2I_bin_irs<0b0011, "orn", BinOpFrag<(or  node:$LHS,
1675                           (not node:$RHS))>>;
1676
1677 // Prefer over of t2EORri ra, rb, -1 because mvn has 16-bit version
1678 let AddedComplexity = 1 in
1679 defm t2MVN  : T2I_un_irs <0b0011, "mvn", UnOpFrag<(not node:$Src)>, 1, 1>;
1680
1681
1682 let AddedComplexity = 1 in
1683 def : T2Pat<(and     rGPR:$src, t2_so_imm_not:$imm),
1684             (t2BICri rGPR:$src, t2_so_imm_not:$imm)>;
1685
1686 // FIXME: Disable this pattern on Darwin to workaround an assembler bug.
1687 def : T2Pat<(or      rGPR:$src, t2_so_imm_not:$imm),
1688             (t2ORNri rGPR:$src, t2_so_imm_not:$imm)>,
1689             Requires<[IsThumb2]>;
1690
1691 def : T2Pat<(t2_so_imm_not:$src),
1692             (t2MVNi t2_so_imm_not:$src)>;
1693
1694 //===----------------------------------------------------------------------===//
1695 //  Multiply Instructions.
1696 //
1697 let isCommutable = 1 in
1698 def t2MUL: T2I<(outs rGPR:$dst), (ins rGPR:$a, rGPR:$b), IIC_iMUL32,
1699                 "mul", "\t$dst, $a, $b",
1700                 [(set rGPR:$dst, (mul rGPR:$a, rGPR:$b))]> {
1701   let Inst{31-27} = 0b11111;
1702   let Inst{26-23} = 0b0110;
1703   let Inst{22-20} = 0b000;
1704   let Inst{15-12} = 0b1111; // Ra = 0b1111 (no accumulate)
1705   let Inst{7-4} = 0b0000; // Multiply
1706 }
1707
1708 def t2MLA: T2I<(outs rGPR:$dst), (ins rGPR:$a, rGPR:$b, rGPR:$c), IIC_iMAC32,
1709                 "mla", "\t$dst, $a, $b, $c",
1710                 [(set rGPR:$dst, (add (mul rGPR:$a, rGPR:$b), rGPR:$c))]> {
1711   let Inst{31-27} = 0b11111;
1712   let Inst{26-23} = 0b0110;
1713   let Inst{22-20} = 0b000;
1714   let Inst{15-12} = {?, ?, ?, ?}; // Ra
1715   let Inst{7-4} = 0b0000; // Multiply
1716 }
1717
1718 def t2MLS: T2I<(outs rGPR:$dst), (ins rGPR:$a, rGPR:$b, rGPR:$c), IIC_iMAC32,
1719                 "mls", "\t$dst, $a, $b, $c",
1720                 [(set rGPR:$dst, (sub rGPR:$c, (mul rGPR:$a, rGPR:$b)))]> {
1721   let Inst{31-27} = 0b11111;
1722   let Inst{26-23} = 0b0110;
1723   let Inst{22-20} = 0b000;
1724   let Inst{15-12} = {?, ?, ?, ?}; // Ra
1725   let Inst{7-4} = 0b0001; // Multiply and Subtract
1726 }
1727
1728 // Extra precision multiplies with low / high results
1729 let neverHasSideEffects = 1 in {
1730 let isCommutable = 1 in {
1731 def t2SMULL : T2I<(outs rGPR:$ldst, rGPR:$hdst),
1732                   (ins rGPR:$a, rGPR:$b), IIC_iMUL64,
1733                    "smull", "\t$ldst, $hdst, $a, $b", []> {
1734   let Inst{31-27} = 0b11111;
1735   let Inst{26-23} = 0b0111;
1736   let Inst{22-20} = 0b000;
1737   let Inst{7-4} = 0b0000;
1738 }
1739
1740 def t2UMULL : T2I<(outs rGPR:$ldst, rGPR:$hdst),
1741                   (ins rGPR:$a, rGPR:$b), IIC_iMUL64,
1742                    "umull", "\t$ldst, $hdst, $a, $b", []> {
1743   let Inst{31-27} = 0b11111;
1744   let Inst{26-23} = 0b0111;
1745   let Inst{22-20} = 0b010;
1746   let Inst{7-4} = 0b0000;
1747 }
1748 } // isCommutable
1749
1750 // Multiply + accumulate
1751 def t2SMLAL : T2I<(outs rGPR:$ldst, rGPR:$hdst),
1752                   (ins rGPR:$a, rGPR:$b), IIC_iMAC64,
1753                   "smlal", "\t$ldst, $hdst, $a, $b", []>{
1754   let Inst{31-27} = 0b11111;
1755   let Inst{26-23} = 0b0111;
1756   let Inst{22-20} = 0b100;
1757   let Inst{7-4} = 0b0000;
1758 }
1759
1760 def t2UMLAL : T2I<(outs rGPR:$ldst, rGPR:$hdst),
1761                   (ins rGPR:$a, rGPR:$b), IIC_iMAC64,
1762                   "umlal", "\t$ldst, $hdst, $a, $b", []>{
1763   let Inst{31-27} = 0b11111;
1764   let Inst{26-23} = 0b0111;
1765   let Inst{22-20} = 0b110;
1766   let Inst{7-4} = 0b0000;
1767 }
1768
1769 def t2UMAAL : T2I<(outs rGPR:$ldst, rGPR:$hdst),
1770                   (ins rGPR:$a, rGPR:$b), IIC_iMAC64,
1771                   "umaal", "\t$ldst, $hdst, $a, $b", []>{
1772   let Inst{31-27} = 0b11111;
1773   let Inst{26-23} = 0b0111;
1774   let Inst{22-20} = 0b110;
1775   let Inst{7-4} = 0b0110;
1776 }
1777 } // neverHasSideEffects
1778
1779 // Rounding variants of the below included for disassembly only
1780
1781 // Most significant word multiply
1782 def t2SMMUL : T2I<(outs rGPR:$dst), (ins rGPR:$a, rGPR:$b), IIC_iMUL32,
1783                   "smmul", "\t$dst, $a, $b",
1784                   [(set rGPR:$dst, (mulhs rGPR:$a, rGPR:$b))]> {
1785   let Inst{31-27} = 0b11111;
1786   let Inst{26-23} = 0b0110;
1787   let Inst{22-20} = 0b101;
1788   let Inst{15-12} = 0b1111; // Ra = 0b1111 (no accumulate)
1789   let Inst{7-4} = 0b0000; // No Rounding (Inst{4} = 0)
1790 }
1791
1792 def t2SMMULR : T2I<(outs rGPR:$dst), (ins rGPR:$a, rGPR:$b), IIC_iMUL32,
1793                   "smmulr", "\t$dst, $a, $b", []> {
1794   let Inst{31-27} = 0b11111;
1795   let Inst{26-23} = 0b0110;
1796   let Inst{22-20} = 0b101;
1797   let Inst{15-12} = 0b1111; // Ra = 0b1111 (no accumulate)
1798   let Inst{7-4} = 0b0001; // Rounding (Inst{4} = 1)
1799 }
1800
1801 def t2SMMLA : T2I<(outs rGPR:$dst), (ins rGPR:$a, rGPR:$b, rGPR:$c), IIC_iMAC32,
1802                   "smmla", "\t$dst, $a, $b, $c",
1803                   [(set rGPR:$dst, (add (mulhs rGPR:$a, rGPR:$b), rGPR:$c))]> {
1804   let Inst{31-27} = 0b11111;
1805   let Inst{26-23} = 0b0110;
1806   let Inst{22-20} = 0b101;
1807   let Inst{15-12} = {?, ?, ?, ?}; // Ra
1808   let Inst{7-4} = 0b0000; // No Rounding (Inst{4} = 0)
1809 }
1810
1811 def t2SMMLAR: T2I<(outs rGPR:$dst), (ins rGPR:$a, rGPR:$b, rGPR:$c), IIC_iMAC32,
1812                   "smmlar", "\t$dst, $a, $b, $c", []> {
1813   let Inst{31-27} = 0b11111;
1814   let Inst{26-23} = 0b0110;
1815   let Inst{22-20} = 0b101;
1816   let Inst{15-12} = {?, ?, ?, ?}; // Ra
1817   let Inst{7-4} = 0b0001; // Rounding (Inst{4} = 1)
1818 }
1819
1820 def t2SMMLS: T2I <(outs rGPR:$dst), (ins rGPR:$a, rGPR:$b, rGPR:$c), IIC_iMAC32,
1821                    "smmls", "\t$dst, $a, $b, $c",
1822                    [(set rGPR:$dst, (sub rGPR:$c, (mulhs rGPR:$a, rGPR:$b)))]> {
1823   let Inst{31-27} = 0b11111;
1824   let Inst{26-23} = 0b0110;
1825   let Inst{22-20} = 0b110;
1826   let Inst{15-12} = {?, ?, ?, ?}; // Ra
1827   let Inst{7-4} = 0b0000; // No Rounding (Inst{4} = 0)
1828 }
1829
1830 def t2SMMLSR:T2I <(outs rGPR:$dst), (ins rGPR:$a, rGPR:$b, rGPR:$c), IIC_iMAC32,
1831                    "smmlsr", "\t$dst, $a, $b, $c", []> {
1832   let Inst{31-27} = 0b11111;
1833   let Inst{26-23} = 0b0110;
1834   let Inst{22-20} = 0b110;
1835   let Inst{15-12} = {?, ?, ?, ?}; // Ra
1836   let Inst{7-4} = 0b0001; // Rounding (Inst{4} = 1)
1837 }
1838
1839 multiclass T2I_smul<string opc, PatFrag opnode> {
1840   def BB : T2I<(outs rGPR:$dst), (ins rGPR:$a, rGPR:$b), IIC_iMUL32,
1841               !strconcat(opc, "bb"), "\t$dst, $a, $b",
1842               [(set rGPR:$dst, (opnode (sext_inreg rGPR:$a, i16),
1843                                       (sext_inreg rGPR:$b, i16)))]> {
1844     let Inst{31-27} = 0b11111;
1845     let Inst{26-23} = 0b0110;
1846     let Inst{22-20} = 0b001;
1847     let Inst{15-12} = 0b1111; // Ra = 0b1111 (no accumulate)
1848     let Inst{7-6} = 0b00;
1849     let Inst{5-4} = 0b00;
1850   }
1851
1852   def BT : T2I<(outs rGPR:$dst), (ins rGPR:$a, rGPR:$b), IIC_iMUL32,
1853               !strconcat(opc, "bt"), "\t$dst, $a, $b",
1854               [(set rGPR:$dst, (opnode (sext_inreg rGPR:$a, i16),
1855                                       (sra rGPR:$b, (i32 16))))]> {
1856     let Inst{31-27} = 0b11111;
1857     let Inst{26-23} = 0b0110;
1858     let Inst{22-20} = 0b001;
1859     let Inst{15-12} = 0b1111; // Ra = 0b1111 (no accumulate)
1860     let Inst{7-6} = 0b00;
1861     let Inst{5-4} = 0b01;
1862   }
1863
1864   def TB : T2I<(outs rGPR:$dst), (ins rGPR:$a, rGPR:$b), IIC_iMUL32,
1865               !strconcat(opc, "tb"), "\t$dst, $a, $b",
1866               [(set rGPR:$dst, (opnode (sra rGPR:$a, (i32 16)),
1867                                       (sext_inreg rGPR:$b, i16)))]> {
1868     let Inst{31-27} = 0b11111;
1869     let Inst{26-23} = 0b0110;
1870     let Inst{22-20} = 0b001;
1871     let Inst{15-12} = 0b1111; // Ra = 0b1111 (no accumulate)
1872     let Inst{7-6} = 0b00;
1873     let Inst{5-4} = 0b10;
1874   }
1875
1876   def TT : T2I<(outs rGPR:$dst), (ins rGPR:$a, rGPR:$b), IIC_iMUL32,
1877               !strconcat(opc, "tt"), "\t$dst, $a, $b",
1878               [(set rGPR:$dst, (opnode (sra rGPR:$a, (i32 16)),
1879                                       (sra rGPR:$b, (i32 16))))]> {
1880     let Inst{31-27} = 0b11111;
1881     let Inst{26-23} = 0b0110;
1882     let Inst{22-20} = 0b001;
1883     let Inst{15-12} = 0b1111; // Ra = 0b1111 (no accumulate)
1884     let Inst{7-6} = 0b00;
1885     let Inst{5-4} = 0b11;
1886   }
1887
1888   def WB : T2I<(outs rGPR:$dst), (ins rGPR:$a, rGPR:$b), IIC_iMUL16,
1889               !strconcat(opc, "wb"), "\t$dst, $a, $b",
1890               [(set rGPR:$dst, (sra (opnode rGPR:$a,
1891                                     (sext_inreg rGPR:$b, i16)), (i32 16)))]> {
1892     let Inst{31-27} = 0b11111;
1893     let Inst{26-23} = 0b0110;
1894     let Inst{22-20} = 0b011;
1895     let Inst{15-12} = 0b1111; // Ra = 0b1111 (no accumulate)
1896     let Inst{7-6} = 0b00;
1897     let Inst{5-4} = 0b00;
1898   }
1899
1900   def WT : T2I<(outs rGPR:$dst), (ins rGPR:$a, rGPR:$b), IIC_iMUL16,
1901               !strconcat(opc, "wt"), "\t$dst, $a, $b",
1902               [(set rGPR:$dst, (sra (opnode rGPR:$a,
1903                                     (sra rGPR:$b, (i32 16))), (i32 16)))]> {
1904     let Inst{31-27} = 0b11111;
1905     let Inst{26-23} = 0b0110;
1906     let Inst{22-20} = 0b011;
1907     let Inst{15-12} = 0b1111; // Ra = 0b1111 (no accumulate)
1908     let Inst{7-6} = 0b00;
1909     let Inst{5-4} = 0b01;
1910   }
1911 }
1912
1913
1914 multiclass T2I_smla<string opc, PatFrag opnode> {
1915   def BB : T2I<(outs rGPR:$dst), (ins rGPR:$a, rGPR:$b, rGPR:$acc), IIC_iMAC16,
1916               !strconcat(opc, "bb"), "\t$dst, $a, $b, $acc",
1917               [(set rGPR:$dst, (add rGPR:$acc,
1918                                (opnode (sext_inreg rGPR:$a, i16),
1919                                        (sext_inreg rGPR:$b, i16))))]> {
1920     let Inst{31-27} = 0b11111;
1921     let Inst{26-23} = 0b0110;
1922     let Inst{22-20} = 0b001;
1923     let Inst{15-12} = {?, ?, ?, ?}; // Ra
1924     let Inst{7-6} = 0b00;
1925     let Inst{5-4} = 0b00;
1926   }
1927
1928   def BT : T2I<(outs rGPR:$dst), (ins rGPR:$a, rGPR:$b, rGPR:$acc), IIC_iMAC16,
1929              !strconcat(opc, "bt"), "\t$dst, $a, $b, $acc",
1930              [(set rGPR:$dst, (add rGPR:$acc, (opnode (sext_inreg rGPR:$a, i16),
1931                                                   (sra rGPR:$b, (i32 16)))))]> {
1932     let Inst{31-27} = 0b11111;
1933     let Inst{26-23} = 0b0110;
1934     let Inst{22-20} = 0b001;
1935     let Inst{15-12} = {?, ?, ?, ?}; // Ra
1936     let Inst{7-6} = 0b00;
1937     let Inst{5-4} = 0b01;
1938   }
1939
1940   def TB : T2I<(outs rGPR:$dst), (ins rGPR:$a, rGPR:$b, rGPR:$acc), IIC_iMAC16,
1941               !strconcat(opc, "tb"), "\t$dst, $a, $b, $acc",
1942               [(set rGPR:$dst, (add rGPR:$acc, (opnode (sra rGPR:$a, (i32 16)),
1943                                                 (sext_inreg rGPR:$b, i16))))]> {
1944     let Inst{31-27} = 0b11111;
1945     let Inst{26-23} = 0b0110;
1946     let Inst{22-20} = 0b001;
1947     let Inst{15-12} = {?, ?, ?, ?}; // Ra
1948     let Inst{7-6} = 0b00;
1949     let Inst{5-4} = 0b10;
1950   }
1951
1952   def TT : T2I<(outs rGPR:$dst), (ins rGPR:$a, rGPR:$b, rGPR:$acc), IIC_iMAC16,
1953               !strconcat(opc, "tt"), "\t$dst, $a, $b, $acc",
1954              [(set rGPR:$dst, (add rGPR:$acc, (opnode (sra rGPR:$a, (i32 16)),
1955                                                   (sra rGPR:$b, (i32 16)))))]> {
1956     let Inst{31-27} = 0b11111;
1957     let Inst{26-23} = 0b0110;
1958     let Inst{22-20} = 0b001;
1959     let Inst{15-12} = {?, ?, ?, ?}; // Ra
1960     let Inst{7-6} = 0b00;
1961     let Inst{5-4} = 0b11;
1962   }
1963
1964   def WB : T2I<(outs rGPR:$dst), (ins rGPR:$a, rGPR:$b, rGPR:$acc), IIC_iMAC16,
1965               !strconcat(opc, "wb"), "\t$dst, $a, $b, $acc",
1966               [(set rGPR:$dst, (add rGPR:$acc, (sra (opnode rGPR:$a,
1967                                      (sext_inreg rGPR:$b, i16)), (i32 16))))]> {
1968     let Inst{31-27} = 0b11111;
1969     let Inst{26-23} = 0b0110;
1970     let Inst{22-20} = 0b011;
1971     let Inst{15-12} = {?, ?, ?, ?}; // Ra
1972     let Inst{7-6} = 0b00;
1973     let Inst{5-4} = 0b00;
1974   }
1975
1976   def WT : T2I<(outs rGPR:$dst), (ins rGPR:$a, rGPR:$b, rGPR:$acc), IIC_iMAC16,
1977               !strconcat(opc, "wt"), "\t$dst, $a, $b, $acc",
1978               [(set rGPR:$dst, (add rGPR:$acc, (sra (opnode rGPR:$a,
1979                                        (sra rGPR:$b, (i32 16))), (i32 16))))]> {
1980     let Inst{31-27} = 0b11111;
1981     let Inst{26-23} = 0b0110;
1982     let Inst{22-20} = 0b011;
1983     let Inst{15-12} = {?, ?, ?, ?}; // Ra
1984     let Inst{7-6} = 0b00;
1985     let Inst{5-4} = 0b01;
1986   }
1987 }
1988
1989 defm t2SMUL : T2I_smul<"smul", BinOpFrag<(mul node:$LHS, node:$RHS)>>;
1990 defm t2SMLA : T2I_smla<"smla", BinOpFrag<(mul node:$LHS, node:$RHS)>>;
1991
1992 // Halfword multiple accumulate long: SMLAL<x><y> -- for disassembly only
1993 def t2SMLALBB : T2I_mac<1, 0b100, 0b1000, (outs rGPR:$ldst,rGPR:$hdst),
1994          (ins rGPR:$a,rGPR:$b), IIC_iMAC64, "smlalbb", "\t$ldst, $hdst, $a, $b",
1995            [/* For disassembly only; pattern left blank */]>;
1996 def t2SMLALBT : T2I_mac<1, 0b100, 0b1001, (outs rGPR:$ldst,rGPR:$hdst),
1997          (ins rGPR:$a,rGPR:$b), IIC_iMAC64, "smlalbt", "\t$ldst, $hdst, $a, $b",
1998            [/* For disassembly only; pattern left blank */]>;
1999 def t2SMLALTB : T2I_mac<1, 0b100, 0b1010, (outs rGPR:$ldst,rGPR:$hdst),
2000          (ins rGPR:$a,rGPR:$b), IIC_iMAC64, "smlaltb", "\t$ldst, $hdst, $a, $b",
2001            [/* For disassembly only; pattern left blank */]>;
2002 def t2SMLALTT : T2I_mac<1, 0b100, 0b1011, (outs rGPR:$ldst,rGPR:$hdst),
2003          (ins rGPR:$a,rGPR:$b), IIC_iMAC64, "smlaltt", "\t$ldst, $hdst, $a, $b",
2004            [/* For disassembly only; pattern left blank */]>;
2005
2006 // Dual halfword multiple: SMUAD, SMUSD, SMLAD, SMLSD, SMLALD, SMLSLD
2007 // These are for disassembly only.
2008
2009 def t2SMUAD: T2I_mac<0, 0b010, 0b0000, (outs rGPR:$dst), (ins rGPR:$a, rGPR:$b),
2010                      IIC_iMAC32, "smuad", "\t$dst, $a, $b", []> {
2011   let Inst{15-12} = 0b1111;
2012 }
2013 def t2SMUADX:T2I_mac<0, 0b010, 0b0001, (outs rGPR:$dst), (ins rGPR:$a, rGPR:$b),
2014                      IIC_iMAC32, "smuadx", "\t$dst, $a, $b", []> {
2015   let Inst{15-12} = 0b1111;
2016 }
2017 def t2SMUSD: T2I_mac<0, 0b100, 0b0000, (outs rGPR:$dst), (ins rGPR:$a, rGPR:$b),
2018                      IIC_iMAC32, "smusd", "\t$dst, $a, $b", []> {
2019   let Inst{15-12} = 0b1111;
2020 }
2021 def t2SMUSDX:T2I_mac<0, 0b100, 0b0001, (outs rGPR:$dst), (ins rGPR:$a, rGPR:$b),
2022                      IIC_iMAC32, "smusdx", "\t$dst, $a, $b", []> {
2023   let Inst{15-12} = 0b1111;
2024 }
2025 def t2SMLAD   : T2I_mac<0, 0b010, 0b0000, (outs rGPR:$dst),
2026                         (ins rGPR:$a, rGPR:$b, rGPR:$acc), IIC_iMAC32, "smlad",
2027                         "\t$dst, $a, $b, $acc", []>;
2028 def t2SMLADX  : T2I_mac<0, 0b010, 0b0001, (outs rGPR:$dst),
2029                         (ins rGPR:$a, rGPR:$b, rGPR:$acc), IIC_iMAC32, "smladx",
2030                         "\t$dst, $a, $b, $acc", []>;
2031 def t2SMLSD   : T2I_mac<0, 0b100, 0b0000, (outs rGPR:$dst),
2032                         (ins rGPR:$a, rGPR:$b, rGPR:$acc), IIC_iMAC32, "smlsd",
2033                         "\t$dst, $a, $b, $acc", []>;
2034 def t2SMLSDX  : T2I_mac<0, 0b100, 0b0001, (outs rGPR:$dst),
2035                         (ins rGPR:$a, rGPR:$b, rGPR:$acc), IIC_iMAC32, "smlsdx",
2036                         "\t$dst, $a, $b, $acc", []>;
2037 def t2SMLALD  : T2I_mac<1, 0b100, 0b1100, (outs rGPR:$ldst,rGPR:$hdst),
2038                         (ins rGPR:$a,rGPR:$b), IIC_iMAC64, "smlald",
2039                         "\t$ldst, $hdst, $a, $b", []>;
2040 def t2SMLALDX : T2I_mac<1, 0b100, 0b1101, (outs rGPR:$ldst,rGPR:$hdst),
2041                         (ins rGPR:$a,rGPR:$b), IIC_iMAC64, "smlaldx",
2042                         "\t$ldst, $hdst, $a, $b", []>;
2043 def t2SMLSLD  : T2I_mac<1, 0b101, 0b1100, (outs rGPR:$ldst,rGPR:$hdst),
2044                         (ins rGPR:$a,rGPR:$b), IIC_iMAC64, "smlsld",
2045                         "\t$ldst, $hdst, $a, $b", []>;
2046 def t2SMLSLDX : T2I_mac<1, 0b101, 0b1101, (outs rGPR:$ldst,rGPR:$hdst),
2047                         (ins rGPR:$a,rGPR:$b), IIC_iMAC64, "smlsldx",
2048                         "\t$ldst, $hdst, $a, $b", []>;
2049
2050 //===----------------------------------------------------------------------===//
2051 //  Misc. Arithmetic Instructions.
2052 //
2053
2054 class T2I_misc<bits<2> op1, bits<2> op2, dag oops, dag iops,
2055       InstrItinClass itin, string opc, string asm, list<dag> pattern>
2056   : T2I<oops, iops, itin, opc, asm, pattern> {
2057   let Inst{31-27} = 0b11111;
2058   let Inst{26-22} = 0b01010;
2059   let Inst{21-20} = op1;
2060   let Inst{15-12} = 0b1111;
2061   let Inst{7-6} = 0b10;
2062   let Inst{5-4} = op2;
2063 }
2064
2065 def t2CLZ : T2I_misc<0b11, 0b00, (outs rGPR:$dst), (ins rGPR:$src), IIC_iUNAr,
2066                     "clz", "\t$dst, $src", [(set rGPR:$dst, (ctlz rGPR:$src))]>;
2067
2068 def t2RBIT : T2I_misc<0b01, 0b10, (outs rGPR:$dst), (ins rGPR:$src), IIC_iUNAr,
2069                       "rbit", "\t$dst, $src",
2070                       [(set rGPR:$dst, (ARMrbit rGPR:$src))]>;
2071
2072 def t2REV : T2I_misc<0b01, 0b00, (outs rGPR:$dst), (ins rGPR:$src), IIC_iUNAr,
2073                  "rev", ".w\t$dst, $src", [(set rGPR:$dst, (bswap rGPR:$src))]>;
2074
2075 def t2REV16 : T2I_misc<0b01, 0b01, (outs rGPR:$dst), (ins rGPR:$src), IIC_iUNAr,
2076                        "rev16", ".w\t$dst, $src",
2077                 [(set rGPR:$dst,
2078                     (or (and (srl rGPR:$src, (i32 8)), 0xFF),
2079                         (or (and (shl rGPR:$src, (i32 8)), 0xFF00),
2080                             (or (and (srl rGPR:$src, (i32 8)), 0xFF0000),
2081                                (and (shl rGPR:$src, (i32 8)), 0xFF000000)))))]>;
2082
2083 def t2REVSH : T2I_misc<0b01, 0b11, (outs rGPR:$dst), (ins rGPR:$src), IIC_iUNAr,
2084                        "revsh", ".w\t$dst, $src",
2085                  [(set rGPR:$dst,
2086                     (sext_inreg
2087                       (or (srl (and rGPR:$src, 0xFF00), (i32 8)),
2088                           (shl rGPR:$src, (i32 8))), i16))]>;
2089
2090 def t2PKHBT : T2I<(outs rGPR:$dst), (ins rGPR:$src1, rGPR:$src2, shift_imm:$sh),
2091                   IIC_iALUsi, "pkhbt", "\t$dst, $src1, $src2$sh",
2092                   [(set rGPR:$dst, (or (and rGPR:$src1, 0xFFFF),
2093                                       (and (shl rGPR:$src2, lsl_amt:$sh),
2094                                            0xFFFF0000)))]>,
2095                   Requires<[HasT2ExtractPack]> {
2096   let Inst{31-27} = 0b11101;
2097   let Inst{26-25} = 0b01;
2098   let Inst{24-20} = 0b01100;
2099   let Inst{5} = 0; // BT form
2100   let Inst{4} = 0;
2101 }
2102
2103 // Alternate cases for PKHBT where identities eliminate some nodes.
2104 def : T2Pat<(or (and rGPR:$src1, 0xFFFF), (and rGPR:$src2, 0xFFFF0000)),
2105             (t2PKHBT rGPR:$src1, rGPR:$src2, 0)>,
2106             Requires<[HasT2ExtractPack]>;
2107 def : T2Pat<(or (and rGPR:$src1, 0xFFFF), (shl rGPR:$src2, imm16_31:$sh)),
2108             (t2PKHBT rGPR:$src1, rGPR:$src2, (lsl_shift_imm imm16_31:$sh))>,
2109             Requires<[HasT2ExtractPack]>;
2110
2111 // Note: Shifts of 1-15 bits will be transformed to srl instead of sra and
2112 // will match the pattern below.
2113 def t2PKHTB : T2I<(outs rGPR:$dst), (ins rGPR:$src1, rGPR:$src2, shift_imm:$sh),
2114                   IIC_iALUsi, "pkhtb", "\t$dst, $src1, $src2$sh",
2115                   [(set rGPR:$dst, (or (and rGPR:$src1, 0xFFFF0000),
2116                                        (and (sra rGPR:$src2, asr_amt:$sh),
2117                                             0xFFFF)))]>,
2118                   Requires<[HasT2ExtractPack]> {
2119   let Inst{31-27} = 0b11101;
2120   let Inst{26-25} = 0b01;
2121   let Inst{24-20} = 0b01100;
2122   let Inst{5} = 1; // TB form
2123   let Inst{4} = 0;
2124 }
2125
2126 // Alternate cases for PKHTB where identities eliminate some nodes.  Note that
2127 // a shift amount of 0 is *not legal* here, it is PKHBT instead.
2128 def : T2Pat<(or (and rGPR:$src1, 0xFFFF0000), (srl rGPR:$src2, imm16_31:$sh)),
2129             (t2PKHTB rGPR:$src1, rGPR:$src2, (asr_shift_imm imm16_31:$sh))>,
2130             Requires<[HasT2ExtractPack]>;
2131 def : T2Pat<(or (and rGPR:$src1, 0xFFFF0000),
2132                 (and (srl rGPR:$src2, imm1_15:$sh), 0xFFFF)),
2133             (t2PKHTB rGPR:$src1, rGPR:$src2, (asr_shift_imm imm1_15:$sh))>,
2134             Requires<[HasT2ExtractPack]>;
2135
2136 //===----------------------------------------------------------------------===//
2137 //  Comparison Instructions...
2138 //
2139 let isCompare = 1 in {
2140 defm t2CMP  : T2I_cmp_irs<0b1101, "cmp",
2141                           BinOpFrag<(ARMcmp node:$LHS, node:$RHS)>>;
2142 defm t2CMPz : T2I_cmp_irs<0b1101, "cmp",
2143                           BinOpFrag<(ARMcmpZ node:$LHS, node:$RHS)>>;
2144 }
2145
2146 //FIXME: Disable CMN, as CCodes are backwards from compare expectations
2147 //       Compare-to-zero still works out, just not the relationals
2148 //defm t2CMN  : T2I_cmp_irs<0b1000, "cmn",
2149 //                          BinOpFrag<(ARMcmp node:$LHS,(ineg node:$RHS))>>;
2150 defm t2CMNz : T2I_cmp_irs<0b1000, "cmn",
2151                           BinOpFrag<(ARMcmpZ node:$LHS,(ineg node:$RHS))>>;
2152
2153 //def : T2Pat<(ARMcmp  GPR:$src, t2_so_imm_neg:$imm),
2154 //            (t2CMNri GPR:$src, t2_so_imm_neg:$imm)>;
2155
2156 def : T2Pat<(ARMcmpZ  GPR:$src, t2_so_imm_neg:$imm),
2157             (t2CMNzri GPR:$src, t2_so_imm_neg:$imm)>;
2158
2159 defm t2TST  : T2I_cmp_irs<0b0000, "tst",
2160                           BinOpFrag<(ARMcmpZ (and node:$LHS, node:$RHS), 0)>>;
2161 defm t2TEQ  : T2I_cmp_irs<0b0100, "teq",
2162                           BinOpFrag<(ARMcmpZ (xor node:$LHS, node:$RHS), 0)>>;
2163
2164 // Conditional moves
2165 // FIXME: should be able to write a pattern for ARMcmov, but can't use
2166 // a two-value operand where a dag node expects two operands. :(
2167 let neverHasSideEffects = 1 in {
2168 def t2MOVCCr : T2I<(outs rGPR:$dst), (ins rGPR:$false, rGPR:$true), IIC_iCMOVr,
2169                    "mov", ".w\t$dst, $true",
2170    [/*(set rGPR:$dst, (ARMcmov rGPR:$false, rGPR:$true, imm:$cc, CCR:$ccr))*/]>,
2171                 RegConstraint<"$false = $dst"> {
2172   let Inst{31-27} = 0b11101;
2173   let Inst{26-25} = 0b01;
2174   let Inst{24-21} = 0b0010;
2175   let Inst{20} = 0; // The S bit.
2176   let Inst{19-16} = 0b1111; // Rn
2177   let Inst{14-12} = 0b000;
2178   let Inst{7-4} = 0b0000;
2179 }
2180
2181 def t2MOVCCi : T2I<(outs rGPR:$dst), (ins rGPR:$false, t2_so_imm:$true),
2182                    IIC_iCMOVi, "mov", ".w\t$dst, $true",
2183 [/*(set rGPR:$dst,(ARMcmov rGPR:$false,t2_so_imm:$true, imm:$cc, CCR:$ccr))*/]>,
2184                    RegConstraint<"$false = $dst"> {
2185   let Inst{31-27} = 0b11110;
2186   let Inst{25} = 0;
2187   let Inst{24-21} = 0b0010;
2188   let Inst{20} = 0; // The S bit.
2189   let Inst{19-16} = 0b1111; // Rn
2190   let Inst{15} = 0;
2191 }
2192
2193 class T2I_movcc_sh<bits<2> opcod, dag oops, dag iops, InstrItinClass itin,
2194                    string opc, string asm, list<dag> pattern>
2195   : T2I<oops, iops, itin, opc, asm, pattern> {
2196   let Inst{31-27} = 0b11101;
2197   let Inst{26-25} = 0b01;
2198   let Inst{24-21} = 0b0010;
2199   let Inst{20} = 0; // The S bit.
2200   let Inst{19-16} = 0b1111; // Rn
2201   let Inst{5-4} = opcod; // Shift type.
2202 }
2203 def t2MOVCClsl : T2I_movcc_sh<0b00, (outs rGPR:$dst),
2204                              (ins rGPR:$false, rGPR:$true, i32imm:$rhs),
2205                              IIC_iCMOVsi, "lsl", ".w\t$dst, $true, $rhs", []>,
2206                  RegConstraint<"$false = $dst">;
2207 def t2MOVCClsr : T2I_movcc_sh<0b01, (outs rGPR:$dst),
2208                              (ins rGPR:$false, rGPR:$true, i32imm:$rhs),
2209                              IIC_iCMOVsi, "lsr", ".w\t$dst, $true, $rhs", []>,
2210                  RegConstraint<"$false = $dst">;
2211 def t2MOVCCasr : T2I_movcc_sh<0b10, (outs rGPR:$dst),
2212                              (ins rGPR:$false, rGPR:$true, i32imm:$rhs),
2213                              IIC_iCMOVsi, "asr", ".w\t$dst, $true, $rhs", []>,
2214                  RegConstraint<"$false = $dst">;
2215 def t2MOVCCror : T2I_movcc_sh<0b11, (outs rGPR:$dst),
2216                              (ins rGPR:$false, rGPR:$true, i32imm:$rhs),
2217                              IIC_iCMOVsi, "ror", ".w\t$dst, $true, $rhs", []>,
2218                  RegConstraint<"$false = $dst">;
2219 } // neverHasSideEffects
2220
2221 //===----------------------------------------------------------------------===//
2222 // Atomic operations intrinsics
2223 //
2224
2225 // memory barriers protect the atomic sequences
2226 let hasSideEffects = 1 in {
2227 def t2DMBsy : AInoP<(outs), (ins), ThumbFrm, NoItinerary, "dmb", "",
2228                     [(ARMMemBarrier)]>, Requires<[IsThumb, HasDB]> {
2229   let Inst{31-4} = 0xF3BF8F5;
2230   // FIXME: add support for options other than a full system DMB
2231   let Inst{3-0} = 0b1111;
2232 }
2233
2234 def t2DSBsy : AInoP<(outs), (ins), ThumbFrm, NoItinerary, "dsb", "",
2235                     [(ARMSyncBarrier)]>, Requires<[IsThumb, HasDB]> {
2236   let Inst{31-4} = 0xF3BF8F4;
2237   // FIXME: add support for options other than a full system DSB
2238   let Inst{3-0} = 0b1111;
2239 }
2240 }
2241
2242 // Helper class for multiclass T2MemB -- for disassembly only
2243 class T2I_memb<string opc, string asm>
2244   : T2I<(outs), (ins), NoItinerary, opc, asm,
2245         [/* For disassembly only; pattern left blank */]>,
2246     Requires<[IsThumb2, HasV7]> {
2247   let Inst{31-20} = 0xf3b;
2248   let Inst{15-14} = 0b10;
2249   let Inst{12} = 0;
2250 }
2251
2252 multiclass T2MemB<bits<4> op7_4, string opc> {
2253
2254   def st : T2I_memb<opc, "\tst"> {
2255     let Inst{7-4} = op7_4;
2256     let Inst{3-0} = 0b1110;
2257   }
2258
2259   def ish : T2I_memb<opc, "\tish"> {
2260     let Inst{7-4} = op7_4;
2261     let Inst{3-0} = 0b1011;
2262   }
2263
2264   def ishst : T2I_memb<opc, "\tishst"> {
2265     let Inst{7-4} = op7_4;
2266     let Inst{3-0} = 0b1010;
2267   }
2268
2269   def nsh : T2I_memb<opc, "\tnsh"> {
2270     let Inst{7-4} = op7_4;
2271     let Inst{3-0} = 0b0111;
2272   }
2273
2274   def nshst : T2I_memb<opc, "\tnshst"> {
2275     let Inst{7-4} = op7_4;
2276     let Inst{3-0} = 0b0110;
2277   }
2278
2279   def osh : T2I_memb<opc, "\tosh"> {
2280     let Inst{7-4} = op7_4;
2281     let Inst{3-0} = 0b0011;
2282   }
2283
2284   def oshst : T2I_memb<opc, "\toshst"> {
2285     let Inst{7-4} = op7_4;
2286     let Inst{3-0} = 0b0010;
2287   }
2288 }
2289
2290 // These DMB variants are for disassembly only.
2291 defm t2DMB : T2MemB<0b0101, "dmb">;
2292
2293 // These DSB variants are for disassembly only.
2294 defm t2DSB : T2MemB<0b0100, "dsb">;
2295
2296 // ISB has only full system option -- for disassembly only
2297 def t2ISBsy : T2I_memb<"isb", ""> {
2298   let Inst{7-4} = 0b0110;
2299   let Inst{3-0} = 0b1111;
2300 }
2301
2302 class T2I_ldrex<bits<2> opcod, dag oops, dag iops, AddrMode am, SizeFlagVal sz,
2303                 InstrItinClass itin, string opc, string asm, string cstr,
2304                 list<dag> pattern, bits<4> rt2 = 0b1111>
2305   : Thumb2I<oops, iops, am, sz, itin, opc, asm, cstr, pattern> {
2306   let Inst{31-27} = 0b11101;
2307   let Inst{26-20} = 0b0001101;
2308   let Inst{11-8} = rt2;
2309   let Inst{7-6} = 0b01;
2310   let Inst{5-4} = opcod;
2311   let Inst{3-0} = 0b1111;
2312 }
2313 class T2I_strex<bits<2> opcod, dag oops, dag iops, AddrMode am, SizeFlagVal sz,
2314                 InstrItinClass itin, string opc, string asm, string cstr,
2315                 list<dag> pattern, bits<4> rt2 = 0b1111>
2316   : Thumb2I<oops, iops, am, sz, itin, opc, asm, cstr, pattern> {
2317   let Inst{31-27} = 0b11101;
2318   let Inst{26-20} = 0b0001100;
2319   let Inst{11-8} = rt2;
2320   let Inst{7-6} = 0b01;
2321   let Inst{5-4} = opcod;
2322 }
2323
2324 let mayLoad = 1 in {
2325 def t2LDREXB : T2I_ldrex<0b00, (outs rGPR:$dest), (ins rGPR:$ptr), AddrModeNone,
2326                          Size4Bytes, NoItinerary, "ldrexb", "\t$dest, [$ptr]",
2327                          "", []>;
2328 def t2LDREXH : T2I_ldrex<0b01, (outs rGPR:$dest), (ins rGPR:$ptr), AddrModeNone,
2329                          Size4Bytes, NoItinerary, "ldrexh", "\t$dest, [$ptr]",
2330                          "", []>;
2331 def t2LDREX  : Thumb2I<(outs rGPR:$dest), (ins rGPR:$ptr), AddrModeNone,
2332                        Size4Bytes, NoItinerary,
2333                        "ldrex", "\t$dest, [$ptr]", "",
2334                       []> {
2335   let Inst{31-27} = 0b11101;
2336   let Inst{26-20} = 0b0000101;
2337   let Inst{11-8} = 0b1111;
2338   let Inst{7-0} = 0b00000000; // imm8 = 0
2339 }
2340 def t2LDREXD : T2I_ldrex<0b11, (outs rGPR:$dest, rGPR:$dest2), (ins rGPR:$ptr),
2341                          AddrModeNone, Size4Bytes, NoItinerary,
2342                          "ldrexd", "\t$dest, $dest2, [$ptr]", "",
2343                          [], {?, ?, ?, ?}>;
2344 }
2345
2346 let mayStore = 1, Constraints = "@earlyclobber $success" in {
2347 def t2STREXB : T2I_strex<0b00, (outs rGPR:$success), (ins rGPR:$src, rGPR:$ptr),
2348                          AddrModeNone, Size4Bytes, NoItinerary,
2349                          "strexb", "\t$success, $src, [$ptr]", "", []>;
2350 def t2STREXH : T2I_strex<0b01, (outs rGPR:$success), (ins rGPR:$src, rGPR:$ptr),
2351                          AddrModeNone, Size4Bytes, NoItinerary,
2352                          "strexh", "\t$success, $src, [$ptr]", "", []>;
2353 def t2STREX  : Thumb2I<(outs rGPR:$success), (ins rGPR:$src, rGPR:$ptr),
2354                        AddrModeNone, Size4Bytes, NoItinerary,
2355                        "strex", "\t$success, $src, [$ptr]", "",
2356                       []> {
2357   let Inst{31-27} = 0b11101;
2358   let Inst{26-20} = 0b0000100;
2359   let Inst{7-0} = 0b00000000; // imm8 = 0
2360 }
2361 def t2STREXD : T2I_strex<0b11, (outs rGPR:$success),
2362                          (ins rGPR:$src, rGPR:$src2, rGPR:$ptr),
2363                          AddrModeNone, Size4Bytes, NoItinerary,
2364                          "strexd", "\t$success, $src, $src2, [$ptr]", "", [],
2365                          {?, ?, ?, ?}>;
2366 }
2367
2368 // Clear-Exclusive is for disassembly only.
2369 def t2CLREX : T2I<(outs), (ins), NoItinerary, "clrex", "",
2370                   [/* For disassembly only; pattern left blank */]>,
2371             Requires<[IsARM, HasV7]>  {
2372   let Inst{31-20} = 0xf3b;
2373   let Inst{15-14} = 0b10;
2374   let Inst{12} = 0;
2375   let Inst{7-4} = 0b0010;
2376 }
2377
2378 //===----------------------------------------------------------------------===//
2379 // TLS Instructions
2380 //
2381
2382 // __aeabi_read_tp preserves the registers r1-r3.
2383 let isCall = 1,
2384   Defs = [R0, R12, LR, CPSR] in {
2385   def t2TPsoft : T2XI<(outs), (ins), IIC_Br,
2386                      "bl\t__aeabi_read_tp",
2387                      [(set R0, ARMthread_pointer)]> {
2388     let Inst{31-27} = 0b11110;
2389     let Inst{15-14} = 0b11;
2390     let Inst{12} = 1;
2391   }
2392 }
2393
2394 //===----------------------------------------------------------------------===//
2395 // SJLJ Exception handling intrinsics
2396 //   eh_sjlj_setjmp() is an instruction sequence to store the return
2397 //   address and save #0 in R0 for the non-longjmp case.
2398 //   Since by its nature we may be coming from some other function to get
2399 //   here, and we're using the stack frame for the containing function to
2400 //   save/restore registers, we can't keep anything live in regs across
2401 //   the eh_sjlj_setjmp(), else it will almost certainly have been tromped upon
2402 //   when we get here from a longjmp(). We force everthing out of registers
2403 //   except for our own input by listing the relevant registers in Defs. By
2404 //   doing so, we also cause the prologue/epilogue code to actively preserve
2405 //   all of the callee-saved resgisters, which is exactly what we want.
2406 //   $val is a scratch register for our use.
2407 let Defs =
2408   [ R0,  R1,  R2,  R3,  R4,  R5,  R6,  R7,  R8,  R9,  R10, R11, R12, LR,  D0,
2409     D1,  D2,  D3,  D4,  D5,  D6,  D7,  D8,  D9,  D10, D11, D12, D13, D14, D15,
2410     D16, D17, D18, D19, D20, D21, D22, D23, D24, D25, D26, D27, D28, D29, D30,
2411     D31 ], hasSideEffects = 1, isBarrier = 1 in {
2412   def t2Int_eh_sjlj_setjmp : Thumb2XI<(outs), (ins GPR:$src, tGPR:$val),
2413                                AddrModeNone, SizeSpecial, NoItinerary,
2414                                "mov\t$val, pc\t${:comment} begin eh.setjmp\n\t"
2415                                "adds\t$val, #7\n\t"
2416                                "str\t$val, [$src, #4]\n\t"
2417                                "movs\tr0, #0\n\t"
2418                                "b\t1f\n\t"
2419                                "movs\tr0, #1\t${:comment} end eh.setjmp\n\t"
2420                                "1:", "",
2421                           [(set R0, (ARMeh_sjlj_setjmp GPR:$src, tGPR:$val))]>,
2422                              Requires<[IsThumb2, HasVFP2]>;
2423 }
2424
2425 let Defs =
2426   [ R0,  R1,  R2,  R3,  R4,  R5,  R6,  R7,  R8,  R9,  R10, R11, R12, LR ],
2427   hasSideEffects = 1, isBarrier = 1 in {
2428   def t2Int_eh_sjlj_setjmp_nofp : Thumb2XI<(outs), (ins GPR:$src, tGPR:$val),
2429                                AddrModeNone, SizeSpecial, NoItinerary,
2430                                "mov\t$val, pc\t${:comment} begin eh.setjmp\n\t"
2431                                "adds\t$val, #7\n\t"
2432                                "str\t$val, [$src, #4]\n\t"
2433                                "movs\tr0, #0\n\t"
2434                                "b\t1f\n\t"
2435                                "movs\tr0, #1\t${:comment} end eh.setjmp\n\t"
2436                                "1:", "",
2437                           [(set R0, (ARMeh_sjlj_setjmp GPR:$src, tGPR:$val))]>,
2438                                   Requires<[IsThumb2, NoVFP]>;
2439 }
2440
2441
2442 //===----------------------------------------------------------------------===//
2443 // Control-Flow Instructions
2444 //
2445
2446 // FIXME: remove when we have a way to marking a MI with these properties.
2447 // FIXME: $dst1 should be a def. But the extra ops must be in the end of the
2448 // operand list.
2449 // FIXME: Should pc be an implicit operand like PICADD, etc?
2450 let isReturn = 1, isTerminator = 1, isBarrier = 1, mayLoad = 1,
2451     hasExtraDefRegAllocReq = 1 in
2452   def t2LDM_RET : T2XIt<(outs GPR:$wb), (ins addrmode4:$addr, pred:$p,
2453                                          reglist:$dsts, variable_ops), IIC_Br,
2454                         "ldm${addr:submode}${p}${addr:wide}\t$addr!, $dsts",
2455                         "$addr.addr = $wb", []> {
2456   let Inst{31-27} = 0b11101;
2457   let Inst{26-25} = 0b00;
2458   let Inst{24-23} = {?, ?}; // IA: '01', DB: '10'
2459   let Inst{22} = 0;
2460   let Inst{21} = 1; // The W bit.
2461   let Inst{20} = 1; // Load
2462 }
2463
2464 let isBranch = 1, isTerminator = 1, isBarrier = 1 in {
2465 let isPredicable = 1 in
2466 def t2B   : T2XI<(outs), (ins brtarget:$target), IIC_Br,
2467                  "b.w\t$target",
2468                  [(br bb:$target)]> {
2469   let Inst{31-27} = 0b11110;
2470   let Inst{15-14} = 0b10;
2471   let Inst{12} = 1;
2472 }
2473
2474 let isNotDuplicable = 1, isIndirectBranch = 1 in {
2475 def t2BR_JT :
2476     T2JTI<(outs),
2477           (ins GPR:$target, GPR:$index, jt2block_operand:$jt, i32imm:$id),
2478            IIC_Br, "mov\tpc, $target$jt",
2479           [(ARMbr2jt GPR:$target, GPR:$index, tjumptable:$jt, imm:$id)]> {
2480   let Inst{31-27} = 0b11101;
2481   let Inst{26-20} = 0b0100100;
2482   let Inst{19-16} = 0b1111;
2483   let Inst{14-12} = 0b000;
2484   let Inst{11-8} = 0b1111; // Rd = pc
2485   let Inst{7-4} = 0b0000;
2486 }
2487
2488 // FIXME: Add a non-pc based case that can be predicated.
2489 def t2TBB :
2490     T2JTI<(outs),
2491         (ins tb_addrmode:$index, jt2block_operand:$jt, i32imm:$id),
2492          IIC_Br, "tbb\t$index$jt", []> {
2493   let Inst{31-27} = 0b11101;
2494   let Inst{26-20} = 0b0001101;
2495   let Inst{19-16} = 0b1111; // Rn = pc (table follows this instruction)
2496   let Inst{15-8} = 0b11110000;
2497   let Inst{7-4} = 0b0000; // B form
2498 }
2499
2500 def t2TBH :
2501     T2JTI<(outs),
2502         (ins tb_addrmode:$index, jt2block_operand:$jt, i32imm:$id),
2503          IIC_Br, "tbh\t$index$jt", []> {
2504   let Inst{31-27} = 0b11101;
2505   let Inst{26-20} = 0b0001101;
2506   let Inst{19-16} = 0b1111; // Rn = pc (table follows this instruction)
2507   let Inst{15-8} = 0b11110000;
2508   let Inst{7-4} = 0b0001; // H form
2509 }
2510
2511 // Generic versions of the above two instructions, for disassembly only
2512
2513 def t2TBBgen : T2I<(outs), (ins GPR:$a, GPR:$b), IIC_Br,
2514                     "tbb", "\t[$a, $b]", []>{
2515   let Inst{31-27} = 0b11101;
2516   let Inst{26-20} = 0b0001101;
2517   let Inst{15-8} = 0b11110000;
2518   let Inst{7-4} = 0b0000; // B form
2519 }
2520
2521 def t2TBHgen : T2I<(outs), (ins GPR:$a, GPR:$b), IIC_Br,
2522                    "tbh", "\t[$a, $b, lsl #1]", []> {
2523   let Inst{31-27} = 0b11101;
2524   let Inst{26-20} = 0b0001101;
2525   let Inst{15-8} = 0b11110000;
2526   let Inst{7-4} = 0b0001; // H form
2527 }
2528 } // isNotDuplicable, isIndirectBranch
2529
2530 } // isBranch, isTerminator, isBarrier
2531
2532 // FIXME: should be able to write a pattern for ARMBrcond, but can't use
2533 // a two-value operand where a dag node expects two operands. :(
2534 let isBranch = 1, isTerminator = 1 in
2535 def t2Bcc : T2I<(outs), (ins brtarget:$target), IIC_Br,
2536                 "b", ".w\t$target",
2537                 [/*(ARMbrcond bb:$target, imm:$cc)*/]> {
2538   let Inst{31-27} = 0b11110;
2539   let Inst{15-14} = 0b10;
2540   let Inst{12} = 0;
2541 }
2542
2543
2544 // IT block
2545 let Defs = [ITSTATE] in
2546 def t2IT : Thumb2XI<(outs), (ins it_pred:$cc, it_mask:$mask),
2547                     AddrModeNone, Size2Bytes,  IIC_iALUx,
2548                     "it$mask\t$cc", "", []> {
2549   // 16-bit instruction.
2550   let Inst{31-16} = 0x0000;
2551   let Inst{15-8} = 0b10111111;
2552 }
2553
2554 // Branch and Exchange Jazelle -- for disassembly only
2555 // Rm = Inst{19-16}
2556 def t2BXJ : T2I<(outs), (ins rGPR:$func), NoItinerary, "bxj", "\t$func",
2557               [/* For disassembly only; pattern left blank */]> {
2558   let Inst{31-27} = 0b11110;
2559   let Inst{26} = 0;
2560   let Inst{25-20} = 0b111100;
2561   let Inst{15-14} = 0b10;
2562   let Inst{12} = 0;
2563 }
2564
2565 // Change Processor State is a system instruction -- for disassembly only.
2566 // The singleton $opt operand contains the following information:
2567 // opt{4-0} = mode from Inst{4-0}
2568 // opt{5} = changemode from Inst{17}
2569 // opt{8-6} = AIF from Inst{8-6}
2570 // opt{10-9} = imod from Inst{19-18} with 0b10 as enable and 0b11 as disable
2571 def t2CPS : T2XI<(outs),(ins cps_opt:$opt), NoItinerary, "cps$opt",
2572                  [/* For disassembly only; pattern left blank */]> {
2573   let Inst{31-27} = 0b11110;
2574   let Inst{26} = 0;
2575   let Inst{25-20} = 0b111010;
2576   let Inst{15-14} = 0b10;
2577   let Inst{12} = 0;
2578 }
2579
2580 // A6.3.4 Branches and miscellaneous control
2581 // Table A6-14 Change Processor State, and hint instructions
2582 // Helper class for disassembly only.
2583 class T2I_hint<bits<8> op7_0, string opc, string asm>
2584   : T2I<(outs), (ins), NoItinerary, opc, asm,
2585         [/* For disassembly only; pattern left blank */]> {
2586   let Inst{31-20} = 0xf3a;
2587   let Inst{15-14} = 0b10;
2588   let Inst{12} = 0;
2589   let Inst{10-8} = 0b000;
2590   let Inst{7-0} = op7_0;
2591 }
2592
2593 def t2NOP   : T2I_hint<0b00000000, "nop",   ".w">;
2594 def t2YIELD : T2I_hint<0b00000001, "yield", ".w">;
2595 def t2WFE   : T2I_hint<0b00000010, "wfe",   ".w">;
2596 def t2WFI   : T2I_hint<0b00000011, "wfi",   ".w">;
2597 def t2SEV   : T2I_hint<0b00000100, "sev",   ".w">;
2598
2599 def t2DBG : T2I<(outs),(ins i32imm:$opt), NoItinerary, "dbg", "\t$opt",
2600                 [/* For disassembly only; pattern left blank */]> {
2601   let Inst{31-20} = 0xf3a;
2602   let Inst{15-14} = 0b10;
2603   let Inst{12} = 0;
2604   let Inst{10-8} = 0b000;
2605   let Inst{7-4} = 0b1111;
2606 }
2607
2608 // Secure Monitor Call is a system instruction -- for disassembly only
2609 // Option = Inst{19-16}
2610 def t2SMC : T2I<(outs), (ins i32imm:$opt), NoItinerary, "smc", "\t$opt",
2611                 [/* For disassembly only; pattern left blank */]> {
2612   let Inst{31-27} = 0b11110;
2613   let Inst{26-20} = 0b1111111;
2614   let Inst{15-12} = 0b1000;
2615 }
2616
2617 // Store Return State is a system instruction -- for disassembly only
2618 def t2SRSDBW : T2I<(outs),(ins i32imm:$mode),NoItinerary,"srsdb","\tsp!, $mode",
2619                    [/* For disassembly only; pattern left blank */]> {
2620   let Inst{31-27} = 0b11101;
2621   let Inst{26-20} = 0b0000010; // W = 1
2622 }
2623
2624 def t2SRSDB  : T2I<(outs),(ins i32imm:$mode),NoItinerary,"srsdb","\tsp, $mode",
2625                    [/* For disassembly only; pattern left blank */]> {
2626   let Inst{31-27} = 0b11101;
2627   let Inst{26-20} = 0b0000000; // W = 0
2628 }
2629
2630 def t2SRSIAW : T2I<(outs),(ins i32imm:$mode),NoItinerary,"srsia","\tsp!, $mode",
2631                    [/* For disassembly only; pattern left blank */]> {
2632   let Inst{31-27} = 0b11101;
2633   let Inst{26-20} = 0b0011010; // W = 1
2634 }
2635
2636 def t2SRSIA  : T2I<(outs), (ins i32imm:$mode),NoItinerary,"srsia","\tsp, $mode",
2637                    [/* For disassembly only; pattern left blank */]> {
2638   let Inst{31-27} = 0b11101;
2639   let Inst{26-20} = 0b0011000; // W = 0
2640 }
2641
2642 // Return From Exception is a system instruction -- for disassembly only
2643 def t2RFEDBW : T2I<(outs), (ins rGPR:$base), NoItinerary, "rfedb", "\t$base!",
2644                    [/* For disassembly only; pattern left blank */]> {
2645   let Inst{31-27} = 0b11101;
2646   let Inst{26-20} = 0b0000011; // W = 1
2647 }
2648
2649 def t2RFEDB  : T2I<(outs), (ins rGPR:$base), NoItinerary, "rfeab", "\t$base",
2650                    [/* For disassembly only; pattern left blank */]> {
2651   let Inst{31-27} = 0b11101;
2652   let Inst{26-20} = 0b0000001; // W = 0
2653 }
2654
2655 def t2RFEIAW : T2I<(outs), (ins rGPR:$base), NoItinerary, "rfeia", "\t$base!",
2656                    [/* For disassembly only; pattern left blank */]> {
2657   let Inst{31-27} = 0b11101;
2658   let Inst{26-20} = 0b0011011; // W = 1
2659 }
2660
2661 def t2RFEIA  : T2I<(outs), (ins rGPR:$base), NoItinerary, "rfeia", "\t$base",
2662                    [/* For disassembly only; pattern left blank */]> {
2663   let Inst{31-27} = 0b11101;
2664   let Inst{26-20} = 0b0011001; // W = 0
2665 }
2666
2667 //===----------------------------------------------------------------------===//
2668 // Non-Instruction Patterns
2669 //
2670
2671 // Two piece so_imms.
2672 def : T2Pat<(or rGPR:$LHS, t2_so_imm2part:$RHS),
2673              (t2ORRri (t2ORRri rGPR:$LHS, (t2_so_imm2part_1 imm:$RHS)),
2674                     (t2_so_imm2part_2 imm:$RHS))>;
2675 def : T2Pat<(xor rGPR:$LHS, t2_so_imm2part:$RHS),
2676              (t2EORri (t2EORri rGPR:$LHS, (t2_so_imm2part_1 imm:$RHS)),
2677                     (t2_so_imm2part_2 imm:$RHS))>;
2678 def : T2Pat<(add rGPR:$LHS, t2_so_imm2part:$RHS),
2679              (t2ADDri (t2ADDri rGPR:$LHS, (t2_so_imm2part_1 imm:$RHS)),
2680                     (t2_so_imm2part_2 imm:$RHS))>;
2681 def : T2Pat<(add rGPR:$LHS, t2_so_neg_imm2part:$RHS),
2682              (t2SUBri (t2SUBri rGPR:$LHS, (t2_so_neg_imm2part_1 imm:$RHS)),
2683                     (t2_so_neg_imm2part_2 imm:$RHS))>;
2684
2685 // 32-bit immediate using movw + movt.
2686 // This is a single pseudo instruction to make it re-materializable. Remove
2687 // when we can do generalized remat.
2688 let isReMaterializable = 1 in
2689 def t2MOVi32imm : T2Ix2<(outs rGPR:$dst), (ins i32imm:$src), IIC_iMOVi,
2690                    "movw", "\t$dst, ${src:lo16}\n\tmovt${p}\t$dst, ${src:hi16}",
2691                      [(set rGPR:$dst, (i32 imm:$src))]>;
2692
2693 // ConstantPool, GlobalAddress, and JumpTable
2694 def : T2Pat<(ARMWrapper  tglobaladdr :$dst), (t2LEApcrel tglobaladdr :$dst)>,
2695            Requires<[IsThumb2, DontUseMovt]>;
2696 def : T2Pat<(ARMWrapper  tconstpool  :$dst), (t2LEApcrel tconstpool  :$dst)>;
2697 def : T2Pat<(ARMWrapper  tglobaladdr :$dst), (t2MOVi32imm tglobaladdr :$dst)>,
2698            Requires<[IsThumb2, UseMovt]>;
2699
2700 def : T2Pat<(ARMWrapperJT tjumptable:$dst, imm:$id),
2701             (t2LEApcrelJT tjumptable:$dst, imm:$id)>;
2702
2703 // Pseudo instruction that combines ldr from constpool and add pc. This should
2704 // be expanded into two instructions late to allow if-conversion and
2705 // scheduling.
2706 let canFoldAsLoad = 1, isReMaterializable = 1 in
2707 def t2LDRpci_pic : PseudoInst<(outs GPR:$dst), (ins i32imm:$addr, pclabel:$cp),
2708                    NoItinerary,
2709                    "${:comment} ldr.w\t$dst, $addr\n$cp:\n\tadd\t$dst, pc",
2710                [(set GPR:$dst, (ARMpic_add (load (ARMWrapper tconstpool:$addr)),
2711                                            imm:$cp))]>,
2712                Requires<[IsThumb2]>;
2713
2714 //===----------------------------------------------------------------------===//
2715 // Move between special register and ARM core register -- for disassembly only
2716 //
2717
2718 // Rd = Instr{11-8}
2719 def t2MRS : T2I<(outs rGPR:$dst), (ins), NoItinerary, "mrs", "\t$dst, cpsr",
2720                 [/* For disassembly only; pattern left blank */]> {
2721   let Inst{31-27} = 0b11110;
2722   let Inst{26} = 0;
2723   let Inst{25-21} = 0b11111;
2724   let Inst{20} = 0; // The R bit.
2725   let Inst{15-14} = 0b10;
2726   let Inst{12} = 0;
2727 }
2728
2729 // Rd = Instr{11-8}
2730 def t2MRSsys : T2I<(outs rGPR:$dst), (ins), NoItinerary, "mrs", "\t$dst, spsr",
2731                    [/* For disassembly only; pattern left blank */]> {
2732   let Inst{31-27} = 0b11110;
2733   let Inst{26} = 0;
2734   let Inst{25-21} = 0b11111;
2735   let Inst{20} = 1; // The R bit.
2736   let Inst{15-14} = 0b10;
2737   let Inst{12} = 0;
2738 }
2739
2740 // Rn = Inst{19-16}
2741 def t2MSR : T2I<(outs), (ins rGPR:$src, msr_mask:$mask), NoItinerary, "msr",
2742                 "\tcpsr$mask, $src",
2743                 [/* For disassembly only; pattern left blank */]> {
2744   let Inst{31-27} = 0b11110;
2745   let Inst{26} = 0;
2746   let Inst{25-21} = 0b11100;
2747   let Inst{20} = 0; // The R bit.
2748   let Inst{15-14} = 0b10;
2749   let Inst{12} = 0;
2750 }
2751
2752 // Rn = Inst{19-16}
2753 def t2MSRsys : T2I<(outs), (ins rGPR:$src, msr_mask:$mask), NoItinerary, "msr",
2754                    "\tspsr$mask, $src",
2755                    [/* For disassembly only; pattern left blank */]> {
2756   let Inst{31-27} = 0b11110;
2757   let Inst{26} = 0;
2758   let Inst{25-21} = 0b11100;
2759   let Inst{20} = 1; // The R bit.
2760   let Inst{15-14} = 0b10;
2761   let Inst{12} = 0;
2762 }