d0fe432963433fd960a311ab85dfbd97c00496dc
[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 = "printPredicateOperand";
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 GPR, 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 bits
53 // [bits 0-7], the 4-bit shift/splat amount is the next 4 bits [bits 8-11].
54 def t2_so_imm : Operand<i32>,
55                 PatLeaf<(imm), [{
56   return ARM_AM::getT2SOImmVal((uint32_t)N->getZExtValue()) != -1; 
57 }]>;
58
59 // t2_so_imm_not - Match an immediate that is a complement 
60 // of a t2_so_imm.
61 def t2_so_imm_not : Operand<i32>,
62                     PatLeaf<(imm), [{
63   return ARM_AM::getT2SOImmVal(~((uint32_t)N->getZExtValue())) != -1;
64 }], t2_so_imm_not_XFORM>;
65
66 // t2_so_imm_neg - Match an immediate that is a negation of a t2_so_imm.
67 def t2_so_imm_neg : Operand<i32>,
68                     PatLeaf<(imm), [{
69   return ARM_AM::getT2SOImmVal(-((int)N->getZExtValue())) != -1;
70 }], t2_so_imm_neg_XFORM>;
71
72 /// imm1_31 predicate - True if the 32-bit immediate is in the range [1,31].
73 def imm1_31 : PatLeaf<(i32 imm), [{
74   return (int32_t)N->getZExtValue() >= 1 && (int32_t)N->getZExtValue() < 32;
75 }]>;
76
77 /// imm0_4095 predicate - True if the 32-bit immediate is in the range [0.4095].
78 def imm0_4095 : Operand<i32>,
79                 PatLeaf<(i32 imm), [{
80   return (uint32_t)N->getZExtValue() < 4096;
81 }]>;
82
83 def imm0_4095_neg : PatLeaf<(i32 imm), [{ 
84  return (uint32_t)(-N->getZExtValue()) < 4096; 
85 }], imm_neg_XFORM>; 
86
87 def imm0_255_neg : PatLeaf<(i32 imm), [{
88   return (uint32_t)(-N->getZExtValue()) < 255;
89 }], imm_neg_XFORM>; 
90
91 // Define Thumb2 specific addressing modes.
92
93 // t2addrmode_imm12  := reg + imm12
94 def t2addrmode_imm12 : Operand<i32>,
95                        ComplexPattern<i32, 2, "SelectT2AddrModeImm12", []> {
96   let PrintMethod = "printT2AddrModeImm12Operand";
97   let MIOperandInfo = (ops GPR:$base, i32imm:$offsimm);
98 }
99
100 // t2addrmode_imm8  := reg - imm8
101 def t2addrmode_imm8 : Operand<i32>,
102                       ComplexPattern<i32, 2, "SelectT2AddrModeImm8", []> {
103   let PrintMethod = "printT2AddrModeImm8Operand";
104   let MIOperandInfo = (ops GPR:$base, i32imm:$offsimm);
105 }
106
107 def t2am_imm8_offset : Operand<i32>,
108                        ComplexPattern<i32, 1, "SelectT2AddrModeImm8Offset", []>{
109   let PrintMethod = "printT2AddrModeImm8OffsetOperand";
110 }
111
112 // t2addrmode_imm8s4  := reg +/- (imm8 << 2)
113 def t2addrmode_imm8s4 : Operand<i32>,
114                         ComplexPattern<i32, 2, "SelectT2AddrModeImm8s4", []> {
115   let PrintMethod = "printT2AddrModeImm8s4Operand";
116   let MIOperandInfo = (ops GPR:$base, i32imm:$offsimm);
117 }
118
119 // t2addrmode_so_reg  := reg + (reg << imm2)
120 def t2addrmode_so_reg : Operand<i32>,
121                         ComplexPattern<i32, 3, "SelectT2AddrModeSoReg", []> {
122   let PrintMethod = "printT2AddrModeSoRegOperand";
123   let MIOperandInfo = (ops GPR:$base, GPR:$offsreg, i32imm:$offsimm);
124 }
125
126
127 //===----------------------------------------------------------------------===//
128 // Multiclass helpers...
129 //
130
131 /// T2I_un_irs - Defines a set of (op reg, {so_imm|r|so_reg}) patterns for a
132 /// unary operation that produces a value. These are predicable and can be
133 /// changed to modify CPSR.
134 multiclass T2I_un_irs<string opc, PatFrag opnode, bit Cheap = 0, bit ReMat = 0>{
135    // shifted imm
136    def i : T2sI<(outs GPR:$dst), (ins t2_so_imm:$src), IIC_iMOVi,
137                 opc, " $dst, $src",
138                 [(set GPR:$dst, (opnode t2_so_imm:$src))]> {
139      let isAsCheapAsAMove = Cheap;
140      let isReMaterializable = ReMat;
141    }
142    // register
143    def r : T2I<(outs GPR:$dst), (ins GPR:$src), IIC_iMOVr,
144                opc, ".w $dst, $src",
145                 [(set GPR:$dst, (opnode GPR:$src))]>;
146    // shifted register
147    def s : T2I<(outs GPR:$dst), (ins t2_so_reg:$src), IIC_iMOVsi,
148                opc, ".w $dst, $src",
149                [(set GPR:$dst, (opnode t2_so_reg:$src))]>;
150 }
151
152 /// T2I_bin_irs - Defines a set of (op reg, {so_imm|r|so_reg}) patterns for a
153 //  binary operation that produces a value. These are predicable and can be
154 /// changed to modify CPSR.
155 multiclass T2I_bin_irs<string opc, PatFrag opnode, 
156                        bit Commutable = 0, string wide =""> {
157    // shifted imm
158    def ri : T2sI<(outs GPR:$dst), (ins GPR:$lhs, t2_so_imm:$rhs), IIC_iALUi,
159                  opc, " $dst, $lhs, $rhs",
160                  [(set GPR:$dst, (opnode GPR:$lhs, t2_so_imm:$rhs))]>;
161    // register
162    def rr : T2sI<(outs GPR:$dst), (ins GPR:$lhs, GPR:$rhs), IIC_iALUr,
163                  opc, !strconcat(wide, " $dst, $lhs, $rhs"),
164                  [(set GPR:$dst, (opnode GPR:$lhs, GPR:$rhs))]> {
165      let isCommutable = Commutable;
166    }
167    // shifted register
168    def rs : T2sI<(outs GPR:$dst), (ins GPR:$lhs, t2_so_reg:$rhs), IIC_iALUsi,
169                  opc, !strconcat(wide, " $dst, $lhs, $rhs"),
170                  [(set GPR:$dst, (opnode GPR:$lhs, t2_so_reg:$rhs))]>;
171 }
172
173 /// T2I_bin_w_irs - Same as T2I_bin_irs except these operations need
174 //  the ".w" prefix to indicate that they are wide.
175 multiclass T2I_bin_w_irs<string opc, PatFrag opnode, bit Commutable = 0> :
176     T2I_bin_irs<opc, opnode, Commutable, ".w">;
177
178 /// T2I_rbin_is - Same as T2I_bin_irs except the order of operands are
179 /// reversed. It doesn't define the 'rr' form since it's handled by its
180 /// T2I_bin_irs counterpart.
181 multiclass T2I_rbin_is<string opc, PatFrag opnode> {
182    // shifted imm
183    def ri : T2I<(outs GPR:$dst), (ins GPR:$rhs, t2_so_imm:$lhs), IIC_iALUi,
184                 opc, ".w $dst, $rhs, $lhs",
185                 [(set GPR:$dst, (opnode t2_so_imm:$lhs, GPR:$rhs))]>;
186    // shifted register
187    def rs : T2I<(outs GPR:$dst), (ins GPR:$rhs, t2_so_reg:$lhs), IIC_iALUsi,
188                 opc, " $dst, $rhs, $lhs",
189                 [(set GPR:$dst, (opnode t2_so_reg:$lhs, GPR:$rhs))]>;
190 }
191
192 /// T2I_bin_s_irs - Similar to T2I_bin_irs except it sets the 's' bit so the
193 /// instruction modifies the CPSR register.
194 let Defs = [CPSR] in {
195 multiclass T2I_bin_s_irs<string opc, PatFrag opnode, bit Commutable = 0> {
196    // shifted imm
197    def ri : T2I<(outs GPR:$dst), (ins GPR:$lhs, t2_so_imm:$rhs), IIC_iALUi,
198                 !strconcat(opc, "s"), ".w $dst, $lhs, $rhs",
199                 [(set GPR:$dst, (opnode GPR:$lhs, t2_so_imm:$rhs))]>;
200    // register
201    def rr : T2I<(outs GPR:$dst), (ins GPR:$lhs, GPR:$rhs), IIC_iALUr,
202                 !strconcat(opc, "s"), ".w $dst, $lhs, $rhs",
203                 [(set GPR:$dst, (opnode GPR:$lhs, GPR:$rhs))]> {
204      let isCommutable = Commutable;
205    }
206    // shifted register
207    def rs : T2I<(outs GPR:$dst), (ins GPR:$lhs, t2_so_reg:$rhs), IIC_iALUsi,
208                 !strconcat(opc, "s"), ".w $dst, $lhs, $rhs",
209                 [(set GPR:$dst, (opnode GPR:$lhs, t2_so_reg:$rhs))]>;
210 }
211 }
212
213 /// T2I_bin_ii12rs - Defines a set of (op reg, {so_imm|imm0_4095|r|so_reg})
214 /// patterns for a binary operation that produces a value.
215 multiclass T2I_bin_ii12rs<string opc, PatFrag opnode, bit Commutable = 0> {
216    // shifted imm
217    def ri : T2sI<(outs GPR:$dst), (ins GPR:$lhs, t2_so_imm:$rhs), IIC_iALUi,
218                  opc, ".w $dst, $lhs, $rhs",
219                  [(set GPR:$dst, (opnode GPR:$lhs, t2_so_imm:$rhs))]>;
220    // 12-bit imm
221    def ri12 : T2sI<(outs GPR:$dst), (ins GPR:$lhs, imm0_4095:$rhs), IIC_iALUi,
222                    !strconcat(opc, "w"), " $dst, $lhs, $rhs",
223                    [(set GPR:$dst, (opnode GPR:$lhs, imm0_4095:$rhs))]>;
224    // register
225    def rr : T2sI<(outs GPR:$dst), (ins GPR:$lhs, GPR:$rhs), IIC_iALUr,
226                  opc, ".w $dst, $lhs, $rhs",
227                  [(set GPR:$dst, (opnode GPR:$lhs, GPR:$rhs))]> {
228      let isCommutable = Commutable;
229    }
230    // shifted register
231    def rs : T2sI<(outs GPR:$dst), (ins GPR:$lhs, t2_so_reg:$rhs), IIC_iALUsi,
232                  opc, ".w $dst, $lhs, $rhs",
233                  [(set GPR:$dst, (opnode GPR:$lhs, t2_so_reg:$rhs))]>;
234 }
235
236 /// T2I_adde_sube_irs - Defines a set of (op reg, {so_imm|r|so_reg}) patterns for a
237 /// binary operation that produces a value and use and define the carry bit.
238 /// It's not predicable.
239 let Uses = [CPSR] in {
240 multiclass T2I_adde_sube_irs<string opc, PatFrag opnode, bit Commutable = 0> {
241    // shifted imm
242    def ri : T2sI<(outs GPR:$dst), (ins GPR:$lhs, t2_so_imm:$rhs), IIC_iALUi,
243                  opc, " $dst, $lhs, $rhs",
244                  [(set GPR:$dst, (opnode GPR:$lhs, t2_so_imm:$rhs))]>,
245                  Requires<[IsThumb2, CarryDefIsUnused]>;
246    // register
247    def rr : T2sI<(outs GPR:$dst), (ins GPR:$lhs, GPR:$rhs), IIC_iALUr,
248                  opc, ".w $dst, $lhs, $rhs",
249                  [(set GPR:$dst, (opnode GPR:$lhs, GPR:$rhs))]>,
250                  Requires<[IsThumb2, CarryDefIsUnused]> {
251      let isCommutable = Commutable;
252    }
253    // shifted register
254    def rs : T2sI<(outs GPR:$dst), (ins GPR:$lhs, t2_so_reg:$rhs), IIC_iALUsi,
255                  opc, ".w $dst, $lhs, $rhs",
256                  [(set GPR:$dst, (opnode GPR:$lhs, t2_so_reg:$rhs))]>,
257                  Requires<[IsThumb2, CarryDefIsUnused]>;
258    // Carry setting variants
259    // shifted imm
260    def Sri : T2XI<(outs GPR:$dst), (ins GPR:$lhs, t2_so_imm:$rhs), IIC_iALUi,
261                   !strconcat(opc, "s $dst, $lhs, $rhs"),
262                   [(set GPR:$dst, (opnode GPR:$lhs, t2_so_imm:$rhs))]>,
263                   Requires<[IsThumb2, CarryDefIsUsed]> {
264                     let Defs = [CPSR];
265                   }
266    // register
267    def Srr : T2XI<(outs GPR:$dst), (ins GPR:$lhs, GPR:$rhs), IIC_iALUr,
268                   !strconcat(opc, "s.w $dst, $lhs, $rhs"),
269                   [(set GPR:$dst, (opnode GPR:$lhs, GPR:$rhs))]>,
270                   Requires<[IsThumb2, CarryDefIsUsed]> {
271                     let Defs = [CPSR];
272                     let isCommutable = Commutable;
273    }
274    // shifted register
275    def Srs : T2XI<(outs GPR:$dst), (ins GPR:$lhs, t2_so_reg:$rhs), IIC_iALUsi,
276                   !strconcat(opc, "s.w $dst, $lhs, $rhs"),
277                   [(set GPR:$dst, (opnode GPR:$lhs, t2_so_reg:$rhs))]>,
278                   Requires<[IsThumb2, CarryDefIsUsed]> {
279                     let Defs = [CPSR];
280    }
281 }
282 }
283
284 /// T2I_rbin_s_is - Same as T2I_rbin_is except sets 's' bit.
285 let Defs = [CPSR] in {
286 multiclass T2I_rbin_s_is<string opc, PatFrag opnode> {
287    // shifted imm
288    def ri : T2XI<(outs GPR:$dst), (ins GPR:$rhs, t2_so_imm:$lhs, cc_out:$s),
289                  IIC_iALUi,
290                  !strconcat(opc, "${s}.w $dst, $rhs, $lhs"),
291                  [(set GPR:$dst, (opnode t2_so_imm:$lhs, GPR:$rhs))]>;
292    // shifted register
293    def rs : T2XI<(outs GPR:$dst), (ins GPR:$rhs, t2_so_reg:$lhs, cc_out:$s),
294                  IIC_iALUsi,
295                  !strconcat(opc, "${s} $dst, $rhs, $lhs"),
296                  [(set GPR:$dst, (opnode t2_so_reg:$lhs, GPR:$rhs))]>;
297 }
298 }
299
300 /// T2I_sh_ir - Defines a set of (op reg, {so_imm|r}) patterns for a shift /
301 //  rotate operation that produces a value.
302 multiclass T2I_sh_ir<string opc, PatFrag opnode> {
303    // 5-bit imm
304    def ri : T2sI<(outs GPR:$dst), (ins GPR:$lhs, i32imm:$rhs), IIC_iMOVsi,
305                  opc, ".w $dst, $lhs, $rhs",
306                  [(set GPR:$dst, (opnode GPR:$lhs, imm1_31:$rhs))]>;
307    // register
308    def rr : T2sI<(outs GPR:$dst), (ins GPR:$lhs, GPR:$rhs), IIC_iMOVsr,
309                  opc, ".w $dst, $lhs, $rhs",
310                  [(set GPR:$dst, (opnode GPR:$lhs, GPR:$rhs))]>;
311 }
312
313 /// T2I_cmp_is - Defines a set of (op r, {so_imm|r|so_reg}) cmp / test
314 /// patterns. Similar to T2I_bin_irs except the instruction does not produce
315 /// a explicit result, only implicitly set CPSR.
316 let Defs = [CPSR] in {
317 multiclass T2I_cmp_is<string opc, PatFrag opnode> {
318    // shifted imm
319    def ri : T2I<(outs), (ins GPR:$lhs, t2_so_imm:$rhs), IIC_iCMPi,
320                 opc, ".w $lhs, $rhs",
321                 [(opnode GPR:$lhs, t2_so_imm:$rhs)]>;
322    // register
323    def rr : T2I<(outs), (ins GPR:$lhs, GPR:$rhs), IIC_iCMPr,
324                 opc, ".w $lhs, $rhs",
325                 [(opnode GPR:$lhs, GPR:$rhs)]>;
326    // shifted register
327    def rs : T2I<(outs), (ins GPR:$lhs, t2_so_reg:$rhs), IIC_iCMPsi,
328                 opc, ".w $lhs, $rhs",
329                 [(opnode GPR:$lhs, t2_so_reg:$rhs)]>;
330 }
331 }
332
333 /// T2I_ld - Defines a set of (op r, {imm12|imm8|so_reg}) load patterns.
334 multiclass T2I_ld<string opc, PatFrag opnode> {
335   def i12 : T2Ii12<(outs GPR:$dst), (ins t2addrmode_imm12:$addr), IIC_iLoadi,
336                    opc, ".w $dst, $addr",
337                    [(set GPR:$dst, (opnode t2addrmode_imm12:$addr))]>;
338   def i8  : T2Ii8 <(outs GPR:$dst), (ins t2addrmode_imm8:$addr), IIC_iLoadi,
339                    opc, " $dst, $addr",
340                    [(set GPR:$dst, (opnode t2addrmode_imm8:$addr))]>;
341   def s   : T2Iso <(outs GPR:$dst), (ins t2addrmode_so_reg:$addr), IIC_iLoadr,
342                    opc, ".w $dst, $addr",
343                    [(set GPR:$dst, (opnode t2addrmode_so_reg:$addr))]>;
344   def pci : T2Ipc <(outs GPR:$dst), (ins i32imm:$addr), IIC_iLoadi,
345                    opc, ".w $dst, $addr",
346                    [(set GPR:$dst, (opnode (ARMWrapper tconstpool:$addr)))]>;
347 }
348
349 /// T2I_st - Defines a set of (op r, {imm12|imm8|so_reg}) store patterns.
350 multiclass T2I_st<string opc, PatFrag opnode> {
351   def i12 : T2Ii12<(outs), (ins GPR:$src, t2addrmode_imm12:$addr), IIC_iStorei,
352                    opc, ".w $src, $addr",
353                    [(opnode GPR:$src, t2addrmode_imm12:$addr)]>;
354   def i8  : T2Ii8 <(outs), (ins GPR:$src, t2addrmode_imm8:$addr), IIC_iStorei,
355                    opc, " $src, $addr",
356                    [(opnode GPR:$src, t2addrmode_imm8:$addr)]>;
357   def s   : T2Iso <(outs), (ins GPR:$src, t2addrmode_so_reg:$addr), IIC_iStorer,
358                    opc, ".w $src, $addr",
359                    [(opnode GPR:$src, t2addrmode_so_reg:$addr)]>;
360 }
361
362 /// T2I_picld - Defines the PIC load pattern.
363 class T2I_picld<string opc, PatFrag opnode> :
364       T2I<(outs GPR:$dst), (ins addrmodepc:$addr), IIC_iLoadi,
365           !strconcat("\n${addr:label}:\n\t", opc), " $dst, $addr",
366           [(set GPR:$dst, (opnode addrmodepc:$addr))]>;
367
368 /// T2I_picst - Defines the PIC store pattern.
369 class T2I_picst<string opc, PatFrag opnode> :
370       T2I<(outs), (ins GPR:$src, addrmodepc:$addr), IIC_iStorer,
371           !strconcat("\n${addr:label}:\n\t", opc), " $src, $addr",
372           [(opnode GPR:$src, addrmodepc:$addr)]>;
373
374
375 /// T2I_unary_rrot - A unary operation with two forms: one whose operand is a
376 /// register and one whose operand is a register rotated by 8/16/24.
377 multiclass T2I_unary_rrot<string opc, PatFrag opnode> {
378   def r     : T2I<(outs GPR:$dst), (ins GPR:$src), IIC_iUNAr,
379                   opc, ".w $dst, $src",
380                  [(set GPR:$dst, (opnode GPR:$src))]>;
381   def r_rot : T2I<(outs GPR:$dst), (ins GPR:$src, i32imm:$rot), IIC_iUNAsi,
382                   opc, ".w $dst, $src, ror $rot",
383                  [(set GPR:$dst, (opnode (rotr GPR:$src, rot_imm:$rot)))]>;
384 }
385
386 /// T2I_bin_rrot - A binary operation with two forms: one whose operand is a
387 /// register and one whose operand is a register rotated by 8/16/24.
388 multiclass T2I_bin_rrot<string opc, PatFrag opnode> {
389   def rr     : T2I<(outs GPR:$dst), (ins GPR:$LHS, GPR:$RHS), IIC_iALUr,
390                   opc, " $dst, $LHS, $RHS",
391                   [(set GPR:$dst, (opnode GPR:$LHS, GPR:$RHS))]>;
392   def rr_rot : T2I<(outs GPR:$dst), (ins GPR:$LHS, GPR:$RHS, i32imm:$rot),
393                   IIC_iALUsr, opc, " $dst, $LHS, $RHS, ror $rot",
394                   [(set GPR:$dst, (opnode GPR:$LHS,
395                                           (rotr GPR:$RHS, rot_imm:$rot)))]>;
396 }
397
398 //===----------------------------------------------------------------------===//
399 // Instructions
400 //===----------------------------------------------------------------------===//
401
402 //===----------------------------------------------------------------------===//
403 //  Miscellaneous Instructions.
404 //
405
406 // LEApcrel - Load a pc-relative address into a register without offending the
407 // assembler.
408 def t2LEApcrel : T2XI<(outs GPR:$dst), (ins i32imm:$label, pred:$p), IIC_iALUi,
409                       "adr$p.w $dst, #$label", []>;
410
411 def t2LEApcrelJT : T2XI<(outs GPR:$dst),
412                         (ins i32imm:$label, nohash_imm:$id, pred:$p), IIC_iALUi,
413                         "adr$p.w $dst, #${label}_${id}", []>;
414
415 // ADD r, sp, {so_imm|i12}
416 def t2ADDrSPi   : T2sI<(outs GPR:$dst), (ins GPR:$sp, t2_so_imm:$imm),
417                         IIC_iALUi, "add", ".w $dst, $sp, $imm", []>;
418 def t2ADDrSPi12 : T2I<(outs GPR:$dst), (ins GPR:$sp, imm0_4095:$imm), 
419                        IIC_iALUi, "addw", " $dst, $sp, $imm", []>;
420
421 // ADD r, sp, so_reg
422 def t2ADDrSPs   : T2sI<(outs GPR:$dst), (ins GPR:$sp, t2_so_reg:$rhs),
423                         IIC_iALUsi, "add", ".w $dst, $sp, $rhs", []>;
424
425 // SUB r, sp, {so_imm|i12}
426 def t2SUBrSPi   : T2sI<(outs GPR:$dst), (ins GPR:$sp, t2_so_imm:$imm),
427                         IIC_iALUi, "sub", ".w $dst, $sp, $imm", []>;
428 def t2SUBrSPi12 : T2I<(outs GPR:$dst), (ins GPR:$sp, imm0_4095:$imm),
429                        IIC_iALUi, "subw", " $dst, $sp, $imm", []>;
430
431 // SUB r, sp, so_reg
432 def t2SUBrSPs   : T2sI<(outs GPR:$dst), (ins GPR:$sp, t2_so_reg:$rhs),
433                        IIC_iALUsi,
434                        "sub", " $dst, $sp, $rhs", []>;
435
436
437 // Pseudo instruction that will expand into a t2SUBrSPi + a copy.
438 let usesCustomDAGSchedInserter = 1 in { // Expanded by the scheduler.
439 def t2SUBrSPi_   : PseudoInst<(outs GPR:$dst), (ins GPR:$sp, t2_so_imm:$imm),
440                    NoItinerary, "@ sub.w $dst, $sp, $imm", []>;
441 def t2SUBrSPi12_ : PseudoInst<(outs GPR:$dst), (ins GPR:$sp, imm0_4095:$imm),
442                    NoItinerary, "@ subw $dst, $sp, $imm", []>;
443 def t2SUBrSPs_   : PseudoInst<(outs GPR:$dst), (ins GPR:$sp, t2_so_reg:$rhs),
444                    NoItinerary, "@ sub $dst, $sp, $rhs", []>;
445 } // usesCustomDAGSchedInserter
446
447
448 //===----------------------------------------------------------------------===//
449 //  Load / store Instructions.
450 //
451
452 // Load
453 let canFoldAsLoad = 1 in
454 defm t2LDR   : T2I_ld<"ldr",  UnOpFrag<(load node:$Src)>>;
455
456 // Loads with zero extension
457 defm t2LDRH  : T2I_ld<"ldrh", UnOpFrag<(zextloadi16 node:$Src)>>;
458 defm t2LDRB  : T2I_ld<"ldrb", UnOpFrag<(zextloadi8  node:$Src)>>;
459
460 // Loads with sign extension
461 defm t2LDRSH : T2I_ld<"ldrsh", UnOpFrag<(sextloadi16 node:$Src)>>;
462 defm t2LDRSB : T2I_ld<"ldrsb", UnOpFrag<(sextloadi8  node:$Src)>>;
463
464 let mayLoad = 1 in {
465 // Load doubleword
466 def t2LDRDi8  : T2Ii8s4<(outs GPR:$dst1, GPR:$dst2),
467                         (ins t2addrmode_imm8s4:$addr),
468                         IIC_iLoadi, "ldrd", " $dst1, $addr", []>;
469 def t2LDRDpci : T2Ii8s4<(outs GPR:$dst1, GPR:$dst2),
470                         (ins i32imm:$addr), IIC_iLoadi,
471                        "ldrd", " $dst1, $addr", []>;
472 }
473
474 // zextload i1 -> zextload i8
475 def : T2Pat<(zextloadi1 t2addrmode_imm12:$addr),
476             (t2LDRBi12  t2addrmode_imm12:$addr)>;
477 def : T2Pat<(zextloadi1 t2addrmode_imm8:$addr),
478             (t2LDRBi8   t2addrmode_imm8:$addr)>;
479 def : T2Pat<(zextloadi1 t2addrmode_so_reg:$addr),
480             (t2LDRBs    t2addrmode_so_reg:$addr)>;
481 def : T2Pat<(zextloadi1 (ARMWrapper tconstpool:$addr)),
482             (t2LDRBpci  tconstpool:$addr)>;
483
484 // extload -> zextload
485 // FIXME: Reduce the number of patterns by legalizing extload to zextload
486 // earlier?
487 def : T2Pat<(extloadi1  t2addrmode_imm12:$addr),
488             (t2LDRBi12  t2addrmode_imm12:$addr)>;
489 def : T2Pat<(extloadi1  t2addrmode_imm8:$addr),
490             (t2LDRBi8   t2addrmode_imm8:$addr)>;
491 def : T2Pat<(extloadi1  t2addrmode_so_reg:$addr),
492             (t2LDRBs    t2addrmode_so_reg:$addr)>;
493 def : T2Pat<(extloadi1  (ARMWrapper tconstpool:$addr)),
494             (t2LDRBpci  tconstpool:$addr)>;
495
496 def : T2Pat<(extloadi8  t2addrmode_imm12:$addr),
497             (t2LDRBi12  t2addrmode_imm12:$addr)>;
498 def : T2Pat<(extloadi8  t2addrmode_imm8:$addr),
499             (t2LDRBi8   t2addrmode_imm8:$addr)>;
500 def : T2Pat<(extloadi8  t2addrmode_so_reg:$addr),
501             (t2LDRBs    t2addrmode_so_reg:$addr)>;
502 def : T2Pat<(extloadi8  (ARMWrapper tconstpool:$addr)),
503             (t2LDRBpci  tconstpool:$addr)>;
504
505 def : T2Pat<(extloadi16 t2addrmode_imm12:$addr),
506             (t2LDRHi12  t2addrmode_imm12:$addr)>;
507 def : T2Pat<(extloadi16 t2addrmode_imm8:$addr),
508             (t2LDRHi8   t2addrmode_imm8:$addr)>;
509 def : T2Pat<(extloadi16 t2addrmode_so_reg:$addr),
510             (t2LDRHs    t2addrmode_so_reg:$addr)>;
511 def : T2Pat<(extloadi16 (ARMWrapper tconstpool:$addr)),
512             (t2LDRHpci  tconstpool:$addr)>;
513
514 // Indexed loads
515 let mayLoad = 1 in {
516 def t2LDR_PRE  : T2Iidxldst<(outs GPR:$dst, GPR:$base_wb),
517                             (ins t2addrmode_imm8:$addr),
518                             AddrModeT2_i8, IndexModePre, IIC_iLoadiu,
519                             "ldr", " $dst, $addr!", "$addr.base = $base_wb",
520                             []>;
521
522 def t2LDR_POST : T2Iidxldst<(outs GPR:$dst, GPR:$base_wb),
523                             (ins GPR:$base, t2am_imm8_offset:$offset),
524                             AddrModeT2_i8, IndexModePost, IIC_iLoadiu,
525                            "ldr", " $dst, [$base], $offset", "$base = $base_wb",
526                             []>;
527
528 def t2LDRB_PRE : T2Iidxldst<(outs GPR:$dst, GPR:$base_wb),
529                             (ins t2addrmode_imm8:$addr),
530                             AddrModeT2_i8, IndexModePre, IIC_iLoadiu,
531                             "ldrb", " $dst, $addr!", "$addr.base = $base_wb",
532                             []>;
533 def t2LDRB_POST : T2Iidxldst<(outs GPR:$dst, GPR:$base_wb),
534                             (ins GPR:$base, t2am_imm8_offset:$offset),
535                             AddrModeT2_i8, IndexModePost, IIC_iLoadiu,
536                           "ldrb", " $dst, [$base], $offset", "$base = $base_wb",
537                             []>;
538
539 def t2LDRH_PRE : T2Iidxldst<(outs GPR:$dst, GPR:$base_wb),
540                             (ins t2addrmode_imm8:$addr),
541                             AddrModeT2_i8, IndexModePre, IIC_iLoadiu,
542                             "ldrh", " $dst, $addr!", "$addr.base = $base_wb",
543                             []>;
544 def t2LDRH_POST : T2Iidxldst<(outs GPR:$dst, GPR:$base_wb),
545                             (ins GPR:$base, t2am_imm8_offset:$offset),
546                             AddrModeT2_i8, IndexModePost, IIC_iLoadiu,
547                           "ldrh", " $dst, [$base], $offset", "$base = $base_wb",
548                             []>;
549
550 def t2LDRSB_PRE : T2Iidxldst<(outs GPR:$dst, GPR:$base_wb),
551                             (ins t2addrmode_imm8:$addr),
552                             AddrModeT2_i8, IndexModePre, IIC_iLoadiu,
553                             "ldrsb", " $dst, $addr!", "$addr.base = $base_wb",
554                             []>;
555 def t2LDRSB_POST : T2Iidxldst<(outs GPR:$dst, GPR:$base_wb),
556                             (ins GPR:$base, t2am_imm8_offset:$offset),
557                             AddrModeT2_i8, IndexModePost, IIC_iLoadiu,
558                          "ldrsb", " $dst, [$base], $offset", "$base = $base_wb",
559                             []>;
560
561 def t2LDRSH_PRE : T2Iidxldst<(outs GPR:$dst, GPR:$base_wb),
562                             (ins t2addrmode_imm8:$addr),
563                             AddrModeT2_i8, IndexModePre, IIC_iLoadiu,
564                             "ldrsh", " $dst, $addr!", "$addr.base = $base_wb",
565                             []>;
566 def t2LDRSH_POST : T2Iidxldst<(outs GPR:$dst, GPR:$base_wb),
567                             (ins GPR:$base, t2am_imm8_offset:$offset),
568                             AddrModeT2_i8, IndexModePost, IIC_iLoadiu,
569                          "ldrsh", " $dst, [$base], $offset", "$base = $base_wb",
570                             []>;
571 }
572
573 // Store
574 defm t2STR   : T2I_st<"str",  BinOpFrag<(store node:$LHS, node:$RHS)>>;
575 defm t2STRB  : T2I_st<"strb", BinOpFrag<(truncstorei8 node:$LHS, node:$RHS)>>;
576 defm t2STRH  : T2I_st<"strh", BinOpFrag<(truncstorei16 node:$LHS, node:$RHS)>>;
577
578 // Store doubleword
579 let mayLoad = 1 in
580 def t2STRDi8 : T2Ii8s4<(outs),
581                        (ins GPR:$src1, GPR:$src2, t2addrmode_imm8s4:$addr),
582                IIC_iStorer, "strd", " $src1, $addr", []>;
583
584 // Indexed stores
585 def t2STR_PRE  : T2Iidxldst<(outs GPR:$base_wb),
586                             (ins GPR:$src, GPR:$base, t2am_imm8_offset:$offset),
587                             AddrModeT2_i8, IndexModePre, IIC_iStoreiu,
588                           "str", " $src, [$base, $offset]!", "$base = $base_wb",
589              [(set GPR:$base_wb,
590                    (pre_store GPR:$src, GPR:$base, t2am_imm8_offset:$offset))]>;
591
592 def t2STR_POST : T2Iidxldst<(outs GPR:$base_wb),
593                             (ins GPR:$src, GPR:$base, t2am_imm8_offset:$offset),
594                             AddrModeT2_i8, IndexModePost, IIC_iStoreiu,
595                            "str", " $src, [$base], $offset", "$base = $base_wb",
596              [(set GPR:$base_wb,
597                    (post_store GPR:$src, GPR:$base, t2am_imm8_offset:$offset))]>;
598
599 def t2STRH_PRE  : T2Iidxldst<(outs GPR:$base_wb),
600                             (ins GPR:$src, GPR:$base, t2am_imm8_offset:$offset),
601                             AddrModeT2_i8, IndexModePre, IIC_iStoreiu,
602                          "strh", " $src, [$base, $offset]!", "$base = $base_wb",
603         [(set GPR:$base_wb,
604               (pre_truncsti16 GPR:$src, GPR:$base, t2am_imm8_offset:$offset))]>;
605
606 def t2STRH_POST : T2Iidxldst<(outs GPR:$base_wb),
607                             (ins GPR:$src, GPR:$base, t2am_imm8_offset:$offset),
608                             AddrModeT2_i8, IndexModePost, IIC_iStoreiu,
609                           "strh", " $src, [$base], $offset", "$base = $base_wb",
610        [(set GPR:$base_wb,
611              (post_truncsti16 GPR:$src, GPR:$base, t2am_imm8_offset:$offset))]>;
612
613 def t2STRB_PRE  : T2Iidxldst<(outs GPR:$base_wb),
614                             (ins GPR:$src, GPR:$base, t2am_imm8_offset:$offset),
615                             AddrModeT2_i8, IndexModePre, IIC_iStoreiu,
616                          "strb", " $src, [$base, $offset]!", "$base = $base_wb",
617          [(set GPR:$base_wb,
618                (pre_truncsti8 GPR:$src, GPR:$base, t2am_imm8_offset:$offset))]>;
619
620 def t2STRB_POST : T2Iidxldst<(outs GPR:$base_wb),
621                             (ins GPR:$src, GPR:$base, t2am_imm8_offset:$offset),
622                             AddrModeT2_i8, IndexModePost, IIC_iStoreiu,
623                           "strb", " $src, [$base], $offset", "$base = $base_wb",
624         [(set GPR:$base_wb,
625               (post_truncsti8 GPR:$src, GPR:$base, t2am_imm8_offset:$offset))]>;
626
627
628 // FIXME: ldrd / strd pre / post variants
629
630 //===----------------------------------------------------------------------===//
631 //  Load / store multiple Instructions.
632 //
633
634 let mayLoad = 1 in
635 def t2LDM : T2XI<(outs),
636                  (ins addrmode4:$addr, pred:$p, reglist:$dst1, variable_ops),
637               IIC_iLoadm, "ldm${addr:submode}${p}${addr:wide} $addr, $dst1", []>;
638
639 let mayStore = 1 in
640 def t2STM : T2XI<(outs),
641                  (ins addrmode4:$addr, pred:$p, reglist:$src1, variable_ops),
642               IIC_iStorem, "stm${addr:submode}${p}${addr:wide} $addr, $src1", []>;
643
644 //===----------------------------------------------------------------------===//
645 //  Move Instructions.
646 //
647
648 let neverHasSideEffects = 1 in
649 def t2MOVr : T2sI<(outs GPR:$dst), (ins GPR:$src), IIC_iMOVr,
650                    "mov", ".w $dst, $src", []>;
651
652 let isReMaterializable = 1, isAsCheapAsAMove = 1 in
653 def t2MOVi : T2sI<(outs GPR:$dst), (ins t2_so_imm:$src), IIC_iMOVi,
654                    "mov", ".w $dst, $src",
655                    [(set GPR:$dst, t2_so_imm:$src)]>;
656
657 let isReMaterializable = 1, isAsCheapAsAMove = 1 in
658 def t2MOVi16 : T2I<(outs GPR:$dst), (ins i32imm:$src), IIC_iMOVi,
659                    "movw", " $dst, $src",
660                    [(set GPR:$dst, imm0_65535:$src)]>;
661
662 let Constraints = "$src = $dst" in
663 def t2MOVTi16 : T2sI<(outs GPR:$dst), (ins GPR:$src, i32imm:$imm), IIC_iMOVi,
664                      "movt", " $dst, $imm",
665                      [(set GPR:$dst,
666                            (or (and GPR:$src, 0xffff), lo16AllZero:$imm))]>;
667
668 //===----------------------------------------------------------------------===//
669 //  Extend Instructions.
670 //
671
672 // Sign extenders
673
674 defm t2SXTB  : T2I_unary_rrot<"sxtb", UnOpFrag<(sext_inreg node:$Src, i8)>>;
675 defm t2SXTH  : T2I_unary_rrot<"sxth", UnOpFrag<(sext_inreg node:$Src, i16)>>;
676
677 defm t2SXTAB : T2I_bin_rrot<"sxtab",
678                         BinOpFrag<(add node:$LHS, (sext_inreg node:$RHS, i8))>>;
679 defm t2SXTAH : T2I_bin_rrot<"sxtah",
680                         BinOpFrag<(add node:$LHS, (sext_inreg node:$RHS,i16))>>;
681
682 // TODO: SXT(A){B|H}16
683
684 // Zero extenders
685
686 let AddedComplexity = 16 in {
687 defm t2UXTB   : T2I_unary_rrot<"uxtb"  , UnOpFrag<(and node:$Src, 0x000000FF)>>;
688 defm t2UXTH   : T2I_unary_rrot<"uxth"  , UnOpFrag<(and node:$Src, 0x0000FFFF)>>;
689 defm t2UXTB16 : T2I_unary_rrot<"uxtb16", UnOpFrag<(and node:$Src, 0x00FF00FF)>>;
690
691 def : T2Pat<(and (shl GPR:$Src, (i32 8)), 0xFF00FF),
692             (t2UXTB16r_rot GPR:$Src, 24)>;
693 def : T2Pat<(and (srl GPR:$Src, (i32 8)), 0xFF00FF),
694             (t2UXTB16r_rot GPR:$Src, 8)>;
695
696 defm t2UXTAB : T2I_bin_rrot<"uxtab",
697                             BinOpFrag<(add node:$LHS, (and node:$RHS, 0x00FF))>>;
698 defm t2UXTAH : T2I_bin_rrot<"uxtah",
699                             BinOpFrag<(add node:$LHS, (and node:$RHS, 0xFFFF))>>;
700 }
701
702 //===----------------------------------------------------------------------===//
703 //  Arithmetic Instructions.
704 //
705
706 defm t2ADD  : T2I_bin_ii12rs<"add", BinOpFrag<(add  node:$LHS, node:$RHS)>, 1>;
707 defm t2SUB  : T2I_bin_ii12rs<"sub", BinOpFrag<(sub  node:$LHS, node:$RHS)>>;
708
709 // ADD and SUB with 's' bit set. No 12-bit immediate (T4) variants.
710 defm t2ADDS : T2I_bin_s_irs <"add",  BinOpFrag<(addc node:$LHS, node:$RHS)>, 1>;
711 defm t2SUBS : T2I_bin_s_irs <"sub",  BinOpFrag<(subc node:$LHS, node:$RHS)>>;
712
713 defm t2ADC  : T2I_adde_sube_irs<"adc",BinOpFrag<(adde node:$LHS, node:$RHS)>,1>;
714 defm t2SBC  : T2I_adde_sube_irs<"sbc",BinOpFrag<(sube node:$LHS, node:$RHS)>>;
715
716 // RSB
717 defm t2RSB  : T2I_rbin_is   <"rsb", BinOpFrag<(sub  node:$LHS, node:$RHS)>>;
718 defm t2RSBS : T2I_rbin_s_is <"rsb", BinOpFrag<(subc node:$LHS, node:$RHS)>>;
719
720 // (sub X, imm) gets canonicalized to (add X, -imm).  Match this form.
721 let AddedComplexity = 1 in
722 def : T2Pat<(add       GPR:$src, imm0_255_neg:$imm),
723             (t2SUBri   GPR:$src, imm0_255_neg:$imm)>;
724 def : T2Pat<(add       GPR:$src, t2_so_imm_neg:$imm),
725             (t2SUBri   GPR:$src, t2_so_imm_neg:$imm)>;
726 def : T2Pat<(add       GPR:$src, imm0_4095_neg:$imm),
727             (t2SUBri12 GPR:$src, imm0_4095_neg:$imm)>;
728
729
730 //===----------------------------------------------------------------------===//
731 //  Shift and rotate Instructions.
732 //
733
734 defm t2LSL  : T2I_sh_ir<"lsl", BinOpFrag<(shl  node:$LHS, node:$RHS)>>;
735 defm t2LSR  : T2I_sh_ir<"lsr", BinOpFrag<(srl  node:$LHS, node:$RHS)>>;
736 defm t2ASR  : T2I_sh_ir<"asr", BinOpFrag<(sra  node:$LHS, node:$RHS)>>;
737 defm t2ROR  : T2I_sh_ir<"ror", BinOpFrag<(rotr node:$LHS, node:$RHS)>>;
738
739 let Uses = [CPSR] in {
740 def t2MOVrx : T2sI<(outs GPR:$dst), (ins GPR:$src), IIC_iMOVsi,
741                    "rrx", " $dst, $src",
742                    [(set GPR:$dst, (ARMrrx GPR:$src))]>;
743 }
744
745 let Defs = [CPSR] in {
746 def t2MOVsrl_flag : T2XI<(outs GPR:$dst), (ins GPR:$src), IIC_iMOVsi,
747                          "lsrs.w $dst, $src, #1",
748                          [(set GPR:$dst, (ARMsrl_flag GPR:$src))]>;
749 def t2MOVsra_flag : T2XI<(outs GPR:$dst), (ins GPR:$src), IIC_iMOVsi,
750                          "asrs.w $dst, $src, #1",
751                          [(set GPR:$dst, (ARMsra_flag GPR:$src))]>;
752 }
753
754 //===----------------------------------------------------------------------===//
755 //  Bitwise Instructions.
756 //
757
758 defm t2AND  : T2I_bin_w_irs<"and", BinOpFrag<(and node:$LHS, node:$RHS)>, 1>;
759 defm t2ORR  : T2I_bin_w_irs<"orr", BinOpFrag<(or  node:$LHS, node:$RHS)>, 1>;
760 defm t2EOR  : T2I_bin_w_irs<"eor", BinOpFrag<(xor node:$LHS, node:$RHS)>, 1>;
761
762 defm t2BIC  : T2I_bin_w_irs<"bic", BinOpFrag<(and node:$LHS, (not node:$RHS))>>;
763
764 let Constraints = "$src = $dst" in
765 def t2BFC : T2I<(outs GPR:$dst), (ins GPR:$src, bf_inv_mask_imm:$imm),
766                 IIC_iALUi, "bfc", " $dst, $imm",
767                 [(set GPR:$dst, (and GPR:$src, bf_inv_mask_imm:$imm))]>;
768
769 // FIXME: A8.6.18  BFI - Bitfield insert (Encoding T1)
770
771 defm t2ORN  : T2I_bin_irs<"orn", BinOpFrag<(or  node:$LHS, (not node:$RHS))>>;
772
773 // Prefer over of t2EORri ra, rb, -1 because mvn has 16-bit version
774 let AddedComplexity = 1 in
775 defm t2MVN  : T2I_un_irs  <"mvn", UnOpFrag<(not node:$Src)>, 1, 1>;
776
777
778 def : T2Pat<(and     GPR:$src, t2_so_imm_not:$imm),
779             (t2BICri GPR:$src, t2_so_imm_not:$imm)>;
780
781 // FIXME: Disable this pattern on Darwin to workaround an assembler bug.
782 def : T2Pat<(or      GPR:$src, t2_so_imm_not:$imm),
783             (t2ORNri GPR:$src, t2_so_imm_not:$imm)>,
784             Requires<[IsThumb2]>;
785
786 def : T2Pat<(t2_so_imm_not:$src),
787             (t2MVNi t2_so_imm_not:$src)>;
788
789 //===----------------------------------------------------------------------===//
790 //  Multiply Instructions.
791 //
792 let isCommutable = 1 in
793 def t2MUL: T2I<(outs GPR:$dst), (ins GPR:$a, GPR:$b), IIC_iMUL32,
794                 "mul", " $dst, $a, $b",
795                 [(set GPR:$dst, (mul GPR:$a, GPR:$b))]>;
796
797 def t2MLA: T2I<(outs GPR:$dst), (ins GPR:$a, GPR:$b, GPR:$c), IIC_iMAC32,
798                 "mla", " $dst, $a, $b, $c",
799                 [(set GPR:$dst, (add (mul GPR:$a, GPR:$b), GPR:$c))]>;
800
801 def t2MLS: T2I<(outs GPR:$dst), (ins GPR:$a, GPR:$b, GPR:$c), IIC_iMAC32,
802                 "mls", " $dst, $a, $b, $c",
803                 [(set GPR:$dst, (sub GPR:$c, (mul GPR:$a, GPR:$b)))]>;
804
805 // Extra precision multiplies with low / high results
806 let neverHasSideEffects = 1 in {
807 let isCommutable = 1 in {
808 def t2SMULL : T2I<(outs GPR:$ldst, GPR:$hdst), (ins GPR:$a, GPR:$b), IIC_iMUL64,
809                    "smull", " $ldst, $hdst, $a, $b", []>;
810
811 def t2UMULL : T2I<(outs GPR:$ldst, GPR:$hdst), (ins GPR:$a, GPR:$b), IIC_iMUL64,
812                    "umull", " $ldst, $hdst, $a, $b", []>;
813 }
814
815 // Multiply + accumulate
816 def t2SMLAL : T2I<(outs GPR:$ldst, GPR:$hdst), (ins GPR:$a, GPR:$b), IIC_iMAC64,
817                   "smlal", " $ldst, $hdst, $a, $b", []>;
818
819 def t2UMLAL : T2I<(outs GPR:$ldst, GPR:$hdst), (ins GPR:$a, GPR:$b), IIC_iMAC64,
820                   "umlal", " $ldst, $hdst, $a, $b", []>;
821
822 def t2UMAAL : T2I<(outs GPR:$ldst, GPR:$hdst), (ins GPR:$a, GPR:$b), IIC_iMAC64,
823                   "umaal", " $ldst, $hdst, $a, $b", []>;
824 } // neverHasSideEffects
825
826 // Most significant word multiply
827 def t2SMMUL : T2I<(outs GPR:$dst), (ins GPR:$a, GPR:$b), IIC_iMUL32,
828                   "smmul", " $dst, $a, $b",
829                   [(set GPR:$dst, (mulhs GPR:$a, GPR:$b))]>;
830
831 def t2SMMLA : T2I<(outs GPR:$dst), (ins GPR:$a, GPR:$b, GPR:$c), IIC_iMAC32,
832                   "smmla", " $dst, $a, $b, $c",
833                   [(set GPR:$dst, (add (mulhs GPR:$a, GPR:$b), GPR:$c))]>;
834
835
836 def t2SMMLS : T2I <(outs GPR:$dst), (ins GPR:$a, GPR:$b, GPR:$c), IIC_iMAC32,
837                    "smmls", " $dst, $a, $b, $c",
838                    [(set GPR:$dst, (sub GPR:$c, (mulhs GPR:$a, GPR:$b)))]>;
839
840 multiclass T2I_smul<string opc, PatFrag opnode> {
841   def BB : T2I<(outs GPR:$dst), (ins GPR:$a, GPR:$b), IIC_iMUL32,
842               !strconcat(opc, "bb"), " $dst, $a, $b",
843               [(set GPR:$dst, (opnode (sext_inreg GPR:$a, i16),
844                                       (sext_inreg GPR:$b, i16)))]>;
845
846   def BT : T2I<(outs GPR:$dst), (ins GPR:$a, GPR:$b), IIC_iMUL32,
847               !strconcat(opc, "bt"), " $dst, $a, $b",
848               [(set GPR:$dst, (opnode (sext_inreg GPR:$a, i16),
849                                       (sra GPR:$b, (i32 16))))]>;
850
851   def TB : T2I<(outs GPR:$dst), (ins GPR:$a, GPR:$b), IIC_iMUL32,
852               !strconcat(opc, "tb"), " $dst, $a, $b",
853               [(set GPR:$dst, (opnode (sra GPR:$a, (i32 16)),
854                                       (sext_inreg GPR:$b, i16)))]>;
855
856   def TT : T2I<(outs GPR:$dst), (ins GPR:$a, GPR:$b), IIC_iMUL32,
857               !strconcat(opc, "tt"), " $dst, $a, $b",
858               [(set GPR:$dst, (opnode (sra GPR:$a, (i32 16)),
859                                       (sra GPR:$b, (i32 16))))]>;
860
861   def WB : T2I<(outs GPR:$dst), (ins GPR:$a, GPR:$b), IIC_iMUL16,
862               !strconcat(opc, "wb"), " $dst, $a, $b",
863               [(set GPR:$dst, (sra (opnode GPR:$a,
864                                     (sext_inreg GPR:$b, i16)), (i32 16)))]>;
865
866   def WT : T2I<(outs GPR:$dst), (ins GPR:$a, GPR:$b), IIC_iMUL16,
867               !strconcat(opc, "wt"), " $dst, $a, $b",
868               [(set GPR:$dst, (sra (opnode GPR:$a,
869                                     (sra GPR:$b, (i32 16))), (i32 16)))]>;
870 }
871
872
873 multiclass T2I_smla<string opc, PatFrag opnode> {
874   def BB : T2I<(outs GPR:$dst), (ins GPR:$a, GPR:$b, GPR:$acc), IIC_iMAC16,
875               !strconcat(opc, "bb"), " $dst, $a, $b, $acc",
876               [(set GPR:$dst, (add GPR:$acc,
877                                (opnode (sext_inreg GPR:$a, i16),
878                                        (sext_inreg GPR:$b, i16))))]>;
879
880   def BT : T2I<(outs GPR:$dst), (ins GPR:$a, GPR:$b, GPR:$acc), IIC_iMAC16,
881              !strconcat(opc, "bt"), " $dst, $a, $b, $acc",
882              [(set GPR:$dst, (add GPR:$acc, (opnode (sext_inreg GPR:$a, i16),
883                                                     (sra GPR:$b, (i32 16)))))]>;
884
885   def TB : T2I<(outs GPR:$dst), (ins GPR:$a, GPR:$b, GPR:$acc), IIC_iMAC16,
886               !strconcat(opc, "tb"), " $dst, $a, $b, $acc",
887               [(set GPR:$dst, (add GPR:$acc, (opnode (sra GPR:$a, (i32 16)),
888                                                  (sext_inreg GPR:$b, i16))))]>;
889
890   def TT : T2I<(outs GPR:$dst), (ins GPR:$a, GPR:$b, GPR:$acc), IIC_iMAC16,
891               !strconcat(opc, "tt"), " $dst, $a, $b, $acc",
892              [(set GPR:$dst, (add GPR:$acc, (opnode (sra GPR:$a, (i32 16)),
893                                                     (sra GPR:$b, (i32 16)))))]>;
894
895   def WB : T2I<(outs GPR:$dst), (ins GPR:$a, GPR:$b, GPR:$acc), IIC_iMAC16,
896               !strconcat(opc, "wb"), " $dst, $a, $b, $acc",
897               [(set GPR:$dst, (add GPR:$acc, (sra (opnode GPR:$a,
898                                        (sext_inreg GPR:$b, i16)), (i32 16))))]>;
899
900   def WT : T2I<(outs GPR:$dst), (ins GPR:$a, GPR:$b, GPR:$acc), IIC_iMAC16,
901               !strconcat(opc, "wt"), " $dst, $a, $b, $acc",
902               [(set GPR:$dst, (add GPR:$acc, (sra (opnode GPR:$a,
903                                          (sra GPR:$b, (i32 16))), (i32 16))))]>;
904 }
905
906 defm t2SMUL : T2I_smul<"smul", BinOpFrag<(mul node:$LHS, node:$RHS)>>;
907 defm t2SMLA : T2I_smla<"smla", BinOpFrag<(mul node:$LHS, node:$RHS)>>;
908
909 // TODO: Halfword multiple accumulate long: SMLAL<x><y>
910 // TODO: Dual halfword multiple: SMUAD, SMUSD, SMLAD, SMLSD, SMLALD, SMLSLD
911
912
913 //===----------------------------------------------------------------------===//
914 //  Misc. Arithmetic Instructions.
915 //
916
917 def t2CLZ : T2I<(outs GPR:$dst), (ins GPR:$src), IIC_iUNAr,
918                 "clz", " $dst, $src",
919                 [(set GPR:$dst, (ctlz GPR:$src))]>;
920
921 def t2REV : T2I<(outs GPR:$dst), (ins GPR:$src), IIC_iUNAr,
922                 "rev", ".w $dst, $src",
923                 [(set GPR:$dst, (bswap GPR:$src))]>;
924
925 def t2REV16 : T2I<(outs GPR:$dst), (ins GPR:$src), IIC_iUNAr,
926                 "rev16", ".w $dst, $src",
927                 [(set GPR:$dst,
928                     (or (and (srl GPR:$src, (i32 8)), 0xFF),
929                         (or (and (shl GPR:$src, (i32 8)), 0xFF00),
930                             (or (and (srl GPR:$src, (i32 8)), 0xFF0000),
931                                 (and (shl GPR:$src, (i32 8)), 0xFF000000)))))]>;
932
933 def t2REVSH : T2I<(outs GPR:$dst), (ins GPR:$src), IIC_iUNAr,
934                  "revsh", ".w $dst, $src",
935                  [(set GPR:$dst,
936                     (sext_inreg
937                       (or (srl (and GPR:$src, 0xFF00), (i32 8)),
938                           (shl GPR:$src, (i32 8))), i16))]>;
939
940 def t2PKHBT : T2I<(outs GPR:$dst), (ins GPR:$src1, GPR:$src2, i32imm:$shamt),
941                   IIC_iALUsi, "pkhbt", " $dst, $src1, $src2, LSL $shamt",
942                   [(set GPR:$dst, (or (and GPR:$src1, 0xFFFF),
943                                       (and (shl GPR:$src2, (i32 imm:$shamt)),
944                                            0xFFFF0000)))]>;
945
946 // Alternate cases for PKHBT where identities eliminate some nodes.
947 def : T2Pat<(or (and GPR:$src1, 0xFFFF), (and GPR:$src2, 0xFFFF0000)),
948             (t2PKHBT GPR:$src1, GPR:$src2, 0)>;
949 def : T2Pat<(or (and GPR:$src1, 0xFFFF), (shl GPR:$src2, imm16_31:$shamt)),
950             (t2PKHBT GPR:$src1, GPR:$src2, imm16_31:$shamt)>;
951
952 def t2PKHTB : T2I<(outs GPR:$dst), (ins GPR:$src1, GPR:$src2, i32imm:$shamt),
953                   IIC_iALUsi, "pkhtb", " $dst, $src1, $src2, ASR $shamt",
954                   [(set GPR:$dst, (or (and GPR:$src1, 0xFFFF0000),
955                                       (and (sra GPR:$src2, imm16_31:$shamt),
956                                            0xFFFF)))]>;
957
958 // Alternate cases for PKHTB where identities eliminate some nodes.  Note that
959 // a shift amount of 0 is *not legal* here, it is PKHBT instead.
960 def : T2Pat<(or (and GPR:$src1, 0xFFFF0000), (srl GPR:$src2, (i32 16))),
961             (t2PKHTB GPR:$src1, GPR:$src2, 16)>;
962 def : T2Pat<(or (and GPR:$src1, 0xFFFF0000),
963                      (and (srl GPR:$src2, imm1_15:$shamt), 0xFFFF)),
964             (t2PKHTB GPR:$src1, GPR:$src2, imm1_15:$shamt)>;
965
966 //===----------------------------------------------------------------------===//
967 //  Comparison Instructions...
968 //
969
970 defm t2CMP  : T2I_cmp_is<"cmp",
971                          BinOpFrag<(ARMcmp node:$LHS, node:$RHS)>>;
972 defm t2CMPz : T2I_cmp_is<"cmp",
973                          BinOpFrag<(ARMcmpZ node:$LHS, node:$RHS)>>;
974
975 defm t2CMN  : T2I_cmp_is<"cmn",
976                          BinOpFrag<(ARMcmp node:$LHS,(ineg node:$RHS))>>;
977 defm t2CMNz : T2I_cmp_is<"cmn",
978                          BinOpFrag<(ARMcmpZ node:$LHS,(ineg node:$RHS))>>;
979
980 def : T2Pat<(ARMcmp  GPR:$src, t2_so_imm_neg:$imm),
981             (t2CMNri GPR:$src, t2_so_imm_neg:$imm)>;
982
983 def : T2Pat<(ARMcmpZ  GPR:$src, t2_so_imm_neg:$imm),
984             (t2CMNri   GPR:$src, t2_so_imm_neg:$imm)>;
985
986 defm t2TST  : T2I_cmp_is<"tst",
987                          BinOpFrag<(ARMcmpZ (and node:$LHS, node:$RHS), 0)>>;
988 defm t2TEQ  : T2I_cmp_is<"teq",
989                          BinOpFrag<(ARMcmpZ (xor node:$LHS, node:$RHS), 0)>>;
990
991 // A8.6.27  CBNZ, CBZ - Compare and branch on (non)zero.
992 // Short range conditional branch. Looks awesome for loops. Need to figure
993 // out how to use this one.
994
995
996 // Conditional moves
997 // FIXME: should be able to write a pattern for ARMcmov, but can't use
998 // a two-value operand where a dag node expects two operands. :( 
999 def t2MOVCCr : T2I<(outs GPR:$dst), (ins GPR:$false, GPR:$true), IIC_iCMOVr,
1000                    "mov", ".w $dst, $true",
1001       [/*(set GPR:$dst, (ARMcmov GPR:$false, GPR:$true, imm:$cc, CCR:$ccr))*/]>,
1002                 RegConstraint<"$false = $dst">;
1003
1004 def t2MOVCCi : T2I<(outs GPR:$dst), (ins GPR:$false, t2_so_imm:$true),
1005                    IIC_iCMOVi, "mov", ".w $dst, $true",
1006 [/*(set GPR:$dst, (ARMcmov GPR:$false, t2_so_imm:$true, imm:$cc, CCR:$ccr))*/]>,
1007                    RegConstraint<"$false = $dst">;
1008
1009 def t2MOVCClsl : T2I<(outs GPR:$dst), (ins GPR:$false, GPR:$true, i32imm:$rhs),
1010                    IIC_iCMOVsi, "lsl", ".w $dst, $true, $rhs", []>,
1011                    RegConstraint<"$false = $dst">;
1012 def t2MOVCClsr : T2I<(outs GPR:$dst), (ins GPR:$false, GPR:$true, i32imm:$rhs),
1013                    IIC_iCMOVsi, "lsr", ".w $dst, $true, $rhs", []>,
1014                    RegConstraint<"$false = $dst">;
1015 def t2MOVCCasr : T2I<(outs GPR:$dst), (ins GPR:$false, GPR:$true, i32imm:$rhs),
1016                    IIC_iCMOVsi, "asr", ".w $dst, $true, $rhs", []>,
1017                    RegConstraint<"$false = $dst">;
1018 def t2MOVCCror : T2I<(outs GPR:$dst), (ins GPR:$false, GPR:$true, i32imm:$rhs),
1019                    IIC_iCMOVsi, "ror", ".w $dst, $true, $rhs", []>,
1020                    RegConstraint<"$false = $dst">;
1021
1022 //===----------------------------------------------------------------------===//
1023 // TLS Instructions
1024 //
1025
1026 // __aeabi_read_tp preserves the registers r1-r3.
1027 let isCall = 1,
1028   Defs = [R0, R12, LR, CPSR] in {
1029   def t2TPsoft : T2XI<(outs), (ins), IIC_Br,
1030                      "bl __aeabi_read_tp",
1031                      [(set R0, ARMthread_pointer)]>;
1032 }
1033
1034 //===----------------------------------------------------------------------===//
1035 // SJLJ Exception handling intrinsics
1036 //   eh_sjlj_setjmp() is an instruction sequence to store the return
1037 //   address and save #0 in R0 for the non-longjmp case.
1038 //   Since by its nature we may be coming from some other function to get
1039 //   here, and we're using the stack frame for the containing function to
1040 //   save/restore registers, we can't keep anything live in regs across
1041 //   the eh_sjlj_setjmp(), else it will almost certainly have been tromped upon
1042 //   when we get here from a longjmp(). We force everthing out of registers
1043 //   except for our own input by listing the relevant registers in Defs. By
1044 //   doing so, we also cause the prologue/epilogue code to actively preserve
1045 //   all of the callee-saved resgisters, which is exactly what we want.
1046 let Defs = 
1047   [ R0,  R1,  R2,  R3,  R4,  R5,  R6,  R7,  R8,  R9,  R10, R11, R12, LR,  D0,
1048     D1,  D2,  D3,  D4,  D5,  D6,  D7,  D8,  D9,  D10, D11, D12, D13, D14, D15,
1049     D16, D17, D18, D19, D20, D21, D22, D23, D24, D25, D26, D27, D28, D29, D30,
1050     D31 ] in {
1051   def t2Int_eh_sjlj_setjmp : Thumb2XI<(outs), (ins GPR:$src),
1052                                AddrModeNone, SizeSpecial, NoItinerary,
1053                                "str.w sp, [$src, #+8] @ eh_setjmp begin\n"
1054                                "\tadr r12, 0f\n"
1055                                "\torr r12, #1\n"
1056                                "\tstr.w r12, [$src, #+4]\n"
1057                                "\tmovs r0, #0\n"
1058                                "\tb 1f\n"
1059                                "0:\tmovs r0, #1 @ eh_setjmp end\n"
1060                                "1:", "",
1061                                [(set R0, (ARMeh_sjlj_setjmp GPR:$src))]>;
1062 }
1063
1064
1065
1066 //===----------------------------------------------------------------------===//
1067 // Control-Flow Instructions
1068 //
1069
1070 // FIXME: remove when we have a way to marking a MI with these properties.
1071 // FIXME: $dst1 should be a def. But the extra ops must be in the end of the
1072 // operand list.
1073 // FIXME: Should pc be an implicit operand like PICADD, etc?
1074 let isReturn = 1, isTerminator = 1, mayLoad = 1 in
1075   def t2LDM_RET : T2XI<(outs),
1076                     (ins addrmode4:$addr, pred:$p, reglist:$dst1, variable_ops),
1077                     IIC_Br, "ldm${addr:submode}${p}${addr:wide} $addr, $dst1",
1078                     []>;
1079
1080 let isBranch = 1, isTerminator = 1, isBarrier = 1 in {
1081 let isPredicable = 1 in
1082 def t2B   : T2XI<(outs), (ins brtarget:$target), IIC_Br,
1083                  "b.w $target",
1084                  [(br bb:$target)]>;
1085
1086 let isNotDuplicable = 1, isIndirectBranch = 1 in {
1087 def t2BR_JT :
1088     T2JTI<(outs),
1089           (ins GPR:$target, GPR:$index, jt2block_operand:$jt, i32imm:$id),
1090            IIC_Br, "mov pc, $target\n$jt",
1091           [(ARMbr2jt GPR:$target, GPR:$index, tjumptable:$jt, imm:$id)]>;
1092
1093 // FIXME: Add a non-pc based case that can be predicated.
1094 def t2TBB :
1095     T2JTI<(outs),
1096         (ins tb_addrmode:$index, jt2block_operand:$jt, i32imm:$id),
1097          IIC_Br, "tbb $index\n$jt", []>;
1098
1099 def t2TBH :
1100     T2JTI<(outs),
1101         (ins tb_addrmode:$index, jt2block_operand:$jt, i32imm:$id),
1102          IIC_Br, "tbh $index\n$jt", []>;
1103 } // isNotDuplicable, isIndirectBranch
1104
1105 } // isBranch, isTerminator, isBarrier
1106
1107 // FIXME: should be able to write a pattern for ARMBrcond, but can't use
1108 // a two-value operand where a dag node expects two operands. :(
1109 let isBranch = 1, isTerminator = 1 in
1110 def t2Bcc : T2I<(outs), (ins brtarget:$target), IIC_Br,
1111                 "b", ".w $target",
1112                 [/*(ARMbrcond bb:$target, imm:$cc)*/]>;
1113
1114
1115 // IT block
1116 def t2IT : Thumb2XI<(outs), (ins it_pred:$cc, it_mask:$mask),
1117                     AddrModeNone, Size2Bytes,  IIC_iALUx,
1118                     "it$mask $cc", "", []>;
1119
1120 //===----------------------------------------------------------------------===//
1121 // Non-Instruction Patterns
1122 //
1123
1124 // ConstantPool, GlobalAddress, and JumpTable
1125 def : T2Pat<(ARMWrapper  tglobaladdr :$dst), (t2LEApcrel tglobaladdr :$dst)>;
1126 def : T2Pat<(ARMWrapper  tconstpool  :$dst), (t2LEApcrel tconstpool  :$dst)>;
1127 def : T2Pat<(ARMWrapperJT tjumptable:$dst, imm:$id),
1128             (t2LEApcrelJT tjumptable:$dst, imm:$id)>;
1129
1130 // Large immediate handling.
1131
1132 def : T2Pat<(i32 imm:$src),
1133             (t2MOVTi16 (t2MOVi16 (lo16 imm:$src)), (hi16 imm:$src))>;