blob: c9b11419f2a9a2b43691e01909630e91c77303c7 [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001//===- ARMInstrInfo.td - Target Description for ARM Target -*- tablegen -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner081ce942007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file describes the ARM instructions in TableGen format.
11//
12//===----------------------------------------------------------------------===//
13
14//===----------------------------------------------------------------------===//
15// ARM specific DAG Nodes.
16//
17
18// Type profiles.
Bill Wendling7173da52007-11-13 09:19:02 +000019def SDT_ARMCallSeqStart : SDCallSeqStart<[ SDTCisVT<0, i32> ]>;
20def SDT_ARMCallSeqEnd : SDCallSeqEnd<[ SDTCisVT<0, i32>, SDTCisVT<1, i32> ]>;
Dan Gohmanf17a25c2007-07-18 16:29:46 +000021
22def SDT_ARMSaveCallPC : SDTypeProfile<0, 1, []>;
23
24def SDT_ARMcall : SDTypeProfile<0, -1, [SDTCisInt<0>]>;
25
26def SDT_ARMCMov : SDTypeProfile<1, 3,
27 [SDTCisSameAs<0, 1>, SDTCisSameAs<0, 2>,
28 SDTCisVT<3, i32>]>;
29
30def 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
42def SDT_ARMThreadPointer : SDTypeProfile<1, 0, [SDTCisPtrTy<0>]>;
43
44// Node definitions.
45def ARMWrapper : SDNode<"ARMISD::Wrapper", SDTIntUnaryOp>;
46def ARMWrapperJT : SDNode<"ARMISD::WrapperJT", SDTIntBinOp>;
47
Bill Wendling7173da52007-11-13 09:19:02 +000048def ARMcallseq_start : SDNode<"ISD::CALLSEQ_START", SDT_ARMCallSeqStart,
Dan Gohmanf17a25c2007-07-18 16:29:46 +000049 [SDNPHasChain, SDNPOutFlag]>;
Bill Wendling7173da52007-11-13 09:19:02 +000050def ARMcallseq_end : SDNode<"ISD::CALLSEQ_END", SDT_ARMCallSeqEnd,
Bill Wendling22f8deb2007-11-13 00:44:25 +000051 [SDNPHasChain, SDNPOptInFlag, SDNPOutFlag]>;
Dan Gohmanf17a25c2007-07-18 16:29:46 +000052
53def ARMcall : SDNode<"ARMISD::CALL", SDT_ARMcall,
54 [SDNPHasChain, SDNPOptInFlag, SDNPOutFlag]>;
55def ARMcall_pred : SDNode<"ARMISD::CALL_PRED", SDT_ARMcall,
56 [SDNPHasChain, SDNPOptInFlag, SDNPOutFlag]>;
57def ARMcall_nolink : SDNode<"ARMISD::CALL_NOLINK", SDT_ARMcall,
58 [SDNPHasChain, SDNPOptInFlag, SDNPOutFlag]>;
59
60def ARMretflag : SDNode<"ARMISD::RET_FLAG", SDTRet,
61 [SDNPHasChain, SDNPOptInFlag]>;
62
63def ARMcmov : SDNode<"ARMISD::CMOV", SDT_ARMCMov,
64 [SDNPInFlag]>;
65def ARMcneg : SDNode<"ARMISD::CNEG", SDT_ARMCMov,
66 [SDNPInFlag]>;
67
68def ARMbrcond : SDNode<"ARMISD::BRCOND", SDT_ARMBrcond,
69 [SDNPHasChain, SDNPInFlag, SDNPOutFlag]>;
70
71def ARMbrjt : SDNode<"ARMISD::BR_JT", SDT_ARMBrJT,
72 [SDNPHasChain]>;
73
74def ARMcmp : SDNode<"ARMISD::CMP", SDT_ARMCmp,
75 [SDNPOutFlag]>;
76
77def ARMcmpNZ : SDNode<"ARMISD::CMPNZ", SDT_ARMCmp,
78 [SDNPOutFlag]>;
79
80def ARMpic_add : SDNode<"ARMISD::PIC_ADD", SDT_ARMPICAdd>;
81
82def ARMsrl_flag : SDNode<"ARMISD::SRL_FLAG", SDTIntUnaryOp, [SDNPOutFlag]>;
83def ARMsra_flag : SDNode<"ARMISD::SRA_FLAG", SDTIntUnaryOp, [SDNPOutFlag]>;
84def ARMrrx : SDNode<"ARMISD::RRX" , SDTIntUnaryOp, [SDNPInFlag ]>;
85
86def ARMthread_pointer: SDNode<"ARMISD::THREAD_POINTER", SDT_ARMThreadPointer>;
87
88//===----------------------------------------------------------------------===//
89// ARM Instruction Predicate Definitions.
90//
91def HasV5T : Predicate<"Subtarget->hasV5TOps()">;
92def HasV5TE : Predicate<"Subtarget->hasV5TEOps()">;
93def HasV6 : Predicate<"Subtarget->hasV6Ops()">;
94def IsThumb : Predicate<"Subtarget->isThumb()">;
95def IsARM : Predicate<"!Subtarget->isThumb()">;
96
97//===----------------------------------------------------------------------===//
98// ARM Flag Definitions.
99
100class RegConstraint<string C> {
101 string Constraints = C;
102}
103
104//===----------------------------------------------------------------------===//
105// ARM specific transformation functions and pattern fragments.
106//
107
108// so_imm_XFORM - Return a so_imm value packed into the format described for
109// so_imm def below.
110def so_imm_XFORM : SDNodeXForm<imm, [{
111 return CurDAG->getTargetConstant(ARM_AM::getSOImmVal(N->getValue()),
112 MVT::i32);
113}]>;
114
115// so_imm_neg_XFORM - Return a so_imm value packed into the format described for
116// so_imm_neg def below.
117def so_imm_neg_XFORM : SDNodeXForm<imm, [{
118 return CurDAG->getTargetConstant(ARM_AM::getSOImmVal(-(int)N->getValue()),
119 MVT::i32);
120}]>;
121
122// so_imm_not_XFORM - Return a so_imm value packed into the format described for
123// so_imm_not def below.
124def so_imm_not_XFORM : SDNodeXForm<imm, [{
125 return CurDAG->getTargetConstant(ARM_AM::getSOImmVal(~(int)N->getValue()),
126 MVT::i32);
127}]>;
128
129// rot_imm predicate - True if the 32-bit immediate is equal to 8, 16, or 24.
130def rot_imm : PatLeaf<(i32 imm), [{
131 int32_t v = (int32_t)N->getValue();
132 return v == 8 || v == 16 || v == 24;
133}]>;
134
135/// imm1_15 predicate - True if the 32-bit immediate is in the range [1,15].
136def imm1_15 : PatLeaf<(i32 imm), [{
137 return (int32_t)N->getValue() >= 1 && (int32_t)N->getValue() < 16;
138}]>;
139
140/// imm16_31 predicate - True if the 32-bit immediate is in the range [16,31].
141def imm16_31 : PatLeaf<(i32 imm), [{
142 return (int32_t)N->getValue() >= 16 && (int32_t)N->getValue() < 32;
143}]>;
144
145def so_imm_neg :
146 PatLeaf<(imm), [{ return ARM_AM::getSOImmVal(-(int)N->getValue()) != -1; }],
147 so_imm_neg_XFORM>;
148
149def so_imm_not :
150 PatLeaf<(imm), [{ return ARM_AM::getSOImmVal(~(int)N->getValue()) != -1; }],
151 so_imm_not_XFORM>;
152
153// sext_16_node predicate - True if the SDNode is sign-extended 16 or more bits.
154def sext_16_node : PatLeaf<(i32 GPR:$a), [{
155 return CurDAG->ComputeNumSignBits(SDOperand(N,0)) >= 17;
156}]>;
157
158
159
160//===----------------------------------------------------------------------===//
161// Operand Definitions.
162//
163
164// Branch target.
165def brtarget : Operand<OtherVT>;
166
167// A list of registers separated by comma. Used by load/store multiple.
168def reglist : Operand<i32> {
169 let PrintMethod = "printRegisterList";
170}
171
172// An operand for the CONSTPOOL_ENTRY pseudo-instruction.
173def cpinst_operand : Operand<i32> {
174 let PrintMethod = "printCPInstOperand";
175}
176
177def jtblock_operand : Operand<i32> {
178 let PrintMethod = "printJTBlockOperand";
179}
180
181// Local PC labels.
182def pclabel : Operand<i32> {
183 let PrintMethod = "printPCLabel";
184}
185
186// shifter_operand operands: so_reg and so_imm.
187def so_reg : Operand<i32>, // reg reg imm
188 ComplexPattern<i32, 3, "SelectShifterOperandReg",
189 [shl,srl,sra,rotr]> {
190 let PrintMethod = "printSORegOperand";
191 let MIOperandInfo = (ops GPR, GPR, i32imm);
192}
193
194// so_imm - Match a 32-bit shifter_operand immediate operand, which is an
195// 8-bit immediate rotated by an arbitrary number of bits. so_imm values are
196// represented in the imm field in the same 12-bit form that they are encoded
197// into so_imm instructions: the 8-bit immediate is the least significant bits
198// [bits 0-7], the 4-bit shift amount is the next 4 bits [bits 8-11].
199def so_imm : Operand<i32>,
200 PatLeaf<(imm),
201 [{ return ARM_AM::getSOImmVal(N->getValue()) != -1; }],
202 so_imm_XFORM> {
203 let PrintMethod = "printSOImmOperand";
204}
205
206// Break so_imm's up into two pieces. This handles immediates with up to 16
207// bits set in them. This uses so_imm2part to match and so_imm2part_[12] to
208// get the first/second pieces.
209def so_imm2part : Operand<i32>,
210 PatLeaf<(imm),
211 [{ return ARM_AM::isSOImmTwoPartVal((unsigned)N->getValue()); }]> {
212 let PrintMethod = "printSOImm2PartOperand";
213}
214
215def so_imm2part_1 : SDNodeXForm<imm, [{
216 unsigned V = ARM_AM::getSOImmTwoPartFirst((unsigned)N->getValue());
217 return CurDAG->getTargetConstant(ARM_AM::getSOImmVal(V), MVT::i32);
218}]>;
219
220def so_imm2part_2 : SDNodeXForm<imm, [{
221 unsigned V = ARM_AM::getSOImmTwoPartSecond((unsigned)N->getValue());
222 return CurDAG->getTargetConstant(ARM_AM::getSOImmVal(V), MVT::i32);
223}]>;
224
225
226// Define ARM specific addressing modes.
227
228// addrmode2 := reg +/- reg shop imm
229// addrmode2 := reg +/- imm12
230//
231def addrmode2 : Operand<i32>,
232 ComplexPattern<i32, 3, "SelectAddrMode2", []> {
233 let PrintMethod = "printAddrMode2Operand";
234 let MIOperandInfo = (ops GPR:$base, GPR:$offsreg, i32imm:$offsimm);
235}
236
237def am2offset : Operand<i32>,
238 ComplexPattern<i32, 2, "SelectAddrMode2Offset", []> {
239 let PrintMethod = "printAddrMode2OffsetOperand";
240 let MIOperandInfo = (ops GPR, i32imm);
241}
242
243// addrmode3 := reg +/- reg
244// addrmode3 := reg +/- imm8
245//
246def addrmode3 : Operand<i32>,
247 ComplexPattern<i32, 3, "SelectAddrMode3", []> {
248 let PrintMethod = "printAddrMode3Operand";
249 let MIOperandInfo = (ops GPR:$base, GPR:$offsreg, i32imm:$offsimm);
250}
251
252def am3offset : Operand<i32>,
253 ComplexPattern<i32, 2, "SelectAddrMode3Offset", []> {
254 let PrintMethod = "printAddrMode3OffsetOperand";
255 let MIOperandInfo = (ops GPR, i32imm);
256}
257
258// addrmode4 := reg, <mode|W>
259//
260def addrmode4 : Operand<i32>,
261 ComplexPattern<i32, 2, "", []> {
262 let PrintMethod = "printAddrMode4Operand";
263 let MIOperandInfo = (ops GPR, i32imm);
264}
265
266// addrmode5 := reg +/- imm8*4
267//
268def addrmode5 : Operand<i32>,
269 ComplexPattern<i32, 2, "SelectAddrMode5", []> {
270 let PrintMethod = "printAddrMode5Operand";
271 let MIOperandInfo = (ops GPR, i32imm);
272}
273
274// addrmodepc := pc + reg
275//
276def addrmodepc : Operand<i32>,
277 ComplexPattern<i32, 2, "SelectAddrModePC", []> {
278 let PrintMethod = "printAddrModePCOperand";
279 let MIOperandInfo = (ops GPR, i32imm);
280}
281
282// ARM Predicate operand. Default to 14 = always (AL). Second part is CC
283// register whose default is 0 (no register).
284def pred : PredicateOperand<OtherVT, (ops i32imm, CCR),
285 (ops (i32 14), (i32 zero_reg))> {
286 let PrintMethod = "printPredicateOperand";
287}
288
289// Conditional code result for instructions whose 's' bit is set, e.g. subs.
290//
291def cc_out : OptionalDefOperand<OtherVT, (ops CCR), (ops (i32 zero_reg))> {
292 let PrintMethod = "printSBitModifierOperand";
293}
294
295//===----------------------------------------------------------------------===//
296// ARM Instruction flags. These need to match ARMInstrInfo.h.
297//
298
299// Addressing mode.
300class AddrMode<bits<4> val> {
301 bits<4> Value = val;
302}
303def AddrModeNone : AddrMode<0>;
304def AddrMode1 : AddrMode<1>;
305def AddrMode2 : AddrMode<2>;
306def AddrMode3 : AddrMode<3>;
307def AddrMode4 : AddrMode<4>;
308def AddrMode5 : AddrMode<5>;
309def AddrModeT1 : AddrMode<6>;
310def AddrModeT2 : AddrMode<7>;
311def AddrModeT4 : AddrMode<8>;
312def AddrModeTs : AddrMode<9>;
313
314// Instruction size.
315class SizeFlagVal<bits<3> val> {
316 bits<3> Value = val;
317}
318def SizeInvalid : SizeFlagVal<0>; // Unset.
319def SizeSpecial : SizeFlagVal<1>; // Pseudo or special.
320def Size8Bytes : SizeFlagVal<2>;
321def Size4Bytes : SizeFlagVal<3>;
322def Size2Bytes : SizeFlagVal<4>;
323
324// Load / store index mode.
325class IndexMode<bits<2> val> {
326 bits<2> Value = val;
327}
328def IndexModeNone : IndexMode<0>;
329def IndexModePre : IndexMode<1>;
330def IndexModePost : IndexMode<2>;
331
332//===----------------------------------------------------------------------===//
Evan Chenga7b3e7c2007-08-07 01:37:15 +0000333// ARM Instruction Format Definitions.
334//
335
336// Format specifies the encoding used by the instruction. This is part of the
337// ad-hoc solution used to emit machine instruction encodings by our machine
338// code emitter.
339class Format<bits<5> val> {
340 bits<5> Value = val;
341}
342
343def Pseudo : Format<1>;
344def MulFrm : Format<2>;
Raul Herbster2e07e8d2007-08-30 23:25:47 +0000345def MulSMLAW : Format<3>;
346def MulSMULW : Format<4>;
347def MulSMLA : Format<5>;
348def MulSMUL : Format<6>;
349def Branch : Format<7>;
350def BranchMisc : Format<8>;
Evan Chenga7b3e7c2007-08-07 01:37:15 +0000351
Raul Herbster2e07e8d2007-08-30 23:25:47 +0000352def DPRdIm : Format<9>;
353def DPRdReg : Format<10>;
354def DPRdSoReg : Format<11>;
355def DPRdMisc : Format<12>;
356def DPRnIm : Format<13>;
357def DPRnReg : Format<14>;
358def DPRnSoReg : Format<15>;
359def DPRIm : Format<16>;
360def DPRReg : Format<17>;
361def DPRSoReg : Format<18>;
362def DPRImS : Format<19>;
363def DPRRegS : Format<20>;
364def DPRSoRegS : Format<21>;
Evan Chenga7b3e7c2007-08-07 01:37:15 +0000365
Raul Herbster2e07e8d2007-08-30 23:25:47 +0000366def LdFrm : Format<22>;
367def StFrm : Format<23>;
Evan Chenga7b3e7c2007-08-07 01:37:15 +0000368
Raul Herbster2e07e8d2007-08-30 23:25:47 +0000369def ArithMisc : Format<24>;
370def ThumbFrm : Format<25>;
371def VFPFrm : Format<26>;
Evan Chenga7b3e7c2007-08-07 01:37:15 +0000372
373
374
375//===----------------------------------------------------------------------===//
Raul Herbster2e07e8d2007-08-30 23:25:47 +0000376
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000377// ARM Instruction templates.
378//
379
380// ARMPat - Same as Pat<>, but requires that the compiler be in ARM mode.
381class ARMPat<dag pattern, dag result> : Pat<pattern, result> {
382 list<Predicate> Predicates = [IsARM];
383}
384class ARMV5TEPat<dag pattern, dag result> : Pat<pattern, result> {
385 list<Predicate> Predicates = [IsARM, HasV5TE];
386}
387class ARMV6Pat<dag pattern, dag result> : Pat<pattern, result> {
388 list<Predicate> Predicates = [IsARM, HasV6];
389}
390
391class InstARM<bits<4> opcod, AddrMode am, SizeFlagVal sz, IndexMode im,
Evan Chenga7b3e7c2007-08-07 01:37:15 +0000392 Format f, string cstr>
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000393 : Instruction {
394 let Namespace = "ARM";
395
396 bits<4> Opcode = opcod;
397 AddrMode AM = am;
398 bits<4> AddrModeBits = AM.Value;
399
400 SizeFlagVal SZ = sz;
401 bits<3> SizeFlag = SZ.Value;
402
403 IndexMode IM = im;
404 bits<2> IndexModeBits = IM.Value;
405
Evan Chenga7b3e7c2007-08-07 01:37:15 +0000406 Format F = f;
407 bits<5> Form = F.Value;
408
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000409 let Constraints = cstr;
410}
411
Evan Chengb783fa32007-07-19 01:14:50 +0000412class PseudoInst<dag oops, dag iops, string asm, list<dag> pattern>
Evan Chenga7b3e7c2007-08-07 01:37:15 +0000413 : InstARM<0, AddrModeNone, SizeSpecial, IndexModeNone, Pseudo, ""> {
Evan Chengb783fa32007-07-19 01:14:50 +0000414 let OutOperandList = oops;
415 let InOperandList = iops;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000416 let AsmString = asm;
417 let Pattern = pattern;
418}
419
420// Almost all ARM instructions are predicable.
Evan Chengcce0af52007-09-10 22:22:23 +0000421class I<bits<4> opcod, dag oops, dag iops, AddrMode am, SizeFlagVal sz,
422 IndexMode im, Format f, string opc, string asm, string cstr,
423 list<dag> pattern>
Evan Chenga7b3e7c2007-08-07 01:37:15 +0000424 : InstARM<opcod, am, sz, im, f, cstr> {
Evan Chengb783fa32007-07-19 01:14:50 +0000425 let OutOperandList = oops;
426 let InOperandList = !con(iops, (ops pred:$p));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000427 let AsmString = !strconcat(opc, !strconcat("${p}", asm));
428 let Pattern = pattern;
429 list<Predicate> Predicates = [IsARM];
430}
431
Evan Chengb783fa32007-07-19 01:14:50 +0000432// Same as I except it can optionally modify CPSR. Note it's modeled as
433// an input operand since by default it's a zero register. It will
434// become an implicit def once it's "flipped".
Evan Chengcce0af52007-09-10 22:22:23 +0000435class sI<bits<4> opcod, dag oops, dag iops, AddrMode am, SizeFlagVal sz,
436 IndexMode im, Format f, string opc, string asm, string cstr,
437 list<dag> pattern>
Evan Chenga7b3e7c2007-08-07 01:37:15 +0000438 : InstARM<opcod, am, sz, im, f, cstr> {
Evan Chengb783fa32007-07-19 01:14:50 +0000439 let OutOperandList = oops;
440 let InOperandList = !con(iops, (ops pred:$p, cc_out:$s));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000441 let AsmString = !strconcat(opc, !strconcat("${p}${s}", asm));
442 let Pattern = pattern;
443 list<Predicate> Predicates = [IsARM];
444}
445
Evan Chenga7b3e7c2007-08-07 01:37:15 +0000446class AI<bits<4> opcod, dag oops, dag iops, Format f, string opc,
447 string asm, list<dag> pattern>
448 : I<opcod, oops, iops, AddrModeNone, Size4Bytes, IndexModeNone, f, opc,
449 asm,"",pattern>;
450class AsI<bits<4> opcod, dag oops, dag iops, Format f, string opc,
451 string asm, list<dag> pattern>
452 : sI<opcod, oops, iops, AddrModeNone, Size4Bytes, IndexModeNone, f, opc,
453 asm,"",pattern>;
454class AI1<bits<4> opcod, dag oops, dag iops, Format f, string opc,
455 string asm, list<dag> pattern>
456 : I<opcod, oops, iops, AddrMode1, Size4Bytes, IndexModeNone, f, opc,
457 asm, "", pattern>;
458class AsI1<bits<4> opcod, dag oops, dag iops, Format f, string opc,
459 string asm, list<dag> pattern>
460 : sI<opcod, oops, iops, AddrMode1, Size4Bytes, IndexModeNone, f, opc,
461 asm, "", pattern>;
462class AI2<bits<4> opcod, dag oops, dag iops, Format f, string opc,
463 string asm, list<dag> pattern>
464 : I<opcod, oops, iops, AddrMode2, Size4Bytes, IndexModeNone, f, opc,
465 asm, "", pattern>;
466class AI3<bits<4> opcod, dag oops, dag iops, Format f, string opc,
467 string asm, list<dag> pattern>
468 : I<opcod, oops, iops, AddrMode3, Size4Bytes, IndexModeNone, f, opc,
469 asm, "", pattern>;
470class AI4<bits<4> opcod, dag oops, dag iops, Format f, string opc,
471 string asm, list<dag> pattern>
472 : I<opcod, oops, iops, AddrMode4, Size4Bytes, IndexModeNone, f, opc,
473 asm, "", pattern>;
474class AI1x2<bits<4> opcod, dag oops, dag iops, Format f, string opc,
475 string asm, list<dag> pattern>
476 : I<opcod, oops, iops, AddrMode1, Size8Bytes, IndexModeNone, f, opc,
477 asm, "", pattern>;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000478
479// Pre-indexed ops
Evan Chenga7b3e7c2007-08-07 01:37:15 +0000480class AI2pr<bits<4> opcod, dag oops, dag iops, Format f, string opc,
481 string asm, string cstr, list<dag> pattern>
482 : I<opcod, oops, iops, AddrMode2, Size4Bytes, IndexModePre, f, opc,
483 asm, cstr, pattern>;
484class AI3pr<bits<4> opcod, dag oops, dag iops, Format f, string opc,
485 string asm, string cstr, list<dag> pattern>
486 : I<opcod, oops, iops, AddrMode3, Size4Bytes, IndexModePre, f, opc,
487 asm, cstr, pattern>;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000488
489// Post-indexed ops
Evan Chenga7b3e7c2007-08-07 01:37:15 +0000490class AI2po<bits<4> opcod, dag oops, dag iops, Format f, string opc,
491 string asm, string cstr, list<dag> pattern>
492 : I<opcod, oops, iops, AddrMode2, Size4Bytes, IndexModePost, f, opc,
493 asm, cstr,pattern>;
494class AI3po<bits<4> opcod, dag oops, dag iops, Format f, string opc,
495 string asm, string cstr, list<dag> pattern>
496 : I<opcod, oops, iops, AddrMode3, Size4Bytes, IndexModePost, f, opc,
497 asm, cstr,pattern>;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000498
499
500class BinOpFrag<dag res> : PatFrag<(ops node:$LHS, node:$RHS), res>;
501class UnOpFrag <dag res> : PatFrag<(ops node:$Src), res>;
502
503
504/// AI1_bin_irs - Defines a set of (op r, {so_imm|r|so_reg}) patterns for a
505/// binop that produces a value.
Evan Chenga7b3e7c2007-08-07 01:37:15 +0000506multiclass AsI1_bin_irs<bits<4> opcod, string opc, PatFrag opnode> {
507 def ri : AsI1<opcod, (outs GPR:$dst), (ins GPR:$a, so_imm:$b), DPRIm,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000508 opc, " $dst, $a, $b",
509 [(set GPR:$dst, (opnode GPR:$a, so_imm:$b))]>;
Evan Chenga7b3e7c2007-08-07 01:37:15 +0000510 def rr : AsI1<opcod, (outs GPR:$dst), (ins GPR:$a, GPR:$b), DPRReg,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000511 opc, " $dst, $a, $b",
512 [(set GPR:$dst, (opnode GPR:$a, GPR:$b))]>;
Evan Chenga7b3e7c2007-08-07 01:37:15 +0000513 def rs : AsI1<opcod, (outs GPR:$dst), (ins GPR:$a, so_reg:$b), DPRSoReg,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000514 opc, " $dst, $a, $b",
515 [(set GPR:$dst, (opnode GPR:$a, so_reg:$b))]>;
516}
517
518/// ASI1_bin_s_irs - Similar to AsI1_bin_irs except it sets the 's' bit so the
519/// instruction modifies the CSPR register.
Evan Cheng6e4d1d92007-09-11 19:55:27 +0000520let Defs = [CPSR] in {
Evan Chenga7b3e7c2007-08-07 01:37:15 +0000521multiclass ASI1_bin_s_irs<bits<4> opcod, string opc, PatFrag opnode> {
522 def ri : AI1<opcod, (outs GPR:$dst), (ins GPR:$a, so_imm:$b), DPRImS,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000523 opc, "s $dst, $a, $b",
Evan Cheng6e4d1d92007-09-11 19:55:27 +0000524 [(set GPR:$dst, (opnode GPR:$a, so_imm:$b))]>;
Evan Chenga7b3e7c2007-08-07 01:37:15 +0000525 def rr : AI1<opcod, (outs GPR:$dst), (ins GPR:$a, GPR:$b), DPRRegS,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000526 opc, "s $dst, $a, $b",
Evan Cheng6e4d1d92007-09-11 19:55:27 +0000527 [(set GPR:$dst, (opnode GPR:$a, GPR:$b))]>;
Evan Chenga7b3e7c2007-08-07 01:37:15 +0000528 def rs : AI1<opcod, (outs GPR:$dst), (ins GPR:$a, so_reg:$b), DPRSoRegS,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000529 opc, "s $dst, $a, $b",
Evan Cheng6e4d1d92007-09-11 19:55:27 +0000530 [(set GPR:$dst, (opnode GPR:$a, so_reg:$b))]>;
531}
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000532}
533
534/// AI1_cmp_irs - Defines a set of (op r, {so_imm|r|so_reg}) cmp / test
535/// patterns. Similar to AsI1_bin_irs except the instruction does not produce
536/// a explicit result, only implicitly set CPSR.
Evan Cheng6e4d1d92007-09-11 19:55:27 +0000537let Defs = [CPSR] in {
Evan Chenga7b3e7c2007-08-07 01:37:15 +0000538multiclass AI1_cmp_irs<bits<4> opcod, string opc, PatFrag opnode> {
539 def ri : AI1<opcod, (outs), (ins GPR:$a, so_imm:$b), DPRnIm,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000540 opc, " $a, $b",
Evan Cheng6e4d1d92007-09-11 19:55:27 +0000541 [(opnode GPR:$a, so_imm:$b)]>;
Evan Chenga7b3e7c2007-08-07 01:37:15 +0000542 def rr : AI1<opcod, (outs), (ins GPR:$a, GPR:$b), DPRnReg,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000543 opc, " $a, $b",
Evan Cheng6e4d1d92007-09-11 19:55:27 +0000544 [(opnode GPR:$a, GPR:$b)]>;
Evan Chenga7b3e7c2007-08-07 01:37:15 +0000545 def rs : AI1<opcod, (outs), (ins GPR:$a, so_reg:$b), DPRnSoReg,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000546 opc, " $a, $b",
Evan Cheng6e4d1d92007-09-11 19:55:27 +0000547 [(opnode GPR:$a, so_reg:$b)]>;
548}
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000549}
550
551/// AI_unary_rrot - A unary operation with two forms: one whose operand is a
552/// register and one whose operand is a register rotated by 8/16/24.
Evan Chenga7b3e7c2007-08-07 01:37:15 +0000553multiclass AI_unary_rrot<bits<4> opcod, string opc, PatFrag opnode> {
554 def r : AI<opcod, (outs GPR:$dst), (ins GPR:$Src), Pseudo,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000555 opc, " $dst, $Src",
556 [(set GPR:$dst, (opnode GPR:$Src))]>, Requires<[IsARM, HasV6]>;
Evan Chenga7b3e7c2007-08-07 01:37:15 +0000557 def r_rot : AI<opcod, (outs GPR:$dst), (ins GPR:$Src, i32imm:$rot), Pseudo,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000558 opc, " $dst, $Src, ror $rot",
559 [(set GPR:$dst, (opnode (rotr GPR:$Src, rot_imm:$rot)))]>,
560 Requires<[IsARM, HasV6]>;
561}
562
563/// AI_bin_rrot - A binary operation with two forms: one whose operand is a
564/// register and one whose operand is a register rotated by 8/16/24.
Evan Chenga7b3e7c2007-08-07 01:37:15 +0000565multiclass AI_bin_rrot<bits<4> opcod, string opc, PatFrag opnode> {
566 def rr : AI<opcod, (outs GPR:$dst), (ins GPR:$LHS, GPR:$RHS),
567 Pseudo, opc, " $dst, $LHS, $RHS",
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000568 [(set GPR:$dst, (opnode GPR:$LHS, GPR:$RHS))]>,
569 Requires<[IsARM, HasV6]>;
Evan Chenga7b3e7c2007-08-07 01:37:15 +0000570 def rr_rot : AI<opcod, (outs GPR:$dst), (ins GPR:$LHS, GPR:$RHS, i32imm:$rot),
571 Pseudo, opc, " $dst, $LHS, $RHS, ror $rot",
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000572 [(set GPR:$dst, (opnode GPR:$LHS,
573 (rotr GPR:$RHS, rot_imm:$rot)))]>,
574 Requires<[IsARM, HasV6]>;
575}
576
577// Special cases.
Evan Chenga7b3e7c2007-08-07 01:37:15 +0000578class XI<bits<4> opcod, dag oops, dag iops, AddrMode am, SizeFlagVal sz,
579 IndexMode im, Format f, string asm, string cstr, list<dag> pattern>
580 : InstARM<opcod, am, sz, im, f, cstr> {
Evan Chengb783fa32007-07-19 01:14:50 +0000581 let OutOperandList = oops;
582 let InOperandList = iops;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000583 let AsmString = asm;
584 let Pattern = pattern;
585 list<Predicate> Predicates = [IsARM];
586}
587
Evan Chenga7b3e7c2007-08-07 01:37:15 +0000588class AXI<bits<4> opcod, dag oops, dag iops, Format f, string asm,
589 list<dag> pattern>
590 : XI<opcod, oops, iops, AddrModeNone, Size4Bytes, IndexModeNone, f, asm,
591 "", pattern>;
592class AXI1<bits<4> opcod, dag oops, dag iops, Format f, string asm,
593 list<dag> pattern>
594 : XI<opcod, oops, iops, AddrMode1, Size4Bytes, IndexModeNone, f, asm,
595 "", pattern>;
596class AXI2<bits<4> opcod, dag oops, dag iops, Format f, string asm,
597 list<dag> pattern>
598 : XI<opcod, oops, iops, AddrMode2, Size4Bytes, IndexModeNone, f, asm,
599 "", pattern>;
600class AXI3<bits<4> opcod, dag oops, dag iops, Format f, string asm,
601 list<dag> pattern>
602 : XI<opcod, oops, iops, AddrMode3, Size4Bytes, IndexModeNone, f, asm,
603 "", pattern>;
604class AXI4<bits<4> opcod, dag oops, dag iops, Format f, string asm,
605 list<dag> pattern>
606 : XI<opcod, oops, iops, AddrMode4, Size4Bytes, IndexModeNone, f, asm,
607 "", pattern>;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000608
Evan Chenga7b3e7c2007-08-07 01:37:15 +0000609class AXIx2<bits<4> opcod, dag oops, dag iops, Format f, string asm,
610 list<dag> pattern>
611 : XI<opcod, oops, iops, AddrModeNone, Size8Bytes, IndexModeNone, f, asm,
612 "", pattern>;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000613
614// BR_JT instructions
Evan Chenga7b3e7c2007-08-07 01:37:15 +0000615class JTI<bits<4> opcod, dag oops, dag iops, string asm, list<dag> pattern>
616 : XI<opcod, oops, iops, AddrModeNone, SizeSpecial, IndexModeNone, BranchMisc,
617 asm, "", pattern>;
618class JTI1<bits<4> opcod, dag oops, dag iops, string asm, list<dag> pattern>
619 : XI<opcod, oops, iops, AddrMode1, SizeSpecial, IndexModeNone, BranchMisc,
620 asm, "", pattern>;
621class JTI2<bits<4> opcod, dag oops, dag iops, string asm, list<dag> pattern>
622 : XI<opcod, oops, iops, AddrMode2, SizeSpecial, IndexModeNone, BranchMisc,
623 asm, "", pattern>;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000624
625/// AsXI1_bin_c_irs - Same as AsI1_bin_irs but without the predicate operand and
626/// setting carry bit. But it can optionally set CPSR.
Evan Cheng6e4d1d92007-09-11 19:55:27 +0000627let Uses = [CPSR] in {
Evan Chenga7b3e7c2007-08-07 01:37:15 +0000628multiclass AsXI1_bin_c_irs<bits<4> opcod, string opc, PatFrag opnode> {
629 def ri : AXI1<opcod, (outs GPR:$dst), (ins GPR:$a, so_imm:$b, cc_out:$s),
630 DPRIm, !strconcat(opc, "${s} $dst, $a, $b"),
Evan Cheng6e4d1d92007-09-11 19:55:27 +0000631 [(set GPR:$dst, (opnode GPR:$a, so_imm:$b))]>;
Evan Chenga7b3e7c2007-08-07 01:37:15 +0000632 def rr : AXI1<opcod, (outs GPR:$dst), (ins GPR:$a, GPR:$b, cc_out:$s),
633 DPRReg, !strconcat(opc, "${s} $dst, $a, $b"),
Evan Cheng6e4d1d92007-09-11 19:55:27 +0000634 [(set GPR:$dst, (opnode GPR:$a, GPR:$b))]>;
Evan Chenga7b3e7c2007-08-07 01:37:15 +0000635 def rs : AXI1<opcod, (outs GPR:$dst), (ins GPR:$a, so_reg:$b, cc_out:$s),
636 DPRSoReg, !strconcat(opc, "${s} $dst, $a, $b"),
Evan Cheng6e4d1d92007-09-11 19:55:27 +0000637 [(set GPR:$dst, (opnode GPR:$a, so_reg:$b))]>;
638}
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000639}
640
641//===----------------------------------------------------------------------===//
642// Instructions
643//===----------------------------------------------------------------------===//
644
645//===----------------------------------------------------------------------===//
646// Miscellaneous Instructions.
647//
Evan Chenge399fbb2007-12-12 23:12:09 +0000648let isImplicitDef = 1 in
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000649def IMPLICIT_DEF_GPR :
Evan Chengb783fa32007-07-19 01:14:50 +0000650PseudoInst<(outs GPR:$rD), (ins pred:$p),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000651 "@ IMPLICIT_DEF_GPR $rD",
652 [(set GPR:$rD, (undef))]>;
653
654
655/// CONSTPOOL_ENTRY - This instruction represents a floating constant pool in
656/// the function. The first operand is the ID# for this instruction, the second
657/// is the index into the MachineConstantPool that this is, the third is the
658/// size in bytes of this constant pool entry.
659let isNotDuplicable = 1 in
660def CONSTPOOL_ENTRY :
Evan Chengb783fa32007-07-19 01:14:50 +0000661PseudoInst<(outs), (ins cpinst_operand:$instid, cpinst_operand:$cpidx,
662 i32imm:$size),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000663 "${instid:label} ${cpidx:cpentry}", []>;
664
Evan Cheng6e4d1d92007-09-11 19:55:27 +0000665let Defs = [SP], Uses = [SP] in {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000666def ADJCALLSTACKUP :
Bill Wendling22f8deb2007-11-13 00:44:25 +0000667PseudoInst<(outs), (ins i32imm:$amt1, i32imm:$amt2, pred:$p),
668 "@ ADJCALLSTACKUP $amt1",
669 [(ARMcallseq_end imm:$amt1, imm:$amt2)]>;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000670
671def ADJCALLSTACKDOWN :
Evan Chengb783fa32007-07-19 01:14:50 +0000672PseudoInst<(outs), (ins i32imm:$amt, pred:$p),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000673 "@ ADJCALLSTACKDOWN $amt",
Evan Cheng6e4d1d92007-09-11 19:55:27 +0000674 [(ARMcallseq_start imm:$amt)]>;
675}
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000676
677def DWARF_LOC :
Evan Chengb783fa32007-07-19 01:14:50 +0000678PseudoInst<(outs), (ins i32imm:$line, i32imm:$col, i32imm:$file),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000679 ".loc $file, $line, $col",
680 [(dwarf_loc (i32 imm:$line), (i32 imm:$col), (i32 imm:$file))]>;
681
682let isNotDuplicable = 1 in {
Evan Chenga7b3e7c2007-08-07 01:37:15 +0000683def PICADD : AXI1<0x0, (outs GPR:$dst), (ins GPR:$a, pclabel:$cp, pred:$p),
684 Pseudo, "$cp:\n\tadd$p $dst, pc, $a",
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000685 [(set GPR:$dst, (ARMpic_add GPR:$a, imm:$cp))]>;
686
Evan Cheng8610a3b2008-01-07 23:56:57 +0000687let AddedComplexity = 10 in {
688let isSimpleLoad = 1 in
Evan Chenga7b3e7c2007-08-07 01:37:15 +0000689def PICLD : AXI2<0x0, (outs GPR:$dst), (ins addrmodepc:$addr, pred:$p),
690 Pseudo, "${addr:label}:\n\tldr$p $dst, $addr",
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000691 [(set GPR:$dst, (load addrmodepc:$addr))]>;
692
Evan Chenga7b3e7c2007-08-07 01:37:15 +0000693def PICLDZH : AXI3<0x0, (outs GPR:$dst), (ins addrmodepc:$addr, pred:$p),
694 Pseudo, "${addr:label}:\n\tldr${p}h $dst, $addr",
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000695 [(set GPR:$dst, (zextloadi16 addrmodepc:$addr))]>;
696
Evan Chenga7b3e7c2007-08-07 01:37:15 +0000697def PICLDZB : AXI2<0x0, (outs GPR:$dst), (ins addrmodepc:$addr, pred:$p),
698 Pseudo, "${addr:label}:\n\tldr${p}b $dst, $addr",
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000699 [(set GPR:$dst, (zextloadi8 addrmodepc:$addr))]>;
700
Evan Chenga7b3e7c2007-08-07 01:37:15 +0000701def PICLDH : AXI3<0x0, (outs GPR:$dst), (ins addrmodepc:$addr, pred:$p),
702 Pseudo, "${addr:label}:\n\tldr${p}h $dst, $addr",
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000703 [(set GPR:$dst, (extloadi16 addrmodepc:$addr))]>;
704
Evan Chenga7b3e7c2007-08-07 01:37:15 +0000705def PICLDB : AXI2<0x0, (outs GPR:$dst), (ins addrmodepc:$addr, pred:$p),
706 Pseudo, "${addr:label}:\n\tldr${p}b $dst, $addr",
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000707 [(set GPR:$dst, (extloadi8 addrmodepc:$addr))]>;
708
Evan Chenga7b3e7c2007-08-07 01:37:15 +0000709def PICLDSH : AXI3<0x0, (outs GPR:$dst), (ins addrmodepc:$addr, pred:$p),
710 Pseudo, "${addr:label}:\n\tldr${p}sh $dst, $addr",
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000711 [(set GPR:$dst, (sextloadi16 addrmodepc:$addr))]>;
712
Evan Chenga7b3e7c2007-08-07 01:37:15 +0000713def PICLDSB : AXI3<0x0, (outs GPR:$dst), (ins addrmodepc:$addr, pred:$p),
714 Pseudo, "${addr:label}:\n\tldr${p}sb $dst, $addr",
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000715 [(set GPR:$dst, (sextloadi8 addrmodepc:$addr))]>;
716}
Chris Lattnerf823faf2008-01-06 05:55:01 +0000717let AddedComplexity = 10 in {
Evan Chenga7b3e7c2007-08-07 01:37:15 +0000718def PICSTR : AXI2<0x0, (outs), (ins GPR:$src, addrmodepc:$addr, pred:$p),
719 Pseudo, "${addr:label}:\n\tstr$p $src, $addr",
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000720 [(store GPR:$src, addrmodepc:$addr)]>;
721
Evan Chenga7b3e7c2007-08-07 01:37:15 +0000722def PICSTRH : AXI3<0x0, (outs), (ins GPR:$src, addrmodepc:$addr, pred:$p),
723 Pseudo, "${addr:label}:\n\tstr${p}h $src, $addr",
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000724 [(truncstorei16 GPR:$src, addrmodepc:$addr)]>;
725
Evan Chenga7b3e7c2007-08-07 01:37:15 +0000726def PICSTRB : AXI2<0x0, (outs), (ins GPR:$src, addrmodepc:$addr, pred:$p),
727 Pseudo, "${addr:label}:\n\tstr${p}b $src, $addr",
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000728 [(truncstorei8 GPR:$src, addrmodepc:$addr)]>;
729}
730}
731
732//===----------------------------------------------------------------------===//
733// Control Flow Instructions.
734//
735
736let isReturn = 1, isTerminator = 1 in
Evan Chenga7b3e7c2007-08-07 01:37:15 +0000737 def BX_RET : AI<0x1, (outs), (ins), BranchMisc, "bx", " lr", [(ARMretflag)]>;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000738
739// FIXME: remove when we have a way to marking a MI with these properties.
Evan Chengb783fa32007-07-19 01:14:50 +0000740// FIXME: $dst1 should be a def. But the extra ops must be in the end of the
741// operand list.
Evan Cheng8610a3b2008-01-07 23:56:57 +0000742let isReturn = 1, isTerminator = 1 in
Evan Chenga7b3e7c2007-08-07 01:37:15 +0000743 def LDM_RET : AXI4<0x0, (outs),
Evan Chengb783fa32007-07-19 01:14:50 +0000744 (ins addrmode4:$addr, pred:$p, reglist:$dst1, variable_ops),
Evan Chenga7b3e7c2007-08-07 01:37:15 +0000745 LdFrm, "ldm${p}${addr:submode} $addr, $dst1",
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000746 []>;
747
Evan Cheng37e7c752007-07-21 00:34:19 +0000748let isCall = 1,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000749 Defs = [R0, R1, R2, R3, R12, LR,
750 D0, D1, D2, D3, D4, D5, D6, D7, CPSR] in {
Evan Chenga7b3e7c2007-08-07 01:37:15 +0000751 def BL : AXI<0xB, (outs), (ins i32imm:$func, variable_ops), Branch,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000752 "bl ${func:call}",
753 [(ARMcall tglobaladdr:$func)]>;
754
Evan Chenga7b3e7c2007-08-07 01:37:15 +0000755 def BL_pred : AI<0xB, (outs), (ins i32imm:$func, variable_ops),
756 Branch, "bl", " ${func:call}",
757 [(ARMcall_pred tglobaladdr:$func)]>;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000758
759 // ARMv5T and above
Evan Chenga7b3e7c2007-08-07 01:37:15 +0000760 def BLX : AXI<0x2, (outs), (ins GPR:$func, variable_ops), BranchMisc,
Evan Chengb783fa32007-07-19 01:14:50 +0000761 "blx $func",
762 [(ARMcall GPR:$func)]>, Requires<[IsARM, HasV5T]>;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000763 let Uses = [LR] in {
764 // ARMv4T
Evan Chenga7b3e7c2007-08-07 01:37:15 +0000765 def BX : AXIx2<0x0, (outs), (ins GPR:$func, variable_ops),
766 BranchMisc, "mov lr, pc\n\tbx $func",
767 [(ARMcall_nolink GPR:$func)]>;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000768 }
769}
770
Evan Cheng37e7c752007-07-21 00:34:19 +0000771let isBranch = 1, isTerminator = 1 in {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000772 // B is "predicable" since it can be xformed into a Bcc.
773 let isBarrier = 1 in {
774 let isPredicable = 1 in
Evan Chenga7b3e7c2007-08-07 01:37:15 +0000775 def B : AXI<0xA, (outs), (ins brtarget:$target), Branch, "b $target",
Evan Chengb783fa32007-07-19 01:14:50 +0000776 [(br bb:$target)]>;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000777
Owen Andersonf8053082007-11-12 07:39:39 +0000778 let isNotDuplicable = 1, isIndirectBranch = 1 in {
Evan Chenga7b3e7c2007-08-07 01:37:15 +0000779 def BR_JTr : JTI<0x0, (outs), (ins GPR:$target, jtblock_operand:$jt, i32imm:$id),
Evan Chengb783fa32007-07-19 01:14:50 +0000780 "mov pc, $target \n$jt",
781 [(ARMbrjt GPR:$target, tjumptable:$jt, imm:$id)]>;
Evan Chenga7b3e7c2007-08-07 01:37:15 +0000782 def BR_JTm : JTI2<0x0, (outs), (ins addrmode2:$target, jtblock_operand:$jt, i32imm:$id),
Evan Chengb783fa32007-07-19 01:14:50 +0000783 "ldr pc, $target \n$jt",
784 [(ARMbrjt (i32 (load addrmode2:$target)), tjumptable:$jt,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000785 imm:$id)]>;
Evan Chenga7b3e7c2007-08-07 01:37:15 +0000786 def BR_JTadd : JTI1<0x0, (outs), (ins GPR:$target, GPR:$idx, jtblock_operand:$jt,
Evan Chengb783fa32007-07-19 01:14:50 +0000787 i32imm:$id),
788 "add pc, $target, $idx \n$jt",
789 [(ARMbrjt (add GPR:$target, GPR:$idx), tjumptable:$jt,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000790 imm:$id)]>;
791 }
792 }
793
794 // FIXME: should be able to write a pattern for ARMBrcond, but can't use
795 // a two-value operand where a dag node expects two operands. :(
Raul Herbster2e07e8d2007-08-30 23:25:47 +0000796 def Bcc : AI<0xA, (outs), (ins brtarget:$target), Branch,
Evan Chenga7b3e7c2007-08-07 01:37:15 +0000797 "b", " $target",
798 [/*(ARMbrcond bb:$target, imm:$cc, CCR:$ccr)*/]>;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000799}
800
801//===----------------------------------------------------------------------===//
802// Load / store Instructions.
803//
804
805// Load
Evan Cheng8610a3b2008-01-07 23:56:57 +0000806let isSimpleLoad = 1 in
Evan Chenga7b3e7c2007-08-07 01:37:15 +0000807def LDR : AI2<0x0, (outs GPR:$dst), (ins addrmode2:$addr), LdFrm,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000808 "ldr", " $dst, $addr",
809 [(set GPR:$dst, (load addrmode2:$addr))]>;
810
811// Special LDR for loads from non-pc-relative constpools.
Evan Cheng8610a3b2008-01-07 23:56:57 +0000812let isSimpleLoad = 1, isReMaterializable = 1 in
Evan Chenga7b3e7c2007-08-07 01:37:15 +0000813def LDRcp : AI2<0x0, (outs GPR:$dst), (ins addrmode2:$addr), LdFrm,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000814 "ldr", " $dst, $addr", []>;
815
816// Loads with zero extension
Evan Chenga7b3e7c2007-08-07 01:37:15 +0000817def LDRH : AI3<0xB, (outs GPR:$dst), (ins addrmode3:$addr), LdFrm,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000818 "ldr", "h $dst, $addr",
819 [(set GPR:$dst, (zextloadi16 addrmode3:$addr))]>;
820
Evan Chenga7b3e7c2007-08-07 01:37:15 +0000821def LDRB : AI2<0x1, (outs GPR:$dst), (ins addrmode2:$addr), LdFrm,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000822 "ldr", "b $dst, $addr",
823 [(set GPR:$dst, (zextloadi8 addrmode2:$addr))]>;
824
825// Loads with sign extension
Evan Chenga7b3e7c2007-08-07 01:37:15 +0000826def LDRSH : AI3<0xE, (outs GPR:$dst), (ins addrmode3:$addr), LdFrm,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000827 "ldr", "sh $dst, $addr",
828 [(set GPR:$dst, (sextloadi16 addrmode3:$addr))]>;
829
Evan Chenga7b3e7c2007-08-07 01:37:15 +0000830def LDRSB : AI3<0xD, (outs GPR:$dst), (ins addrmode3:$addr), LdFrm,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000831 "ldr", "sb $dst, $addr",
832 [(set GPR:$dst, (sextloadi8 addrmode3:$addr))]>;
833
834// Load doubleword
Raul Herbster2e07e8d2007-08-30 23:25:47 +0000835def LDRD : AI3<0xD, (outs GPR:$dst), (ins addrmode3:$addr), LdFrm,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000836 "ldr", "d $dst, $addr",
837 []>, Requires<[IsARM, HasV5T]>;
838
839// Indexed loads
Evan Chenga7b3e7c2007-08-07 01:37:15 +0000840def LDR_PRE : AI2pr<0x0, (outs GPR:$dst, GPR:$base_wb),
841 (ins addrmode2:$addr), LdFrm,
842 "ldr", " $dst, $addr!", "$addr.base = $base_wb", []>;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000843
Evan Chenga7b3e7c2007-08-07 01:37:15 +0000844def LDR_POST : AI2po<0x0, (outs GPR:$dst, GPR:$base_wb),
845 (ins GPR:$base, am2offset:$offset), LdFrm,
846 "ldr", " $dst, [$base], $offset", "$base = $base_wb", []>;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000847
Evan Chenga7b3e7c2007-08-07 01:37:15 +0000848def LDRH_PRE : AI3pr<0xB, (outs GPR:$dst, GPR:$base_wb),
849 (ins addrmode3:$addr), LdFrm,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000850 "ldr", "h $dst, $addr!", "$addr.base = $base_wb", []>;
851
Evan Chenga7b3e7c2007-08-07 01:37:15 +0000852def LDRH_POST : AI3po<0xB, (outs GPR:$dst, GPR:$base_wb),
853 (ins GPR:$base,am3offset:$offset), LdFrm,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000854 "ldr", "h $dst, [$base], $offset", "$base = $base_wb", []>;
855
Evan Chenga7b3e7c2007-08-07 01:37:15 +0000856def LDRB_PRE : AI2pr<0x1, (outs GPR:$dst, GPR:$base_wb),
857 (ins addrmode2:$addr), LdFrm,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000858 "ldr", "b $dst, $addr!", "$addr.base = $base_wb", []>;
859
Evan Chenga7b3e7c2007-08-07 01:37:15 +0000860def LDRB_POST : AI2po<0x1, (outs GPR:$dst, GPR:$base_wb),
861 (ins GPR:$base,am2offset:$offset), LdFrm,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000862 "ldr", "b $dst, [$base], $offset", "$base = $base_wb", []>;
863
Evan Chenga7b3e7c2007-08-07 01:37:15 +0000864def LDRSH_PRE : AI3pr<0xE, (outs GPR:$dst, GPR:$base_wb),
865 (ins addrmode3:$addr), LdFrm,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000866 "ldr", "sh $dst, $addr!", "$addr.base = $base_wb", []>;
867
Evan Chenga7b3e7c2007-08-07 01:37:15 +0000868def LDRSH_POST: AI3po<0xE, (outs GPR:$dst, GPR:$base_wb),
869 (ins GPR:$base,am3offset:$offset), LdFrm,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000870 "ldr", "sh $dst, [$base], $offset", "$base = $base_wb", []>;
871
Evan Chenga7b3e7c2007-08-07 01:37:15 +0000872def LDRSB_PRE : AI3pr<0xD, (outs GPR:$dst, GPR:$base_wb),
873 (ins addrmode3:$addr), LdFrm,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000874 "ldr", "sb $dst, $addr!", "$addr.base = $base_wb", []>;
875
Evan Chenga7b3e7c2007-08-07 01:37:15 +0000876def LDRSB_POST: AI3po<0xD, (outs GPR:$dst, GPR:$base_wb),
877 (ins GPR:$base,am3offset:$offset), LdFrm,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000878 "ldr", "sb $dst, [$base], $offset", "$base = $base_wb", []>;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000879
880// Store
Evan Chenga7b3e7c2007-08-07 01:37:15 +0000881def STR : AI2<0x0, (outs), (ins GPR:$src, addrmode2:$addr), StFrm,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000882 "str", " $src, $addr",
883 [(store GPR:$src, addrmode2:$addr)]>;
884
885// Stores with truncate
Evan Chenga7b3e7c2007-08-07 01:37:15 +0000886def STRH : AI3<0xB, (outs), (ins GPR:$src, addrmode3:$addr), StFrm,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000887 "str", "h $src, $addr",
888 [(truncstorei16 GPR:$src, addrmode3:$addr)]>;
889
Evan Chenga7b3e7c2007-08-07 01:37:15 +0000890def STRB : AI2<0x1, (outs), (ins GPR:$src, addrmode2:$addr), StFrm,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000891 "str", "b $src, $addr",
892 [(truncstorei8 GPR:$src, addrmode2:$addr)]>;
893
894// Store doubleword
Chris Lattner6887b142008-01-06 08:36:04 +0000895let mayStore = 1 in
Raul Herbster2e07e8d2007-08-30 23:25:47 +0000896def STRD : AI3<0xF, (outs), (ins GPR:$src, addrmode3:$addr), StFrm,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000897 "str", "d $src, $addr",
898 []>, Requires<[IsARM, HasV5T]>;
899
900// Indexed stores
Evan Chenga7b3e7c2007-08-07 01:37:15 +0000901def STR_PRE : AI2pr<0x0, (outs GPR:$base_wb),
902 (ins GPR:$src, GPR:$base, am2offset:$offset), StFrm,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000903 "str", " $src, [$base, $offset]!", "$base = $base_wb",
904 [(set GPR:$base_wb,
905 (pre_store GPR:$src, GPR:$base, am2offset:$offset))]>;
906
Evan Chenga7b3e7c2007-08-07 01:37:15 +0000907def STR_POST : AI2po<0x0, (outs GPR:$base_wb),
908 (ins GPR:$src, GPR:$base,am2offset:$offset), StFrm,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000909 "str", " $src, [$base], $offset", "$base = $base_wb",
910 [(set GPR:$base_wb,
911 (post_store GPR:$src, GPR:$base, am2offset:$offset))]>;
912
Evan Chenga7b3e7c2007-08-07 01:37:15 +0000913def STRH_PRE : AI3pr<0xB, (outs GPR:$base_wb),
914 (ins GPR:$src, GPR:$base,am3offset:$offset), StFrm,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000915 "str", "h $src, [$base, $offset]!", "$base = $base_wb",
916 [(set GPR:$base_wb,
917 (pre_truncsti16 GPR:$src, GPR:$base,am3offset:$offset))]>;
918
Evan Chenga7b3e7c2007-08-07 01:37:15 +0000919def STRH_POST: AI3po<0xB, (outs GPR:$base_wb),
920 (ins GPR:$src, GPR:$base,am3offset:$offset), StFrm,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000921 "str", "h $src, [$base], $offset", "$base = $base_wb",
922 [(set GPR:$base_wb, (post_truncsti16 GPR:$src,
923 GPR:$base, am3offset:$offset))]>;
924
Evan Chenga7b3e7c2007-08-07 01:37:15 +0000925def STRB_PRE : AI2pr<0x1, (outs GPR:$base_wb),
926 (ins GPR:$src, GPR:$base,am2offset:$offset), StFrm,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000927 "str", "b $src, [$base, $offset]!", "$base = $base_wb",
928 [(set GPR:$base_wb, (pre_truncsti8 GPR:$src,
929 GPR:$base, am2offset:$offset))]>;
930
Evan Chenga7b3e7c2007-08-07 01:37:15 +0000931def STRB_POST: AI2po<0x1, (outs GPR:$base_wb),
932 (ins GPR:$src, GPR:$base,am2offset:$offset), StFrm,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000933 "str", "b $src, [$base], $offset", "$base = $base_wb",
934 [(set GPR:$base_wb, (post_truncsti8 GPR:$src,
935 GPR:$base, am2offset:$offset))]>;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000936
937//===----------------------------------------------------------------------===//
938// Load / store multiple Instructions.
939//
940
Evan Chengb783fa32007-07-19 01:14:50 +0000941// FIXME: $dst1 should be a def.
Evan Chenga7b3e7c2007-08-07 01:37:15 +0000942def LDM : AXI4<0x0, (outs),
Evan Chengb783fa32007-07-19 01:14:50 +0000943 (ins addrmode4:$addr, pred:$p, reglist:$dst1, variable_ops),
Evan Chenga7b3e7c2007-08-07 01:37:15 +0000944 LdFrm, "ldm${p}${addr:submode} $addr, $dst1",
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000945 []>;
946
Chris Lattner6887b142008-01-06 08:36:04 +0000947let mayStore = 1 in
Evan Chenga7b3e7c2007-08-07 01:37:15 +0000948def STM : AXI4<0x0, (outs),
Evan Chengb783fa32007-07-19 01:14:50 +0000949 (ins addrmode4:$addr, pred:$p, reglist:$src1, variable_ops),
Evan Chenga7b3e7c2007-08-07 01:37:15 +0000950 StFrm, "stm${p}${addr:submode} $addr, $src1",
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000951 []>;
952
953//===----------------------------------------------------------------------===//
954// Move Instructions.
955//
956
Evan Chenga7b3e7c2007-08-07 01:37:15 +0000957def MOVr : AsI1<0xD, (outs GPR:$dst), (ins GPR:$src), DPRdReg,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000958 "mov", " $dst, $src", []>;
Evan Chenga7b3e7c2007-08-07 01:37:15 +0000959def MOVs : AsI1<0xD, (outs GPR:$dst), (ins so_reg:$src), DPRdSoReg,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000960 "mov", " $dst, $src", [(set GPR:$dst, so_reg:$src)]>;
961
962let isReMaterializable = 1 in
Evan Chenga7b3e7c2007-08-07 01:37:15 +0000963def MOVi : AsI1<0xD, (outs GPR:$dst), (ins so_imm:$src), DPRdIm,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000964 "mov", " $dst, $src", [(set GPR:$dst, so_imm:$src)]>;
965
Evan Chenga7b3e7c2007-08-07 01:37:15 +0000966def MOVrx : AsI1<0xD, (outs GPR:$dst), (ins GPR:$src), DPRdMisc,
Evan Chengb783fa32007-07-19 01:14:50 +0000967 "mov", " $dst, $src, rrx",
968 [(set GPR:$dst, (ARMrrx GPR:$src))]>;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000969
970// These aren't really mov instructions, but we have to define them this way
971// due to flag operands.
972
Evan Cheng6e4d1d92007-09-11 19:55:27 +0000973let Defs = [CPSR] in {
Evan Chenga7b3e7c2007-08-07 01:37:15 +0000974def MOVsrl_flag : AI1<0xD, (outs GPR:$dst), (ins GPR:$src), DPRdMisc,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000975 "mov", "s $dst, $src, lsr #1",
Evan Cheng6e4d1d92007-09-11 19:55:27 +0000976 [(set GPR:$dst, (ARMsrl_flag GPR:$src))]>;
Evan Chenga7b3e7c2007-08-07 01:37:15 +0000977def MOVsra_flag : AI1<0xD, (outs GPR:$dst), (ins GPR:$src), DPRdMisc,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000978 "mov", "s $dst, $src, asr #1",
Evan Cheng6e4d1d92007-09-11 19:55:27 +0000979 [(set GPR:$dst, (ARMsra_flag GPR:$src))]>;
980}
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000981
982//===----------------------------------------------------------------------===//
983// Extend Instructions.
984//
985
986// Sign extenders
987
Evan Chenga7b3e7c2007-08-07 01:37:15 +0000988defm SXTB : AI_unary_rrot<0x0, "sxtb", UnOpFrag<(sext_inreg node:$Src, i8)>>;
989defm SXTH : AI_unary_rrot<0x0, "sxth", UnOpFrag<(sext_inreg node:$Src, i16)>>;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000990
Evan Chenga7b3e7c2007-08-07 01:37:15 +0000991defm SXTAB : AI_bin_rrot<0x0, "sxtab",
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000992 BinOpFrag<(add node:$LHS, (sext_inreg node:$RHS, i8))>>;
Evan Chenga7b3e7c2007-08-07 01:37:15 +0000993defm SXTAH : AI_bin_rrot<0x0, "sxtah",
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000994 BinOpFrag<(add node:$LHS, (sext_inreg node:$RHS,i16))>>;
995
996// TODO: SXT(A){B|H}16
997
998// Zero extenders
999
1000let AddedComplexity = 16 in {
Evan Chenga7b3e7c2007-08-07 01:37:15 +00001001defm UXTB : AI_unary_rrot<0x0, "uxtb" , UnOpFrag<(and node:$Src, 0x000000FF)>>;
1002defm UXTH : AI_unary_rrot<0x0, "uxth" , UnOpFrag<(and node:$Src, 0x0000FFFF)>>;
1003defm UXTB16 : AI_unary_rrot<0x0, "uxtb16", UnOpFrag<(and node:$Src, 0x00FF00FF)>>;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001004
1005def : ARMV6Pat<(and (shl GPR:$Src, 8), 0xFF00FF),
1006 (UXTB16r_rot GPR:$Src, 24)>;
1007def : ARMV6Pat<(and (srl GPR:$Src, 8), 0xFF00FF),
1008 (UXTB16r_rot GPR:$Src, 8)>;
1009
Evan Chenga7b3e7c2007-08-07 01:37:15 +00001010defm UXTAB : AI_bin_rrot<0x0, "uxtab",
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001011 BinOpFrag<(add node:$LHS, (and node:$RHS, 0x00FF))>>;
Evan Chenga7b3e7c2007-08-07 01:37:15 +00001012defm UXTAH : AI_bin_rrot<0x0, "uxtah",
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001013 BinOpFrag<(add node:$LHS, (and node:$RHS, 0xFFFF))>>;
1014}
1015
1016// This isn't safe in general, the add is two 16-bit units, not a 32-bit add.
1017//defm UXTAB16 : xxx<"uxtab16", 0xff00ff>;
1018
1019// TODO: UXT(A){B|H}16
1020
1021//===----------------------------------------------------------------------===//
1022// Arithmetic Instructions.
1023//
1024
Evan Chenga7b3e7c2007-08-07 01:37:15 +00001025defm ADD : AsI1_bin_irs<0x4, "add", BinOpFrag<(add node:$LHS, node:$RHS)>>;
1026defm SUB : AsI1_bin_irs<0x2, "sub", BinOpFrag<(sub node:$LHS, node:$RHS)>>;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001027
1028// ADD and SUB with 's' bit set.
Evan Chenga7b3e7c2007-08-07 01:37:15 +00001029defm ADDS : ASI1_bin_s_irs<0x4, "add", BinOpFrag<(addc node:$LHS, node:$RHS)>>;
1030defm SUBS : ASI1_bin_s_irs<0x2, "sub", BinOpFrag<(subc node:$LHS, node:$RHS)>>;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001031
1032// FIXME: Do not allow ADC / SBC to be predicated for now.
Evan Chenga7b3e7c2007-08-07 01:37:15 +00001033defm ADC : AsXI1_bin_c_irs<0x5, "adc", BinOpFrag<(adde node:$LHS, node:$RHS)>>;
1034defm SBC : AsXI1_bin_c_irs<0x6, "sbc", BinOpFrag<(sube node:$LHS, node:$RHS)>>;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001035
1036// These don't define reg/reg forms, because they are handled above.
Evan Chenga7b3e7c2007-08-07 01:37:15 +00001037def RSBri : AsI1<0x3, (outs GPR:$dst), (ins GPR:$a, so_imm:$b), DPRIm,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001038 "rsb", " $dst, $a, $b",
1039 [(set GPR:$dst, (sub so_imm:$b, GPR:$a))]>;
1040
Evan Chenga7b3e7c2007-08-07 01:37:15 +00001041def RSBrs : AsI1<0x3, (outs GPR:$dst), (ins GPR:$a, so_reg:$b), DPRSoReg,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001042 "rsb", " $dst, $a, $b",
1043 [(set GPR:$dst, (sub so_reg:$b, GPR:$a))]>;
1044
1045// RSB with 's' bit set.
Evan Cheng6e4d1d92007-09-11 19:55:27 +00001046let Defs = [CPSR] in {
Evan Chenga7b3e7c2007-08-07 01:37:15 +00001047def RSBSri : AI1<0x3, (outs GPR:$dst), (ins GPR:$a, so_imm:$b), DPRIm,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001048 "rsb", "s $dst, $a, $b",
Evan Cheng6e4d1d92007-09-11 19:55:27 +00001049 [(set GPR:$dst, (subc so_imm:$b, GPR:$a))]>;
Evan Chenga7b3e7c2007-08-07 01:37:15 +00001050def RSBSrs : AI1<0x3, (outs GPR:$dst), (ins GPR:$a, so_reg:$b), DPRSoReg,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001051 "rsb", "s $dst, $a, $b",
Evan Cheng6e4d1d92007-09-11 19:55:27 +00001052 [(set GPR:$dst, (subc so_reg:$b, GPR:$a))]>;
1053}
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001054
1055// FIXME: Do not allow RSC to be predicated for now. But they can set CPSR.
Evan Cheng6e4d1d92007-09-11 19:55:27 +00001056let Uses = [CPSR] in {
Evan Chenga7b3e7c2007-08-07 01:37:15 +00001057def RSCri : AXI1<0x7, (outs GPR:$dst), (ins GPR:$a, so_imm:$b, cc_out:$s),
1058 DPRIm, "rsc${s} $dst, $a, $b",
Evan Cheng6e4d1d92007-09-11 19:55:27 +00001059 [(set GPR:$dst, (sube so_imm:$b, GPR:$a))]>;
Evan Chenga7b3e7c2007-08-07 01:37:15 +00001060def RSCrs : AXI1<0x7, (outs GPR:$dst), (ins GPR:$a, so_reg:$b, cc_out:$s),
1061 DPRSoReg, "rsc${s} $dst, $a, $b",
Evan Cheng6e4d1d92007-09-11 19:55:27 +00001062 [(set GPR:$dst, (sube so_reg:$b, GPR:$a))]>;
1063}
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001064
1065// (sub X, imm) gets canonicalized to (add X, -imm). Match this form.
1066def : ARMPat<(add GPR:$src, so_imm_neg:$imm),
1067 (SUBri GPR:$src, so_imm_neg:$imm)>;
1068
1069//def : ARMPat<(addc GPR:$src, so_imm_neg:$imm),
1070// (SUBSri GPR:$src, so_imm_neg:$imm)>;
1071//def : ARMPat<(adde GPR:$src, so_imm_neg:$imm),
1072// (SBCri GPR:$src, so_imm_neg:$imm)>;
1073
1074// Note: These are implemented in C++ code, because they have to generate
1075// ADD/SUBrs instructions, which use a complex pattern that a xform function
1076// cannot produce.
1077// (mul X, 2^n+1) -> (add (X << n), X)
1078// (mul X, 2^n-1) -> (rsb X, (X << n))
1079
1080
1081//===----------------------------------------------------------------------===//
1082// Bitwise Instructions.
1083//
1084
Evan Chenga7b3e7c2007-08-07 01:37:15 +00001085defm AND : AsI1_bin_irs<0x0, "and", BinOpFrag<(and node:$LHS, node:$RHS)>>;
1086defm ORR : AsI1_bin_irs<0xC, "orr", BinOpFrag<(or node:$LHS, node:$RHS)>>;
1087defm EOR : AsI1_bin_irs<0x1, "eor", BinOpFrag<(xor node:$LHS, node:$RHS)>>;
1088defm BIC : AsI1_bin_irs<0xE, "bic", BinOpFrag<(and node:$LHS, (not node:$RHS))>>;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001089
Evan Chenga7b3e7c2007-08-07 01:37:15 +00001090def MVNr : AsI<0xE, (outs GPR:$dst), (ins GPR:$src), DPRdReg,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001091 "mvn", " $dst, $src", [(set GPR:$dst, (not GPR:$src))]>;
Evan Chenga7b3e7c2007-08-07 01:37:15 +00001092def MVNs : AsI<0xE, (outs GPR:$dst), (ins so_reg:$src), DPRdSoReg,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001093 "mvn", " $dst, $src", [(set GPR:$dst, (not so_reg:$src))]>;
1094let isReMaterializable = 1 in
Evan Chenga7b3e7c2007-08-07 01:37:15 +00001095def MVNi : AsI<0xE, (outs GPR:$dst), (ins so_imm:$imm), DPRdIm,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001096 "mvn", " $dst, $imm", [(set GPR:$dst, so_imm_not:$imm)]>;
1097
1098def : ARMPat<(and GPR:$src, so_imm_not:$imm),
1099 (BICri GPR:$src, so_imm_not:$imm)>;
1100
1101//===----------------------------------------------------------------------===//
1102// Multiply Instructions.
1103//
1104
Evan Chenga7b3e7c2007-08-07 01:37:15 +00001105def MUL : AsI<0x0, (outs GPR:$dst), (ins GPR:$a, GPR:$b), MulFrm,
1106 "mul", " $dst, $a, $b",
1107 [(set GPR:$dst, (mul GPR:$a, GPR:$b))]>;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001108
Evan Chenga7b3e7c2007-08-07 01:37:15 +00001109def MLA : AsI<0x2, (outs GPR:$dst), (ins GPR:$a, GPR:$b, GPR:$c),
1110 MulFrm, "mla", " $dst, $a, $b, $c",
1111 [(set GPR:$dst, (add (mul GPR:$a, GPR:$b), GPR:$c))]>;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001112
1113// Extra precision multiplies with low / high results
Evan Chenga7b3e7c2007-08-07 01:37:15 +00001114def SMULL : AsI<0xC, (outs GPR:$ldst, GPR:$hdst), (ins GPR:$a, GPR:$b),
1115 MulFrm, "smull", " $ldst, $hdst, $a, $b", []>;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001116
Evan Chenga7b3e7c2007-08-07 01:37:15 +00001117def UMULL : AsI<0x8, (outs GPR:$ldst, GPR:$hdst), (ins GPR:$a, GPR:$b),
1118 MulFrm, "umull", " $ldst, $hdst, $a, $b", []>;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001119
1120// Multiply + accumulate
Evan Chenga7b3e7c2007-08-07 01:37:15 +00001121def SMLAL : AsI<0xE, (outs GPR:$ldst, GPR:$hdst), (ins GPR:$a, GPR:$b),
1122 MulFrm, "smlal", " $ldst, $hdst, $a, $b", []>;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001123
Evan Chenga7b3e7c2007-08-07 01:37:15 +00001124def UMLAL : AsI<0xA, (outs GPR:$ldst, GPR:$hdst), (ins GPR:$a, GPR:$b),
1125 MulFrm, "umlal", " $ldst, $hdst, $a, $b", []>;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001126
Evan Chenga7b3e7c2007-08-07 01:37:15 +00001127def UMAAL : AI<0x0, (outs GPR:$ldst, GPR:$hdst), (ins GPR:$a, GPR:$b), MulFrm,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001128 "umaal", " $ldst, $hdst, $a, $b", []>,
1129 Requires<[IsARM, HasV6]>;
1130
1131// Most significant word multiply
Evan Chenga7b3e7c2007-08-07 01:37:15 +00001132def SMMUL : AI<0x0, (outs GPR:$dst), (ins GPR:$a, GPR:$b), MulFrm,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001133 "smmul", " $dst, $a, $b",
1134 [(set GPR:$dst, (mulhs GPR:$a, GPR:$b))]>,
1135 Requires<[IsARM, HasV6]>;
1136
Evan Chenga7b3e7c2007-08-07 01:37:15 +00001137def SMMLA : AI<0x0, (outs GPR:$dst), (ins GPR:$a, GPR:$b, GPR:$c), MulFrm,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001138 "smmla", " $dst, $a, $b, $c",
1139 [(set GPR:$dst, (add (mulhs GPR:$a, GPR:$b), GPR:$c))]>,
1140 Requires<[IsARM, HasV6]>;
1141
1142
Evan Chenga7b3e7c2007-08-07 01:37:15 +00001143def SMMLS : AI<0x0, (outs GPR:$dst), (ins GPR:$a, GPR:$b, GPR:$c), MulFrm,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001144 "smmls", " $dst, $a, $b, $c",
1145 [(set GPR:$dst, (sub GPR:$c, (mulhs GPR:$a, GPR:$b)))]>,
1146 Requires<[IsARM, HasV6]>;
1147
Raul Herbster2e07e8d2007-08-30 23:25:47 +00001148multiclass AI_smul<string opc, PatFrag opnode> {
1149 def BB : AI<0x8, (outs GPR:$dst), (ins GPR:$a, GPR:$b), MulSMUL,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001150 !strconcat(opc, "bb"), " $dst, $a, $b",
1151 [(set GPR:$dst, (opnode (sext_inreg GPR:$a, i16),
1152 (sext_inreg GPR:$b, i16)))]>,
1153 Requires<[IsARM, HasV5TE]>;
Raul Herbster2e07e8d2007-08-30 23:25:47 +00001154
1155 def BT : AI<0xC, (outs GPR:$dst), (ins GPR:$a, GPR:$b), MulSMUL,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001156 !strconcat(opc, "bt"), " $dst, $a, $b",
1157 [(set GPR:$dst, (opnode (sext_inreg GPR:$a, i16),
1158 (sra GPR:$b, 16)))]>,
1159 Requires<[IsARM, HasV5TE]>;
Raul Herbster2e07e8d2007-08-30 23:25:47 +00001160
1161 def TB : AI<0xA, (outs GPR:$dst), (ins GPR:$a, GPR:$b), MulSMUL,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001162 !strconcat(opc, "tb"), " $dst, $a, $b",
1163 [(set GPR:$dst, (opnode (sra GPR:$a, 16),
1164 (sext_inreg GPR:$b, i16)))]>,
1165 Requires<[IsARM, HasV5TE]>;
Raul Herbster2e07e8d2007-08-30 23:25:47 +00001166
1167 def TT : AI<0xE, (outs GPR:$dst), (ins GPR:$a, GPR:$b), MulSMUL,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001168 !strconcat(opc, "tt"), " $dst, $a, $b",
1169 [(set GPR:$dst, (opnode (sra GPR:$a, 16),
1170 (sra GPR:$b, 16)))]>,
1171 Requires<[IsARM, HasV5TE]>;
Raul Herbster2e07e8d2007-08-30 23:25:47 +00001172
1173 def WB : AI<0xA, (outs GPR:$dst), (ins GPR:$a, GPR:$b), MulSMULW,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001174 !strconcat(opc, "wb"), " $dst, $a, $b",
1175 [(set GPR:$dst, (sra (opnode GPR:$a,
1176 (sext_inreg GPR:$b, i16)), 16))]>,
1177 Requires<[IsARM, HasV5TE]>;
Raul Herbster2e07e8d2007-08-30 23:25:47 +00001178
1179 def WT : AI<0xE, (outs GPR:$dst), (ins GPR:$a, GPR:$b), MulSMULW,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001180 !strconcat(opc, "wt"), " $dst, $a, $b",
1181 [(set GPR:$dst, (sra (opnode GPR:$a,
1182 (sra GPR:$b, 16)), 16))]>,
1183 Requires<[IsARM, HasV5TE]>;
1184}
1185
Raul Herbster2e07e8d2007-08-30 23:25:47 +00001186
1187multiclass AI_smla<string opc, PatFrag opnode> {
1188 def BB : AI<0x8, (outs GPR:$dst), (ins GPR:$a, GPR:$b, GPR:$acc), MulSMLA,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001189 !strconcat(opc, "bb"), " $dst, $a, $b, $acc",
1190 [(set GPR:$dst, (add GPR:$acc,
1191 (opnode (sext_inreg GPR:$a, i16),
1192 (sext_inreg GPR:$b, i16))))]>,
1193 Requires<[IsARM, HasV5TE]>;
Raul Herbster2e07e8d2007-08-30 23:25:47 +00001194
1195 def BT : AI<0xC, (outs GPR:$dst), (ins GPR:$a, GPR:$b, GPR:$acc), MulSMLA,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001196 !strconcat(opc, "bt"), " $dst, $a, $b, $acc",
1197 [(set GPR:$dst, (add GPR:$acc, (opnode (sext_inreg GPR:$a, i16),
1198 (sra GPR:$b, 16))))]>,
1199 Requires<[IsARM, HasV5TE]>;
Raul Herbster2e07e8d2007-08-30 23:25:47 +00001200
1201 def TB : AI<0xA, (outs GPR:$dst), (ins GPR:$a, GPR:$b, GPR:$acc), MulSMLA,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001202 !strconcat(opc, "tb"), " $dst, $a, $b, $acc",
1203 [(set GPR:$dst, (add GPR:$acc, (opnode (sra GPR:$a, 16),
1204 (sext_inreg GPR:$b, i16))))]>,
1205 Requires<[IsARM, HasV5TE]>;
Raul Herbster2e07e8d2007-08-30 23:25:47 +00001206
1207 def TT : AI<0xE, (outs GPR:$dst), (ins GPR:$a, GPR:$b, GPR:$acc), MulSMLA,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001208 !strconcat(opc, "tt"), " $dst, $a, $b, $acc",
1209 [(set GPR:$dst, (add GPR:$acc, (opnode (sra GPR:$a, 16),
1210 (sra GPR:$b, 16))))]>,
1211 Requires<[IsARM, HasV5TE]>;
1212
Raul Herbster2e07e8d2007-08-30 23:25:47 +00001213 def WB : AI<0xA, (outs GPR:$dst), (ins GPR:$a, GPR:$b, GPR:$acc), MulSMLAW,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001214 !strconcat(opc, "wb"), " $dst, $a, $b, $acc",
1215 [(set GPR:$dst, (add GPR:$acc, (sra (opnode GPR:$a,
1216 (sext_inreg GPR:$b, i16)), 16)))]>,
1217 Requires<[IsARM, HasV5TE]>;
Raul Herbster2e07e8d2007-08-30 23:25:47 +00001218
1219 def WT : AI<0xE, (outs GPR:$dst), (ins GPR:$a, GPR:$b, GPR:$acc), MulSMLAW,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001220 !strconcat(opc, "wt"), " $dst, $a, $b, $acc",
1221 [(set GPR:$dst, (add GPR:$acc, (sra (opnode GPR:$a,
1222 (sra GPR:$b, 16)), 16)))]>,
1223 Requires<[IsARM, HasV5TE]>;
1224}
1225
Raul Herbster2e07e8d2007-08-30 23:25:47 +00001226defm SMUL : AI_smul<"smul", BinOpFrag<(mul node:$LHS, node:$RHS)>>;
1227defm SMLA : AI_smla<"smla", BinOpFrag<(mul node:$LHS, node:$RHS)>>;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001228
1229// TODO: Halfword multiple accumulate long: SMLAL<x><y>
1230// TODO: Dual halfword multiple: SMUAD, SMUSD, SMLAD, SMLSD, SMLALD, SMLSLD
1231
1232//===----------------------------------------------------------------------===//
1233// Misc. Arithmetic Instructions.
1234//
1235
Evan Chenga7b3e7c2007-08-07 01:37:15 +00001236def CLZ : AI<0x0, (outs GPR:$dst), (ins GPR:$src), ArithMisc,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001237 "clz", " $dst, $src",
1238 [(set GPR:$dst, (ctlz GPR:$src))]>, Requires<[IsARM, HasV5T]>;
1239
Evan Chenga7b3e7c2007-08-07 01:37:15 +00001240def REV : AI<0x0, (outs GPR:$dst), (ins GPR:$src), ArithMisc,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001241 "rev", " $dst, $src",
1242 [(set GPR:$dst, (bswap GPR:$src))]>, Requires<[IsARM, HasV6]>;
1243
Evan Chenga7b3e7c2007-08-07 01:37:15 +00001244def REV16 : AI<0x0, (outs GPR:$dst), (ins GPR:$src), ArithMisc,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001245 "rev16", " $dst, $src",
1246 [(set GPR:$dst,
1247 (or (and (srl GPR:$src, 8), 0xFF),
1248 (or (and (shl GPR:$src, 8), 0xFF00),
1249 (or (and (srl GPR:$src, 8), 0xFF0000),
1250 (and (shl GPR:$src, 8), 0xFF000000)))))]>,
1251 Requires<[IsARM, HasV6]>;
1252
Evan Chenga7b3e7c2007-08-07 01:37:15 +00001253def REVSH : AI<0x0, (outs GPR:$dst), (ins GPR:$src), ArithMisc,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001254 "revsh", " $dst, $src",
1255 [(set GPR:$dst,
1256 (sext_inreg
1257 (or (srl (and GPR:$src, 0xFF00), 8),
1258 (shl GPR:$src, 8)), i16))]>,
1259 Requires<[IsARM, HasV6]>;
1260
Evan Chenga7b3e7c2007-08-07 01:37:15 +00001261def PKHBT : AI<0x0, (outs GPR:$dst), (ins GPR:$src1, GPR:$src2, i32imm:$shamt),
1262 Pseudo, "pkhbt", " $dst, $src1, $src2, LSL $shamt",
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001263 [(set GPR:$dst, (or (and GPR:$src1, 0xFFFF),
1264 (and (shl GPR:$src2, (i32 imm:$shamt)),
1265 0xFFFF0000)))]>,
1266 Requires<[IsARM, HasV6]>;
1267
1268// Alternate cases for PKHBT where identities eliminate some nodes.
1269def : ARMV6Pat<(or (and GPR:$src1, 0xFFFF), (and GPR:$src2, 0xFFFF0000)),
1270 (PKHBT GPR:$src1, GPR:$src2, 0)>;
1271def : ARMV6Pat<(or (and GPR:$src1, 0xFFFF), (shl GPR:$src2, imm16_31:$shamt)),
1272 (PKHBT GPR:$src1, GPR:$src2, imm16_31:$shamt)>;
1273
1274
Evan Chenga7b3e7c2007-08-07 01:37:15 +00001275def PKHTB : AI<0x0, (outs GPR:$dst), (ins GPR:$src1, GPR:$src2, i32imm:$shamt),
1276 Pseudo, "pkhtb", " $dst, $src1, $src2, ASR $shamt",
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001277 [(set GPR:$dst, (or (and GPR:$src1, 0xFFFF0000),
1278 (and (sra GPR:$src2, imm16_31:$shamt),
1279 0xFFFF)))]>, Requires<[IsARM, HasV6]>;
1280
1281// Alternate cases for PKHTB where identities eliminate some nodes. Note that
1282// a shift amount of 0 is *not legal* here, it is PKHBT instead.
1283def : ARMV6Pat<(or (and GPR:$src1, 0xFFFF0000), (srl GPR:$src2, 16)),
1284 (PKHTB GPR:$src1, GPR:$src2, 16)>;
1285def : ARMV6Pat<(or (and GPR:$src1, 0xFFFF0000),
1286 (and (srl GPR:$src2, imm1_15:$shamt), 0xFFFF)),
1287 (PKHTB GPR:$src1, GPR:$src2, imm1_15:$shamt)>;
1288
1289
1290//===----------------------------------------------------------------------===//
1291// Comparison Instructions...
1292//
1293
Evan Chenga7b3e7c2007-08-07 01:37:15 +00001294defm CMP : AI1_cmp_irs<0xA, "cmp",
1295 BinOpFrag<(ARMcmp node:$LHS, node:$RHS)>>;
1296defm CMN : AI1_cmp_irs<0xB, "cmn",
1297 BinOpFrag<(ARMcmp node:$LHS,(ineg node:$RHS))>>;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001298
1299// Note that TST/TEQ don't set all the same flags that CMP does!
Evan Chenga7b3e7c2007-08-07 01:37:15 +00001300defm TST : AI1_cmp_irs<0x8, "tst",
1301 BinOpFrag<(ARMcmpNZ (and node:$LHS, node:$RHS), 0)>>;
1302defm TEQ : AI1_cmp_irs<0x9, "teq",
1303 BinOpFrag<(ARMcmpNZ (xor node:$LHS, node:$RHS), 0)>>;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001304
Evan Chenga7b3e7c2007-08-07 01:37:15 +00001305defm CMPnz : AI1_cmp_irs<0xA, "cmp",
1306 BinOpFrag<(ARMcmpNZ node:$LHS, node:$RHS)>>;
1307defm CMNnz : AI1_cmp_irs<0xA, "cmn",
1308 BinOpFrag<(ARMcmpNZ node:$LHS,(ineg node:$RHS))>>;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001309
1310def : ARMPat<(ARMcmp GPR:$src, so_imm_neg:$imm),
1311 (CMNri GPR:$src, so_imm_neg:$imm)>;
1312
1313def : ARMPat<(ARMcmpNZ GPR:$src, so_imm_neg:$imm),
1314 (CMNri GPR:$src, so_imm_neg:$imm)>;
1315
1316
1317// Conditional moves
1318// FIXME: should be able to write a pattern for ARMcmov, but can't use
1319// a two-value operand where a dag node expects two operands. :(
Evan Chenga7b3e7c2007-08-07 01:37:15 +00001320def MOVCCr : AI<0xD, (outs GPR:$dst), (ins GPR:$false, GPR:$true),
1321 DPRdReg, "mov", " $dst, $true",
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001322 [/*(set GPR:$dst, (ARMcmov GPR:$false, GPR:$true, imm:$cc, CCR:$ccr))*/]>,
1323 RegConstraint<"$false = $dst">;
1324
Evan Chenga7b3e7c2007-08-07 01:37:15 +00001325def MOVCCs : AI<0xD, (outs GPR:$dst), (ins GPR:$false, so_reg:$true),
1326 DPRdSoReg, "mov", " $dst, $true",
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001327 [/*(set GPR:$dst, (ARMcmov GPR:$false, so_reg:$true, imm:$cc, CCR:$ccr))*/]>,
1328 RegConstraint<"$false = $dst">;
1329
Evan Chenga7b3e7c2007-08-07 01:37:15 +00001330def MOVCCi : AI<0xD, (outs GPR:$dst), (ins GPR:$false, so_imm:$true),
1331 DPRdIm, "mov", " $dst, $true",
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001332 [/*(set GPR:$dst, (ARMcmov GPR:$false, so_imm:$true, imm:$cc, CCR:$ccr))*/]>,
1333 RegConstraint<"$false = $dst">;
1334
1335
1336// LEApcrel - Load a pc-relative address into a register without offending the
1337// assembler.
Evan Chenga7b3e7c2007-08-07 01:37:15 +00001338def LEApcrel : AXI1<0x0, (outs GPR:$dst), (ins i32imm:$label, pred:$p), Pseudo,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001339 !strconcat(!strconcat(".set PCRELV${:uid}, ($label-(",
1340 "${:private}PCRELL${:uid}+8))\n"),
1341 !strconcat("${:private}PCRELL${:uid}:\n\t",
1342 "add$p $dst, pc, #PCRELV${:uid}")),
1343 []>;
1344
Evan Chenga7b3e7c2007-08-07 01:37:15 +00001345def LEApcrelJT : AXI1<0x0, (outs GPR:$dst), (ins i32imm:$label, i32imm:$id, pred:$p),
1346 Pseudo,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001347 !strconcat(!strconcat(".set PCRELV${:uid}, (${label}_${id:no_hash}-(",
1348 "${:private}PCRELL${:uid}+8))\n"),
1349 !strconcat("${:private}PCRELL${:uid}:\n\t",
1350 "add$p $dst, pc, #PCRELV${:uid}")),
1351 []>;
1352
1353//===----------------------------------------------------------------------===//
1354// TLS Instructions
1355//
1356
1357// __aeabi_read_tp preserves the registers r1-r3.
1358let isCall = 1,
1359 Defs = [R0, R12, LR, CPSR] in {
Evan Chenga7b3e7c2007-08-07 01:37:15 +00001360 def TPsoft : AXI<0x0, (outs), (ins), BranchMisc,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001361 "bl __aeabi_read_tp",
1362 [(set R0, ARMthread_pointer)]>;
1363}
1364
1365//===----------------------------------------------------------------------===//
1366// Non-Instruction Patterns
1367//
1368
1369// ConstantPool, GlobalAddress, and JumpTable
1370def : ARMPat<(ARMWrapper tglobaladdr :$dst), (LEApcrel tglobaladdr :$dst)>;
1371def : ARMPat<(ARMWrapper tconstpool :$dst), (LEApcrel tconstpool :$dst)>;
1372def : ARMPat<(ARMWrapperJT tjumptable:$dst, imm:$id),
1373 (LEApcrelJT tjumptable:$dst, imm:$id)>;
1374
1375// Large immediate handling.
1376
1377// Two piece so_imms.
1378let isReMaterializable = 1 in
Evan Chenga7b3e7c2007-08-07 01:37:15 +00001379def MOVi2pieces : AI1x2<0x0, (outs GPR:$dst), (ins so_imm2part:$src), DPRdMisc,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001380 "mov", " $dst, $src",
1381 [(set GPR:$dst, so_imm2part:$src)]>;
1382
1383def : ARMPat<(or GPR:$LHS, so_imm2part:$RHS),
1384 (ORRri (ORRri GPR:$LHS, (so_imm2part_1 imm:$RHS)),
1385 (so_imm2part_2 imm:$RHS))>;
1386def : ARMPat<(xor GPR:$LHS, so_imm2part:$RHS),
1387 (EORri (EORri GPR:$LHS, (so_imm2part_1 imm:$RHS)),
1388 (so_imm2part_2 imm:$RHS))>;
1389
1390// TODO: add,sub,and, 3-instr forms?
1391
1392
1393// Direct calls
1394def : ARMPat<(ARMcall texternalsym:$func), (BL texternalsym:$func)>;
1395
1396// zextload i1 -> zextload i8
1397def : ARMPat<(zextloadi1 addrmode2:$addr), (LDRB addrmode2:$addr)>;
1398
1399// extload -> zextload
1400def : ARMPat<(extloadi1 addrmode2:$addr), (LDRB addrmode2:$addr)>;
1401def : ARMPat<(extloadi8 addrmode2:$addr), (LDRB addrmode2:$addr)>;
1402def : ARMPat<(extloadi16 addrmode3:$addr), (LDRH addrmode3:$addr)>;
1403
1404// truncstore i1 -> truncstore i8
1405def : ARMPat<(truncstorei1 GPR:$src, addrmode2:$dst),
1406 (STRB GPR:$src, addrmode2:$dst)>;
1407def : ARMPat<(pre_truncsti1 GPR:$src, GPR:$base, am2offset:$offset),
1408 (STRB_PRE GPR:$src, GPR:$base, am2offset:$offset)>;
1409def : ARMPat<(post_truncsti1 GPR:$src, GPR:$base, am2offset:$offset),
1410 (STRB_POST GPR:$src, GPR:$base, am2offset:$offset)>;
1411
1412// smul* and smla*
1413def : ARMV5TEPat<(mul (sra (shl GPR:$a, 16), 16), (sra (shl GPR:$b, 16), 16)),
1414 (SMULBB GPR:$a, GPR:$b)>;
1415def : ARMV5TEPat<(mul sext_16_node:$a, sext_16_node:$b),
1416 (SMULBB GPR:$a, GPR:$b)>;
1417def : ARMV5TEPat<(mul (sra (shl GPR:$a, 16), 16), (sra GPR:$b, 16)),
1418 (SMULBT GPR:$a, GPR:$b)>;
1419def : ARMV5TEPat<(mul sext_16_node:$a, (sra GPR:$b, 16)),
1420 (SMULBT GPR:$a, GPR:$b)>;
1421def : ARMV5TEPat<(mul (sra GPR:$a, 16), (sra (shl GPR:$b, 16), 16)),
1422 (SMULTB GPR:$a, GPR:$b)>;
1423def : ARMV5TEPat<(mul (sra GPR:$a, 16), sext_16_node:$b),
1424 (SMULTB GPR:$a, GPR:$b)>;
1425def : ARMV5TEPat<(sra (mul GPR:$a, (sra (shl GPR:$b, 16), 16)), 16),
1426 (SMULWB GPR:$a, GPR:$b)>;
1427def : ARMV5TEPat<(sra (mul GPR:$a, sext_16_node:$b), 16),
1428 (SMULWB GPR:$a, GPR:$b)>;
1429
1430def : ARMV5TEPat<(add GPR:$acc,
1431 (mul (sra (shl GPR:$a, 16), 16),
1432 (sra (shl GPR:$b, 16), 16))),
1433 (SMLABB GPR:$a, GPR:$b, GPR:$acc)>;
1434def : ARMV5TEPat<(add GPR:$acc,
1435 (mul sext_16_node:$a, sext_16_node:$b)),
1436 (SMLABB GPR:$a, GPR:$b, GPR:$acc)>;
1437def : ARMV5TEPat<(add GPR:$acc,
1438 (mul (sra (shl GPR:$a, 16), 16), (sra GPR:$b, 16))),
1439 (SMLABT GPR:$a, GPR:$b, GPR:$acc)>;
1440def : ARMV5TEPat<(add GPR:$acc,
1441 (mul sext_16_node:$a, (sra GPR:$b, 16))),
1442 (SMLABT GPR:$a, GPR:$b, GPR:$acc)>;
1443def : ARMV5TEPat<(add GPR:$acc,
1444 (mul (sra GPR:$a, 16), (sra (shl GPR:$b, 16), 16))),
1445 (SMLATB GPR:$a, GPR:$b, GPR:$acc)>;
1446def : ARMV5TEPat<(add GPR:$acc,
1447 (mul (sra GPR:$a, 16), sext_16_node:$b)),
1448 (SMLATB GPR:$a, GPR:$b, GPR:$acc)>;
1449def : ARMV5TEPat<(add GPR:$acc,
1450 (sra (mul GPR:$a, (sra (shl GPR:$b, 16), 16)), 16)),
1451 (SMLAWB GPR:$a, GPR:$b, GPR:$acc)>;
1452def : ARMV5TEPat<(add GPR:$acc,
1453 (sra (mul GPR:$a, sext_16_node:$b), 16)),
1454 (SMLAWB GPR:$a, GPR:$b, GPR:$acc)>;
1455
1456//===----------------------------------------------------------------------===//
1457// Thumb Support
1458//
1459
1460include "ARMInstrThumb.td"
1461
1462//===----------------------------------------------------------------------===//
1463// Floating Point Support
1464//
1465
1466include "ARMInstrVFP.td"