blob: 63aea02d6818985e170377b80b24510a7bf5dfd4 [file] [log] [blame]
Evan Chenga8e29892007-01-19 07:51:42 +00001//===- ARMInstrInfo.td - Target Description for ARM Target -*- tablegen -*-===//
Rafael Espindola7bc59bc2006-05-14 22:18:28 +00002//
3// The LLVM Compiler Infrastructure
4//
5// This file was developed by the "Instituto Nokia de Tecnologia" and
6// is distributed under the University of Illinois Open Source
7// License. See LICENSE.TXT for details.
8//
9//===----------------------------------------------------------------------===//
10//
11// This file describes the ARM instructions in TableGen format.
12//
13//===----------------------------------------------------------------------===//
14
Evan Chenga8e29892007-01-19 07:51:42 +000015//===----------------------------------------------------------------------===//
16// ARM specific DAG Nodes.
17//
Rafael Espindola7cca7c52006-09-11 17:25:40 +000018
Evan Chenga8e29892007-01-19 07:51:42 +000019// Type profiles.
20def SDT_ARMCallSeq : SDTypeProfile<0, 1, [ SDTCisVT<0, i32> ]>;
Rafael Espindola6e8c6492006-11-08 17:07:32 +000021
Evan Chenga8e29892007-01-19 07:51:42 +000022def SDT_ARMSaveCallPC : SDTypeProfile<0, 1, []>;
Rafael Espindola32bd5f42006-10-17 18:04:53 +000023
Evan Chenga8e29892007-01-19 07:51:42 +000024def SDT_ARMcall : SDTypeProfile<0, -1, [SDTCisInt<0>]>;
Rafael Espindola7cca7c52006-09-11 17:25:40 +000025
Evan Chenga8e29892007-01-19 07:51:42 +000026def SDT_ARMCMov : SDTypeProfile<1, 3,
27 [SDTCisSameAs<0, 1>, SDTCisSameAs<0, 2>,
28 SDTCisVT<3, i32>]>;
Rafael Espindola6e8c6492006-11-08 17:07:32 +000029
Evan Chenga8e29892007-01-19 07:51:42 +000030def SDT_ARMBrcond : SDTypeProfile<0, 2,
31 [SDTCisVT<0, OtherVT>, SDTCisVT<1, i32>]>;
32
33def SDT_ARMBrJT : SDTypeProfile<0, 3,
34 [SDTCisPtrTy<0>, SDTCisVT<1, i32>,
35 SDTCisVT<2, i32>]>;
36
37def SDT_ARMCmp : SDTypeProfile<0, 2, [SDTCisSameAs<0, 1>]>;
38
39def SDT_ARMPICAdd : SDTypeProfile<1, 2, [SDTCisSameAs<0, 1>,
40 SDTCisPtrTy<1>, SDTCisVT<2, i32>]>;
41
42// Node definitions.
43def ARMWrapper : SDNode<"ARMISD::Wrapper", SDTIntUnaryOp>;
44def ARMWrapperCall : SDNode<"ARMISD::WrapperCall", SDTIntUnaryOp>;
45def ARMWrapperJT : SDNode<"ARMISD::WrapperJT", SDTIntBinOp>;
46
47def ARMcallseq_start : SDNode<"ISD::CALLSEQ_START", SDT_ARMCallSeq,
48 [SDNPHasChain, SDNPOutFlag]>;
49def ARMcallseq_end : SDNode<"ISD::CALLSEQ_END", SDT_ARMCallSeq,
50 [SDNPHasChain, SDNPOutFlag]>;
51
52def ARMcall : SDNode<"ARMISD::CALL", SDT_ARMcall,
53 [SDNPHasChain, SDNPOptInFlag, SDNPOutFlag]>;
54def ARMcall_nolink : SDNode<"ARMISD::CALL_NOLINK", SDT_ARMcall,
55 [SDNPHasChain, SDNPOptInFlag, SDNPOutFlag]>;
56
57def ARMretflag : SDNode<"ARMISD::RET_FLAG", SDTRet,
58 [SDNPHasChain, SDNPOptInFlag]>;
59
60def ARMcmov : SDNode<"ARMISD::CMOV", SDT_ARMCMov,
61 [SDNPInFlag]>;
62def ARMcneg : SDNode<"ARMISD::CNEG", SDT_ARMCMov,
63 [SDNPInFlag]>;
64
65def ARMbrcond : SDNode<"ARMISD::BRCOND", SDT_ARMBrcond,
66 [SDNPHasChain, SDNPInFlag, SDNPOutFlag]>;
67
68def ARMbrjt : SDNode<"ARMISD::BR_JT", SDT_ARMBrJT,
69 [SDNPHasChain]>;
70
71def ARMcmp : SDNode<"ARMISD::CMP", SDT_ARMCmp,
72 [SDNPOutFlag]>;
73
74def ARMpic_add : SDNode<"ARMISD::PIC_ADD", SDT_ARMPICAdd>;
75
76def ARMsrl_flag : SDNode<"ARMISD::SRL_FLAG", SDTIntUnaryOp, [SDNPOutFlag]>;
77def ARMsra_flag : SDNode<"ARMISD::SRA_FLAG", SDTIntUnaryOp, [SDNPOutFlag]>;
78def ARMrrx : SDNode<"ARMISD::RRX" , SDTIntUnaryOp, [SDNPInFlag ]>;
Rafael Espindola32bd5f42006-10-17 18:04:53 +000079
Rafael Espindola7bc59bc2006-05-14 22:18:28 +000080//===----------------------------------------------------------------------===//
Evan Chenga8e29892007-01-19 07:51:42 +000081// ARM Instruction Predicate Definitions.
82//
83def HasV5T : Predicate<"Subtarget->hasV5TOps()">;
84def HasV5TE : Predicate<"Subtarget->hasV5TEOps()">;
85def HasV6 : Predicate<"Subtarget->hasV6Ops()">;
86def IsThumb : Predicate<"Subtarget->isThumb()">;
87def IsARM : Predicate<"!Subtarget->isThumb()">;
88
Rafael Espindola7bc59bc2006-05-14 22:18:28 +000089//===----------------------------------------------------------------------===//
Evan Chenga8e29892007-01-19 07:51:42 +000090// ARM Flag Definitions.
91
92class RegConstraint<string C> {
93 string Constraints = C;
94}
95
96//===----------------------------------------------------------------------===//
97// ARM specific transformation functions and pattern fragments.
98//
99
100// so_imm_XFORM - Return a so_imm value packed into the format described for
101// so_imm def below.
102def so_imm_XFORM : SDNodeXForm<imm, [{
103 return CurDAG->getTargetConstant(ARM_AM::getSOImmVal(N->getValue()),
104 MVT::i32);
105}]>;
106
107// so_imm_neg_XFORM - Return a so_imm value packed into the format described for
108// so_imm_neg def below.
109def so_imm_neg_XFORM : SDNodeXForm<imm, [{
110 return CurDAG->getTargetConstant(ARM_AM::getSOImmVal(-(int)N->getValue()),
111 MVT::i32);
112}]>;
113
114// so_imm_not_XFORM - Return a so_imm value packed into the format described for
115// so_imm_not def below.
116def so_imm_not_XFORM : SDNodeXForm<imm, [{
117 return CurDAG->getTargetConstant(ARM_AM::getSOImmVal(~(int)N->getValue()),
118 MVT::i32);
119}]>;
120
121// rot_imm predicate - True if the 32-bit immediate is equal to 8, 16, or 24.
122def rot_imm : PatLeaf<(i32 imm), [{
123 int32_t v = (int32_t)N->getValue();
124 return v == 8 || v == 16 || v == 24;
125}]>;
126
127/// imm1_15 predicate - True if the 32-bit immediate is in the range [1,15].
128def imm1_15 : PatLeaf<(i32 imm), [{
129 return (int32_t)N->getValue() >= 1 && (int32_t)N->getValue() < 16;
130}]>;
131
132/// imm16_31 predicate - True if the 32-bit immediate is in the range [16,31].
133def imm16_31 : PatLeaf<(i32 imm), [{
134 return (int32_t)N->getValue() >= 16 && (int32_t)N->getValue() < 32;
135}]>;
136
137def so_imm_neg :
138 PatLeaf<(imm), [{ return ARM_AM::getSOImmVal(-(int)N->getValue()) != -1; }],
139 so_imm_neg_XFORM>;
140
141def so_imm_not :
142 PatLeaf<(imm), [{ return ARM_AM::getSOImmVal(~(int)N->getValue()) != -1; }],
143 so_imm_not_XFORM>;
144
145// sext_16_node predicate - True if the SDNode is sign-extended 16 or more bits.
146def sext_16_node : PatLeaf<(i32 GPR:$a), [{
147 return TLI.ComputeNumSignBits(SDOperand(N,0)) >= 17;
148}]>;
149
150
151// Break so_imm's up into two pieces. This handles immediates with up to 16
152// bits set in them. This uses so_imm2part to match and so_imm2part_[12] to
153// get the first/second pieces.
154def so_imm2part : PatLeaf<(imm), [{
155 return ARM_AM::isSOImmTwoPartVal((unsigned)N->getValue());
156}]>;
157
158def so_imm2part_1 : SDNodeXForm<imm, [{
159 unsigned V = ARM_AM::getSOImmTwoPartFirst((unsigned)N->getValue());
160 return CurDAG->getTargetConstant(ARM_AM::getSOImmVal(V), MVT::i32);
161}]>;
162
163def so_imm2part_2 : SDNodeXForm<imm, [{
164 unsigned V = ARM_AM::getSOImmTwoPartSecond((unsigned)N->getValue());
165 return CurDAG->getTargetConstant(ARM_AM::getSOImmVal(V), MVT::i32);
166}]>;
167
168
169
170//===----------------------------------------------------------------------===//
171// Operand Definitions.
172//
173
174// Branch target.
175def brtarget : Operand<OtherVT>;
176
177// Operand for printing out a condition code.
178def CCOp : Operand<i32> {
179 let PrintMethod = "printCCOperand";
180}
181
182// A list of registers separated by comma. Used by load/store multiple.
183def reglist : Operand<i32> {
184 let PrintMethod = "printRegisterList";
185}
186
187// An operand for the CONSTPOOL_ENTRY pseudo-instruction.
188def cpinst_operand : Operand<i32> {
189 let PrintMethod = "printCPInstOperand";
190}
191
192def jtblock_operand : Operand<i32> {
193 let PrintMethod = "printJTBlockOperand";
194}
195
196// Local PC labels.
197def pclabel : Operand<i32> {
198 let PrintMethod = "printPCLabel";
199}
200
201// shifter_operand operands: so_reg and so_imm.
202def so_reg : Operand<i32>, // reg reg imm
203 ComplexPattern<i32, 3, "SelectShifterOperandReg",
204 [shl,srl,sra,rotr]> {
205 let PrintMethod = "printSORegOperand";
206 let MIOperandInfo = (ops GPR, GPR, i32imm);
207}
208
209// so_imm - Match a 32-bit shifter_operand immediate operand, which is an
210// 8-bit immediate rotated by an arbitrary number of bits. so_imm values are
211// represented in the imm field in the same 12-bit form that they are encoded
212// into so_imm instructions: the 8-bit immediate is the least significant bits
213// [bits 0-7], the 4-bit shift amount is the next 4 bits [bits 8-11].
214def so_imm : Operand<i32>,
215 PatLeaf<(imm),
216 [{ return ARM_AM::getSOImmVal(N->getValue()) != -1; }],
217 so_imm_XFORM> {
218 let PrintMethod = "printSOImmOperand";
219}
220
221
222// Define ARM specific addressing modes.
223
224// addrmode2 := reg +/- reg shop imm
225// addrmode2 := reg +/- imm12
226//
227def addrmode2 : Operand<i32>,
228 ComplexPattern<i32, 3, "SelectAddrMode2", []> {
229 let PrintMethod = "printAddrMode2Operand";
230 let MIOperandInfo = (ops GPR:$base, GPR:$offsreg, i32imm:$offsimm);
231}
232
233def am2offset : Operand<i32>,
234 ComplexPattern<i32, 2, "SelectAddrMode2Offset", []> {
235 let PrintMethod = "printAddrMode2OffsetOperand";
236 let MIOperandInfo = (ops GPR, i32imm);
237}
238
239// addrmode3 := reg +/- reg
240// addrmode3 := reg +/- imm8
241//
242def addrmode3 : Operand<i32>,
243 ComplexPattern<i32, 3, "SelectAddrMode3", []> {
244 let PrintMethod = "printAddrMode3Operand";
245 let MIOperandInfo = (ops GPR:$base, GPR:$offsreg, i32imm:$offsimm);
246}
247
248def am3offset : Operand<i32>,
249 ComplexPattern<i32, 2, "SelectAddrMode3Offset", []> {
250 let PrintMethod = "printAddrMode3OffsetOperand";
251 let MIOperandInfo = (ops GPR, i32imm);
252}
253
254// addrmode4 := reg, <mode|W>
255//
256def addrmode4 : Operand<i32>,
257 ComplexPattern<i32, 2, "", []> {
258 let PrintMethod = "printAddrMode4Operand";
259 let MIOperandInfo = (ops GPR, i32imm);
260}
261
262// addrmode5 := reg +/- imm8*4
263//
264def addrmode5 : Operand<i32>,
265 ComplexPattern<i32, 2, "SelectAddrMode5", []> {
266 let PrintMethod = "printAddrMode5Operand";
267 let MIOperandInfo = (ops GPR, i32imm);
268}
269
270// addrmodepc := pc + reg
271//
272def addrmodepc : Operand<i32>,
273 ComplexPattern<i32, 2, "SelectAddrModePC", []> {
274 let PrintMethod = "printAddrModePCOperand";
275 let MIOperandInfo = (ops GPR, i32imm);
276}
277
278//===----------------------------------------------------------------------===//
279// ARM Instruction flags. These need to match ARMInstrInfo.h.
280//
281
282// Addressing mode.
283class AddrMode<bits<4> val> {
284 bits<4> Value = val;
285}
286def AddrModeNone : AddrMode<0>;
287def AddrMode1 : AddrMode<1>;
288def AddrMode2 : AddrMode<2>;
289def AddrMode3 : AddrMode<3>;
290def AddrMode4 : AddrMode<4>;
291def AddrMode5 : AddrMode<5>;
292def AddrModeT1 : AddrMode<6>;
293def AddrModeT2 : AddrMode<7>;
294def AddrModeT4 : AddrMode<8>;
295def AddrModeTs : AddrMode<9>;
296
297// Instruction size.
298class SizeFlagVal<bits<3> val> {
299 bits<3> Value = val;
300}
301def SizeInvalid : SizeFlagVal<0>; // Unset.
302def SizeSpecial : SizeFlagVal<1>; // Pseudo or special.
303def Size8Bytes : SizeFlagVal<2>;
304def Size4Bytes : SizeFlagVal<3>;
305def Size2Bytes : SizeFlagVal<4>;
306
307// Load / store index mode.
308class IndexMode<bits<2> val> {
309 bits<2> Value = val;
310}
311def IndexModeNone : IndexMode<0>;
312def IndexModePre : IndexMode<1>;
313def IndexModePost : IndexMode<2>;
314
315//===----------------------------------------------------------------------===//
316// ARM Instruction templates.
317//
318
319// ARMPat - Same as Pat<>, but requires that the compiler be in ARM mode.
320class ARMPat<dag pattern, dag result> : Pat<pattern, result> {
321 list<Predicate> Predicates = [IsARM];
322}
Evan Cheng34b12d22007-01-19 20:27:35 +0000323class ARMV5TEPat<dag pattern, dag result> : Pat<pattern, result> {
324 list<Predicate> Predicates = [IsARM, HasV5TE];
325}
Evan Chenga8e29892007-01-19 07:51:42 +0000326class ARMV6Pat<dag pattern, dag result> : Pat<pattern, result> {
327 list<Predicate> Predicates = [IsARM, HasV6];
328}
329
Evan Chenga8e29892007-01-19 07:51:42 +0000330class InstARM<bits<4> opcod, AddrMode am, SizeFlagVal sz, IndexMode im,
331 dag ops, string asmstr, string cstr>
332 : Instruction {
Rafael Espindola7bc59bc2006-05-14 22:18:28 +0000333 let Namespace = "ARM";
334
Evan Chenga8e29892007-01-19 07:51:42 +0000335 bits<4> Opcode = opcod;
336 AddrMode AM = am;
337 bits<4> AddrModeBits = AM.Value;
338
339 SizeFlagVal SZ = sz;
340 bits<3> SizeFlag = SZ.Value;
341
342 IndexMode IM = im;
343 bits<2> IndexModeBits = IM.Value;
344
Rafael Espindola7bc59bc2006-05-14 22:18:28 +0000345 dag OperandList = ops;
346 let AsmString = asmstr;
Evan Chenga8e29892007-01-19 07:51:42 +0000347 let Constraints = cstr;
348}
349
350class PseudoInst<dag ops, string asm, list<dag> pattern>
351 : InstARM<0, AddrModeNone, SizeSpecial, IndexModeNone, ops, asm, ""> {
Rafael Espindola7bc59bc2006-05-14 22:18:28 +0000352 let Pattern = pattern;
353}
354
Evan Chenga8e29892007-01-19 07:51:42 +0000355class I<dag ops, AddrMode am, SizeFlagVal sz, IndexMode im,
356 string asm, string cstr, list<dag> pattern>
357 // FIXME: Set all opcodes to 0 for now.
358 : InstARM<0, am, sz, im, ops, asm, cstr> {
359 let Pattern = pattern;
360 list<Predicate> Predicates = [IsARM];
361}
Rafael Espindola15a6c3e2006-10-16 17:57:20 +0000362
Evan Chenga8e29892007-01-19 07:51:42 +0000363class AI<dag ops, string asm, list<dag> pattern>
364 : I<ops, AddrModeNone, Size4Bytes, IndexModeNone, asm, "", pattern>;
365class AI1<dag ops, string asm, list<dag> pattern>
366 : I<ops, AddrMode1, Size4Bytes, IndexModeNone, asm, "", pattern>;
367class AI2<dag ops, string asm, list<dag> pattern>
368 : I<ops, AddrMode2, Size4Bytes, IndexModeNone, asm, "", pattern>;
369class AI3<dag ops, string asm, list<dag> pattern>
370 : I<ops, AddrMode3, Size4Bytes, IndexModeNone, asm, "", pattern>;
371class AI4<dag ops, string asm, list<dag> pattern>
372 : I<ops, AddrMode4, Size4Bytes, IndexModeNone, asm, "", pattern>;
373class AIx2<dag ops, string asm, list<dag> pattern>
374 : I<ops, AddrModeNone, Size8Bytes, IndexModeNone, asm, "", pattern>;
Rafael Espindolaa6f149d2006-10-16 18:32:36 +0000375
Evan Chenga8e29892007-01-19 07:51:42 +0000376// Pre-indexed ops
377class AI2pr<dag ops, string asm, string cstr, list<dag> pattern>
378 : I<ops, AddrMode2, Size4Bytes, IndexModePre, asm, cstr, pattern>;
379class AI3pr<dag ops, string asm, string cstr, list<dag> pattern>
380 : I<ops, AddrMode3, Size4Bytes, IndexModePre, asm, cstr, pattern>;
Rafael Espindola27e469e2006-10-16 18:39:22 +0000381
Evan Chenga8e29892007-01-19 07:51:42 +0000382// Post-indexed ops
383class AI2po<dag ops, string asm, string cstr, list<dag> pattern>
384 : I<ops, AddrMode2, Size4Bytes, IndexModePost, asm, cstr, pattern>;
385class AI3po<dag ops, string asm, string cstr, list<dag> pattern>
386 : I<ops, AddrMode3, Size4Bytes, IndexModePost, asm, cstr, pattern>;
Rafael Espindola04d88ff2006-10-17 20:45:22 +0000387
Evan Chenga8e29892007-01-19 07:51:42 +0000388// BR_JT instructions
389class JTI<dag ops, string asm, list<dag> pattern>
390 : I<ops, AddrModeNone, SizeSpecial, IndexModeNone, asm, "", pattern>;
391class JTI1<dag ops, string asm, list<dag> pattern>
392 : I<ops, AddrMode1, SizeSpecial, IndexModeNone, asm, "", pattern>;
393class JTI2<dag ops, string asm, list<dag> pattern>
394 : I<ops, AddrMode2, SizeSpecial, IndexModeNone, asm, "", pattern>;
Rafael Espindola04d88ff2006-10-17 20:45:22 +0000395
Evan Chenga8e29892007-01-19 07:51:42 +0000396
397class BinOpFrag<dag res> : PatFrag<(ops node:$LHS, node:$RHS), res>;
398class UnOpFrag <dag res> : PatFrag<(ops node:$Src), res>;
399
400
401/// AI1_bin_irs - Defines a set of (op r, {so_imm|r|so_reg}) patterns for a
402/// binop that produces a value.
403multiclass AI1_bin_irs<string opc, PatFrag opnode> {
404 def ri : AI1<(ops GPR:$dst, GPR:$a, so_imm:$b),
405 !strconcat(opc, " $dst, $a, $b"),
406 [(set GPR:$dst, (opnode GPR:$a, so_imm:$b))]>;
407 def rr : AI1<(ops GPR:$dst, GPR:$a, GPR:$b),
408 !strconcat(opc, " $dst, $a, $b"),
409 [(set GPR:$dst, (opnode GPR:$a, GPR:$b))]>;
410 def rs : AI1<(ops GPR:$dst, GPR:$a, so_reg:$b),
411 !strconcat(opc, " $dst, $a, $b"),
412 [(set GPR:$dst, (opnode GPR:$a, so_reg:$b))]>;
413}
414
415/// AI1_bin0_irs - Defines a set of (op r, {so_imm|r|so_reg}) patterns.
416/// Similar to AI1_bin_irs except the instruction does not produce a result.
417multiclass AI1_bin0_irs<string opc, PatFrag opnode> {
418 def ri : AI1<(ops GPR:$a, so_imm:$b),
419 !strconcat(opc, " $a, $b"),
420 [(opnode GPR:$a, so_imm:$b)]>;
421 def rr : AI1<(ops GPR:$a, GPR:$b),
422 !strconcat(opc, " $a, $b"),
423 [(opnode GPR:$a, GPR:$b)]>;
424 def rs : AI1<(ops GPR:$a, so_reg:$b),
425 !strconcat(opc, " $a, $b"),
426 [(opnode GPR:$a, so_reg:$b)]>;
427}
428
429/// AI1_bin_is - Defines a set of (op r, {so_imm|so_reg}) patterns for a binop.
430multiclass AI1_bin_is<string opc, PatFrag opnode> {
431 def ri : AI1<(ops GPR:$dst, GPR:$a, so_imm:$b),
432 !strconcat(opc, " $dst, $a, $b"),
433 [(set GPR:$dst, (opnode GPR:$a, so_imm:$b))]>;
434 def rs : AI1<(ops GPR:$dst, GPR:$a, so_reg:$b),
435 !strconcat(opc, " $dst, $a, $b"),
436 [(set GPR:$dst, (opnode GPR:$a, so_reg:$b))]>;
437}
438
439/// AI1_unary_irs - Defines a set of (op {so_imm|r|so_reg}) patterns for unary
440/// ops.
441multiclass AI1_unary_irs<string opc, PatFrag opnode> {
442 def i : AI1<(ops GPR:$dst, so_imm:$a),
443 !strconcat(opc, " $dst, $a"),
444 [(set GPR:$dst, (opnode so_imm:$a))]>;
445 def r : AI1<(ops GPR:$dst, GPR:$a),
446 !strconcat(opc, " $dst, $a"),
447 [(set GPR:$dst, (opnode GPR:$a))]>;
448 def s : AI1<(ops GPR:$dst, so_reg:$a),
449 !strconcat(opc, " $dst, $a"),
450 [(set GPR:$dst, (opnode so_reg:$a))]>;
451}
452
453/// AI_unary_rrot - A unary operation with two forms: one whose operand is a
454/// register and one whose operand is a register rotated by 8/16/24.
455multiclass AI_unary_rrot<string opc, PatFrag opnode> {
456 def r : AI<(ops GPR:$dst, GPR:$Src),
457 !strconcat(opc, " $dst, $Src"),
458 [(set GPR:$dst, (opnode GPR:$Src))]>, Requires<[IsARM, HasV6]>;
459 def r_rot : AI<(ops GPR:$dst, GPR:$Src, i32imm:$rot),
460 !strconcat(opc, " $dst, $Src, ror $rot"),
461 [(set GPR:$dst, (opnode (rotr GPR:$Src, rot_imm:$rot)))]>,
462 Requires<[IsARM, HasV6]>;
463}
464
465/// AI_bin_rrot - A binary operation with two forms: one whose operand is a
466/// register and one whose operand is a register rotated by 8/16/24.
467multiclass AI_bin_rrot<string opc, PatFrag opnode> {
468 def rr : AI<(ops GPR:$dst, GPR:$LHS, GPR:$RHS),
469 !strconcat(opc, " $dst, $LHS, $RHS"),
470 [(set GPR:$dst, (opnode GPR:$LHS, GPR:$RHS))]>,
471 Requires<[IsARM, HasV6]>;
472 def rr_rot : AI<(ops GPR:$dst, GPR:$LHS, GPR:$RHS, i32imm:$rot),
473 !strconcat(opc, " $dst, $LHS, $RHS, ror $rot"),
474 [(set GPR:$dst, (opnode GPR:$LHS,
475 (rotr GPR:$RHS, rot_imm:$rot)))]>,
476 Requires<[IsARM, HasV6]>;
477}
478
Rafael Espindola90057aa2006-10-16 18:18:14 +0000479
Rafael Espindola15a6c3e2006-10-16 17:57:20 +0000480//===----------------------------------------------------------------------===//
481// Instructions
482//===----------------------------------------------------------------------===//
483
Evan Chenga8e29892007-01-19 07:51:42 +0000484//===----------------------------------------------------------------------===//
485// Miscellaneous Instructions.
486//
487def IMPLICIT_DEF_GPR :
488PseudoInst<(ops GPR:$rD),
489 "@ IMPLICIT_DEF_GPR $rD",
490 [(set GPR:$rD, (undef))]>;
Rafael Espindola687bc492006-08-24 13:45:55 +0000491
Rafael Espindola6f602de2006-08-24 16:13:15 +0000492
Evan Chenga8e29892007-01-19 07:51:42 +0000493/// CONSTPOOL_ENTRY - This instruction represents a floating constant pool in
494/// the function. The first operand is the ID# for this instruction, the second
495/// is the index into the MachineConstantPool that this is, the third is the
496/// size in bytes of this constant pool entry.
497def CONSTPOOL_ENTRY :
498PseudoInst<(ops cpinst_operand:$instid, cpinst_operand:$cpidx, i32imm:$size),
499 "${instid:label} ${cpidx:cpentry}", []>;
Rafael Espindola7bc59bc2006-05-14 22:18:28 +0000500
Evan Chenga8e29892007-01-19 07:51:42 +0000501def ADJCALLSTACKUP :
502PseudoInst<(ops i32imm:$amt),
503 "@ ADJCALLSTACKUP $amt",
504 [(ARMcallseq_end imm:$amt)]>, Imp<[SP],[SP]>;
Rafael Espindolacdda88c2006-08-24 17:19:08 +0000505
Evan Chenga8e29892007-01-19 07:51:42 +0000506def ADJCALLSTACKDOWN :
507PseudoInst<(ops i32imm:$amt),
508 "@ ADJCALLSTACKDOWN $amt",
509 [(ARMcallseq_start imm:$amt)]>, Imp<[SP],[SP]>;
Rafael Espindola3c000bf2006-08-21 22:00:32 +0000510
Evan Chenga8e29892007-01-19 07:51:42 +0000511def DWARF_LOC :
512PseudoInst<(ops i32imm:$line, i32imm:$col, i32imm:$file),
513 ".loc $file, $line, $col",
514 [(dwarf_loc (i32 imm:$line), (i32 imm:$col), (i32 imm:$file))]>;
Rafael Espindola4b20fbc2006-10-10 12:56:00 +0000515
Evan Chenga8e29892007-01-19 07:51:42 +0000516def PICADD : AI1<(ops GPR:$dst, GPR:$a, pclabel:$cp),
517 "\n$cp:\n\tadd $dst, pc, $a",
518 [(set GPR:$dst, (ARMpic_add GPR:$a, imm:$cp))]>;
519let AddedComplexity = 10 in
520def PICLD : AI2<(ops GPR:$dst, addrmodepc:$addr),
521 "\n${addr:label}:\n\tldr $dst, $addr",
522 [(set GPR:$dst, (load addrmodepc:$addr))]>;
Rafael Espindola84b19be2006-07-16 01:02:57 +0000523
Evan Chenga8e29892007-01-19 07:51:42 +0000524//===----------------------------------------------------------------------===//
525// Control Flow Instructions.
526//
Rafael Espindola9e071f02006-10-02 19:30:56 +0000527
Evan Chenga8e29892007-01-19 07:51:42 +0000528let isReturn = 1, isTerminator = 1 in
529 def BX_RET : AI<(ops), "bx lr", [(ARMretflag)]>;
Rafael Espindola27185192006-09-29 21:20:16 +0000530
Evan Chenga8e29892007-01-19 07:51:42 +0000531// FIXME: remove when we have a way to marking a MI with these properties.
532let isLoad = 1, isReturn = 1, isTerminator = 1 in
533 def LDM_RET : AI4<(ops addrmode4:$addr, reglist:$dst1, variable_ops),
534 "ldm${addr:submode} $addr, $dst1",
535 []>;
Rafael Espindolaa2845842006-10-05 16:48:49 +0000536
Evan Chenga8e29892007-01-19 07:51:42 +0000537let isCall = 1, noResults = 1,
538 Defs = [R0, R1, R2, R3, R12, LR,
539 D0, D1, D2, D3, D4, D5, D6, D7] in {
540 def BL : AI<(ops i32imm:$func, variable_ops),
541 "bl ${func:call}",
542 [(ARMcall tglobaladdr:$func)]>;
543 // ARMv5T and above
544 def BLX : AI<(ops GPR:$dst, variable_ops),
545 "blx $dst",
546 [(ARMcall GPR:$dst)]>, Requires<[IsARM, HasV5T]>;
547 // ARMv4T
548 def BX : AIx2<(ops GPR:$dst, variable_ops),
549 "mov lr, pc\n\tbx $dst",
550 [(ARMcall_nolink GPR:$dst)]>;
Rafael Espindola35574632006-07-18 17:00:30 +0000551}
Rafael Espindoladc124a22006-05-18 21:45:49 +0000552
Evan Chenga8e29892007-01-19 07:51:42 +0000553let isBranch = 1, isTerminator = 1, isBarrier = 1 in {
554 def B : AI<(ops brtarget:$dst), "b $dst",
555 [(br bb:$dst)]>;
556
557 def BR_JTr : JTI<(ops GPR:$dst, jtblock_operand:$jt, i32imm:$id),
558 "mov pc, $dst \n$jt",
559 [(ARMbrjt GPR:$dst, tjumptable:$jt, imm:$id)]>;
560 def BR_JTm : JTI2<(ops addrmode2:$dst, jtblock_operand:$jt, i32imm:$id),
561 "ldr pc, $dst \n$jt",
562 [(ARMbrjt (i32 (load addrmode2:$dst)), tjumptable:$jt,
563 imm:$id)]>;
564 def BR_JTadd : JTI1<(ops GPR:$dst, GPR:$idx, jtblock_operand:$jt, i32imm:$id),
565 "add pc, $dst, $idx \n$jt",
566 [(ARMbrjt (add GPR:$dst, GPR:$idx), tjumptable:$jt,
567 imm:$id)]>;
Rafael Espindola1ed3af12006-08-01 18:53:10 +0000568}
Rafael Espindola84b19be2006-07-16 01:02:57 +0000569
Evan Chenga8e29892007-01-19 07:51:42 +0000570let isBranch = 1, isTerminator = 1, noResults = 1, isBarrier = 1 in
571 def Bcc : AI<(ops brtarget:$dst, CCOp:$cc), "b$cc $dst",
572 [(ARMbrcond bb:$dst, imm:$cc)]>;
Rafael Espindola7bc59bc2006-05-14 22:18:28 +0000573
Evan Chenga8e29892007-01-19 07:51:42 +0000574//===----------------------------------------------------------------------===//
575// Load / store Instructions.
576//
Rafael Espindola82c678b2006-10-16 17:17:22 +0000577
Evan Chenga8e29892007-01-19 07:51:42 +0000578// Load
579let isLoad = 1 in {
580def LDR : AI2<(ops GPR:$dst, addrmode2:$addr),
581 "ldr $dst, $addr",
582 [(set GPR:$dst, (load addrmode2:$addr))]>;
Rafael Espindola82c678b2006-10-16 17:17:22 +0000583
Evan Chenga8e29892007-01-19 07:51:42 +0000584// Loads with zero extension
585def LDRH : AI3<(ops GPR:$dst, addrmode3:$addr),
586 "ldrh $dst, $addr",
587 [(set GPR:$dst, (zextloadi16 addrmode3:$addr))]>;
Rafael Espindola82c678b2006-10-16 17:17:22 +0000588
Evan Chenga8e29892007-01-19 07:51:42 +0000589def LDRB : AI2<(ops GPR:$dst, addrmode2:$addr),
590 "ldrb $dst, $addr",
591 [(set GPR:$dst, (zextloadi8 addrmode2:$addr))]>;
Rafael Espindola82c678b2006-10-16 17:17:22 +0000592
Evan Chenga8e29892007-01-19 07:51:42 +0000593// Loads with sign extension
594def LDRSH : AI3<(ops GPR:$dst, addrmode3:$addr),
595 "ldrsh $dst, $addr",
596 [(set GPR:$dst, (sextloadi16 addrmode3:$addr))]>;
Rafael Espindola7bc59bc2006-05-14 22:18:28 +0000597
Evan Chenga8e29892007-01-19 07:51:42 +0000598def LDRSB : AI3<(ops GPR:$dst, addrmode3:$addr),
599 "ldrsb $dst, $addr",
600 [(set GPR:$dst, (sextloadi8 addrmode3:$addr))]>;
Rafael Espindolac391d162006-10-23 20:34:27 +0000601
Evan Chenga8e29892007-01-19 07:51:42 +0000602// Load doubleword
603def LDRD : AI3<(ops GPR:$dst, addrmode3:$addr),
604 "ldrd $dst, $addr",
605 []>, Requires<[IsARM, HasV5T]>;
Rafael Espindolac391d162006-10-23 20:34:27 +0000606
Evan Chenga8e29892007-01-19 07:51:42 +0000607// Indexed loads
608def LDR_PRE : AI2pr<(ops GPR:$dst, GPR:$base_wb, addrmode2:$addr),
609 "ldr $dst, $addr!", "$addr.base = $base_wb", []>;
Rafael Espindoladc124a22006-05-18 21:45:49 +0000610
Evan Chenga8e29892007-01-19 07:51:42 +0000611def LDR_POST : AI2po<(ops GPR:$dst, GPR:$base_wb, GPR:$base, am2offset:$offset),
612 "ldr $dst, [$base], $offset", "$base = $base_wb", []>;
Rafael Espindola450856d2006-12-12 00:37:38 +0000613
Evan Chenga8e29892007-01-19 07:51:42 +0000614def LDRH_PRE : AI3pr<(ops GPR:$dst, GPR:$base_wb, addrmode3:$addr),
615 "ldrh $dst, $addr!", "$addr.base = $base_wb", []>;
Rafael Espindola4e307642006-09-08 16:59:47 +0000616
Evan Chenga8e29892007-01-19 07:51:42 +0000617def LDRH_POST : AI3po<(ops GPR:$dst, GPR:$base_wb, GPR:$base,am3offset:$offset),
618 "ldrh $dst, [$base], $offset", "$base = $base_wb", []>;
Lauro Ramos Venancio301009a2006-12-28 13:11:14 +0000619
Evan Chenga8e29892007-01-19 07:51:42 +0000620def LDRB_PRE : AI2pr<(ops GPR:$dst, GPR:$base_wb, addrmode2:$addr),
621 "ldrb $dst, $addr!", "$addr.base = $base_wb", []>;
Lauro Ramos Venancio301009a2006-12-28 13:11:14 +0000622
Evan Chenga8e29892007-01-19 07:51:42 +0000623def LDRB_POST : AI2po<(ops GPR:$dst, GPR:$base_wb, GPR:$base,am2offset:$offset),
624 "ldrb $dst, [$base], $offset", "$base = $base_wb", []>;
625
626def LDRSH_PRE : AI3pr<(ops GPR:$dst, GPR:$base_wb, addrmode3:$addr),
627 "ldrsh $dst, $addr!", "$addr.base = $base_wb", []>;
628
629def LDRSH_POST: AI3po<(ops GPR:$dst, GPR:$base_wb, GPR:$base,am3offset:$offset),
630 "ldrsh $dst, [$base], $offset", "$base = $base_wb", []>;
631
632def LDRSB_PRE : AI3pr<(ops GPR:$dst, GPR:$base_wb, addrmode3:$addr),
633 "ldrsb $dst, $addr!", "$addr.base = $base_wb", []>;
634
635def LDRSB_POST: AI3po<(ops GPR:$dst, GPR:$base_wb, GPR:$base,am3offset:$offset),
636 "ldrsb $dst, [$base], $offset", "$base = $base_wb", []>;
637} // isLoad
638
639// Store
640let isStore = 1 in {
641def STR : AI2<(ops GPR:$src, addrmode2:$addr),
642 "str $src, $addr",
643 [(store GPR:$src, addrmode2:$addr)]>;
644
645// Stores with truncate
646def STRH : AI3<(ops GPR:$src, addrmode3:$addr),
647 "strh $src, $addr",
648 [(truncstorei16 GPR:$src, addrmode3:$addr)]>;
649
650def STRB : AI2<(ops GPR:$src, addrmode2:$addr),
651 "strb $src, $addr",
652 [(truncstorei8 GPR:$src, addrmode2:$addr)]>;
653
654// Store doubleword
655def STRD : AI3<(ops GPR:$src, addrmode3:$addr),
656 "strd $src, $addr",
657 []>, Requires<[IsARM, HasV5T]>;
658
659// Indexed stores
660def STR_PRE : AI2pr<(ops GPR:$base_wb, GPR:$src, GPR:$base, am2offset:$offset),
661 "str $src, [$base, $offset]!", "$base = $base_wb",
662 [(set GPR:$base_wb,
663 (pre_store GPR:$src, GPR:$base, am2offset:$offset))]>;
664
665def STR_POST : AI2po<(ops GPR:$base_wb, GPR:$src, GPR:$base,am2offset:$offset),
666 "str $src, [$base], $offset", "$base = $base_wb",
667 [(set GPR:$base_wb,
668 (post_store GPR:$src, GPR:$base, am2offset:$offset))]>;
669
670def STRH_PRE : AI3pr<(ops GPR:$base_wb, GPR:$src, GPR:$base,am3offset:$offset),
671 "strh $src, [$base, $offset]!", "$base = $base_wb",
672 [(set GPR:$base_wb,
673 (pre_truncsti16 GPR:$src, GPR:$base,am3offset:$offset))]>;
674
675def STRH_POST: AI3po<(ops GPR:$base_wb, GPR:$src, GPR:$base,am3offset:$offset),
676 "strh $src, [$base], $offset", "$base = $base_wb",
677 [(set GPR:$base_wb, (post_truncsti16 GPR:$src,
678 GPR:$base, am3offset:$offset))]>;
679
680def STRB_PRE : AI2pr<(ops GPR:$base_wb, GPR:$src, GPR:$base,am2offset:$offset),
681 "strb $src, [$base, $offset]!", "$base = $base_wb",
682 [(set GPR:$base_wb, (pre_truncsti8 GPR:$src,
683 GPR:$base, am2offset:$offset))]>;
684
685def STRB_POST: AI2po<(ops GPR:$base_wb, GPR:$src, GPR:$base,am2offset:$offset),
686 "strb $src, [$base], $offset", "$base = $base_wb",
687 [(set GPR:$base_wb, (post_truncsti8 GPR:$src,
688 GPR:$base, am2offset:$offset))]>;
689} // isStore
690
691//===----------------------------------------------------------------------===//
692// Load / store multiple Instructions.
693//
694
695let isLoad = 1 in
696def LDM : AI4<(ops addrmode4:$addr, reglist:$dst1, variable_ops),
697 "ldm${addr:submode} $addr, $dst1",
698 []>;
699
700let isStore = 1 in
701def STM : AI4<(ops addrmode4:$addr, reglist:$src1, variable_ops),
702 "stm${addr:submode} $addr, $src1",
703 []>;
704
705//===----------------------------------------------------------------------===//
706// Move Instructions.
707//
708
709def MOVrr : AI1<(ops GPR:$dst, GPR:$src),
710 "mov $dst, $src", []>;
711def MOVrs : AI1<(ops GPR:$dst, so_reg:$src),
712 "mov $dst, $src", [(set GPR:$dst, so_reg:$src)]>;
713def MOVri : AI1<(ops GPR:$dst, so_imm:$src),
714 "mov $dst, $src", [(set GPR:$dst, so_imm:$src)]>;
715
716// These aren't really mov instructions, but we have to define them this way
717// due to flag operands.
718
719def MOVsrl_flag : AI1<(ops GPR:$dst, GPR:$src),
720 "movs $dst, $src, lsr #1",
721 [(set GPR:$dst, (ARMsrl_flag GPR:$src))]>;
722def MOVsra_flag : AI1<(ops GPR:$dst, GPR:$src),
723 "movs $dst, $src, asr #1",
724 [(set GPR:$dst, (ARMsra_flag GPR:$src))]>;
725def MOVrrx : AI1<(ops GPR:$dst, GPR:$src),
726 "mov $dst, $src, rrx",
727 [(set GPR:$dst, (ARMrrx GPR:$src))]>;
728
729
730//===----------------------------------------------------------------------===//
731// Extend Instructions.
732//
733
734// Sign extenders
735
736defm SXTB : AI_unary_rrot<"sxtb", UnOpFrag<(sext_inreg node:$Src, i8)>>;
737defm SXTH : AI_unary_rrot<"sxth", UnOpFrag<(sext_inreg node:$Src, i16)>>;
738
739defm SXTAB : AI_bin_rrot<"sxtab",
740 BinOpFrag<(add node:$LHS, (sext_inreg node:$RHS, i8))>>;
741defm SXTAH : AI_bin_rrot<"sxtah",
742 BinOpFrag<(add node:$LHS, (sext_inreg node:$RHS,i16))>>;
743
744// TODO: SXT(A){B|H}16
745
746// Zero extenders
747
748let AddedComplexity = 16 in {
749defm UXTB : AI_unary_rrot<"uxtb" , UnOpFrag<(and node:$Src, 0x000000FF)>>;
750defm UXTH : AI_unary_rrot<"uxth" , UnOpFrag<(and node:$Src, 0x0000FFFF)>>;
751defm UXTB16 : AI_unary_rrot<"uxtb16", UnOpFrag<(and node:$Src, 0x00FF00FF)>>;
752
753def : ARMV6Pat<(and (shl GPR:$Src, 8), 0xFF00FF),
754 (UXTB16r_rot GPR:$Src, 24)>;
755def : ARMV6Pat<(and (srl GPR:$Src, 8), 0xFF00FF),
756 (UXTB16r_rot GPR:$Src, 8)>;
757
758defm UXTAB : AI_bin_rrot<"uxtab",
759 BinOpFrag<(add node:$LHS, (and node:$RHS, 0x00FF))>>;
760defm UXTAH : AI_bin_rrot<"uxtah",
761 BinOpFrag<(add node:$LHS, (and node:$RHS, 0xFFFF))>>;
Rafael Espindola3c000bf2006-08-21 22:00:32 +0000762}
763
Evan Chenga8e29892007-01-19 07:51:42 +0000764// This isn't safe in general, the add is two 16-bit units, not a 32-bit add.
765//defm UXTAB16 : xxx<"uxtab16", 0xff00ff>;
Rafael Espindola817e7fd2006-09-11 19:24:19 +0000766
Evan Chenga8e29892007-01-19 07:51:42 +0000767// TODO: UXT(A){B|H}16
768
769//===----------------------------------------------------------------------===//
770// Arithmetic Instructions.
771//
772
773defm ADD : AI1_bin_irs<"add" , BinOpFrag<(add node:$LHS, node:$RHS)>>;
774defm ADDS : AI1_bin_irs<"adds", BinOpFrag<(addc node:$LHS, node:$RHS)>>;
775defm ADC : AI1_bin_irs<"adc" , BinOpFrag<(adde node:$LHS, node:$RHS)>>;
776defm SUB : AI1_bin_irs<"sub" , BinOpFrag<(sub node:$LHS, node:$RHS)>>;
777defm SUBS : AI1_bin_irs<"subs", BinOpFrag<(subc node:$LHS, node:$RHS)>>;
778defm SBC : AI1_bin_irs<"sbc" , BinOpFrag<(sube node:$LHS, node:$RHS)>>;
779
780// These don't define reg/reg forms, because they are handled above.
781defm RSB : AI1_bin_is <"rsb" , BinOpFrag<(sub node:$RHS, node:$LHS)>>;
782defm RSBS : AI1_bin_is <"rsbs", BinOpFrag<(subc node:$RHS, node:$LHS)>>;
783defm RSC : AI1_bin_is <"rsc" , BinOpFrag<(sube node:$RHS, node:$LHS)>>;
784
785// (sub X, imm) gets canonicalized to (add X, -imm). Match this form.
786def : ARMPat<(add GPR:$src, so_imm_neg:$imm),
787 (SUBri GPR:$src, so_imm_neg:$imm)>;
788
789//def : ARMPat<(addc GPR:$src, so_imm_neg:$imm),
790// (SUBSri GPR:$src, so_imm_neg:$imm)>;
791//def : ARMPat<(adde GPR:$src, so_imm_neg:$imm),
792// (SBCri GPR:$src, so_imm_neg:$imm)>;
793
794// Note: These are implemented in C++ code, because they have to generate
795// ADD/SUBrs instructions, which use a complex pattern that a xform function
796// cannot produce.
797// (mul X, 2^n+1) -> (add (X << n), X)
798// (mul X, 2^n-1) -> (rsb X, (X << n))
799
800
801//===----------------------------------------------------------------------===//
802// Bitwise Instructions.
803//
804
805defm AND : AI1_bin_irs<"and", BinOpFrag<(and node:$LHS, node:$RHS)>>;
806defm ORR : AI1_bin_irs<"orr", BinOpFrag<(or node:$LHS, node:$RHS)>>;
807defm EOR : AI1_bin_irs<"eor", BinOpFrag<(xor node:$LHS, node:$RHS)>>;
808defm BIC : AI1_bin_irs<"bic", BinOpFrag<(and node:$LHS, (not node:$RHS))>>;
809
810defm MVN : AI1_unary_irs<"mvn", not>;
811
812def : ARMPat<(i32 so_imm_not:$imm),
813 (MVNi so_imm_not:$imm)>;
814
815def : ARMPat<(and GPR:$src, so_imm_not:$imm),
816 (BICri GPR:$src, so_imm_not:$imm)>;
817
818//===----------------------------------------------------------------------===//
819// Multiply Instructions.
820//
821
822// AI_orr - Defines a (op r, r) pattern.
823class AI_orr<string opc, SDNode opnode>
824 : AI<(ops GPR:$dst, GPR:$a, GPR:$b),
825 !strconcat(opc, " $dst, $a, $b"),
826 [(set GPR:$dst, (opnode GPR:$a, GPR:$b))]>;
827
828// AI_oorr - Defines a (op (op r, r), r) pattern.
829class AI_oorr<string opc, SDNode opnode1, SDNode opnode2>
830 : AI<(ops GPR:$dst, GPR:$a, GPR:$b, GPR:$c),
831 !strconcat(opc, " $dst, $a, $b, $c"),
832 [(set GPR:$dst, (opnode1 (opnode2 GPR:$a, GPR:$b), GPR:$c))]>;
833
834def MUL : AI_orr<"mul", mul>;
835def MLA : AI_oorr<"mla", add, mul>;
836
837// Extra precision multiplies with low / high results
838def SMULL : AI<(ops GPR:$ldst, GPR:$hdst, GPR:$a, GPR:$b),
839 "smull $ldst, $hdst, $a, $b",
840 []>;
841
842def UMULL : AI<(ops GPR:$ldst, GPR:$hdst, GPR:$a, GPR:$b),
843 "umull $ldst, $hdst, $a, $b",
844 []>;
845
846// Multiply + accumulate
847def SMLAL : AI<(ops GPR:$ldst, GPR:$hdst, GPR:$a, GPR:$b),
848 "smlal $ldst, $hdst, $a, $b",
849 []>;
850
851def UMLAL : AI<(ops GPR:$ldst, GPR:$hdst, GPR:$a, GPR:$b),
852 "umlal $ldst, $hdst, $a, $b",
853 []>;
854
855def UMAAL : AI<(ops GPR:$ldst, GPR:$hdst, GPR:$a, GPR:$b),
856 "umaal $ldst, $hdst, $a, $b",
857 []>, Requires<[IsARM, HasV6]>;
858
859// Most significant word multiply
860def SMMUL : AI_orr<"smmul", mulhs>, Requires<[IsARM, HasV6]>;
861def SMMLA : AI_oorr<"smmla", add, mulhs>, Requires<[IsARM, HasV6]>;
862
863
864def SMMLS : AI<(ops GPR:$dst, GPR:$a, GPR:$b, GPR:$c),
865 "smmls $dst, $a, $b, $c",
866 [(set GPR:$dst, (sub GPR:$c, (mulhs GPR:$a, GPR:$b)))]>,
867 Requires<[IsARM, HasV6]>;
868
869multiclass AI_smul<string opc, PatFrag opnode> {
Evan Cheng34b12d22007-01-19 20:27:35 +0000870 def BB : AI<(ops GPR:$dst, GPR:$a, GPR:$b),
871 !strconcat(opc, "bb $dst, $a, $b"),
872 [(set GPR:$dst, (opnode (sext_inreg GPR:$a, i16),
873 (sext_inreg GPR:$b, i16)))]>,
874 Requires<[IsARM, HasV5TE]>;
875 def BT : AI<(ops GPR:$dst, GPR:$a, GPR:$b),
876 !strconcat(opc, "bt $dst, $a, $b"),
877 [(set GPR:$dst, (opnode (sext_inreg GPR:$a, i16),
878 (sra GPR:$b, 16)))]>,
879 Requires<[IsARM, HasV5TE]>;
880 def TB : AI<(ops GPR:$dst, GPR:$a, GPR:$b),
881 !strconcat(opc, "tb $dst, $a, $b"),
882 [(set GPR:$dst, (opnode (sra GPR:$a, 16),
883 (sext_inreg GPR:$b, i16)))]>,
884 Requires<[IsARM, HasV5TE]>;
Evan Chenga8e29892007-01-19 07:51:42 +0000885 def TT : AI<(ops GPR:$dst, GPR:$a, GPR:$b),
886 !strconcat(opc, "tt $dst, $a, $b"),
887 [(set GPR:$dst, (opnode (sra GPR:$a, 16),
888 (sra GPR:$b, 16)))]>,
889 Requires<[IsARM, HasV5TE]>;
Evan Cheng34b12d22007-01-19 20:27:35 +0000890 def WB : AI<(ops GPR:$dst, GPR:$a, GPR:$b),
891 !strconcat(opc, "wb $dst, $a, $b"),
892 [(set GPR:$dst, (sra (opnode GPR:$a,
893 (sext_inreg GPR:$b, i16)), 16))]>,
894 Requires<[IsARM, HasV5TE]>;
Evan Chenga8e29892007-01-19 07:51:42 +0000895 def WT : AI<(ops GPR:$dst, GPR:$a, GPR:$b),
896 !strconcat(opc, "wt $dst, $a, $b"),
897 [(set GPR:$dst, (sra (opnode GPR:$a,
898 (sra GPR:$b, 16)), 16))]>,
899 Requires<[IsARM, HasV5TE]>;
Rafael Espindolabec2e382006-10-16 16:33:29 +0000900}
901
Evan Chenga8e29892007-01-19 07:51:42 +0000902multiclass AI_smla<string opc, PatFrag opnode> {
Evan Cheng34b12d22007-01-19 20:27:35 +0000903 def BB : AI<(ops GPR:$dst, GPR:$a, GPR:$b, GPR:$acc),
904 !strconcat(opc, "bb $dst, $a, $b, $acc"),
905 [(set GPR:$dst, (add GPR:$acc,
906 (opnode (sext_inreg GPR:$a, i16),
907 (sext_inreg GPR:$b, i16))))]>,
908 Requires<[IsARM, HasV5TE]>;
909 def BT : AI<(ops GPR:$dst, GPR:$a, GPR:$b, GPR:$acc),
910 !strconcat(opc, "bt $dst, $a, $b, $acc"),
911 [(set GPR:$dst, (add GPR:$acc, (opnode (sext_inreg GPR:$a, i16),
Evan Chenga8e29892007-01-19 07:51:42 +0000912 (sra GPR:$b, 16))))]>,
Evan Cheng34b12d22007-01-19 20:27:35 +0000913 Requires<[IsARM, HasV5TE]>;
914 def TB : AI<(ops GPR:$dst, GPR:$a, GPR:$b, GPR:$acc),
915 !strconcat(opc, "tb $dst, $a, $b, $acc"),
916 [(set GPR:$dst, (add GPR:$acc, (opnode (sra GPR:$a, 16),
917 (sext_inreg GPR:$b, i16))))]>,
918 Requires<[IsARM, HasV5TE]>;
Evan Chenga8e29892007-01-19 07:51:42 +0000919 def TT : AI<(ops GPR:$dst, GPR:$a, GPR:$b, GPR:$acc),
920 !strconcat(opc, "tt $dst, $a, $b, $acc"),
921 [(set GPR:$dst, (add GPR:$acc, (opnode (sra GPR:$a, 16),
922 (sra GPR:$b, 16))))]>,
923 Requires<[IsARM, HasV5TE]>;
924
Evan Cheng34b12d22007-01-19 20:27:35 +0000925 def WB : AI<(ops GPR:$dst, GPR:$a, GPR:$b, GPR:$acc),
926 !strconcat(opc, "wb $dst, $a, $b, $acc"),
927 [(set GPR:$dst, (add GPR:$acc, (sra (opnode GPR:$a,
928 (sext_inreg GPR:$b, i16)), 16)))]>,
929 Requires<[IsARM, HasV5TE]>;
Evan Chenga8e29892007-01-19 07:51:42 +0000930 def WT : AI<(ops GPR:$dst, GPR:$a, GPR:$b, GPR:$acc),
931 !strconcat(opc, "wt $dst, $a, $b, $acc"),
932 [(set GPR:$dst, (add GPR:$acc, (sra (opnode GPR:$a,
933 (sra GPR:$b, 16)), 16)))]>,
934 Requires<[IsARM, HasV5TE]>;
Rafael Espindola70673a12006-10-18 16:20:57 +0000935}
Rafael Espindola5c2aa0a2006-09-08 12:47:03 +0000936
Evan Chenga8e29892007-01-19 07:51:42 +0000937defm SMUL : AI_smul<"smul", BinOpFrag<(mul node:$LHS, node:$RHS)>>;
938defm SMLA : AI_smla<"smla", BinOpFrag<(mul node:$LHS, node:$RHS)>>;
Rafael Espindola27185192006-09-29 21:20:16 +0000939
Evan Chenga8e29892007-01-19 07:51:42 +0000940// TODO: Halfword multiple accumulate long: SMLAL<x><y>
941// TODO: Dual halfword multiple: SMUAD, SMUSD, SMLAD, SMLSD, SMLALD, SMLSLD
Rafael Espindola42b62f32006-10-13 13:14:59 +0000942
Evan Chenga8e29892007-01-19 07:51:42 +0000943//===----------------------------------------------------------------------===//
944// Misc. Arithmetic Instructions.
945//
Rafael Espindola0d9fe762006-10-10 16:33:47 +0000946
Evan Chenga8e29892007-01-19 07:51:42 +0000947def CLZ : AI<(ops GPR:$dst, GPR:$src),
948 "clz $dst, $src",
949 [(set GPR:$dst, (ctlz GPR:$src))]>, Requires<[IsARM, HasV5T]>;
Rafael Espindola199dd672006-10-17 13:13:23 +0000950
Evan Chenga8e29892007-01-19 07:51:42 +0000951def REV : AI<(ops GPR:$dst, GPR:$src),
952 "rev $dst, $src",
953 [(set GPR:$dst, (bswap GPR:$src))]>, Requires<[IsARM, HasV6]>;
Rafael Espindola199dd672006-10-17 13:13:23 +0000954
Evan Chenga8e29892007-01-19 07:51:42 +0000955def REV16 : AI<(ops GPR:$dst, GPR:$src),
956 "rev16 $dst, $src",
957 [(set GPR:$dst,
958 (or (and (srl GPR:$src, 8), 0xFF),
959 (or (and (shl GPR:$src, 8), 0xFF00),
960 (or (and (srl GPR:$src, 8), 0xFF0000),
961 (and (shl GPR:$src, 8), 0xFF000000)))))]>,
962 Requires<[IsARM, HasV6]>;
Rafael Espindola27185192006-09-29 21:20:16 +0000963
Evan Chenga8e29892007-01-19 07:51:42 +0000964def REVSH : AI<(ops GPR:$dst, GPR:$src),
965 "revsh $dst, $src",
966 [(set GPR:$dst,
967 (sext_inreg
968 (or (srl (and GPR:$src, 0xFFFF), 8),
969 (shl GPR:$src, 8)), i16))]>,
970 Requires<[IsARM, HasV6]>;
Rafael Espindola27185192006-09-29 21:20:16 +0000971
Evan Chenga8e29892007-01-19 07:51:42 +0000972def PKHBT : AI<(ops GPR:$dst, GPR:$src1, GPR:$src2, i32imm:$shamt),
973 "pkhbt $dst, $src1, $src2, LSL $shamt",
974 [(set GPR:$dst, (or (and GPR:$src1, 0xFFFF),
975 (and (shl GPR:$src2, (i32 imm:$shamt)),
976 0xFFFF0000)))]>,
977 Requires<[IsARM, HasV6]>;
Rafael Espindola27185192006-09-29 21:20:16 +0000978
Evan Chenga8e29892007-01-19 07:51:42 +0000979// Alternate cases for PKHBT where identities eliminate some nodes.
980def : ARMV6Pat<(or (and GPR:$src1, 0xFFFF), (and GPR:$src2, 0xFFFF0000)),
981 (PKHBT GPR:$src1, GPR:$src2, 0)>;
982def : ARMV6Pat<(or (and GPR:$src1, 0xFFFF), (shl GPR:$src2, imm16_31:$shamt)),
983 (PKHBT GPR:$src1, GPR:$src2, imm16_31:$shamt)>;
Rafael Espindola9e071f02006-10-02 19:30:56 +0000984
Rafael Espindolaa2845842006-10-05 16:48:49 +0000985
Evan Chenga8e29892007-01-19 07:51:42 +0000986def PKHTB : AI<(ops GPR:$dst, GPR:$src1, GPR:$src2, i32imm:$shamt),
987 "pkhtb $dst, $src1, $src2, ASR $shamt",
988 [(set GPR:$dst, (or (and GPR:$src1, 0xFFFF0000),
989 (and (sra GPR:$src2, imm16_31:$shamt),
990 0xFFFF)))]>, Requires<[IsARM, HasV6]>;
Rafael Espindola9e071f02006-10-02 19:30:56 +0000991
Evan Chenga8e29892007-01-19 07:51:42 +0000992// Alternate cases for PKHTB where identities eliminate some nodes. Note that
993// a shift amount of 0 is *not legal* here, it is PKHBT instead.
994def : ARMV6Pat<(or (and GPR:$src1, 0xFFFF0000), (srl GPR:$src2, 16)),
995 (PKHTB GPR:$src1, GPR:$src2, 16)>;
996def : ARMV6Pat<(or (and GPR:$src1, 0xFFFF0000),
997 (and (srl GPR:$src2, imm1_15:$shamt), 0xFFFF)),
998 (PKHTB GPR:$src1, GPR:$src2, imm1_15:$shamt)>;
Rafael Espindolab47e1d02006-10-10 18:55:14 +0000999
Rafael Espindolad9ae7782006-10-07 13:46:42 +00001000
Evan Chenga8e29892007-01-19 07:51:42 +00001001//===----------------------------------------------------------------------===//
1002// Comparison Instructions...
1003//
Rafael Espindolab47e1d02006-10-10 18:55:14 +00001004
Evan Chenga8e29892007-01-19 07:51:42 +00001005defm CMP : AI1_bin0_irs<"cmp", BinOpFrag<(ARMcmp node:$LHS, node:$RHS)>>;
1006defm CMN : AI1_bin0_irs<"cmn", BinOpFrag<(ARMcmp node:$LHS,(ineg node:$RHS))>>;
Rafael Espindolae5bbd6d2006-10-07 14:24:52 +00001007
Evan Chenga8e29892007-01-19 07:51:42 +00001008def : ARMPat<(ARMcmp GPR:$src, so_imm_neg:$imm),
1009 (CMNri GPR:$src, so_imm_neg:$imm)>;
Rafael Espindola493a7fc2006-10-10 20:38:57 +00001010
Evan Chenga8e29892007-01-19 07:51:42 +00001011// Note that TST/TEQ don't set all the same flags that CMP does!
1012def TSTrr : AI1<(ops GPR:$a, so_reg:$b), "tst $a, $b", []>;
1013def TSTri : AI1<(ops GPR:$a, so_imm:$b), "tst $a, $b", []>;
1014def TEQrr : AI1<(ops GPR:$a, so_reg:$b), "teq $a, $b", []>;
1015def TEQri : AI1<(ops GPR:$a, so_imm:$b), "teq $a, $b", []>;
Rafael Espindolae5bbd6d2006-10-07 14:24:52 +00001016
Evan Chenga8e29892007-01-19 07:51:42 +00001017// Conditional moves
1018def MOVCCr : AI<(ops GPR:$dst, GPR:$false, GPR:$true, CCOp:$cc),
1019 "mov$cc $dst, $true",
1020 [(set GPR:$dst, (ARMcmov GPR:$false, GPR:$true, imm:$cc))]>,
1021 RegConstraint<"$false = $dst">;
Rafael Espindola493a7fc2006-10-10 20:38:57 +00001022
Evan Chenga8e29892007-01-19 07:51:42 +00001023def MOVCCs : AI<(ops GPR:$dst, GPR:$false, so_reg:$true, CCOp:$cc),
1024 "mov$cc $dst, $true",
1025 [(set GPR:$dst, (ARMcmov GPR:$false, so_reg:$true,imm:$cc))]>,
1026 RegConstraint<"$false = $dst">;
Rafael Espindola2dc0f2b2006-10-09 17:50:29 +00001027
Evan Chenga8e29892007-01-19 07:51:42 +00001028def MOVCCi : AI<(ops GPR:$dst, GPR:$false, so_imm:$true, CCOp:$cc),
1029 "mov$cc $dst, $true",
1030 [(set GPR:$dst, (ARMcmov GPR:$false, so_imm:$true,imm:$cc))]>,
1031 RegConstraint<"$false = $dst">;
Rafael Espindolad9ae7782006-10-07 13:46:42 +00001032
Rafael Espindola4b20fbc2006-10-10 12:56:00 +00001033
Evan Chenga8e29892007-01-19 07:51:42 +00001034// LEApcrel - Load a pc-relative address into a register without offending the
1035// assembler.
1036def LEApcrel : AI1<(ops GPR:$dst, i32imm:$label),
1037 !strconcat(!strconcat(".set PCRELV${:uid}, ($label-(",
1038 "${:private}PCRELL${:uid}+8))\n"),
1039 !strconcat("${:private}PCRELL${:uid}:\n\t",
1040 "add $dst, pc, #PCRELV${:uid}")),
1041 []>;
Rafael Espindola667c3492006-10-10 19:35:01 +00001042
Evan Chenga8e29892007-01-19 07:51:42 +00001043def LEApcrelJT : AI1<(ops GPR:$dst, i32imm:$label, i32imm:$id),
1044 !strconcat(!strconcat(".set PCRELV${:uid}, (${label}_${id:no_hash}-(",
1045 "${:private}PCRELL${:uid}+8))\n"),
1046 !strconcat("${:private}PCRELL${:uid}:\n\t",
1047 "add $dst, pc, #PCRELV${:uid}")),
1048 []>;
Rafael Espindolac01c87c2006-10-17 20:33:13 +00001049
Evan Chenga8e29892007-01-19 07:51:42 +00001050//===----------------------------------------------------------------------===//
1051// Non-Instruction Patterns
1052//
Rafael Espindola5aca9272006-10-07 14:03:39 +00001053
Evan Chenga8e29892007-01-19 07:51:42 +00001054// ConstantPool, GlobalAddress, and JumpTable
1055def : ARMPat<(ARMWrapper tglobaladdr :$dst), (LEApcrel tglobaladdr :$dst)>;
1056def : ARMPat<(ARMWrapper tconstpool :$dst), (LEApcrel tconstpool :$dst)>;
1057def : ARMPat<(ARMWrapperJT tjumptable:$dst, imm:$id),
1058 (LEApcrelJT tjumptable:$dst, imm:$id)>;
Rafael Espindola5aca9272006-10-07 14:03:39 +00001059
Evan Chenga8e29892007-01-19 07:51:42 +00001060// Large immediate handling.
Rafael Espindola0505be02006-10-16 21:10:32 +00001061
Evan Chenga8e29892007-01-19 07:51:42 +00001062// Two piece so_imms.
1063def : ARMPat<(i32 so_imm2part:$src),
1064 (ORRri (MOVri (so_imm2part_1 imm:$src)),
1065 (so_imm2part_2 imm:$src))>;
Rafael Espindolaf621abc2006-10-17 13:36:07 +00001066
Evan Chenga8e29892007-01-19 07:51:42 +00001067def : ARMPat<(or GPR:$LHS, so_imm2part:$RHS),
1068 (ORRri (ORRri GPR:$LHS, (so_imm2part_1 imm:$RHS)),
1069 (so_imm2part_2 imm:$RHS))>;
1070def : ARMPat<(xor GPR:$LHS, so_imm2part:$RHS),
1071 (EORri (EORri GPR:$LHS, (so_imm2part_1 imm:$RHS)),
1072 (so_imm2part_2 imm:$RHS))>;
Rafael Espindolaf621abc2006-10-17 13:36:07 +00001073
Evan Chenga8e29892007-01-19 07:51:42 +00001074// TODO: add,sub,and, 3-instr forms?
Rafael Espindola0505be02006-10-16 21:10:32 +00001075
Rafael Espindola24357862006-10-19 17:05:03 +00001076
Evan Chenga8e29892007-01-19 07:51:42 +00001077// Direct calls
1078def : ARMPat<(ARMcall texternalsym:$func), (BL texternalsym:$func)>;
Rafael Espindola9dca7ad2006-11-01 14:13:27 +00001079
Evan Chenga8e29892007-01-19 07:51:42 +00001080// zextload i1 -> zextload i8
1081def : ARMPat<(zextloadi1 addrmode2:$addr), (LDRB addrmode2:$addr)>;
Lauro Ramos Venancioa8f9f4a2006-12-26 19:30:42 +00001082
Evan Chenga8e29892007-01-19 07:51:42 +00001083// extload -> zextload
1084def : ARMPat<(extloadi1 addrmode2:$addr), (LDRB addrmode2:$addr)>;
1085def : ARMPat<(extloadi8 addrmode2:$addr), (LDRB addrmode2:$addr)>;
1086def : ARMPat<(extloadi16 addrmode3:$addr), (LDRH addrmode3:$addr)>;
Rafael Espindola9dca7ad2006-11-01 14:13:27 +00001087
Evan Chenga8e29892007-01-19 07:51:42 +00001088// truncstore i1 -> truncstore i8
1089def : Pat<(truncstorei1 GPR:$src, addrmode2:$dst),
1090 (STRB GPR:$src, addrmode2:$dst)>;
1091def : Pat<(pre_truncsti1 GPR:$src, GPR:$base, am2offset:$offset),
1092 (STRB_PRE GPR:$src, GPR:$base, am2offset:$offset)>;
1093def : Pat<(post_truncsti1 GPR:$src, GPR:$base, am2offset:$offset),
1094 (STRB_POST GPR:$src, GPR:$base, am2offset:$offset)>;
1095
Evan Cheng34b12d22007-01-19 20:27:35 +00001096// smul* and smla*
1097def : ARMV5TEPat<(mul (sra (shl GPR:$a, 16), 16), (sra (shl GPR:$b, 16), 16)),
1098 (SMULBB GPR:$a, GPR:$b)>;
1099def : ARMV5TEPat<(mul sext_16_node:$a, sext_16_node:$b),
1100 (SMULBB GPR:$a, GPR:$b)>;
1101def : ARMV5TEPat<(mul (sra (shl GPR:$a, 16), 16), (sra GPR:$b, 16)),
1102 (SMULBT GPR:$a, GPR:$b)>;
1103def : ARMV5TEPat<(mul sext_16_node:$a, (sra GPR:$b, 16)),
1104 (SMULBT GPR:$a, GPR:$b)>;
1105def : ARMV5TEPat<(mul (sra GPR:$a, 16), (sra (shl GPR:$b, 16), 16)),
1106 (SMULTB GPR:$a, GPR:$b)>;
1107def : ARMV5TEPat<(mul (sra GPR:$a, 16), sext_16_node:$b),
1108 (SMULTB GPR:$a, GPR:$b)>;
1109def : ARMV5TEPat<(sra (mul GPR:$a, (sra (shl GPR:$b, 16), 16)), 16),
1110 (SMULWB GPR:$a, GPR:$b)>;
1111def : ARMV5TEPat<(sra (mul GPR:$a, sext_16_node:$b), 16),
1112 (SMULWB GPR:$a, GPR:$b)>;
1113
1114def : ARMV5TEPat<(add GPR:$acc,
1115 (mul (sra (shl GPR:$a, 16), 16),
1116 (sra (shl GPR:$b, 16), 16))),
1117 (SMLABB GPR:$a, GPR:$b, GPR:$acc)>;
1118def : ARMV5TEPat<(add GPR:$acc,
1119 (mul sext_16_node:$a, sext_16_node:$b)),
1120 (SMLABB GPR:$a, GPR:$b, GPR:$acc)>;
1121def : ARMV5TEPat<(add GPR:$acc,
1122 (mul (sra (shl GPR:$a, 16), 16), (sra GPR:$b, 16))),
1123 (SMLABT GPR:$a, GPR:$b, GPR:$acc)>;
1124def : ARMV5TEPat<(add GPR:$acc,
1125 (mul sext_16_node:$a, (sra GPR:$b, 16))),
1126 (SMLABT GPR:$a, GPR:$b, GPR:$acc)>;
1127def : ARMV5TEPat<(add GPR:$acc,
1128 (mul (sra GPR:$a, 16), (sra (shl GPR:$b, 16), 16))),
1129 (SMLATB GPR:$a, GPR:$b, GPR:$acc)>;
1130def : ARMV5TEPat<(add GPR:$acc,
1131 (mul (sra GPR:$a, 16), sext_16_node:$b)),
1132 (SMLATB GPR:$a, GPR:$b, GPR:$acc)>;
1133def : ARMV5TEPat<(add GPR:$acc,
1134 (sra (mul GPR:$a, (sra (shl GPR:$b, 16), 16)), 16)),
1135 (SMLAWB GPR:$a, GPR:$b, GPR:$acc)>;
1136def : ARMV5TEPat<(add GPR:$acc,
1137 (sra (mul GPR:$a, sext_16_node:$b), 16)),
1138 (SMLAWB GPR:$a, GPR:$b, GPR:$acc)>;
1139
Evan Chenga8e29892007-01-19 07:51:42 +00001140//===----------------------------------------------------------------------===//
1141// Thumb Support
1142//
1143
1144include "ARMInstrThumb.td"
1145
1146//===----------------------------------------------------------------------===//
1147// Floating Point Support
1148//
1149
1150include "ARMInstrVFP.td"