blob: 7003a6587ad817fdb47044eb820db9b40a69cc65 [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>]>;
Jim Grosbach4a9025e2009-05-14 00:46:35 +000043def SDT_ARMEH_SJLJ_Setjmp : SDTypeProfile<1, 1, [SDTCisInt<0>, SDTCisPtrTy<1>]>;
Dan Gohmanf17a25c2007-07-18 16:29:46 +000044
45// Node definitions.
46def ARMWrapper : SDNode<"ARMISD::Wrapper", SDTIntUnaryOp>;
47def ARMWrapperJT : SDNode<"ARMISD::WrapperJT", SDTIntBinOp>;
48
Bill Wendling7173da52007-11-13 09:19:02 +000049def ARMcallseq_start : SDNode<"ISD::CALLSEQ_START", SDT_ARMCallSeqStart,
Bill Wendling6c02cd22008-02-27 06:33:05 +000050 [SDNPHasChain, SDNPOutFlag]>;
Bill Wendling7173da52007-11-13 09:19:02 +000051def ARMcallseq_end : SDNode<"ISD::CALLSEQ_END", SDT_ARMCallSeqEnd,
Bill Wendling6c02cd22008-02-27 06:33:05 +000052 [SDNPHasChain, SDNPOptInFlag, SDNPOutFlag]>;
Dan Gohmanf17a25c2007-07-18 16:29:46 +000053
54def ARMcall : SDNode<"ARMISD::CALL", SDT_ARMcall,
55 [SDNPHasChain, SDNPOptInFlag, SDNPOutFlag]>;
56def ARMcall_pred : SDNode<"ARMISD::CALL_PRED", SDT_ARMcall,
57 [SDNPHasChain, SDNPOptInFlag, SDNPOutFlag]>;
58def ARMcall_nolink : SDNode<"ARMISD::CALL_NOLINK", SDT_ARMcall,
59 [SDNPHasChain, SDNPOptInFlag, SDNPOutFlag]>;
60
Chris Lattner3d254552008-01-15 22:02:54 +000061def ARMretflag : SDNode<"ARMISD::RET_FLAG", SDTNone,
Dan Gohmanf17a25c2007-07-18 16:29:46 +000062 [SDNPHasChain, SDNPOptInFlag]>;
63
64def ARMcmov : SDNode<"ARMISD::CMOV", SDT_ARMCMov,
65 [SDNPInFlag]>;
66def ARMcneg : SDNode<"ARMISD::CNEG", SDT_ARMCMov,
67 [SDNPInFlag]>;
68
69def ARMbrcond : SDNode<"ARMISD::BRCOND", SDT_ARMBrcond,
70 [SDNPHasChain, SDNPInFlag, SDNPOutFlag]>;
71
72def ARMbrjt : SDNode<"ARMISD::BR_JT", SDT_ARMBrJT,
73 [SDNPHasChain]>;
74
75def ARMcmp : SDNode<"ARMISD::CMP", SDT_ARMCmp,
76 [SDNPOutFlag]>;
77
78def ARMcmpNZ : SDNode<"ARMISD::CMPNZ", SDT_ARMCmp,
79 [SDNPOutFlag]>;
80
81def ARMpic_add : SDNode<"ARMISD::PIC_ADD", SDT_ARMPICAdd>;
82
83def ARMsrl_flag : SDNode<"ARMISD::SRL_FLAG", SDTIntUnaryOp, [SDNPOutFlag]>;
84def ARMsra_flag : SDNode<"ARMISD::SRA_FLAG", SDTIntUnaryOp, [SDNPOutFlag]>;
85def ARMrrx : SDNode<"ARMISD::RRX" , SDTIntUnaryOp, [SDNPInFlag ]>;
86
87def ARMthread_pointer: SDNode<"ARMISD::THREAD_POINTER", SDT_ARMThreadPointer>;
Jim Grosbach4a9025e2009-05-14 00:46:35 +000088def ARMeh_sjlj_setjmp: SDNode<"ARMISD::EH_SJLJ_SETJMP", SDT_ARMEH_SJLJ_Setjmp>;
Dan Gohmanf17a25c2007-07-18 16:29:46 +000089
90//===----------------------------------------------------------------------===//
91// ARM Instruction Predicate Definitions.
92//
Anton Korobeynikovcba02692009-06-15 21:46:20 +000093def HasV5T : Predicate<"Subtarget->hasV5TOps()">;
94def HasV5TE : Predicate<"Subtarget->hasV5TEOps()">;
95def HasV6 : Predicate<"Subtarget->hasV6Ops()">;
Bob Wilsone60fee02009-06-22 23:27:02 +000096def HasV7 : Predicate<"Subtarget->hasV7Ops()">;
97def HasVFP2 : Predicate<"Subtarget->hasVFP2()">;
98def HasVFP3 : Predicate<"Subtarget->hasVFP3()">;
99def HasNEON : Predicate<"Subtarget->hasNEON()">;
Anton Korobeynikovcba02692009-06-15 21:46:20 +0000100def IsThumb : Predicate<"Subtarget->isThumb()">;
Evan Cheng36173712009-06-23 17:48:47 +0000101def IsThumb1Only : Predicate<"Subtarget->isThumb1Only()">;
Anton Korobeynikovcba02692009-06-15 21:46:20 +0000102def HasThumb2 : Predicate<"Subtarget->hasThumb2()">;
103def IsARM : Predicate<"!Subtarget->isThumb()">;
Bob Wilson243b37c2009-06-22 21:01:46 +0000104def IsDarwin : Predicate<"Subtarget->isTargetDarwin()">;
105def IsNotDarwin : Predicate<"!Subtarget->isTargetDarwin()">;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000106
107//===----------------------------------------------------------------------===//
108// ARM Flag Definitions.
109
110class RegConstraint<string C> {
111 string Constraints = C;
112}
113
114//===----------------------------------------------------------------------===//
115// ARM specific transformation functions and pattern fragments.
116//
117
118// so_imm_XFORM - Return a so_imm value packed into the format described for
119// so_imm def below.
120def so_imm_XFORM : SDNodeXForm<imm, [{
Dan Gohmanfaeb4a32008-09-12 16:56:44 +0000121 return CurDAG->getTargetConstant(ARM_AM::getSOImmVal(N->getZExtValue()),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000122 MVT::i32);
123}]>;
124
125// so_imm_neg_XFORM - Return a so_imm value packed into the format described for
126// so_imm_neg def below.
127def so_imm_neg_XFORM : SDNodeXForm<imm, [{
Dan Gohmanfaeb4a32008-09-12 16:56:44 +0000128 return CurDAG->getTargetConstant(ARM_AM::getSOImmVal(-(int)N->getZExtValue()),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000129 MVT::i32);
130}]>;
131
132// so_imm_not_XFORM - Return a so_imm value packed into the format described for
133// so_imm_not def below.
134def so_imm_not_XFORM : SDNodeXForm<imm, [{
Dan Gohmanfaeb4a32008-09-12 16:56:44 +0000135 return CurDAG->getTargetConstant(ARM_AM::getSOImmVal(~(int)N->getZExtValue()),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000136 MVT::i32);
137}]>;
138
139// rot_imm predicate - True if the 32-bit immediate is equal to 8, 16, or 24.
140def rot_imm : PatLeaf<(i32 imm), [{
Dan Gohmanfaeb4a32008-09-12 16:56:44 +0000141 int32_t v = (int32_t)N->getZExtValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000142 return v == 8 || v == 16 || v == 24;
143}]>;
144
145/// imm1_15 predicate - True if the 32-bit immediate is in the range [1,15].
146def imm1_15 : PatLeaf<(i32 imm), [{
Dan Gohmanfaeb4a32008-09-12 16:56:44 +0000147 return (int32_t)N->getZExtValue() >= 1 && (int32_t)N->getZExtValue() < 16;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000148}]>;
149
150/// imm16_31 predicate - True if the 32-bit immediate is in the range [16,31].
151def imm16_31 : PatLeaf<(i32 imm), [{
Dan Gohmanfaeb4a32008-09-12 16:56:44 +0000152 return (int32_t)N->getZExtValue() >= 16 && (int32_t)N->getZExtValue() < 32;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000153}]>;
154
155def so_imm_neg :
Dan Gohmanfaeb4a32008-09-12 16:56:44 +0000156 PatLeaf<(imm), [{
157 return ARM_AM::getSOImmVal(-(int)N->getZExtValue()) != -1;
158 }], so_imm_neg_XFORM>;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000159
160def so_imm_not :
Dan Gohmanfaeb4a32008-09-12 16:56:44 +0000161 PatLeaf<(imm), [{
162 return ARM_AM::getSOImmVal(~(int)N->getZExtValue()) != -1;
163 }], so_imm_not_XFORM>;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000164
165// sext_16_node predicate - True if the SDNode is sign-extended 16 or more bits.
166def sext_16_node : PatLeaf<(i32 GPR:$a), [{
Dan Gohman8181bd12008-07-27 21:46:04 +0000167 return CurDAG->ComputeNumSignBits(SDValue(N,0)) >= 17;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000168}]>;
169
Evan Cheng7b0249b2008-08-28 23:39:26 +0000170class BinOpFrag<dag res> : PatFrag<(ops node:$LHS, node:$RHS), res>;
171class UnOpFrag <dag res> : PatFrag<(ops node:$Src), res>;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000172
173//===----------------------------------------------------------------------===//
174// Operand Definitions.
175//
176
177// Branch target.
178def brtarget : Operand<OtherVT>;
179
180// A list of registers separated by comma. Used by load/store multiple.
181def reglist : Operand<i32> {
182 let PrintMethod = "printRegisterList";
183}
184
185// An operand for the CONSTPOOL_ENTRY pseudo-instruction.
186def cpinst_operand : Operand<i32> {
187 let PrintMethod = "printCPInstOperand";
188}
189
190def jtblock_operand : Operand<i32> {
191 let PrintMethod = "printJTBlockOperand";
192}
193
194// Local PC labels.
195def pclabel : Operand<i32> {
196 let PrintMethod = "printPCLabel";
197}
198
199// shifter_operand operands: so_reg and so_imm.
200def so_reg : Operand<i32>, // reg reg imm
201 ComplexPattern<i32, 3, "SelectShifterOperandReg",
202 [shl,srl,sra,rotr]> {
203 let PrintMethod = "printSORegOperand";
204 let MIOperandInfo = (ops GPR, GPR, i32imm);
205}
206
207// so_imm - Match a 32-bit shifter_operand immediate operand, which is an
208// 8-bit immediate rotated by an arbitrary number of bits. so_imm values are
209// represented in the imm field in the same 12-bit form that they are encoded
210// into so_imm instructions: the 8-bit immediate is the least significant bits
211// [bits 0-7], the 4-bit shift amount is the next 4 bits [bits 8-11].
212def so_imm : Operand<i32>,
213 PatLeaf<(imm),
Dan Gohmanfaeb4a32008-09-12 16:56:44 +0000214 [{ return ARM_AM::getSOImmVal(N->getZExtValue()) != -1; }],
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000215 so_imm_XFORM> {
216 let PrintMethod = "printSOImmOperand";
217}
218
219// Break so_imm's up into two pieces. This handles immediates with up to 16
220// bits set in them. This uses so_imm2part to match and so_imm2part_[12] to
221// get the first/second pieces.
222def so_imm2part : Operand<i32>,
Dan Gohmanfaeb4a32008-09-12 16:56:44 +0000223 PatLeaf<(imm), [{
224 return ARM_AM::isSOImmTwoPartVal((unsigned)N->getZExtValue());
225 }]> {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000226 let PrintMethod = "printSOImm2PartOperand";
227}
228
229def so_imm2part_1 : SDNodeXForm<imm, [{
Dan Gohmanfaeb4a32008-09-12 16:56:44 +0000230 unsigned V = ARM_AM::getSOImmTwoPartFirst((unsigned)N->getZExtValue());
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000231 return CurDAG->getTargetConstant(ARM_AM::getSOImmVal(V), MVT::i32);
232}]>;
233
234def so_imm2part_2 : SDNodeXForm<imm, [{
Dan Gohmanfaeb4a32008-09-12 16:56:44 +0000235 unsigned V = ARM_AM::getSOImmTwoPartSecond((unsigned)N->getZExtValue());
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000236 return CurDAG->getTargetConstant(ARM_AM::getSOImmVal(V), MVT::i32);
237}]>;
238
239
240// Define ARM specific addressing modes.
241
242// addrmode2 := reg +/- reg shop imm
243// addrmode2 := reg +/- imm12
244//
245def addrmode2 : Operand<i32>,
246 ComplexPattern<i32, 3, "SelectAddrMode2", []> {
247 let PrintMethod = "printAddrMode2Operand";
248 let MIOperandInfo = (ops GPR:$base, GPR:$offsreg, i32imm:$offsimm);
249}
250
251def am2offset : Operand<i32>,
252 ComplexPattern<i32, 2, "SelectAddrMode2Offset", []> {
253 let PrintMethod = "printAddrMode2OffsetOperand";
254 let MIOperandInfo = (ops GPR, i32imm);
255}
256
257// addrmode3 := reg +/- reg
258// addrmode3 := reg +/- imm8
259//
260def addrmode3 : Operand<i32>,
261 ComplexPattern<i32, 3, "SelectAddrMode3", []> {
262 let PrintMethod = "printAddrMode3Operand";
263 let MIOperandInfo = (ops GPR:$base, GPR:$offsreg, i32imm:$offsimm);
264}
265
266def am3offset : Operand<i32>,
267 ComplexPattern<i32, 2, "SelectAddrMode3Offset", []> {
268 let PrintMethod = "printAddrMode3OffsetOperand";
269 let MIOperandInfo = (ops GPR, i32imm);
270}
271
272// addrmode4 := reg, <mode|W>
273//
274def addrmode4 : Operand<i32>,
275 ComplexPattern<i32, 2, "", []> {
276 let PrintMethod = "printAddrMode4Operand";
277 let MIOperandInfo = (ops GPR, i32imm);
278}
279
280// addrmode5 := reg +/- imm8*4
281//
282def addrmode5 : Operand<i32>,
283 ComplexPattern<i32, 2, "SelectAddrMode5", []> {
284 let PrintMethod = "printAddrMode5Operand";
285 let MIOperandInfo = (ops GPR, i32imm);
286}
287
288// addrmodepc := pc + reg
289//
290def addrmodepc : Operand<i32>,
291 ComplexPattern<i32, 2, "SelectAddrModePC", []> {
292 let PrintMethod = "printAddrModePCOperand";
293 let MIOperandInfo = (ops GPR, i32imm);
294}
295
296// ARM Predicate operand. Default to 14 = always (AL). Second part is CC
297// register whose default is 0 (no register).
298def pred : PredicateOperand<OtherVT, (ops i32imm, CCR),
299 (ops (i32 14), (i32 zero_reg))> {
300 let PrintMethod = "printPredicateOperand";
301}
302
303// Conditional code result for instructions whose 's' bit is set, e.g. subs.
304//
305def cc_out : OptionalDefOperand<OtherVT, (ops CCR), (ops (i32 zero_reg))> {
306 let PrintMethod = "printSBitModifierOperand";
307}
308
309//===----------------------------------------------------------------------===//
310// ARM Instruction flags. These need to match ARMInstrInfo.h.
311//
312
313// Addressing mode.
314class AddrMode<bits<4> val> {
315 bits<4> Value = val;
316}
317def AddrModeNone : AddrMode<0>;
318def AddrMode1 : AddrMode<1>;
319def AddrMode2 : AddrMode<2>;
320def AddrMode3 : AddrMode<3>;
321def AddrMode4 : AddrMode<4>;
322def AddrMode5 : AddrMode<5>;
Evan Cheng86a926a2008-11-05 18:35:52 +0000323def AddrModeT1 : AddrMode<6>;
324def AddrModeT2 : AddrMode<7>;
325def AddrModeT4 : AddrMode<8>;
326def AddrModeTs : AddrMode<9>;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000327
328// Instruction size.
329class SizeFlagVal<bits<3> val> {
330 bits<3> Value = val;
331}
332def SizeInvalid : SizeFlagVal<0>; // Unset.
333def SizeSpecial : SizeFlagVal<1>; // Pseudo or special.
334def Size8Bytes : SizeFlagVal<2>;
335def Size4Bytes : SizeFlagVal<3>;
336def Size2Bytes : SizeFlagVal<4>;
337
338// Load / store index mode.
339class IndexMode<bits<2> val> {
340 bits<2> Value = val;
341}
342def IndexModeNone : IndexMode<0>;
343def IndexModePre : IndexMode<1>;
344def IndexModePost : IndexMode<2>;
345
346//===----------------------------------------------------------------------===//
Evan Chenga7b3e7c2007-08-07 01:37:15 +0000347
Evan Cheng7b0249b2008-08-28 23:39:26 +0000348include "ARMInstrFormats.td"
Evan Chenga7b3e7c2007-08-07 01:37:15 +0000349
350//===----------------------------------------------------------------------===//
Evan Cheng7b0249b2008-08-28 23:39:26 +0000351// Multiclass helpers...
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000352//
353
Evan Cheng40d64532008-08-29 07:36:24 +0000354/// AsI1_bin_irs - Defines a set of (op r, {so_imm|r|so_reg}) patterns for a
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000355/// binop that produces a value.
Evan Chenga7b3e7c2007-08-07 01:37:15 +0000356multiclass AsI1_bin_irs<bits<4> opcod, string opc, PatFrag opnode> {
Evan Cheng86a926a2008-11-05 18:35:52 +0000357 def ri : AsI1<opcod, (outs GPR:$dst), (ins GPR:$a, so_imm:$b), DPFrm,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000358 opc, " $dst, $a, $b",
359 [(set GPR:$dst, (opnode GPR:$a, so_imm:$b))]>;
Evan Cheng86a926a2008-11-05 18:35:52 +0000360 def rr : AsI1<opcod, (outs GPR:$dst), (ins GPR:$a, GPR:$b), DPFrm,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000361 opc, " $dst, $a, $b",
362 [(set GPR:$dst, (opnode GPR:$a, GPR:$b))]>;
Evan Cheng86a926a2008-11-05 18:35:52 +0000363 def rs : AsI1<opcod, (outs GPR:$dst), (ins GPR:$a, so_reg:$b), DPSoRegFrm,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000364 opc, " $dst, $a, $b",
365 [(set GPR:$dst, (opnode GPR:$a, so_reg:$b))]>;
366}
367
368/// ASI1_bin_s_irs - Similar to AsI1_bin_irs except it sets the 's' bit so the
369/// instruction modifies the CSPR register.
Evan Cheng6e4d1d92007-09-11 19:55:27 +0000370let Defs = [CPSR] in {
Evan Chenga7b3e7c2007-08-07 01:37:15 +0000371multiclass ASI1_bin_s_irs<bits<4> opcod, string opc, PatFrag opnode> {
Evan Cheng86a926a2008-11-05 18:35:52 +0000372 def ri : AI1<opcod, (outs GPR:$dst), (ins GPR:$a, so_imm:$b), DPFrm,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000373 opc, "s $dst, $a, $b",
Evan Cheng6e4d1d92007-09-11 19:55:27 +0000374 [(set GPR:$dst, (opnode GPR:$a, so_imm:$b))]>;
Evan Cheng86a926a2008-11-05 18:35:52 +0000375 def rr : AI1<opcod, (outs GPR:$dst), (ins GPR:$a, GPR:$b), DPFrm,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000376 opc, "s $dst, $a, $b",
Evan Cheng6e4d1d92007-09-11 19:55:27 +0000377 [(set GPR:$dst, (opnode GPR:$a, GPR:$b))]>;
Evan Cheng86a926a2008-11-05 18:35:52 +0000378 def rs : AI1<opcod, (outs GPR:$dst), (ins GPR:$a, so_reg:$b), DPSoRegFrm,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000379 opc, "s $dst, $a, $b",
Evan Cheng6e4d1d92007-09-11 19:55:27 +0000380 [(set GPR:$dst, (opnode GPR:$a, so_reg:$b))]>;
381}
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000382}
383
384/// AI1_cmp_irs - Defines a set of (op r, {so_imm|r|so_reg}) cmp / test
385/// patterns. Similar to AsI1_bin_irs except the instruction does not produce
386/// a explicit result, only implicitly set CPSR.
Evan Cheng6e4d1d92007-09-11 19:55:27 +0000387let Defs = [CPSR] in {
Evan Chenga7b3e7c2007-08-07 01:37:15 +0000388multiclass AI1_cmp_irs<bits<4> opcod, string opc, PatFrag opnode> {
Evan Cheng86a926a2008-11-05 18:35:52 +0000389 def ri : AI1<opcod, (outs), (ins GPR:$a, so_imm:$b), DPFrm,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000390 opc, " $a, $b",
Evan Cheng6e4d1d92007-09-11 19:55:27 +0000391 [(opnode GPR:$a, so_imm:$b)]>;
Evan Cheng86a926a2008-11-05 18:35:52 +0000392 def rr : AI1<opcod, (outs), (ins GPR:$a, GPR:$b), DPFrm,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000393 opc, " $a, $b",
Evan Cheng6e4d1d92007-09-11 19:55:27 +0000394 [(opnode GPR:$a, GPR:$b)]>;
Evan Cheng86a926a2008-11-05 18:35:52 +0000395 def rs : AI1<opcod, (outs), (ins GPR:$a, so_reg:$b), DPSoRegFrm,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000396 opc, " $a, $b",
Evan Cheng6e4d1d92007-09-11 19:55:27 +0000397 [(opnode GPR:$a, so_reg:$b)]>;
398}
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000399}
400
401/// AI_unary_rrot - A unary operation with two forms: one whose operand is a
402/// register and one whose operand is a register rotated by 8/16/24.
Evan Cheng37afa432008-11-06 22:15:19 +0000403/// FIXME: Remove the 'r' variant. Its rot_imm is zero.
404multiclass AI_unary_rrot<bits<8> opcod, string opc, PatFrag opnode> {
405 def r : AExtI<opcod, (outs GPR:$dst), (ins GPR:$Src),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000406 opc, " $dst, $Src",
Evan Cheng37afa432008-11-06 22:15:19 +0000407 [(set GPR:$dst, (opnode GPR:$Src))]>,
408 Requires<[IsARM, HasV6]> {
409 let Inst{19-16} = 0b1111;
410 }
411 def r_rot : AExtI<opcod, (outs GPR:$dst), (ins GPR:$Src, i32imm:$rot),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000412 opc, " $dst, $Src, ror $rot",
413 [(set GPR:$dst, (opnode (rotr GPR:$Src, rot_imm:$rot)))]>,
Evan Cheng37afa432008-11-06 22:15:19 +0000414 Requires<[IsARM, HasV6]> {
415 let Inst{19-16} = 0b1111;
416 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000417}
418
419/// AI_bin_rrot - A binary operation with two forms: one whose operand is a
420/// register and one whose operand is a register rotated by 8/16/24.
Evan Cheng37afa432008-11-06 22:15:19 +0000421multiclass AI_bin_rrot<bits<8> opcod, string opc, PatFrag opnode> {
422 def rr : AExtI<opcod, (outs GPR:$dst), (ins GPR:$LHS, GPR:$RHS),
423 opc, " $dst, $LHS, $RHS",
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000424 [(set GPR:$dst, (opnode GPR:$LHS, GPR:$RHS))]>,
425 Requires<[IsARM, HasV6]>;
Evan Cheng37afa432008-11-06 22:15:19 +0000426 def rr_rot : AExtI<opcod, (outs GPR:$dst), (ins GPR:$LHS, GPR:$RHS, i32imm:$rot),
427 opc, " $dst, $LHS, $RHS, ror $rot",
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000428 [(set GPR:$dst, (opnode GPR:$LHS,
429 (rotr GPR:$RHS, rot_imm:$rot)))]>,
430 Requires<[IsARM, HasV6]>;
431}
432
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000433/// AsXI1_bin_c_irs - Same as AsI1_bin_irs but without the predicate operand and
434/// setting carry bit. But it can optionally set CPSR.
Evan Cheng6e4d1d92007-09-11 19:55:27 +0000435let Uses = [CPSR] in {
Evan Chenga7b3e7c2007-08-07 01:37:15 +0000436multiclass AsXI1_bin_c_irs<bits<4> opcod, string opc, PatFrag opnode> {
437 def ri : AXI1<opcod, (outs GPR:$dst), (ins GPR:$a, so_imm:$b, cc_out:$s),
Evan Cheng86a926a2008-11-05 18:35:52 +0000438 DPFrm, !strconcat(opc, "${s} $dst, $a, $b"),
Evan Cheng6e4d1d92007-09-11 19:55:27 +0000439 [(set GPR:$dst, (opnode GPR:$a, so_imm:$b))]>;
Evan Chenga7b3e7c2007-08-07 01:37:15 +0000440 def rr : AXI1<opcod, (outs GPR:$dst), (ins GPR:$a, GPR:$b, cc_out:$s),
Evan Cheng86a926a2008-11-05 18:35:52 +0000441 DPFrm, !strconcat(opc, "${s} $dst, $a, $b"),
Evan Cheng6e4d1d92007-09-11 19:55:27 +0000442 [(set GPR:$dst, (opnode GPR:$a, GPR:$b))]>;
Evan Chenga7b3e7c2007-08-07 01:37:15 +0000443 def rs : AXI1<opcod, (outs GPR:$dst), (ins GPR:$a, so_reg:$b, cc_out:$s),
Evan Cheng86a926a2008-11-05 18:35:52 +0000444 DPSoRegFrm, !strconcat(opc, "${s} $dst, $a, $b"),
Evan Cheng6e4d1d92007-09-11 19:55:27 +0000445 [(set GPR:$dst, (opnode GPR:$a, so_reg:$b))]>;
446}
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000447}
448
449//===----------------------------------------------------------------------===//
450// Instructions
451//===----------------------------------------------------------------------===//
452
453//===----------------------------------------------------------------------===//
454// Miscellaneous Instructions.
455//
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000456
457/// CONSTPOOL_ENTRY - This instruction represents a floating constant pool in
458/// the function. The first operand is the ID# for this instruction, the second
459/// is the index into the MachineConstantPool that this is, the third is the
460/// size in bytes of this constant pool entry.
Evan Chengd97d7142009-06-12 20:46:18 +0000461let neverHasSideEffects = 1, isNotDuplicable = 1 in
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000462def CONSTPOOL_ENTRY :
Evan Chengb783fa32007-07-19 01:14:50 +0000463PseudoInst<(outs), (ins cpinst_operand:$instid, cpinst_operand:$cpidx,
Evan Chengf8e8b622008-11-06 17:48:05 +0000464 i32imm:$size),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000465 "${instid:label} ${cpidx:cpentry}", []>;
466
Evan Cheng6e4d1d92007-09-11 19:55:27 +0000467let Defs = [SP], Uses = [SP] in {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000468def ADJCALLSTACKUP :
Bill Wendling22f8deb2007-11-13 00:44:25 +0000469PseudoInst<(outs), (ins i32imm:$amt1, i32imm:$amt2, pred:$p),
470 "@ ADJCALLSTACKUP $amt1",
Chris Lattnerfe5d4022008-10-11 22:08:30 +0000471 [(ARMcallseq_end timm:$amt1, timm:$amt2)]>;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000472
473def ADJCALLSTACKDOWN :
Evan Chengb783fa32007-07-19 01:14:50 +0000474PseudoInst<(outs), (ins i32imm:$amt, pred:$p),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000475 "@ ADJCALLSTACKDOWN $amt",
Chris Lattnerfe5d4022008-10-11 22:08:30 +0000476 [(ARMcallseq_start timm:$amt)]>;
Evan Cheng6e4d1d92007-09-11 19:55:27 +0000477}
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000478
479def DWARF_LOC :
Evan Chengb783fa32007-07-19 01:14:50 +0000480PseudoInst<(outs), (ins i32imm:$line, i32imm:$col, i32imm:$file),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000481 ".loc $file, $line, $col",
482 [(dwarf_loc (i32 imm:$line), (i32 imm:$col), (i32 imm:$file))]>;
483
Evan Chengf8e8b622008-11-06 17:48:05 +0000484
485// Address computation and loads and stores in PIC mode.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000486let isNotDuplicable = 1 in {
Evan Cheng0d28b382008-10-31 19:11:09 +0000487def PICADD : AXI1<0b0100, (outs GPR:$dst), (ins GPR:$a, pclabel:$cp, pred:$p),
Evan Chenga7b3e7c2007-08-07 01:37:15 +0000488 Pseudo, "$cp:\n\tadd$p $dst, pc, $a",
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000489 [(set GPR:$dst, (ARMpic_add GPR:$a, imm:$cp))]>;
490
Evan Cheng8610a3b2008-01-07 23:56:57 +0000491let AddedComplexity = 10 in {
Dan Gohman5574cc72008-12-03 18:15:48 +0000492let canFoldAsLoad = 1 in
Evan Chengbe998242008-11-06 08:47:38 +0000493def PICLDR : AXI2ldw<(outs GPR:$dst), (ins addrmodepc:$addr, pred:$p),
Evan Chenga7b3e7c2007-08-07 01:37:15 +0000494 Pseudo, "${addr:label}:\n\tldr$p $dst, $addr",
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000495 [(set GPR:$dst, (load addrmodepc:$addr))]>;
496
Evan Chengbe998242008-11-06 08:47:38 +0000497def PICLDRH : AXI3ldh<(outs GPR:$dst), (ins addrmodepc:$addr, pred:$p),
Evan Chenga7b3e7c2007-08-07 01:37:15 +0000498 Pseudo, "${addr:label}:\n\tldr${p}h $dst, $addr",
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000499 [(set GPR:$dst, (zextloadi16 addrmodepc:$addr))]>;
500
Evan Chengbe998242008-11-06 08:47:38 +0000501def PICLDRB : AXI2ldb<(outs GPR:$dst), (ins addrmodepc:$addr, pred:$p),
Evan Chenga7b3e7c2007-08-07 01:37:15 +0000502 Pseudo, "${addr:label}:\n\tldr${p}b $dst, $addr",
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000503 [(set GPR:$dst, (zextloadi8 addrmodepc:$addr))]>;
504
Evan Chengbe998242008-11-06 08:47:38 +0000505def PICLDRSH : AXI3ldsh<(outs GPR:$dst), (ins addrmodepc:$addr, pred:$p),
Evan Chenga7b3e7c2007-08-07 01:37:15 +0000506 Pseudo, "${addr:label}:\n\tldr${p}sh $dst, $addr",
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000507 [(set GPR:$dst, (sextloadi16 addrmodepc:$addr))]>;
508
Evan Chengbe998242008-11-06 08:47:38 +0000509def PICLDRSB : AXI3ldsb<(outs GPR:$dst), (ins addrmodepc:$addr, pred:$p),
Evan Chenga7b3e7c2007-08-07 01:37:15 +0000510 Pseudo, "${addr:label}:\n\tldr${p}sb $dst, $addr",
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000511 [(set GPR:$dst, (sextloadi8 addrmodepc:$addr))]>;
512}
Chris Lattnerf823faf2008-01-06 05:55:01 +0000513let AddedComplexity = 10 in {
Evan Chengbe998242008-11-06 08:47:38 +0000514def PICSTR : AXI2stw<(outs), (ins GPR:$src, addrmodepc:$addr, pred:$p),
Evan Chenga7b3e7c2007-08-07 01:37:15 +0000515 Pseudo, "${addr:label}:\n\tstr$p $src, $addr",
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000516 [(store GPR:$src, addrmodepc:$addr)]>;
517
Evan Chengbe998242008-11-06 08:47:38 +0000518def PICSTRH : AXI3sth<(outs), (ins GPR:$src, addrmodepc:$addr, pred:$p),
Evan Chenga7b3e7c2007-08-07 01:37:15 +0000519 Pseudo, "${addr:label}:\n\tstr${p}h $src, $addr",
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000520 [(truncstorei16 GPR:$src, addrmodepc:$addr)]>;
521
Evan Chengbe998242008-11-06 08:47:38 +0000522def PICSTRB : AXI2stb<(outs), (ins GPR:$src, addrmodepc:$addr, pred:$p),
Evan Chenga7b3e7c2007-08-07 01:37:15 +0000523 Pseudo, "${addr:label}:\n\tstr${p}b $src, $addr",
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000524 [(truncstorei8 GPR:$src, addrmodepc:$addr)]>;
525}
Evan Chengf8e8b622008-11-06 17:48:05 +0000526} // isNotDuplicable = 1
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000527
Evan Chenga1366cd2009-06-23 05:25:29 +0000528
529// LEApcrel - Load a pc-relative address into a register without offending the
530// assembler.
531def LEApcrel : AXI1<0x0, (outs GPR:$dst), (ins i32imm:$label, pred:$p), Pseudo,
532 !strconcat(!strconcat(".set PCRELV${:uid}, ($label-(",
533 "${:private}PCRELL${:uid}+8))\n"),
534 !strconcat("${:private}PCRELL${:uid}:\n\t",
535 "add$p $dst, pc, #PCRELV${:uid}")),
536 []>;
537
538def LEApcrelJT : AXI1<0x0, (outs GPR:$dst), (ins i32imm:$label, i32imm:$id, pred:$p),
539 Pseudo,
540 !strconcat(!strconcat(".set PCRELV${:uid}, (${label}_${id:no_hash}-(",
541 "${:private}PCRELL${:uid}+8))\n"),
542 !strconcat("${:private}PCRELL${:uid}:\n\t",
543 "add$p $dst, pc, #PCRELV${:uid}")),
544 []>;
545
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000546//===----------------------------------------------------------------------===//
547// Control Flow Instructions.
548//
549
550let isReturn = 1, isTerminator = 1 in
Evan Chengf8e8b622008-11-06 17:48:05 +0000551 def BX_RET : AI<(outs), (ins), BrMiscFrm, "bx", " lr", [(ARMretflag)]> {
Jim Grosbach88c246f2008-10-14 20:36:24 +0000552 let Inst{7-4} = 0b0001;
553 let Inst{19-8} = 0b111111111111;
554 let Inst{27-20} = 0b00010010;
Evan Cheng469bc762008-09-17 07:53:38 +0000555}
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000556
557// FIXME: remove when we have a way to marking a MI with these properties.
Evan Chengb783fa32007-07-19 01:14:50 +0000558// FIXME: $dst1 should be a def. But the extra ops must be in the end of the
559// operand list.
Evan Chengf8e8b622008-11-06 17:48:05 +0000560// FIXME: Should pc be an implicit operand like PICADD, etc?
Evan Cheng8610a3b2008-01-07 23:56:57 +0000561let isReturn = 1, isTerminator = 1 in
Evan Chengf8e8b622008-11-06 17:48:05 +0000562 def LDM_RET : AXI4ld<(outs),
Evan Chengb783fa32007-07-19 01:14:50 +0000563 (ins addrmode4:$addr, pred:$p, reglist:$dst1, variable_ops),
Evan Cheng11838a82008-11-12 07:18:38 +0000564 LdStMulFrm, "ldm${p}${addr:submode} $addr, $dst1",
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000565 []>;
566
Bob Wilson243b37c2009-06-22 21:01:46 +0000567// On non-Darwin platforms R9 is callee-saved.
Evan Cheng88e78d22009-06-19 01:51:50 +0000568let isCall = 1, Itinerary = IIC_Br,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000569 Defs = [R0, R1, R2, R3, R12, LR,
570 D0, D1, D2, D3, D4, D5, D6, D7, CPSR] in {
Evan Chengf8e8b622008-11-06 17:48:05 +0000571 def BL : ABXI<0b1011, (outs), (ins i32imm:$func, variable_ops),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000572 "bl ${func:call}",
Bob Wilson243b37c2009-06-22 21:01:46 +0000573 [(ARMcall tglobaladdr:$func)]>, Requires<[IsNotDarwin]>;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000574
Evan Chengf8e8b622008-11-06 17:48:05 +0000575 def BL_pred : ABI<0b1011, (outs), (ins i32imm:$func, variable_ops),
Evan Cheng10a9eb82008-09-01 08:25:56 +0000576 "bl", " ${func:call}",
Bob Wilson243b37c2009-06-22 21:01:46 +0000577 [(ARMcall_pred tglobaladdr:$func)]>, Requires<[IsNotDarwin]>;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000578
579 // ARMv5T and above
Evan Chengf8e8b622008-11-06 17:48:05 +0000580 def BLX : AXI<(outs), (ins GPR:$func, variable_ops), BrMiscFrm,
Evan Chengb783fa32007-07-19 01:14:50 +0000581 "blx $func",
Bob Wilson243b37c2009-06-22 21:01:46 +0000582 [(ARMcall GPR:$func)]>, Requires<[IsARM, HasV5T, IsNotDarwin]> {
Jim Grosbach88c246f2008-10-14 20:36:24 +0000583 let Inst{7-4} = 0b0011;
584 let Inst{19-8} = 0b111111111111;
585 let Inst{27-20} = 0b00010010;
Evan Cheng469bc762008-09-17 07:53:38 +0000586 }
587
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000588 let Uses = [LR] in {
589 // ARMv4T
Evan Chengf8e8b622008-11-06 17:48:05 +0000590 def BX : ABXIx2<(outs), (ins GPR:$func, variable_ops),
591 "mov lr, pc\n\tbx $func",
Bob Wilson243b37c2009-06-22 21:01:46 +0000592 [(ARMcall_nolink GPR:$func)]>, Requires<[IsNotDarwin]>;
593 }
594}
595
596// On Darwin R9 is call-clobbered.
597let isCall = 1, Itinerary = IIC_Br,
598 Defs = [R0, R1, R2, R3, R9, R12, LR,
599 D0, D1, D2, D3, D4, D5, D6, D7, CPSR] in {
600 def BLr9 : ABXI<0b1011, (outs), (ins i32imm:$func, variable_ops),
601 "bl ${func:call}",
602 [(ARMcall tglobaladdr:$func)]>, Requires<[IsDarwin]>;
603
604 def BLr9_pred : ABI<0b1011, (outs), (ins i32imm:$func, variable_ops),
605 "bl", " ${func:call}",
606 [(ARMcall_pred tglobaladdr:$func)]>, Requires<[IsDarwin]>;
607
608 // ARMv5T and above
609 def BLXr9 : AXI<(outs), (ins GPR:$func, variable_ops), BrMiscFrm,
610 "blx $func",
611 [(ARMcall GPR:$func)]>, Requires<[IsARM, HasV5T, IsDarwin]> {
612 let Inst{7-4} = 0b0011;
613 let Inst{19-8} = 0b111111111111;
614 let Inst{27-20} = 0b00010010;
615 }
616
617 let Uses = [LR] in {
618 // ARMv4T
619 def BXr9 : ABXIx2<(outs), (ins GPR:$func, variable_ops),
620 "mov lr, pc\n\tbx $func",
621 [(ARMcall_nolink GPR:$func)]>, Requires<[IsDarwin]>;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000622 }
623}
624
Evan Cheng88e78d22009-06-19 01:51:50 +0000625let isBranch = 1, isTerminator = 1, Itinerary = IIC_Br in {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000626 // B is "predicable" since it can be xformed into a Bcc.
627 let isBarrier = 1 in {
628 let isPredicable = 1 in
Evan Chengf8e8b622008-11-06 17:48:05 +0000629 def B : ABXI<0b1010, (outs), (ins brtarget:$target), "b $target",
Evan Chengb783fa32007-07-19 01:14:50 +0000630 [(br bb:$target)]>;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000631
Owen Andersonf8053082007-11-12 07:39:39 +0000632 let isNotDuplicable = 1, isIndirectBranch = 1 in {
Evan Cheng0f63ae12008-11-07 09:06:08 +0000633 def BR_JTr : JTI<(outs), (ins GPR:$target, jtblock_operand:$jt, i32imm:$id),
Evan Chengb783fa32007-07-19 01:14:50 +0000634 "mov pc, $target \n$jt",
Evan Cheng0f63ae12008-11-07 09:06:08 +0000635 [(ARMbrjt GPR:$target, tjumptable:$jt, imm:$id)]> {
636 let Inst{20} = 0; // S Bit
637 let Inst{24-21} = 0b1101;
638 let Inst{27-26} = {0,0};
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000639 }
Evan Cheng0f63ae12008-11-07 09:06:08 +0000640 def BR_JTm : JTI<(outs),
641 (ins addrmode2:$target, jtblock_operand:$jt, i32imm:$id),
642 "ldr pc, $target \n$jt",
643 [(ARMbrjt (i32 (load addrmode2:$target)), tjumptable:$jt,
644 imm:$id)]> {
645 let Inst{20} = 1; // L bit
646 let Inst{21} = 0; // W bit
647 let Inst{22} = 0; // B bit
648 let Inst{24} = 1; // P bit
649 let Inst{27-26} = {0,1};
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000650 }
Evan Cheng0f63ae12008-11-07 09:06:08 +0000651 def BR_JTadd : JTI<(outs),
652 (ins GPR:$target, GPR:$idx, jtblock_operand:$jt, i32imm:$id),
653 "add pc, $target, $idx \n$jt",
654 [(ARMbrjt (add GPR:$target, GPR:$idx), tjumptable:$jt,
655 imm:$id)]> {
656 let Inst{20} = 0; // S bit
657 let Inst{24-21} = 0b0100;
658 let Inst{27-26} = {0,0};
659 }
660 } // isNotDuplicable = 1, isIndirectBranch = 1
661 } // isBarrier = 1
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000662
663 // FIXME: should be able to write a pattern for ARMBrcond, but can't use
664 // a two-value operand where a dag node expects two operands. :(
Evan Chengf8e8b622008-11-06 17:48:05 +0000665 def Bcc : ABI<0b1010, (outs), (ins brtarget:$target),
Evan Chenga7b3e7c2007-08-07 01:37:15 +0000666 "b", " $target",
667 [/*(ARMbrcond bb:$target, imm:$cc, CCR:$ccr)*/]>;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000668}
669
670//===----------------------------------------------------------------------===//
671// Load / store Instructions.
672//
673
674// Load
Dan Gohman5574cc72008-12-03 18:15:48 +0000675let canFoldAsLoad = 1 in
Evan Cheng81794bb2008-11-13 07:34:59 +0000676def LDR : AI2ldw<(outs GPR:$dst), (ins addrmode2:$addr), LdFrm,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000677 "ldr", " $dst, $addr",
678 [(set GPR:$dst, (load addrmode2:$addr))]>;
679
680// Special LDR for loads from non-pc-relative constpools.
Dan Gohman5574cc72008-12-03 18:15:48 +0000681let canFoldAsLoad = 1, mayLoad = 1, isReMaterializable = 1 in
Evan Cheng81794bb2008-11-13 07:34:59 +0000682def LDRcp : AI2ldw<(outs GPR:$dst), (ins addrmode2:$addr), LdFrm,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000683 "ldr", " $dst, $addr", []>;
684
685// Loads with zero extension
Evan Cheng81794bb2008-11-13 07:34:59 +0000686def LDRH : AI3ldh<(outs GPR:$dst), (ins addrmode3:$addr), LdMiscFrm,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000687 "ldr", "h $dst, $addr",
688 [(set GPR:$dst, (zextloadi16 addrmode3:$addr))]>;
689
Evan Cheng81794bb2008-11-13 07:34:59 +0000690def LDRB : AI2ldb<(outs GPR:$dst), (ins addrmode2:$addr), LdFrm,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000691 "ldr", "b $dst, $addr",
692 [(set GPR:$dst, (zextloadi8 addrmode2:$addr))]>;
693
694// Loads with sign extension
Evan Cheng81794bb2008-11-13 07:34:59 +0000695def LDRSH : AI3ldsh<(outs GPR:$dst), (ins addrmode3:$addr), LdMiscFrm,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000696 "ldr", "sh $dst, $addr",
697 [(set GPR:$dst, (sextloadi16 addrmode3:$addr))]>;
698
Evan Cheng81794bb2008-11-13 07:34:59 +0000699def LDRSB : AI3ldsb<(outs GPR:$dst), (ins addrmode3:$addr), LdMiscFrm,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000700 "ldr", "sb $dst, $addr",
701 [(set GPR:$dst, (sextloadi8 addrmode3:$addr))]>;
702
Chris Lattnerca4e0fe2008-01-10 05:12:37 +0000703let mayLoad = 1 in {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000704// Load doubleword
Evan Cheng41169552009-06-15 08:28:29 +0000705def LDRD : AI3ldd<(outs GPR:$dst1, GPR:$dst2), (ins addrmode3:$addr), LdMiscFrm,
706 "ldr", "d $dst1, $addr", []>, Requires<[IsARM, HasV5T]>;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000707
708// Indexed loads
Evan Chengbe998242008-11-06 08:47:38 +0000709def LDR_PRE : AI2ldwpr<(outs GPR:$dst, GPR:$base_wb),
Evan Cheng81794bb2008-11-13 07:34:59 +0000710 (ins addrmode2:$addr), LdFrm,
Evan Chenga7b3e7c2007-08-07 01:37:15 +0000711 "ldr", " $dst, $addr!", "$addr.base = $base_wb", []>;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000712
Evan Chengbe998242008-11-06 08:47:38 +0000713def LDR_POST : AI2ldwpo<(outs GPR:$dst, GPR:$base_wb),
Evan Cheng81794bb2008-11-13 07:34:59 +0000714 (ins GPR:$base, am2offset:$offset), LdFrm,
Evan Chenga7b3e7c2007-08-07 01:37:15 +0000715 "ldr", " $dst, [$base], $offset", "$base = $base_wb", []>;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000716
Evan Chengbe998242008-11-06 08:47:38 +0000717def LDRH_PRE : AI3ldhpr<(outs GPR:$dst, GPR:$base_wb),
Evan Cheng81794bb2008-11-13 07:34:59 +0000718 (ins addrmode3:$addr), LdMiscFrm,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000719 "ldr", "h $dst, $addr!", "$addr.base = $base_wb", []>;
720
Evan Chengbe998242008-11-06 08:47:38 +0000721def LDRH_POST : AI3ldhpo<(outs GPR:$dst, GPR:$base_wb),
Evan Cheng81794bb2008-11-13 07:34:59 +0000722 (ins GPR:$base,am3offset:$offset), LdMiscFrm,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000723 "ldr", "h $dst, [$base], $offset", "$base = $base_wb", []>;
724
Evan Chengbe998242008-11-06 08:47:38 +0000725def LDRB_PRE : AI2ldbpr<(outs GPR:$dst, GPR:$base_wb),
Evan Cheng81794bb2008-11-13 07:34:59 +0000726 (ins addrmode2:$addr), LdFrm,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000727 "ldr", "b $dst, $addr!", "$addr.base = $base_wb", []>;
728
Evan Chengbe998242008-11-06 08:47:38 +0000729def LDRB_POST : AI2ldbpo<(outs GPR:$dst, GPR:$base_wb),
Evan Cheng81794bb2008-11-13 07:34:59 +0000730 (ins GPR:$base,am2offset:$offset), LdFrm,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000731 "ldr", "b $dst, [$base], $offset", "$base = $base_wb", []>;
732
Evan Chengbe998242008-11-06 08:47:38 +0000733def LDRSH_PRE : AI3ldshpr<(outs GPR:$dst, GPR:$base_wb),
Evan Cheng81794bb2008-11-13 07:34:59 +0000734 (ins addrmode3:$addr), LdMiscFrm,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000735 "ldr", "sh $dst, $addr!", "$addr.base = $base_wb", []>;
736
Evan Chengbe998242008-11-06 08:47:38 +0000737def LDRSH_POST: AI3ldshpo<(outs GPR:$dst, GPR:$base_wb),
Evan Cheng81794bb2008-11-13 07:34:59 +0000738 (ins GPR:$base,am3offset:$offset), LdMiscFrm,
739 "ldr", "sh $dst, [$base], $offset", "$base = $base_wb", []>;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000740
Evan Chengbe998242008-11-06 08:47:38 +0000741def LDRSB_PRE : AI3ldsbpr<(outs GPR:$dst, GPR:$base_wb),
Evan Cheng81794bb2008-11-13 07:34:59 +0000742 (ins addrmode3:$addr), LdMiscFrm,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000743 "ldr", "sb $dst, $addr!", "$addr.base = $base_wb", []>;
744
Evan Chengbe998242008-11-06 08:47:38 +0000745def LDRSB_POST: AI3ldsbpo<(outs GPR:$dst, GPR:$base_wb),
Evan Cheng81794bb2008-11-13 07:34:59 +0000746 (ins GPR:$base,am3offset:$offset), LdMiscFrm,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000747 "ldr", "sb $dst, [$base], $offset", "$base = $base_wb", []>;
Chris Lattnerca4e0fe2008-01-10 05:12:37 +0000748}
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000749
750// Store
Evan Cheng81794bb2008-11-13 07:34:59 +0000751def STR : AI2stw<(outs), (ins GPR:$src, addrmode2:$addr), StFrm,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000752 "str", " $src, $addr",
753 [(store GPR:$src, addrmode2:$addr)]>;
754
755// Stores with truncate
Evan Cheng81794bb2008-11-13 07:34:59 +0000756def STRH : AI3sth<(outs), (ins GPR:$src, addrmode3:$addr), StMiscFrm,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000757 "str", "h $src, $addr",
758 [(truncstorei16 GPR:$src, addrmode3:$addr)]>;
759
Evan Cheng81794bb2008-11-13 07:34:59 +0000760def STRB : AI2stb<(outs), (ins GPR:$src, addrmode2:$addr), StFrm,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000761 "str", "b $src, $addr",
762 [(truncstorei8 GPR:$src, addrmode2:$addr)]>;
763
764// Store doubleword
Chris Lattner6887b142008-01-06 08:36:04 +0000765let mayStore = 1 in
Evan Cheng41169552009-06-15 08:28:29 +0000766def STRD : AI3std<(outs), (ins GPR:$src1, GPR:$src2, addrmode3:$addr),StMiscFrm,
767 "str", "d $src1, $addr", []>, Requires<[IsARM, HasV5T]>;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000768
769// Indexed stores
Evan Chengbe998242008-11-06 08:47:38 +0000770def STR_PRE : AI2stwpr<(outs GPR:$base_wb),
Evan Cheng81794bb2008-11-13 07:34:59 +0000771 (ins GPR:$src, GPR:$base, am2offset:$offset), StFrm,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000772 "str", " $src, [$base, $offset]!", "$base = $base_wb",
773 [(set GPR:$base_wb,
774 (pre_store GPR:$src, GPR:$base, am2offset:$offset))]>;
775
Evan Chengbe998242008-11-06 08:47:38 +0000776def STR_POST : AI2stwpo<(outs GPR:$base_wb),
Evan Cheng81794bb2008-11-13 07:34:59 +0000777 (ins GPR:$src, GPR:$base,am2offset:$offset), StFrm,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000778 "str", " $src, [$base], $offset", "$base = $base_wb",
779 [(set GPR:$base_wb,
780 (post_store GPR:$src, GPR:$base, am2offset:$offset))]>;
781
Evan Chengbe998242008-11-06 08:47:38 +0000782def STRH_PRE : AI3sthpr<(outs GPR:$base_wb),
Evan Cheng81794bb2008-11-13 07:34:59 +0000783 (ins GPR:$src, GPR:$base,am3offset:$offset), StMiscFrm,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000784 "str", "h $src, [$base, $offset]!", "$base = $base_wb",
785 [(set GPR:$base_wb,
786 (pre_truncsti16 GPR:$src, GPR:$base,am3offset:$offset))]>;
787
Evan Chengbe998242008-11-06 08:47:38 +0000788def STRH_POST: AI3sthpo<(outs GPR:$base_wb),
Evan Cheng81794bb2008-11-13 07:34:59 +0000789 (ins GPR:$src, GPR:$base,am3offset:$offset), StMiscFrm,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000790 "str", "h $src, [$base], $offset", "$base = $base_wb",
791 [(set GPR:$base_wb, (post_truncsti16 GPR:$src,
792 GPR:$base, am3offset:$offset))]>;
793
Evan Chengbe998242008-11-06 08:47:38 +0000794def STRB_PRE : AI2stbpr<(outs GPR:$base_wb),
Evan Cheng81794bb2008-11-13 07:34:59 +0000795 (ins GPR:$src, GPR:$base,am2offset:$offset), StFrm,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000796 "str", "b $src, [$base, $offset]!", "$base = $base_wb",
797 [(set GPR:$base_wb, (pre_truncsti8 GPR:$src,
798 GPR:$base, am2offset:$offset))]>;
799
Evan Chengbe998242008-11-06 08:47:38 +0000800def STRB_POST: AI2stbpo<(outs GPR:$base_wb),
Evan Cheng81794bb2008-11-13 07:34:59 +0000801 (ins GPR:$src, GPR:$base,am2offset:$offset), StFrm,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000802 "str", "b $src, [$base], $offset", "$base = $base_wb",
803 [(set GPR:$base_wb, (post_truncsti8 GPR:$src,
804 GPR:$base, am2offset:$offset))]>;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000805
806//===----------------------------------------------------------------------===//
807// Load / store multiple Instructions.
808//
809
Evan Chengb783fa32007-07-19 01:14:50 +0000810// FIXME: $dst1 should be a def.
Chris Lattnerca4e0fe2008-01-10 05:12:37 +0000811let mayLoad = 1 in
Evan Chengbe998242008-11-06 08:47:38 +0000812def LDM : AXI4ld<(outs),
Evan Chengb783fa32007-07-19 01:14:50 +0000813 (ins addrmode4:$addr, pred:$p, reglist:$dst1, variable_ops),
Evan Cheng11838a82008-11-12 07:18:38 +0000814 LdStMulFrm, "ldm${p}${addr:submode} $addr, $dst1",
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000815 []>;
816
Chris Lattner6887b142008-01-06 08:36:04 +0000817let mayStore = 1 in
Evan Chengbe998242008-11-06 08:47:38 +0000818def STM : AXI4st<(outs),
Evan Chengb783fa32007-07-19 01:14:50 +0000819 (ins addrmode4:$addr, pred:$p, reglist:$src1, variable_ops),
Evan Cheng11838a82008-11-12 07:18:38 +0000820 LdStMulFrm, "stm${p}${addr:submode} $addr, $src1",
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000821 []>;
822
823//===----------------------------------------------------------------------===//
824// Move Instructions.
825//
826
Evan Chengd97d7142009-06-12 20:46:18 +0000827let neverHasSideEffects = 1 in
Evan Cheng86a926a2008-11-05 18:35:52 +0000828def MOVr : AsI1<0b1101, (outs GPR:$dst), (ins GPR:$src), DPFrm,
829 "mov", " $dst, $src", []>, UnaryDP;
830def MOVs : AsI1<0b1101, (outs GPR:$dst), (ins so_reg:$src), DPSoRegFrm,
831 "mov", " $dst, $src", [(set GPR:$dst, so_reg:$src)]>, UnaryDP;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000832
Evan Chengbd0ca9c2009-02-05 08:42:55 +0000833let isReMaterializable = 1, isAsCheapAsAMove = 1 in
Evan Cheng86a926a2008-11-05 18:35:52 +0000834def MOVi : AsI1<0b1101, (outs GPR:$dst), (ins so_imm:$src), DPFrm,
835 "mov", " $dst, $src", [(set GPR:$dst, so_imm:$src)]>, UnaryDP;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000836
Evan Cheng7f240d22008-11-14 20:09:11 +0000837def MOVrx : AsI1<0b1101, (outs GPR:$dst), (ins GPR:$src), Pseudo,
Evan Chengb783fa32007-07-19 01:14:50 +0000838 "mov", " $dst, $src, rrx",
Evan Cheng86a926a2008-11-05 18:35:52 +0000839 [(set GPR:$dst, (ARMrrx GPR:$src))]>, UnaryDP;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000840
841// These aren't really mov instructions, but we have to define them this way
842// due to flag operands.
843
Evan Cheng6e4d1d92007-09-11 19:55:27 +0000844let Defs = [CPSR] in {
Evan Cheng7f240d22008-11-14 20:09:11 +0000845def MOVsrl_flag : AI1<0b1101, (outs GPR:$dst), (ins GPR:$src), Pseudo,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000846 "mov", "s $dst, $src, lsr #1",
Evan Cheng86a926a2008-11-05 18:35:52 +0000847 [(set GPR:$dst, (ARMsrl_flag GPR:$src))]>, UnaryDP;
Evan Cheng7f240d22008-11-14 20:09:11 +0000848def MOVsra_flag : AI1<0b1101, (outs GPR:$dst), (ins GPR:$src), Pseudo,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000849 "mov", "s $dst, $src, asr #1",
Evan Cheng86a926a2008-11-05 18:35:52 +0000850 [(set GPR:$dst, (ARMsra_flag GPR:$src))]>, UnaryDP;
Evan Cheng6e4d1d92007-09-11 19:55:27 +0000851}
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000852
853//===----------------------------------------------------------------------===//
854// Extend Instructions.
855//
856
857// Sign extenders
858
Evan Cheng37afa432008-11-06 22:15:19 +0000859defm SXTB : AI_unary_rrot<0b01101010,
860 "sxtb", UnOpFrag<(sext_inreg node:$Src, i8)>>;
861defm SXTH : AI_unary_rrot<0b01101011,
862 "sxth", UnOpFrag<(sext_inreg node:$Src, i16)>>;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000863
Evan Cheng37afa432008-11-06 22:15:19 +0000864defm SXTAB : AI_bin_rrot<0b01101010,
865 "sxtab", BinOpFrag<(add node:$LHS, (sext_inreg node:$RHS, i8))>>;
866defm SXTAH : AI_bin_rrot<0b01101011,
867 "sxtah", BinOpFrag<(add node:$LHS, (sext_inreg node:$RHS,i16))>>;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000868
869// TODO: SXT(A){B|H}16
870
871// Zero extenders
872
873let AddedComplexity = 16 in {
Evan Cheng37afa432008-11-06 22:15:19 +0000874defm UXTB : AI_unary_rrot<0b01101110,
875 "uxtb" , UnOpFrag<(and node:$Src, 0x000000FF)>>;
876defm UXTH : AI_unary_rrot<0b01101111,
877 "uxth" , UnOpFrag<(and node:$Src, 0x0000FFFF)>>;
878defm UXTB16 : AI_unary_rrot<0b01101100,
879 "uxtb16", UnOpFrag<(and node:$Src, 0x00FF00FF)>>;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000880
Bob Wilson74590a02009-06-22 22:08:29 +0000881def : ARMV6Pat<(and (shl GPR:$Src, (i32 8)), 0xFF00FF),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000882 (UXTB16r_rot GPR:$Src, 24)>;
Bob Wilson74590a02009-06-22 22:08:29 +0000883def : ARMV6Pat<(and (srl GPR:$Src, (i32 8)), 0xFF00FF),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000884 (UXTB16r_rot GPR:$Src, 8)>;
885
Evan Cheng37afa432008-11-06 22:15:19 +0000886defm UXTAB : AI_bin_rrot<0b01101110, "uxtab",
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000887 BinOpFrag<(add node:$LHS, (and node:$RHS, 0x00FF))>>;
Evan Cheng37afa432008-11-06 22:15:19 +0000888defm UXTAH : AI_bin_rrot<0b01101111, "uxtah",
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000889 BinOpFrag<(add node:$LHS, (and node:$RHS, 0xFFFF))>>;
890}
891
892// This isn't safe in general, the add is two 16-bit units, not a 32-bit add.
893//defm UXTAB16 : xxx<"uxtab16", 0xff00ff>;
894
895// TODO: UXT(A){B|H}16
896
897//===----------------------------------------------------------------------===//
898// Arithmetic Instructions.
899//
900
Jim Grosbach88c246f2008-10-14 20:36:24 +0000901defm ADD : AsI1_bin_irs<0b0100, "add",
Evan Cheng469bc762008-09-17 07:53:38 +0000902 BinOpFrag<(add node:$LHS, node:$RHS)>>;
Jim Grosbach88c246f2008-10-14 20:36:24 +0000903defm SUB : AsI1_bin_irs<0b0010, "sub",
Evan Cheng469bc762008-09-17 07:53:38 +0000904 BinOpFrag<(sub node:$LHS, node:$RHS)>>;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000905
906// ADD and SUB with 's' bit set.
Jim Grosbach88c246f2008-10-14 20:36:24 +0000907defm ADDS : ASI1_bin_s_irs<0b0100, "add",
Evan Cheng469bc762008-09-17 07:53:38 +0000908 BinOpFrag<(addc node:$LHS, node:$RHS)>>;
Jim Grosbach88c246f2008-10-14 20:36:24 +0000909defm SUBS : ASI1_bin_s_irs<0b0010, "sub",
Evan Cheng469bc762008-09-17 07:53:38 +0000910 BinOpFrag<(subc node:$LHS, node:$RHS)>>;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000911
912// FIXME: Do not allow ADC / SBC to be predicated for now.
Jim Grosbach88c246f2008-10-14 20:36:24 +0000913defm ADC : AsXI1_bin_c_irs<0b0101, "adc",
Evan Cheng469bc762008-09-17 07:53:38 +0000914 BinOpFrag<(adde node:$LHS, node:$RHS)>>;
Jim Grosbach88c246f2008-10-14 20:36:24 +0000915defm SBC : AsXI1_bin_c_irs<0b0110, "sbc",
Evan Cheng469bc762008-09-17 07:53:38 +0000916 BinOpFrag<(sube node:$LHS, node:$RHS)>>;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000917
918// These don't define reg/reg forms, because they are handled above.
Evan Cheng86a926a2008-11-05 18:35:52 +0000919def RSBri : AsI1<0b0011, (outs GPR:$dst), (ins GPR:$a, so_imm:$b), DPFrm,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000920 "rsb", " $dst, $a, $b",
921 [(set GPR:$dst, (sub so_imm:$b, GPR:$a))]>;
922
Evan Cheng86a926a2008-11-05 18:35:52 +0000923def RSBrs : AsI1<0b0011, (outs GPR:$dst), (ins GPR:$a, so_reg:$b), DPSoRegFrm,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000924 "rsb", " $dst, $a, $b",
925 [(set GPR:$dst, (sub so_reg:$b, GPR:$a))]>;
926
927// RSB with 's' bit set.
Evan Cheng6e4d1d92007-09-11 19:55:27 +0000928let Defs = [CPSR] in {
Evan Cheng86a926a2008-11-05 18:35:52 +0000929def RSBSri : AI1<0b0011, (outs GPR:$dst), (ins GPR:$a, so_imm:$b), DPFrm,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000930 "rsb", "s $dst, $a, $b",
Evan Cheng6e4d1d92007-09-11 19:55:27 +0000931 [(set GPR:$dst, (subc so_imm:$b, GPR:$a))]>;
Evan Cheng86a926a2008-11-05 18:35:52 +0000932def RSBSrs : AI1<0b0011, (outs GPR:$dst), (ins GPR:$a, so_reg:$b), DPSoRegFrm,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000933 "rsb", "s $dst, $a, $b",
Evan Cheng6e4d1d92007-09-11 19:55:27 +0000934 [(set GPR:$dst, (subc so_reg:$b, GPR:$a))]>;
935}
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000936
937// FIXME: Do not allow RSC to be predicated for now. But they can set CPSR.
Evan Cheng6e4d1d92007-09-11 19:55:27 +0000938let Uses = [CPSR] in {
Jim Grosbach88c246f2008-10-14 20:36:24 +0000939def RSCri : AXI1<0b0111, (outs GPR:$dst), (ins GPR:$a, so_imm:$b, cc_out:$s),
Evan Cheng86a926a2008-11-05 18:35:52 +0000940 DPFrm, "rsc${s} $dst, $a, $b",
Evan Cheng6e4d1d92007-09-11 19:55:27 +0000941 [(set GPR:$dst, (sube so_imm:$b, GPR:$a))]>;
Jim Grosbach88c246f2008-10-14 20:36:24 +0000942def RSCrs : AXI1<0b0111, (outs GPR:$dst), (ins GPR:$a, so_reg:$b, cc_out:$s),
Evan Cheng86a926a2008-11-05 18:35:52 +0000943 DPSoRegFrm, "rsc${s} $dst, $a, $b",
Evan Cheng6e4d1d92007-09-11 19:55:27 +0000944 [(set GPR:$dst, (sube so_reg:$b, GPR:$a))]>;
945}
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000946
947// (sub X, imm) gets canonicalized to (add X, -imm). Match this form.
948def : ARMPat<(add GPR:$src, so_imm_neg:$imm),
949 (SUBri GPR:$src, so_imm_neg:$imm)>;
950
951//def : ARMPat<(addc GPR:$src, so_imm_neg:$imm),
952// (SUBSri GPR:$src, so_imm_neg:$imm)>;
953//def : ARMPat<(adde GPR:$src, so_imm_neg:$imm),
954// (SBCri GPR:$src, so_imm_neg:$imm)>;
955
956// Note: These are implemented in C++ code, because they have to generate
957// ADD/SUBrs instructions, which use a complex pattern that a xform function
958// cannot produce.
959// (mul X, 2^n+1) -> (add (X << n), X)
960// (mul X, 2^n-1) -> (rsb X, (X << n))
961
962
963//===----------------------------------------------------------------------===//
964// Bitwise Instructions.
965//
966
Jim Grosbach88c246f2008-10-14 20:36:24 +0000967defm AND : AsI1_bin_irs<0b0000, "and",
Evan Cheng469bc762008-09-17 07:53:38 +0000968 BinOpFrag<(and node:$LHS, node:$RHS)>>;
Jim Grosbach88c246f2008-10-14 20:36:24 +0000969defm ORR : AsI1_bin_irs<0b1100, "orr",
Evan Cheng469bc762008-09-17 07:53:38 +0000970 BinOpFrag<(or node:$LHS, node:$RHS)>>;
Jim Grosbach88c246f2008-10-14 20:36:24 +0000971defm EOR : AsI1_bin_irs<0b0001, "eor",
Evan Cheng469bc762008-09-17 07:53:38 +0000972 BinOpFrag<(xor node:$LHS, node:$RHS)>>;
Jim Grosbach88c246f2008-10-14 20:36:24 +0000973defm BIC : AsI1_bin_irs<0b1110, "bic",
Evan Cheng469bc762008-09-17 07:53:38 +0000974 BinOpFrag<(and node:$LHS, (not node:$RHS))>>;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000975
Evan Cheng86a926a2008-11-05 18:35:52 +0000976def MVNr : AsI1<0b1111, (outs GPR:$dst), (ins GPR:$src), DPFrm,
977 "mvn", " $dst, $src",
978 [(set GPR:$dst, (not GPR:$src))]>, UnaryDP;
979def MVNs : AsI1<0b1111, (outs GPR:$dst), (ins so_reg:$src), DPSoRegFrm,
980 "mvn", " $dst, $src",
981 [(set GPR:$dst, (not so_reg:$src))]>, UnaryDP;
Evan Chengbd0ca9c2009-02-05 08:42:55 +0000982let isReMaterializable = 1, isAsCheapAsAMove = 1 in
Evan Cheng86a926a2008-11-05 18:35:52 +0000983def MVNi : AsI1<0b1111, (outs GPR:$dst), (ins so_imm:$imm), DPFrm,
984 "mvn", " $dst, $imm",
985 [(set GPR:$dst, so_imm_not:$imm)]>,UnaryDP;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000986
987def : ARMPat<(and GPR:$src, so_imm_not:$imm),
988 (BICri GPR:$src, so_imm_not:$imm)>;
989
990//===----------------------------------------------------------------------===//
991// Multiply Instructions.
992//
993
Evan Chengee80fb72008-11-06 01:21:28 +0000994def MUL : AsMul1I<0b0000000, (outs GPR:$dst), (ins GPR:$a, GPR:$b),
Evan Chengf8e8b622008-11-06 17:48:05 +0000995 "mul", " $dst, $a, $b",
996 [(set GPR:$dst, (mul GPR:$a, GPR:$b))]>;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000997
Evan Chengee80fb72008-11-06 01:21:28 +0000998def MLA : AsMul1I<0b0000001, (outs GPR:$dst), (ins GPR:$a, GPR:$b, GPR:$c),
Evan Chengf8e8b622008-11-06 17:48:05 +0000999 "mla", " $dst, $a, $b, $c",
1000 [(set GPR:$dst, (add (mul GPR:$a, GPR:$b), GPR:$c))]>;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001001
1002// Extra precision multiplies with low / high results
Evan Chengd97d7142009-06-12 20:46:18 +00001003let neverHasSideEffects = 1 in {
Evan Chengee80fb72008-11-06 01:21:28 +00001004def SMULL : AsMul1I<0b0000110, (outs GPR:$ldst, GPR:$hdst),
1005 (ins GPR:$a, GPR:$b),
1006 "smull", " $ldst, $hdst, $a, $b", []>;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001007
Evan Chengee80fb72008-11-06 01:21:28 +00001008def UMULL : AsMul1I<0b0000100, (outs GPR:$ldst, GPR:$hdst),
1009 (ins GPR:$a, GPR:$b),
1010 "umull", " $ldst, $hdst, $a, $b", []>;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001011
1012// Multiply + accumulate
Evan Chengee80fb72008-11-06 01:21:28 +00001013def SMLAL : AsMul1I<0b0000111, (outs GPR:$ldst, GPR:$hdst),
1014 (ins GPR:$a, GPR:$b),
1015 "smlal", " $ldst, $hdst, $a, $b", []>;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001016
Evan Chengee80fb72008-11-06 01:21:28 +00001017def UMLAL : AsMul1I<0b0000101, (outs GPR:$ldst, GPR:$hdst),
1018 (ins GPR:$a, GPR:$b),
1019 "umlal", " $ldst, $hdst, $a, $b", []>;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001020
Evan Chengee80fb72008-11-06 01:21:28 +00001021def UMAAL : AMul1I <0b0000010, (outs GPR:$ldst, GPR:$hdst),
1022 (ins GPR:$a, GPR:$b),
1023 "umaal", " $ldst, $hdst, $a, $b", []>,
1024 Requires<[IsARM, HasV6]>;
Evan Chengd97d7142009-06-12 20:46:18 +00001025} // neverHasSideEffects
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001026
1027// Most significant word multiply
Evan Chengee80fb72008-11-06 01:21:28 +00001028def SMMUL : AMul2I <0b0111010, (outs GPR:$dst), (ins GPR:$a, GPR:$b),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001029 "smmul", " $dst, $a, $b",
1030 [(set GPR:$dst, (mulhs GPR:$a, GPR:$b))]>,
Evan Chengee80fb72008-11-06 01:21:28 +00001031 Requires<[IsARM, HasV6]> {
1032 let Inst{7-4} = 0b0001;
1033 let Inst{15-12} = 0b1111;
1034}
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001035
Evan Chengee80fb72008-11-06 01:21:28 +00001036def SMMLA : AMul2I <0b0111010, (outs GPR:$dst), (ins GPR:$a, GPR:$b, GPR:$c),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001037 "smmla", " $dst, $a, $b, $c",
1038 [(set GPR:$dst, (add (mulhs GPR:$a, GPR:$b), GPR:$c))]>,
Evan Chengee80fb72008-11-06 01:21:28 +00001039 Requires<[IsARM, HasV6]> {
1040 let Inst{7-4} = 0b0001;
1041}
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001042
1043
Evan Chengee80fb72008-11-06 01:21:28 +00001044def SMMLS : AMul2I <0b0111010, (outs GPR:$dst), (ins GPR:$a, GPR:$b, GPR:$c),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001045 "smmls", " $dst, $a, $b, $c",
1046 [(set GPR:$dst, (sub GPR:$c, (mulhs GPR:$a, GPR:$b)))]>,
Evan Chengee80fb72008-11-06 01:21:28 +00001047 Requires<[IsARM, HasV6]> {
1048 let Inst{7-4} = 0b1101;
1049}
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001050
Raul Herbster2e07e8d2007-08-30 23:25:47 +00001051multiclass AI_smul<string opc, PatFrag opnode> {
Evan Cheng38396be2008-11-06 03:35:07 +00001052 def BB : AMulxyI<0b0001011, (outs GPR:$dst), (ins GPR:$a, GPR:$b),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001053 !strconcat(opc, "bb"), " $dst, $a, $b",
1054 [(set GPR:$dst, (opnode (sext_inreg GPR:$a, i16),
1055 (sext_inreg GPR:$b, i16)))]>,
Evan Cheng38396be2008-11-06 03:35:07 +00001056 Requires<[IsARM, HasV5TE]> {
1057 let Inst{5} = 0;
1058 let Inst{6} = 0;
1059 }
Raul Herbster2e07e8d2007-08-30 23:25:47 +00001060
Evan Cheng38396be2008-11-06 03:35:07 +00001061 def BT : AMulxyI<0b0001011, (outs GPR:$dst), (ins GPR:$a, GPR:$b),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001062 !strconcat(opc, "bt"), " $dst, $a, $b",
1063 [(set GPR:$dst, (opnode (sext_inreg GPR:$a, i16),
Bob Wilson74590a02009-06-22 22:08:29 +00001064 (sra GPR:$b, (i32 16))))]>,
Evan Cheng38396be2008-11-06 03:35:07 +00001065 Requires<[IsARM, HasV5TE]> {
1066 let Inst{5} = 0;
1067 let Inst{6} = 1;
1068 }
Raul Herbster2e07e8d2007-08-30 23:25:47 +00001069
Evan Cheng38396be2008-11-06 03:35:07 +00001070 def TB : AMulxyI<0b0001011, (outs GPR:$dst), (ins GPR:$a, GPR:$b),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001071 !strconcat(opc, "tb"), " $dst, $a, $b",
Bob Wilson74590a02009-06-22 22:08:29 +00001072 [(set GPR:$dst, (opnode (sra GPR:$a, (i32 16)),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001073 (sext_inreg GPR:$b, i16)))]>,
Evan Cheng38396be2008-11-06 03:35:07 +00001074 Requires<[IsARM, HasV5TE]> {
1075 let Inst{5} = 1;
1076 let Inst{6} = 0;
1077 }
Raul Herbster2e07e8d2007-08-30 23:25:47 +00001078
Evan Cheng38396be2008-11-06 03:35:07 +00001079 def TT : AMulxyI<0b0001011, (outs GPR:$dst), (ins GPR:$a, GPR:$b),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001080 !strconcat(opc, "tt"), " $dst, $a, $b",
Bob Wilson74590a02009-06-22 22:08:29 +00001081 [(set GPR:$dst, (opnode (sra GPR:$a, (i32 16)),
1082 (sra GPR:$b, (i32 16))))]>,
Evan Cheng38396be2008-11-06 03:35:07 +00001083 Requires<[IsARM, HasV5TE]> {
1084 let Inst{5} = 1;
1085 let Inst{6} = 1;
1086 }
Raul Herbster2e07e8d2007-08-30 23:25:47 +00001087
Evan Cheng38396be2008-11-06 03:35:07 +00001088 def WB : AMulxyI<0b0001001, (outs GPR:$dst), (ins GPR:$a, GPR:$b),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001089 !strconcat(opc, "wb"), " $dst, $a, $b",
1090 [(set GPR:$dst, (sra (opnode GPR:$a,
Bob Wilson74590a02009-06-22 22:08:29 +00001091 (sext_inreg GPR:$b, i16)), (i32 16)))]>,
Evan Cheng38396be2008-11-06 03:35:07 +00001092 Requires<[IsARM, HasV5TE]> {
1093 let Inst{5} = 1;
1094 let Inst{6} = 0;
1095 }
Raul Herbster2e07e8d2007-08-30 23:25:47 +00001096
Evan Cheng38396be2008-11-06 03:35:07 +00001097 def WT : AMulxyI<0b0001001, (outs GPR:$dst), (ins GPR:$a, GPR:$b),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001098 !strconcat(opc, "wt"), " $dst, $a, $b",
1099 [(set GPR:$dst, (sra (opnode GPR:$a,
Bob Wilson74590a02009-06-22 22:08:29 +00001100 (sra GPR:$b, (i32 16))), (i32 16)))]>,
Evan Cheng38396be2008-11-06 03:35:07 +00001101 Requires<[IsARM, HasV5TE]> {
1102 let Inst{5} = 1;
1103 let Inst{6} = 1;
1104 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001105}
1106
Raul Herbster2e07e8d2007-08-30 23:25:47 +00001107
1108multiclass AI_smla<string opc, PatFrag opnode> {
Evan Cheng38396be2008-11-06 03:35:07 +00001109 def BB : AMulxyI<0b0001000, (outs GPR:$dst), (ins GPR:$a, GPR:$b, GPR:$acc),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001110 !strconcat(opc, "bb"), " $dst, $a, $b, $acc",
1111 [(set GPR:$dst, (add GPR:$acc,
1112 (opnode (sext_inreg GPR:$a, i16),
1113 (sext_inreg GPR:$b, i16))))]>,
Evan Cheng38396be2008-11-06 03:35:07 +00001114 Requires<[IsARM, HasV5TE]> {
1115 let Inst{5} = 0;
1116 let Inst{6} = 0;
1117 }
Raul Herbster2e07e8d2007-08-30 23:25:47 +00001118
Evan Cheng38396be2008-11-06 03:35:07 +00001119 def BT : AMulxyI<0b0001000, (outs GPR:$dst), (ins GPR:$a, GPR:$b, GPR:$acc),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001120 !strconcat(opc, "bt"), " $dst, $a, $b, $acc",
1121 [(set GPR:$dst, (add GPR:$acc, (opnode (sext_inreg GPR:$a, i16),
Bob Wilson74590a02009-06-22 22:08:29 +00001122 (sra GPR:$b, (i32 16)))))]>,
Evan Cheng38396be2008-11-06 03:35:07 +00001123 Requires<[IsARM, HasV5TE]> {
1124 let Inst{5} = 0;
1125 let Inst{6} = 1;
1126 }
Raul Herbster2e07e8d2007-08-30 23:25:47 +00001127
Evan Cheng38396be2008-11-06 03:35:07 +00001128 def TB : AMulxyI<0b0001000, (outs GPR:$dst), (ins GPR:$a, GPR:$b, GPR:$acc),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001129 !strconcat(opc, "tb"), " $dst, $a, $b, $acc",
Bob Wilson74590a02009-06-22 22:08:29 +00001130 [(set GPR:$dst, (add GPR:$acc, (opnode (sra GPR:$a, (i32 16)),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001131 (sext_inreg GPR:$b, i16))))]>,
Evan Cheng38396be2008-11-06 03:35:07 +00001132 Requires<[IsARM, HasV5TE]> {
1133 let Inst{5} = 1;
1134 let Inst{6} = 0;
1135 }
Raul Herbster2e07e8d2007-08-30 23:25:47 +00001136
Evan Cheng38396be2008-11-06 03:35:07 +00001137 def TT : AMulxyI<0b0001000, (outs GPR:$dst), (ins GPR:$a, GPR:$b, GPR:$acc),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001138 !strconcat(opc, "tt"), " $dst, $a, $b, $acc",
Bob Wilson74590a02009-06-22 22:08:29 +00001139 [(set GPR:$dst, (add GPR:$acc, (opnode (sra GPR:$a, (i32 16)),
1140 (sra GPR:$b, (i32 16)))))]>,
Evan Cheng38396be2008-11-06 03:35:07 +00001141 Requires<[IsARM, HasV5TE]> {
1142 let Inst{5} = 1;
1143 let Inst{6} = 1;
1144 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001145
Evan Cheng38396be2008-11-06 03:35:07 +00001146 def WB : AMulxyI<0b0001001, (outs GPR:$dst), (ins GPR:$a, GPR:$b, GPR:$acc),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001147 !strconcat(opc, "wb"), " $dst, $a, $b, $acc",
1148 [(set GPR:$dst, (add GPR:$acc, (sra (opnode GPR:$a,
Bob Wilson74590a02009-06-22 22:08:29 +00001149 (sext_inreg GPR:$b, i16)), (i32 16))))]>,
Evan Cheng38396be2008-11-06 03:35:07 +00001150 Requires<[IsARM, HasV5TE]> {
1151 let Inst{5} = 0;
1152 let Inst{6} = 0;
1153 }
Raul Herbster2e07e8d2007-08-30 23:25:47 +00001154
Evan Cheng38396be2008-11-06 03:35:07 +00001155 def WT : AMulxyI<0b0001001, (outs GPR:$dst), (ins GPR:$a, GPR:$b, GPR:$acc),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001156 !strconcat(opc, "wt"), " $dst, $a, $b, $acc",
1157 [(set GPR:$dst, (add GPR:$acc, (sra (opnode GPR:$a,
Bob Wilson74590a02009-06-22 22:08:29 +00001158 (sra GPR:$b, (i32 16))), (i32 16))))]>,
Evan Cheng38396be2008-11-06 03:35:07 +00001159 Requires<[IsARM, HasV5TE]> {
1160 let Inst{5} = 0;
1161 let Inst{6} = 1;
1162 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001163}
1164
Raul Herbster2e07e8d2007-08-30 23:25:47 +00001165defm SMUL : AI_smul<"smul", BinOpFrag<(mul node:$LHS, node:$RHS)>>;
1166defm SMLA : AI_smla<"smla", BinOpFrag<(mul node:$LHS, node:$RHS)>>;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001167
1168// TODO: Halfword multiple accumulate long: SMLAL<x><y>
1169// TODO: Dual halfword multiple: SMUAD, SMUSD, SMLAD, SMLSD, SMLALD, SMLSLD
1170
1171//===----------------------------------------------------------------------===//
1172// Misc. Arithmetic Instructions.
1173//
1174
Evan Chengc2121a22008-11-07 01:41:35 +00001175def CLZ : AMiscA1I<0b000010110, (outs GPR:$dst), (ins GPR:$src),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001176 "clz", " $dst, $src",
Evan Chengc2121a22008-11-07 01:41:35 +00001177 [(set GPR:$dst, (ctlz GPR:$src))]>, Requires<[IsARM, HasV5T]> {
1178 let Inst{7-4} = 0b0001;
1179 let Inst{11-8} = 0b1111;
1180 let Inst{19-16} = 0b1111;
1181}
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001182
Evan Chengc2121a22008-11-07 01:41:35 +00001183def REV : AMiscA1I<0b01101011, (outs GPR:$dst), (ins GPR:$src),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001184 "rev", " $dst, $src",
Evan Chengc2121a22008-11-07 01:41:35 +00001185 [(set GPR:$dst, (bswap GPR:$src))]>, Requires<[IsARM, HasV6]> {
1186 let Inst{7-4} = 0b0011;
1187 let Inst{11-8} = 0b1111;
1188 let Inst{19-16} = 0b1111;
1189}
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001190
Evan Chengc2121a22008-11-07 01:41:35 +00001191def REV16 : AMiscA1I<0b01101011, (outs GPR:$dst), (ins GPR:$src),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001192 "rev16", " $dst, $src",
1193 [(set GPR:$dst,
Bob Wilson74590a02009-06-22 22:08:29 +00001194 (or (and (srl GPR:$src, (i32 8)), 0xFF),
1195 (or (and (shl GPR:$src, (i32 8)), 0xFF00),
1196 (or (and (srl GPR:$src, (i32 8)), 0xFF0000),
1197 (and (shl GPR:$src, (i32 8)), 0xFF000000)))))]>,
Evan Chengc2121a22008-11-07 01:41:35 +00001198 Requires<[IsARM, HasV6]> {
1199 let Inst{7-4} = 0b1011;
1200 let Inst{11-8} = 0b1111;
1201 let Inst{19-16} = 0b1111;
1202}
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001203
Evan Chengc2121a22008-11-07 01:41:35 +00001204def REVSH : AMiscA1I<0b01101111, (outs GPR:$dst), (ins GPR:$src),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001205 "revsh", " $dst, $src",
1206 [(set GPR:$dst,
1207 (sext_inreg
Bob Wilson74590a02009-06-22 22:08:29 +00001208 (or (srl (and GPR:$src, 0xFF00), (i32 8)),
1209 (shl GPR:$src, (i32 8))), i16))]>,
Evan Chengc2121a22008-11-07 01:41:35 +00001210 Requires<[IsARM, HasV6]> {
1211 let Inst{7-4} = 0b1011;
1212 let Inst{11-8} = 0b1111;
1213 let Inst{19-16} = 0b1111;
1214}
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001215
Evan Chengc2121a22008-11-07 01:41:35 +00001216def PKHBT : AMiscA1I<0b01101000, (outs GPR:$dst),
1217 (ins GPR:$src1, GPR:$src2, i32imm:$shamt),
1218 "pkhbt", " $dst, $src1, $src2, LSL $shamt",
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001219 [(set GPR:$dst, (or (and GPR:$src1, 0xFFFF),
1220 (and (shl GPR:$src2, (i32 imm:$shamt)),
1221 0xFFFF0000)))]>,
Evan Chengc2121a22008-11-07 01:41:35 +00001222 Requires<[IsARM, HasV6]> {
1223 let Inst{6-4} = 0b001;
1224}
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001225
1226// Alternate cases for PKHBT where identities eliminate some nodes.
1227def : ARMV6Pat<(or (and GPR:$src1, 0xFFFF), (and GPR:$src2, 0xFFFF0000)),
1228 (PKHBT GPR:$src1, GPR:$src2, 0)>;
1229def : ARMV6Pat<(or (and GPR:$src1, 0xFFFF), (shl GPR:$src2, imm16_31:$shamt)),
1230 (PKHBT GPR:$src1, GPR:$src2, imm16_31:$shamt)>;
1231
1232
Evan Chengc2121a22008-11-07 01:41:35 +00001233def PKHTB : AMiscA1I<0b01101000, (outs GPR:$dst),
1234 (ins GPR:$src1, GPR:$src2, i32imm:$shamt),
1235 "pkhtb", " $dst, $src1, $src2, ASR $shamt",
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001236 [(set GPR:$dst, (or (and GPR:$src1, 0xFFFF0000),
1237 (and (sra GPR:$src2, imm16_31:$shamt),
Evan Chengc2121a22008-11-07 01:41:35 +00001238 0xFFFF)))]>, Requires<[IsARM, HasV6]> {
1239 let Inst{6-4} = 0b101;
1240}
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001241
1242// Alternate cases for PKHTB where identities eliminate some nodes. Note that
1243// a shift amount of 0 is *not legal* here, it is PKHBT instead.
Bob Wilson74590a02009-06-22 22:08:29 +00001244def : ARMV6Pat<(or (and GPR:$src1, 0xFFFF0000), (srl GPR:$src2, (i32 16))),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001245 (PKHTB GPR:$src1, GPR:$src2, 16)>;
1246def : ARMV6Pat<(or (and GPR:$src1, 0xFFFF0000),
1247 (and (srl GPR:$src2, imm1_15:$shamt), 0xFFFF)),
1248 (PKHTB GPR:$src1, GPR:$src2, imm1_15:$shamt)>;
1249
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001250//===----------------------------------------------------------------------===//
1251// Comparison Instructions...
1252//
1253
Jim Grosbach88c246f2008-10-14 20:36:24 +00001254defm CMP : AI1_cmp_irs<0b1010, "cmp",
Evan Chenga7b3e7c2007-08-07 01:37:15 +00001255 BinOpFrag<(ARMcmp node:$LHS, node:$RHS)>>;
Jim Grosbach88c246f2008-10-14 20:36:24 +00001256defm CMN : AI1_cmp_irs<0b1011, "cmn",
Evan Chenga7b3e7c2007-08-07 01:37:15 +00001257 BinOpFrag<(ARMcmp node:$LHS,(ineg node:$RHS))>>;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001258
1259// Note that TST/TEQ don't set all the same flags that CMP does!
Evan Chengbe998242008-11-06 08:47:38 +00001260defm TST : AI1_cmp_irs<0b1000, "tst",
Evan Chenga7b3e7c2007-08-07 01:37:15 +00001261 BinOpFrag<(ARMcmpNZ (and node:$LHS, node:$RHS), 0)>>;
Evan Chengbe998242008-11-06 08:47:38 +00001262defm TEQ : AI1_cmp_irs<0b1001, "teq",
Evan Chenga7b3e7c2007-08-07 01:37:15 +00001263 BinOpFrag<(ARMcmpNZ (xor node:$LHS, node:$RHS), 0)>>;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001264
Jim Grosbach88c246f2008-10-14 20:36:24 +00001265defm CMPnz : AI1_cmp_irs<0b1010, "cmp",
Evan Chenga7b3e7c2007-08-07 01:37:15 +00001266 BinOpFrag<(ARMcmpNZ node:$LHS, node:$RHS)>>;
Jim Grosbach88c246f2008-10-14 20:36:24 +00001267defm CMNnz : AI1_cmp_irs<0b1011, "cmn",
Evan Chenga7b3e7c2007-08-07 01:37:15 +00001268 BinOpFrag<(ARMcmpNZ node:$LHS,(ineg node:$RHS))>>;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001269
1270def : ARMPat<(ARMcmp GPR:$src, so_imm_neg:$imm),
1271 (CMNri GPR:$src, so_imm_neg:$imm)>;
1272
1273def : ARMPat<(ARMcmpNZ GPR:$src, so_imm_neg:$imm),
1274 (CMNri GPR:$src, so_imm_neg:$imm)>;
1275
1276
1277// Conditional moves
1278// FIXME: should be able to write a pattern for ARMcmov, but can't use
1279// a two-value operand where a dag node expects two operands. :(
Evan Chengbe998242008-11-06 08:47:38 +00001280def MOVCCr : AI1<0b1101, (outs GPR:$dst), (ins GPR:$false, GPR:$true), DPFrm,
Evan Cheng86a926a2008-11-05 18:35:52 +00001281 "mov", " $dst, $true",
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001282 [/*(set GPR:$dst, (ARMcmov GPR:$false, GPR:$true, imm:$cc, CCR:$ccr))*/]>,
Evan Chengbe998242008-11-06 08:47:38 +00001283 RegConstraint<"$false = $dst">, UnaryDP;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001284
Evan Chengbe998242008-11-06 08:47:38 +00001285def MOVCCs : AI1<0b1101, (outs GPR:$dst),
1286 (ins GPR:$false, so_reg:$true), DPSoRegFrm,
Evan Cheng86a926a2008-11-05 18:35:52 +00001287 "mov", " $dst, $true",
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001288 [/*(set GPR:$dst, (ARMcmov GPR:$false, so_reg:$true, imm:$cc, CCR:$ccr))*/]>,
Evan Cheng86a926a2008-11-05 18:35:52 +00001289 RegConstraint<"$false = $dst">, UnaryDP;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001290
Evan Chengbe998242008-11-06 08:47:38 +00001291def MOVCCi : AI1<0b1101, (outs GPR:$dst),
1292 (ins GPR:$false, so_imm:$true), DPFrm,
Evan Cheng86a926a2008-11-05 18:35:52 +00001293 "mov", " $dst, $true",
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001294 [/*(set GPR:$dst, (ARMcmov GPR:$false, so_imm:$true, imm:$cc, CCR:$ccr))*/]>,
Evan Cheng86a926a2008-11-05 18:35:52 +00001295 RegConstraint<"$false = $dst">, UnaryDP;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001296
1297
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001298//===----------------------------------------------------------------------===//
1299// TLS Instructions
1300//
1301
1302// __aeabi_read_tp preserves the registers r1-r3.
1303let isCall = 1,
1304 Defs = [R0, R12, LR, CPSR] in {
Evan Chengf8e8b622008-11-06 17:48:05 +00001305 def TPsoft : ABXI<0b1011, (outs), (ins),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001306 "bl __aeabi_read_tp",
1307 [(set R0, ARMthread_pointer)]>;
1308}
1309
1310//===----------------------------------------------------------------------===//
Jim Grosbachc10915b2009-05-12 23:59:14 +00001311// SJLJ Exception handling intrinsics
Jim Grosbach4a9025e2009-05-14 00:46:35 +00001312// eh_sjlj_setjmp() is a three instruction sequence to store the return
1313// address and save #0 in R0 for the non-longjmp case.
Jim Grosbachc10915b2009-05-12 23:59:14 +00001314// Since by its nature we may be coming from some other function to get
1315// here, and we're using the stack frame for the containing function to
1316// save/restore registers, we can't keep anything live in regs across
Jim Grosbach4a9025e2009-05-14 00:46:35 +00001317// the eh_sjlj_setjmp(), else it will almost certainly have been tromped upon
Jim Grosbachc10915b2009-05-12 23:59:14 +00001318// when we get here from a longjmp(). We force everthing out of registers
Jim Grosbach4a9025e2009-05-14 00:46:35 +00001319// except for our own input by listing the relevant registers in Defs. By
1320// doing so, we also cause the prologue/epilogue code to actively preserve
1321// all of the callee-saved resgisters, which is exactly what we want.
Jim Grosbachc10915b2009-05-12 23:59:14 +00001322let Defs =
1323 [ R0, R1, R3, R4, R5, R6, R7, R8, R9, R10, R11, R12, LR,
1324 D0, D2, D3, D4, D5, D6, D7, D8, D9, D10, D11, D12, D13, D14, D15 ] in {
Jim Grosbach4a9025e2009-05-14 00:46:35 +00001325 def Int_eh_sjlj_setjmp : XI<(outs), (ins GPR:$src),
Jim Grosbachc10915b2009-05-12 23:59:14 +00001326 AddrModeNone, SizeSpecial, IndexModeNone, Pseudo,
1327 "add r0, pc, #4\n\t"
1328 "str r0, [$src, #+4]\n\t"
Jim Grosbach4a9025e2009-05-14 00:46:35 +00001329 "mov r0, #0 @ eh_setjmp", "",
1330 [(set R0, (ARMeh_sjlj_setjmp GPR:$src))]>;
Jim Grosbachc10915b2009-05-12 23:59:14 +00001331}
1332
1333//===----------------------------------------------------------------------===//
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001334// Non-Instruction Patterns
1335//
1336
1337// ConstantPool, GlobalAddress, and JumpTable
1338def : ARMPat<(ARMWrapper tglobaladdr :$dst), (LEApcrel tglobaladdr :$dst)>;
1339def : ARMPat<(ARMWrapper tconstpool :$dst), (LEApcrel tconstpool :$dst)>;
1340def : ARMPat<(ARMWrapperJT tjumptable:$dst, imm:$id),
1341 (LEApcrelJT tjumptable:$dst, imm:$id)>;
1342
1343// Large immediate handling.
1344
1345// Two piece so_imms.
1346let isReMaterializable = 1 in
Evan Chengbe998242008-11-06 08:47:38 +00001347def MOVi2pieces : AI1x2<(outs GPR:$dst), (ins so_imm2part:$src), Pseudo,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001348 "mov", " $dst, $src",
Evan Cheng7cd4acb2008-11-06 02:25:39 +00001349 [(set GPR:$dst, so_imm2part:$src)]>;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001350
1351def : ARMPat<(or GPR:$LHS, so_imm2part:$RHS),
1352 (ORRri (ORRri GPR:$LHS, (so_imm2part_1 imm:$RHS)),
1353 (so_imm2part_2 imm:$RHS))>;
1354def : ARMPat<(xor GPR:$LHS, so_imm2part:$RHS),
1355 (EORri (EORri GPR:$LHS, (so_imm2part_1 imm:$RHS)),
1356 (so_imm2part_2 imm:$RHS))>;
1357
1358// TODO: add,sub,and, 3-instr forms?
1359
1360
1361// Direct calls
Bob Wilson243b37c2009-06-22 21:01:46 +00001362def : ARMPat<(ARMcall texternalsym:$func), (BL texternalsym:$func)>,
1363 Requires<[IsNotDarwin]>;
1364def : ARMPat<(ARMcall texternalsym:$func), (BLr9 texternalsym:$func)>,
1365 Requires<[IsDarwin]>;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001366
1367// zextload i1 -> zextload i8
1368def : ARMPat<(zextloadi1 addrmode2:$addr), (LDRB addrmode2:$addr)>;
1369
1370// extload -> zextload
1371def : ARMPat<(extloadi1 addrmode2:$addr), (LDRB addrmode2:$addr)>;
1372def : ARMPat<(extloadi8 addrmode2:$addr), (LDRB addrmode2:$addr)>;
1373def : ARMPat<(extloadi16 addrmode3:$addr), (LDRH addrmode3:$addr)>;
1374
Evan Chengc41fb3152008-11-05 23:22:34 +00001375def : ARMPat<(extloadi8 addrmodepc:$addr), (PICLDRB addrmodepc:$addr)>;
1376def : ARMPat<(extloadi16 addrmodepc:$addr), (PICLDRH addrmodepc:$addr)>;
1377
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001378// smul* and smla*
Bob Wilson74590a02009-06-22 22:08:29 +00001379def : ARMV5TEPat<(mul (sra (shl GPR:$a, (i32 16)), (i32 16)),
1380 (sra (shl GPR:$b, (i32 16)), (i32 16))),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001381 (SMULBB GPR:$a, GPR:$b)>;
1382def : ARMV5TEPat<(mul sext_16_node:$a, sext_16_node:$b),
1383 (SMULBB GPR:$a, GPR:$b)>;
Bob Wilson74590a02009-06-22 22:08:29 +00001384def : ARMV5TEPat<(mul (sra (shl GPR:$a, (i32 16)), (i32 16)),
1385 (sra GPR:$b, (i32 16))),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001386 (SMULBT GPR:$a, GPR:$b)>;
Bob Wilson74590a02009-06-22 22:08:29 +00001387def : ARMV5TEPat<(mul sext_16_node:$a, (sra GPR:$b, (i32 16))),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001388 (SMULBT GPR:$a, GPR:$b)>;
Bob Wilson74590a02009-06-22 22:08:29 +00001389def : ARMV5TEPat<(mul (sra GPR:$a, (i32 16)),
1390 (sra (shl GPR:$b, (i32 16)), (i32 16))),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001391 (SMULTB GPR:$a, GPR:$b)>;
Bob Wilson74590a02009-06-22 22:08:29 +00001392def : ARMV5TEPat<(mul (sra GPR:$a, (i32 16)), sext_16_node:$b),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001393 (SMULTB GPR:$a, GPR:$b)>;
Bob Wilson74590a02009-06-22 22:08:29 +00001394def : ARMV5TEPat<(sra (mul GPR:$a, (sra (shl GPR:$b, (i32 16)), (i32 16))),
1395 (i32 16)),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001396 (SMULWB GPR:$a, GPR:$b)>;
Bob Wilson74590a02009-06-22 22:08:29 +00001397def : ARMV5TEPat<(sra (mul GPR:$a, sext_16_node:$b), (i32 16)),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001398 (SMULWB GPR:$a, GPR:$b)>;
1399
1400def : ARMV5TEPat<(add GPR:$acc,
Bob Wilson74590a02009-06-22 22:08:29 +00001401 (mul (sra (shl GPR:$a, (i32 16)), (i32 16)),
1402 (sra (shl GPR:$b, (i32 16)), (i32 16)))),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001403 (SMLABB GPR:$a, GPR:$b, GPR:$acc)>;
1404def : ARMV5TEPat<(add GPR:$acc,
1405 (mul sext_16_node:$a, sext_16_node:$b)),
1406 (SMLABB GPR:$a, GPR:$b, GPR:$acc)>;
1407def : ARMV5TEPat<(add GPR:$acc,
Bob Wilson74590a02009-06-22 22:08:29 +00001408 (mul (sra (shl GPR:$a, (i32 16)), (i32 16)),
1409 (sra GPR:$b, (i32 16)))),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001410 (SMLABT GPR:$a, GPR:$b, GPR:$acc)>;
1411def : ARMV5TEPat<(add GPR:$acc,
Bob Wilson74590a02009-06-22 22:08:29 +00001412 (mul sext_16_node:$a, (sra GPR:$b, (i32 16)))),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001413 (SMLABT GPR:$a, GPR:$b, GPR:$acc)>;
1414def : ARMV5TEPat<(add GPR:$acc,
Bob Wilson74590a02009-06-22 22:08:29 +00001415 (mul (sra GPR:$a, (i32 16)),
1416 (sra (shl GPR:$b, (i32 16)), (i32 16)))),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001417 (SMLATB GPR:$a, GPR:$b, GPR:$acc)>;
1418def : ARMV5TEPat<(add GPR:$acc,
Bob Wilson74590a02009-06-22 22:08:29 +00001419 (mul (sra GPR:$a, (i32 16)), sext_16_node:$b)),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001420 (SMLATB GPR:$a, GPR:$b, GPR:$acc)>;
1421def : ARMV5TEPat<(add GPR:$acc,
Bob Wilson74590a02009-06-22 22:08:29 +00001422 (sra (mul GPR:$a, (sra (shl GPR:$b, (i32 16)), (i32 16))),
1423 (i32 16))),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001424 (SMLAWB GPR:$a, GPR:$b, GPR:$acc)>;
1425def : ARMV5TEPat<(add GPR:$acc,
Bob Wilson74590a02009-06-22 22:08:29 +00001426 (sra (mul GPR:$a, sext_16_node:$b), (i32 16))),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001427 (SMLAWB GPR:$a, GPR:$b, GPR:$acc)>;
1428
1429//===----------------------------------------------------------------------===//
1430// Thumb Support
1431//
1432
1433include "ARMInstrThumb.td"
1434
1435//===----------------------------------------------------------------------===//
Anton Korobeynikovac869fc2009-06-17 18:13:58 +00001436// Thumb2 Support
1437//
1438
1439include "ARMInstrThumb2.td"
1440
1441//===----------------------------------------------------------------------===//
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001442// Floating Point Support
1443//
1444
1445include "ARMInstrVFP.td"
Bob Wilsone60fee02009-06-22 23:27:02 +00001446
1447//===----------------------------------------------------------------------===//
1448// Advanced SIMD (NEON) Support
1449//
1450
1451include "ARMInstrNEON.td"