blob: b71391d5c1a84db09c0d46816e80c5023c2f1a1e [file] [log] [blame]
Bill Wendling0480e282010-12-01 02:36:55 +00001//===- ARMInstrThumb.td - Thumb support for ARM ------------*- tablegen -*-===//
Evan Chenga8e29892007-01-19 07:51:42 +00002//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Evan Chenga8e29892007-01-19 07:51:42 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file describes the Thumb instruction set.
11//
12//===----------------------------------------------------------------------===//
13
14//===----------------------------------------------------------------------===//
15// Thumb specific DAG Nodes.
16//
17
18def ARMtcall : SDNode<"ARMISD::tCALL", SDT_ARMcall,
Chris Lattner036609b2010-12-23 18:28:41 +000019 [SDNPHasChain, SDNPOptInGlue, SDNPOutGlue,
Chris Lattner60e9eac2010-03-19 05:33:51 +000020 SDNPVariadic]>;
Evan Chenga8e29892007-01-19 07:51:42 +000021
Owen Anderson6d746312011-08-08 20:42:17 +000022def imm_sr : Operand<i32>, ImmLeaf<i32, [{
23 return Imm > 0 && Imm <= 32;
24}]> {
25 let EncoderMethod = "getThumbSRImmOpValue";
26 let DecoderMethod = "DecodeThumbSRImm";
27}
28
Evan Chenga8e29892007-01-19 07:51:42 +000029def imm_neg_XFORM : SDNodeXForm<imm, [{
Owen Anderson825b72b2009-08-11 20:47:22 +000030 return CurDAG->getTargetConstant(-(int)N->getZExtValue(), MVT::i32);
Evan Chenga8e29892007-01-19 07:51:42 +000031}]>;
32def imm_comp_XFORM : SDNodeXForm<imm, [{
Owen Anderson825b72b2009-08-11 20:47:22 +000033 return CurDAG->getTargetConstant(~((uint32_t)N->getZExtValue()), MVT::i32);
Evan Chenga8e29892007-01-19 07:51:42 +000034}]>;
35
Evan Chenga8e29892007-01-19 07:51:42 +000036def imm0_7_neg : PatLeaf<(i32 imm), [{
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +000037 return (uint32_t)-N->getZExtValue() < 8;
Evan Chenga8e29892007-01-19 07:51:42 +000038}], imm_neg_XFORM>;
39
Evan Chenga8e29892007-01-19 07:51:42 +000040def imm0_255_comp : PatLeaf<(i32 imm), [{
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +000041 return ~((uint32_t)N->getZExtValue()) < 256;
Evan Chenga8e29892007-01-19 07:51:42 +000042}]>;
43
Eric Christopher8f232d32011-04-28 05:49:04 +000044def imm8_255 : ImmLeaf<i32, [{
45 return Imm >= 8 && Imm < 256;
Evan Chenga8e29892007-01-19 07:51:42 +000046}]>;
47def imm8_255_neg : PatLeaf<(i32 imm), [{
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +000048 unsigned Val = -N->getZExtValue();
Evan Chenga8e29892007-01-19 07:51:42 +000049 return Val >= 8 && Val < 256;
50}], imm_neg_XFORM>;
51
Bill Wendling0480e282010-12-01 02:36:55 +000052// Break imm's up into two pieces: an immediate + a left shift. This uses
53// thumb_immshifted to match and thumb_immshifted_val and thumb_immshifted_shamt
54// to get the val/shift pieces.
Evan Chenga8e29892007-01-19 07:51:42 +000055def thumb_immshifted : PatLeaf<(imm), [{
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +000056 return ARM_AM::isThumbImmShiftedVal((unsigned)N->getZExtValue());
Evan Chenga8e29892007-01-19 07:51:42 +000057}]>;
58
59def thumb_immshifted_val : SDNodeXForm<imm, [{
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +000060 unsigned V = ARM_AM::getThumbImmNonShiftedVal((unsigned)N->getZExtValue());
Owen Anderson825b72b2009-08-11 20:47:22 +000061 return CurDAG->getTargetConstant(V, MVT::i32);
Evan Chenga8e29892007-01-19 07:51:42 +000062}]>;
63
64def thumb_immshifted_shamt : SDNodeXForm<imm, [{
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +000065 unsigned V = ARM_AM::getThumbImmValShift((unsigned)N->getZExtValue());
Owen Anderson825b72b2009-08-11 20:47:22 +000066 return CurDAG->getTargetConstant(V, MVT::i32);
Evan Chenga8e29892007-01-19 07:51:42 +000067}]>;
68
Jim Grosbachd40963c2010-12-14 22:28:03 +000069// ADR instruction labels.
70def t_adrlabel : Operand<i32> {
71 let EncoderMethod = "getThumbAdrLabelOpValue";
72}
73
Evan Cheng2ef9c8a2009-11-19 06:57:41 +000074// Scaled 4 immediate.
75def t_imm_s4 : Operand<i32> {
76 let PrintMethod = "printThumbS4ImmOperand";
Benjamin Kramer151bd172011-07-14 21:47:24 +000077 let OperandType = "OPERAND_IMMEDIATE";
Evan Cheng2ef9c8a2009-11-19 06:57:41 +000078}
79
Evan Chenga8e29892007-01-19 07:51:42 +000080// Define Thumb specific addressing modes.
81
Benjamin Kramer151bd172011-07-14 21:47:24 +000082let OperandType = "OPERAND_PCREL" in {
Jim Grosbache2467172010-12-10 18:21:33 +000083def t_brtarget : Operand<OtherVT> {
84 let EncoderMethod = "getThumbBRTargetOpValue";
85}
86
Jim Grosbach01086452010-12-10 17:13:40 +000087def t_bcctarget : Operand<i32> {
88 let EncoderMethod = "getThumbBCCTargetOpValue";
89}
90
Jim Grosbachcf6220a2010-12-09 19:01:46 +000091def t_cbtarget : Operand<i32> {
Jim Grosbach027d6e82010-12-09 19:04:53 +000092 let EncoderMethod = "getThumbCBTargetOpValue";
Bill Wendlingdff2f712010-12-08 23:01:43 +000093}
94
Jim Grosbach662a8162010-12-06 23:57:07 +000095def t_bltarget : Operand<i32> {
96 let EncoderMethod = "getThumbBLTargetOpValue";
97}
98
Bill Wendling09aa3f02010-12-09 00:39:08 +000099def t_blxtarget : Operand<i32> {
100 let EncoderMethod = "getThumbBLXTargetOpValue";
Owen Anderson6d746312011-08-08 20:42:17 +0000101 let DecoderMethod = "DecodeThumbBLXOffset";
Bill Wendling09aa3f02010-12-09 00:39:08 +0000102}
Benjamin Kramer151bd172011-07-14 21:47:24 +0000103}
Bill Wendling09aa3f02010-12-09 00:39:08 +0000104
Evan Chenga8e29892007-01-19 07:51:42 +0000105// t_addrmode_rr := reg + reg
106//
Jim Grosbach7ce05792011-08-03 23:50:40 +0000107def t_addrmode_rr_asm_operand : AsmOperandClass { let Name = "MemThumbRR"; }
Evan Chenga8e29892007-01-19 07:51:42 +0000108def t_addrmode_rr : Operand<i32>,
109 ComplexPattern<i32, 2, "SelectThumbAddrModeRR", []> {
Bill Wendlingf4caf692010-12-14 03:36:38 +0000110 let EncoderMethod = "getThumbAddrModeRegRegOpValue";
Evan Chenga8e29892007-01-19 07:51:42 +0000111 let PrintMethod = "printThumbAddrModeRROperand";
Jim Grosbach30eae3c2009-04-07 20:34:09 +0000112 let MIOperandInfo = (ops tGPR:$base, tGPR:$offsreg);
Evan Chenga8e29892007-01-19 07:51:42 +0000113}
114
Bill Wendlingf4caf692010-12-14 03:36:38 +0000115// t_addrmode_rrs := reg + reg
Evan Chenga8e29892007-01-19 07:51:42 +0000116//
Bill Wendlingf4caf692010-12-14 03:36:38 +0000117def t_addrmode_rrs1 : Operand<i32>,
118 ComplexPattern<i32, 2, "SelectThumbAddrModeRI5S1", []> {
119 let EncoderMethod = "getThumbAddrModeRegRegOpValue";
120 let PrintMethod = "printThumbAddrModeRROperand";
Jim Grosbach7ce05792011-08-03 23:50:40 +0000121 let ParserMatchClass = t_addrmode_rr_asm_operand;
Bill Wendlingf4caf692010-12-14 03:36:38 +0000122 let MIOperandInfo = (ops tGPR:$base, tGPR:$offsreg);
Evan Chenga8e29892007-01-19 07:51:42 +0000123}
Bill Wendlingf4caf692010-12-14 03:36:38 +0000124def t_addrmode_rrs2 : Operand<i32>,
125 ComplexPattern<i32, 2, "SelectThumbAddrModeRI5S2", []> {
126 let EncoderMethod = "getThumbAddrModeRegRegOpValue";
127 let PrintMethod = "printThumbAddrModeRROperand";
Jim Grosbach7ce05792011-08-03 23:50:40 +0000128 let ParserMatchClass = t_addrmode_rr_asm_operand;
Bill Wendlingf4caf692010-12-14 03:36:38 +0000129 let MIOperandInfo = (ops tGPR:$base, tGPR:$offsreg);
Bill Wendlingf4caf692010-12-14 03:36:38 +0000130}
131def t_addrmode_rrs4 : Operand<i32>,
132 ComplexPattern<i32, 2, "SelectThumbAddrModeRI5S4", []> {
133 let EncoderMethod = "getThumbAddrModeRegRegOpValue";
134 let PrintMethod = "printThumbAddrModeRROperand";
Jim Grosbach7ce05792011-08-03 23:50:40 +0000135 let ParserMatchClass = t_addrmode_rr_asm_operand;
Bill Wendlingf4caf692010-12-14 03:36:38 +0000136 let MIOperandInfo = (ops tGPR:$base, tGPR:$offsreg);
Evan Chenga8e29892007-01-19 07:51:42 +0000137}
Evan Chengc38f2bc2007-01-23 22:59:13 +0000138
Bill Wendlingf4caf692010-12-14 03:36:38 +0000139// t_addrmode_is4 := reg + imm5 * 4
Evan Chengc38f2bc2007-01-23 22:59:13 +0000140//
Bill Wendlingf4caf692010-12-14 03:36:38 +0000141def t_addrmode_is4 : Operand<i32>,
142 ComplexPattern<i32, 2, "SelectThumbAddrModeImm5S4", []> {
143 let EncoderMethod = "getAddrModeISOpValue";
144 let PrintMethod = "printThumbAddrModeImm5S4Operand";
145 let MIOperandInfo = (ops tGPR:$base, i32imm:$offsimm);
Bill Wendlingf4caf692010-12-14 03:36:38 +0000146}
147
148// t_addrmode_is2 := reg + imm5 * 2
149//
150def t_addrmode_is2 : Operand<i32>,
151 ComplexPattern<i32, 2, "SelectThumbAddrModeImm5S2", []> {
152 let EncoderMethod = "getAddrModeISOpValue";
153 let PrintMethod = "printThumbAddrModeImm5S2Operand";
154 let MIOperandInfo = (ops tGPR:$base, i32imm:$offsimm);
Bill Wendlingf4caf692010-12-14 03:36:38 +0000155}
156
157// t_addrmode_is1 := reg + imm5
158//
159def t_addrmode_is1 : Operand<i32>,
160 ComplexPattern<i32, 2, "SelectThumbAddrModeImm5S1", []> {
161 let EncoderMethod = "getAddrModeISOpValue";
162 let PrintMethod = "printThumbAddrModeImm5S1Operand";
163 let MIOperandInfo = (ops tGPR:$base, i32imm:$offsimm);
Evan Chenga8e29892007-01-19 07:51:42 +0000164}
165
166// t_addrmode_sp := sp + imm8 * 4
167//
168def t_addrmode_sp : Operand<i32>,
169 ComplexPattern<i32, 2, "SelectThumbAddrModeSP", []> {
Jim Grosbachd967cd02010-12-07 21:50:47 +0000170 let EncoderMethod = "getAddrModeThumbSPOpValue";
Evan Chenga8e29892007-01-19 07:51:42 +0000171 let PrintMethod = "printThumbAddrModeSPOperand";
Jakob Stoklund Olesenc5b7ef12010-01-13 00:43:06 +0000172 let MIOperandInfo = (ops GPR:$base, i32imm:$offsimm);
Evan Chenga8e29892007-01-19 07:51:42 +0000173}
174
Bill Wendlingb8958b02010-12-08 01:57:09 +0000175// t_addrmode_pc := <label> => pc + imm8 * 4
176//
177def t_addrmode_pc : Operand<i32> {
178 let EncoderMethod = "getAddrModePCOpValue";
Bill Wendlingb8958b02010-12-08 01:57:09 +0000179}
180
Evan Chenga8e29892007-01-19 07:51:42 +0000181//===----------------------------------------------------------------------===//
182// Miscellaneous Instructions.
183//
184
Jim Grosbach4642ad32010-02-22 23:10:38 +0000185// FIXME: Marking these as hasSideEffects is necessary to prevent machine DCE
186// from removing one half of the matched pairs. That breaks PEI, which assumes
187// these will always be in pairs, and asserts if it finds otherwise. Better way?
188let Defs = [SP], Uses = [SP], hasSideEffects = 1 in {
Evan Cheng44bec522007-05-15 01:29:07 +0000189def tADJCALLSTACKUP :
Bill Wendlinga8981662010-11-19 22:02:18 +0000190 PseudoInst<(outs), (ins i32imm:$amt1, i32imm:$amt2), NoItinerary,
191 [(ARMcallseq_end imm:$amt1, imm:$amt2)]>,
192 Requires<[IsThumb, IsThumb1Only]>;
Evan Cheng44bec522007-05-15 01:29:07 +0000193
Jim Grosbach0ede14f2009-03-27 23:06:27 +0000194def tADJCALLSTACKDOWN :
Bill Wendlinga8981662010-11-19 22:02:18 +0000195 PseudoInst<(outs), (ins i32imm:$amt), NoItinerary,
196 [(ARMcallseq_start imm:$amt)]>,
197 Requires<[IsThumb, IsThumb1Only]>;
Evan Cheng071a2792007-09-11 19:55:27 +0000198}
Evan Cheng44bec522007-05-15 01:29:07 +0000199
Bill Wendling0e45a5a2010-11-30 00:50:22 +0000200// T1Disassembly - A simple class to make encoding some disassembly patterns
201// easier and less verbose.
Bill Wendlinga46a4932010-11-29 22:15:03 +0000202class T1Disassembly<bits<2> op1, bits<8> op2>
203 : T1Encoding<0b101111> {
204 let Inst{9-8} = op1;
205 let Inst{7-0} = op2;
206}
207
Johnny Chenbd2c6232010-02-25 03:28:51 +0000208def tNOP : T1pI<(outs), (ins), NoItinerary, "nop", "",
209 [/* For disassembly only; pattern left blank */]>,
Bill Wendlinga46a4932010-11-29 22:15:03 +0000210 T1Disassembly<0b11, 0x00>; // A8.6.110
Johnny Chenbd2c6232010-02-25 03:28:51 +0000211
Johnny Chend86d2692010-02-25 17:51:03 +0000212def tYIELD : T1pI<(outs), (ins), NoItinerary, "yield", "",
213 [/* For disassembly only; pattern left blank */]>,
Bill Wendlinga46a4932010-11-29 22:15:03 +0000214 T1Disassembly<0b11, 0x10>; // A8.6.410
Johnny Chend86d2692010-02-25 17:51:03 +0000215
216def tWFE : T1pI<(outs), (ins), NoItinerary, "wfe", "",
217 [/* For disassembly only; pattern left blank */]>,
Bill Wendlinga46a4932010-11-29 22:15:03 +0000218 T1Disassembly<0b11, 0x20>; // A8.6.408
Johnny Chend86d2692010-02-25 17:51:03 +0000219
220def tWFI : T1pI<(outs), (ins), NoItinerary, "wfi", "",
221 [/* For disassembly only; pattern left blank */]>,
Bill Wendlinga46a4932010-11-29 22:15:03 +0000222 T1Disassembly<0b11, 0x30>; // A8.6.409
Johnny Chend86d2692010-02-25 17:51:03 +0000223
224def tSEV : T1pI<(outs), (ins), NoItinerary, "sev", "",
225 [/* For disassembly only; pattern left blank */]>,
Bill Wendlinga46a4932010-11-29 22:15:03 +0000226 T1Disassembly<0b11, 0x40>; // A8.6.157
227
228// The i32imm operand $val can be used by a debugger to store more information
229// about the breakpoint.
230def tBKPT : T1I<(outs), (ins i32imm:$val), NoItinerary, "bkpt\t$val",
231 [/* For disassembly only; pattern left blank */]>,
232 T1Disassembly<0b10, {?,?,?,?,?,?,?,?}> {
233 // A8.6.22
234 bits<8> val;
235 let Inst{7-0} = val;
236}
Johnny Chend86d2692010-02-25 17:51:03 +0000237
Jim Grosbach06322472011-07-22 17:52:23 +0000238def tSETEND : T1I<(outs), (ins setend_op:$end), NoItinerary, "setend\t$end",
239 []>, T1Encoding<0b101101> {
240 bits<1> end;
Bill Wendling7d0affd2010-11-21 10:55:23 +0000241 // A8.6.156
Johnny Chend86d2692010-02-25 17:51:03 +0000242 let Inst{9-5} = 0b10010;
Bill Wendlinga8981662010-11-19 22:02:18 +0000243 let Inst{4} = 1;
Jim Grosbach06322472011-07-22 17:52:23 +0000244 let Inst{3} = end;
Bill Wendlinga8981662010-11-19 22:02:18 +0000245 let Inst{2-0} = 0b000;
Johnny Chend86d2692010-02-25 17:51:03 +0000246}
247
Johnny Chen93042d12010-03-02 18:14:57 +0000248// Change Processor State is a system instruction -- for disassembly only.
Bruno Cardoso Lopesa2b6e412011-02-14 13:09:44 +0000249def tCPS : T1I<(outs), (ins imod_op:$imod, iflags_op:$iflags),
250 NoItinerary, "cps$imod $iflags",
251 [/* For disassembly only; pattern left blank */]>,
Bill Wendling849f2e32010-11-29 00:18:15 +0000252 T1Misc<0b0110011> {
253 // A8.6.38 & B6.1.1
Bruno Cardoso Lopesa2b6e412011-02-14 13:09:44 +0000254 bit imod;
255 bits<3> iflags;
256
257 let Inst{4} = imod;
258 let Inst{3} = 0;
259 let Inst{2-0} = iflags;
Bill Wendling849f2e32010-11-29 00:18:15 +0000260}
Johnny Chen93042d12010-03-02 18:14:57 +0000261
Evan Cheng35d6c412009-08-04 23:47:55 +0000262// For both thumb1 and thumb2.
Chris Lattnera4a3a5e2010-10-31 19:15:18 +0000263let isNotDuplicable = 1, isCodeGenOnly = 1 in
Jim Grosbacha3fbadf2010-09-30 19:53:58 +0000264def tPICADD : TIt<(outs GPR:$dst), (ins GPR:$lhs, pclabel:$cp), IIC_iALUr, "",
Bill Wendling0ae28e42010-11-19 22:37:33 +0000265 [(set GPR:$dst, (ARMpic_add GPR:$lhs, imm:$cp))]>,
Johnny Chend68e1192009-12-15 17:24:14 +0000266 T1Special<{0,0,?,?}> {
Bill Wendling0e45a5a2010-11-30 00:50:22 +0000267 // A8.6.6
Bill Wendling0ae28e42010-11-19 22:37:33 +0000268 bits<3> dst;
Bill Wendling0e45a5a2010-11-30 00:50:22 +0000269 let Inst{6-3} = 0b1111; // Rm = pc
Bill Wendling0ae28e42010-11-19 22:37:33 +0000270 let Inst{2-0} = dst;
Johnny Chend68e1192009-12-15 17:24:14 +0000271}
Evan Chenga8e29892007-01-19 07:51:42 +0000272
Bill Wendling0e45a5a2010-11-30 00:50:22 +0000273// PC relative add (ADR).
Evan Cheng2ef9c8a2009-11-19 06:57:41 +0000274def tADDrPCi : T1I<(outs tGPR:$dst), (ins t_imm_s4:$rhs), IIC_iALUi,
Bill Wendling0ae28e42010-11-19 22:37:33 +0000275 "add\t$dst, pc, $rhs", []>,
276 T1Encoding<{1,0,1,0,0,?}> {
277 // A6.2 & A8.6.10
278 bits<3> dst;
279 bits<8> rhs;
280 let Inst{10-8} = dst;
281 let Inst{7-0} = rhs;
Jim Grosbach663e3392010-08-30 19:49:58 +0000282}
Evan Cheng7dcf4a82009-06-25 01:05:06 +0000283
Bill Wendling0ae28e42010-11-19 22:37:33 +0000284// ADD <Rd>, sp, #<imm8>
285// This is rematerializable, which is particularly useful for taking the
286// address of locals.
287let isReMaterializable = 1 in
288def tADDrSPi : T1I<(outs tGPR:$dst), (ins GPR:$sp, t_imm_s4:$rhs), IIC_iALUi,
289 "add\t$dst, $sp, $rhs", []>,
290 T1Encoding<{1,0,1,0,1,?}> {
291 // A6.2 & A8.6.8
292 bits<3> dst;
293 bits<8> rhs;
294 let Inst{10-8} = dst;
295 let Inst{7-0} = rhs;
296}
297
298// ADD sp, sp, #<imm7>
Evan Cheng2ef9c8a2009-11-19 06:57:41 +0000299def tADDspi : TIt<(outs GPR:$dst), (ins GPR:$lhs, t_imm_s4:$rhs), IIC_iALUi,
Johnny Chend68e1192009-12-15 17:24:14 +0000300 "add\t$dst, $rhs", []>,
Bill Wendling0ae28e42010-11-19 22:37:33 +0000301 T1Misc<{0,0,0,0,0,?,?}> {
302 // A6.2.5 & A8.6.8
303 bits<7> rhs;
304 let Inst{6-0} = rhs;
305}
Evan Cheng7dcf4a82009-06-25 01:05:06 +0000306
Bill Wendling0ae28e42010-11-19 22:37:33 +0000307// SUB sp, sp, #<imm7>
308// FIXME: The encoding and the ASM string don't match up.
Evan Cheng2ef9c8a2009-11-19 06:57:41 +0000309def tSUBspi : TIt<(outs GPR:$dst), (ins GPR:$lhs, t_imm_s4:$rhs), IIC_iALUi,
Johnny Chend68e1192009-12-15 17:24:14 +0000310 "sub\t$dst, $rhs", []>,
Bill Wendling0ae28e42010-11-19 22:37:33 +0000311 T1Misc<{0,0,0,0,1,?,?}> {
312 // A6.2.5 & A8.6.214
313 bits<7> rhs;
314 let Inst{6-0} = rhs;
315}
Evan Cheng86198642009-08-07 00:34:42 +0000316
Bill Wendling0ae28e42010-11-19 22:37:33 +0000317// ADD <Rm>, sp
David Goodwin5d598aa2009-08-19 18:00:44 +0000318def tADDrSP : TIt<(outs GPR:$dst), (ins GPR:$lhs, GPR:$rhs), IIC_iALUr,
Johnny Chend68e1192009-12-15 17:24:14 +0000319 "add\t$dst, $rhs", []>,
320 T1Special<{0,0,?,?}> {
Bill Wendling0ae28e42010-11-19 22:37:33 +0000321 // A8.6.9 Encoding T1
322 bits<4> dst;
323 let Inst{7} = dst{3};
324 let Inst{6-3} = 0b1101;
325 let Inst{2-0} = dst{2-0};
Johnny Chend68e1192009-12-15 17:24:14 +0000326}
Evan Cheng86198642009-08-07 00:34:42 +0000327
Bill Wendling0ae28e42010-11-19 22:37:33 +0000328// ADD sp, <Rm>
David Goodwin5d598aa2009-08-19 18:00:44 +0000329def tADDspr : TIt<(outs GPR:$dst), (ins GPR:$lhs, GPR:$rhs), IIC_iALUr,
Johnny Chend68e1192009-12-15 17:24:14 +0000330 "add\t$dst, $rhs", []>,
331 T1Special<{0,0,?,?}> {
332 // A8.6.9 Encoding T2
Bill Wendling0ae28e42010-11-19 22:37:33 +0000333 bits<4> dst;
Johnny Chend68e1192009-12-15 17:24:14 +0000334 let Inst{7} = 1;
Bill Wendling0ae28e42010-11-19 22:37:33 +0000335 let Inst{6-3} = dst;
Johnny Chend68e1192009-12-15 17:24:14 +0000336 let Inst{2-0} = 0b101;
337}
Evan Cheng86198642009-08-07 00:34:42 +0000338
Evan Chenga8e29892007-01-19 07:51:42 +0000339//===----------------------------------------------------------------------===//
340// Control Flow Instructions.
341//
342
Bob Wilson8d4de5a2009-10-28 18:26:41 +0000343// Indirect branches
344let isBranch = 1, isTerminator = 1, isBarrier = 1, isIndirectBranch = 1 in {
Cameron Zwarich421b1062011-05-26 03:41:12 +0000345 def tBX : TI<(outs), (ins GPR:$Rm, pred:$p), IIC_Br, "bx${p}\t$Rm", []>,
346 T1Special<{1,1,0,?}> {
347 // A6.2.3 & A8.6.25
348 bits<4> Rm;
349 let Inst{6-3} = Rm;
350 let Inst{2-0} = 0b000;
351 }
Bob Wilson8d4de5a2009-10-28 18:26:41 +0000352}
353
Jim Grosbachead77cd2011-07-08 21:04:05 +0000354let isReturn = 1, isTerminator = 1, isBarrier = 1 in {
Owen Anderson16884412011-07-13 23:22:26 +0000355 def tBX_RET : tPseudoExpand<(outs), (ins pred:$p), 2, IIC_Br,
Jim Grosbach25e6d482011-07-08 21:50:04 +0000356 [(ARMretflag)], (tBX LR, pred:$p)>;
Jim Grosbachead77cd2011-07-08 21:04:05 +0000357
358 // Alternative return instruction used by vararg functions.
Jim Grosbach25e6d482011-07-08 21:50:04 +0000359 def tBX_RET_vararg : tPseudoExpand<(outs), (ins tGPR:$Rm, pred:$p),
Owen Anderson16884412011-07-13 23:22:26 +0000360 2, IIC_Br, [],
Jim Grosbach25e6d482011-07-08 21:50:04 +0000361 (tBX GPR:$Rm, pred:$p)>;
Jim Grosbachead77cd2011-07-08 21:04:05 +0000362}
363
Bill Wendling0480e282010-12-01 02:36:55 +0000364// All calls clobber the non-callee saved registers. SP is marked as a use to
365// prevent stack-pointer assignments that appear immediately before calls from
366// potentially appearing dead.
Jim Grosbach0ede14f2009-03-27 23:06:27 +0000367let isCall = 1,
Evan Cheng1e0eab12010-11-29 22:43:27 +0000368 // On non-Darwin platforms R9 is callee-saved.
Jakob Stoklund Olesen2944b4f2011-05-03 22:31:24 +0000369 Defs = [R0, R1, R2, R3, R12, LR, QQQQ0, QQQQ2, QQQQ3, CPSR, FPSCR],
Evan Cheng1e0eab12010-11-29 22:43:27 +0000370 Uses = [SP] in {
Evan Chengb6207242009-08-01 00:16:10 +0000371 // Also used for Thumb2
Johnny Chend68e1192009-12-15 17:24:14 +0000372 def tBL : TIx2<0b11110, 0b11, 1,
Owen Anderson0af0dc82011-07-18 18:50:52 +0000373 (outs), (ins pred:$p, t_bltarget:$func, variable_ops), IIC_Br,
374 "bl${p}\t$func",
Johnny Chend68e1192009-12-15 17:24:14 +0000375 [(ARMtcall tglobaladdr:$func)]>,
Bill Wendling534a5e42010-12-03 01:55:47 +0000376 Requires<[IsThumb, IsNotDarwin]> {
Jim Grosbach662a8162010-12-06 23:57:07 +0000377 bits<21> func;
378 let Inst{25-16} = func{20-11};
Jim Grosbach4fa102b2010-12-03 22:33:42 +0000379 let Inst{13} = 1;
380 let Inst{11} = 1;
Jim Grosbach662a8162010-12-06 23:57:07 +0000381 let Inst{10-0} = func{10-0};
Bill Wendling534a5e42010-12-03 01:55:47 +0000382 }
Evan Cheng20a2a0a2009-07-29 21:26:42 +0000383
Evan Chengb6207242009-08-01 00:16:10 +0000384 // ARMv5T and above, also used for Thumb2
Johnny Chend68e1192009-12-15 17:24:14 +0000385 def tBLXi : TIx2<0b11110, 0b11, 0,
Owen Anderson0af0dc82011-07-18 18:50:52 +0000386 (outs), (ins pred:$p, t_blxtarget:$func, variable_ops), IIC_Br,
387 "blx${p}\t$func",
Johnny Chend68e1192009-12-15 17:24:14 +0000388 [(ARMcall tglobaladdr:$func)]>,
Jim Grosbach4fa102b2010-12-03 22:33:42 +0000389 Requires<[IsThumb, HasV5T, IsNotDarwin]> {
Jim Grosbach662a8162010-12-06 23:57:07 +0000390 bits<21> func;
391 let Inst{25-16} = func{20-11};
Jim Grosbach4fa102b2010-12-03 22:33:42 +0000392 let Inst{13} = 1;
393 let Inst{11} = 1;
Jim Grosbach662a8162010-12-06 23:57:07 +0000394 let Inst{10-1} = func{10-1};
395 let Inst{0} = 0; // func{0} is assumed zero
Jim Grosbach4fa102b2010-12-03 22:33:42 +0000396 }
Evan Cheng20a2a0a2009-07-29 21:26:42 +0000397
Evan Chengb6207242009-08-01 00:16:10 +0000398 // Also used for Thumb2
Owen Anderson0af0dc82011-07-18 18:50:52 +0000399 def tBLXr : TI<(outs), (ins pred:$p, GPR:$func, variable_ops), IIC_Br,
400 "blx${p}\t$func",
Evan Chengb6207242009-08-01 00:16:10 +0000401 [(ARMtcall GPR:$func)]>,
Johnny Chend68e1192009-12-15 17:24:14 +0000402 Requires<[IsThumb, HasV5T, IsNotDarwin]>,
Owen Anderson18901d62011-05-11 17:00:48 +0000403 T1Special<{1,1,1,?}> { // A6.2.3 & A8.6.24;
404 bits<4> func;
405 let Inst{6-3} = func;
406 let Inst{2-0} = 0b000;
407 }
Evan Cheng20a2a0a2009-07-29 21:26:42 +0000408
Lauro Ramos Venanciob8a93a42007-03-27 16:19:21 +0000409 // ARMv4T
Cameron Zwarichad70f6d2011-05-25 21:53:50 +0000410 def tBX_CALL : tPseudoInst<(outs), (ins tGPR:$func, variable_ops),
Owen Anderson16884412011-07-13 23:22:26 +0000411 4, IIC_Br,
Evan Cheng20a2a0a2009-07-29 21:26:42 +0000412 [(ARMcall_nolink tGPR:$func)]>,
Jim Grosbach6797f892010-11-01 17:08:58 +0000413 Requires<[IsThumb, IsThumb1Only, IsNotDarwin]>;
Evan Cheng20a2a0a2009-07-29 21:26:42 +0000414}
415
Evan Cheng20a2a0a2009-07-29 21:26:42 +0000416let isCall = 1,
Evan Cheng1e0eab12010-11-29 22:43:27 +0000417 // On Darwin R9 is call-clobbered.
418 // R7 is marked as a use to prevent frame-pointer assignments from being
419 // moved above / below calls.
Jakob Stoklund Olesen2944b4f2011-05-03 22:31:24 +0000420 Defs = [R0, R1, R2, R3, R9, R12, LR, QQQQ0, QQQQ2, QQQQ3, CPSR, FPSCR],
Evan Cheng1e0eab12010-11-29 22:43:27 +0000421 Uses = [R7, SP] in {
Evan Chengb6207242009-08-01 00:16:10 +0000422 // Also used for Thumb2
Owen Anderson0af0dc82011-07-18 18:50:52 +0000423 def tBLr9 : tPseudoExpand<(outs), (ins pred:$p, t_bltarget:$func, variable_ops),
424 4, IIC_Br, [(ARMtcall tglobaladdr:$func)],
425 (tBL pred:$p, t_bltarget:$func)>,
426 Requires<[IsThumb, IsDarwin]>;
Evan Cheng20a2a0a2009-07-29 21:26:42 +0000427
Evan Chengb6207242009-08-01 00:16:10 +0000428 // ARMv5T and above, also used for Thumb2
Owen Anderson0af0dc82011-07-18 18:50:52 +0000429 def tBLXi_r9 : tPseudoExpand<(outs), (ins pred:$p, t_blxtarget:$func, variable_ops),
430 4, IIC_Br, [(ARMcall tglobaladdr:$func)],
431 (tBLXi pred:$p, t_blxtarget:$func)>,
432 Requires<[IsThumb, HasV5T, IsDarwin]>;
Evan Cheng20a2a0a2009-07-29 21:26:42 +0000433
Evan Chengb6207242009-08-01 00:16:10 +0000434 // Also used for Thumb2
Owen Anderson0af0dc82011-07-18 18:50:52 +0000435 def tBLXr_r9 : tPseudoExpand<(outs), (ins pred:$p, GPR:$func, variable_ops),
436 2, IIC_Br, [(ARMtcall GPR:$func)],
437 (tBLXr pred:$p, GPR:$func)>,
438 Requires<[IsThumb, HasV5T, IsDarwin]>;
Evan Cheng20a2a0a2009-07-29 21:26:42 +0000439
440 // ARMv4T
Cameron Zwarichad70f6d2011-05-25 21:53:50 +0000441 def tBXr9_CALL : tPseudoInst<(outs), (ins tGPR:$func, variable_ops),
Owen Anderson16884412011-07-13 23:22:26 +0000442 4, IIC_Br,
Johnny Chend68e1192009-12-15 17:24:14 +0000443 [(ARMcall_nolink tGPR:$func)]>,
Jim Grosbach6797f892010-11-01 17:08:58 +0000444 Requires<[IsThumb, IsThumb1Only, IsDarwin]>;
Evan Chenga8e29892007-01-19 07:51:42 +0000445}
446
Bill Wendling0480e282010-12-01 02:36:55 +0000447let isBranch = 1, isTerminator = 1, isBarrier = 1 in {
448 let isPredicable = 1 in
Jim Grosbache2467172010-12-10 18:21:33 +0000449 def tB : T1I<(outs), (ins t_brtarget:$target), IIC_Br,
Bill Wendling0480e282010-12-01 02:36:55 +0000450 "b\t$target", [(br bb:$target)]>,
Jim Grosbache2467172010-12-10 18:21:33 +0000451 T1Encoding<{1,1,1,0,0,?}> {
452 bits<11> target;
453 let Inst{10-0} = target;
454 }
Evan Chenga8e29892007-01-19 07:51:42 +0000455
Evan Cheng225dfe92007-01-30 01:13:37 +0000456 // Far jump
Jim Grosbach3efad8f2010-12-16 19:11:16 +0000457 // Just a pseudo for a tBL instruction. Needed to let regalloc know about
458 // the clobber of LR.
Evan Cheng53c67c02009-08-07 05:45:07 +0000459 let Defs = [LR] in
Owen Anderson0af0dc82011-07-18 18:50:52 +0000460 def tBfar : tPseudoExpand<(outs), (ins t_bltarget:$target, pred:$p),
461 4, IIC_Br, [], (tBL pred:$p, t_bltarget:$target)>;
Evan Cheng225dfe92007-01-30 01:13:37 +0000462
Jim Grosbachf1aa47d2010-11-29 19:32:47 +0000463 def tBR_JTr : tPseudoInst<(outs),
464 (ins tGPR:$target, i32imm:$jt, i32imm:$id),
Owen Anderson16884412011-07-13 23:22:26 +0000465 0, IIC_Br,
Jim Grosbachf1aa47d2010-11-29 19:32:47 +0000466 [(ARMbrjt tGPR:$target, tjumptable:$jt, imm:$id)]> {
467 list<Predicate> Predicates = [IsThumb, IsThumb1Only];
Johnny Chenbbc71b22009-12-16 02:32:54 +0000468 }
Evan Chengd85ac4d2007-01-27 02:29:45 +0000469}
470
Evan Chengc85e8322007-07-05 07:13:32 +0000471// FIXME: should be able to write a pattern for ARMBrcond, but can't use
Jim Grosbach0ede14f2009-03-27 23:06:27 +0000472// a two-value operand where a dag node expects two operands. :(
Evan Chengffbacca2007-07-21 00:34:19 +0000473let isBranch = 1, isTerminator = 1 in
Jim Grosbach01086452010-12-10 17:13:40 +0000474 def tBcc : T1I<(outs), (ins t_bcctarget:$target, pred:$p), IIC_Br,
Jim Grosbachceab5012010-12-04 00:20:40 +0000475 "b${p}\t$target",
Johnny Chend68e1192009-12-15 17:24:14 +0000476 [/*(ARMbrcond bb:$target, imm:$cc)*/]>,
Eric Christopher33281b22011-05-27 03:50:53 +0000477 T1BranchCond<{1,1,0,1}> {
Jim Grosbachceab5012010-12-04 00:20:40 +0000478 bits<4> p;
Jim Grosbach01086452010-12-10 17:13:40 +0000479 bits<8> target;
Jim Grosbachceab5012010-12-04 00:20:40 +0000480 let Inst{11-8} = p;
Jim Grosbach01086452010-12-10 17:13:40 +0000481 let Inst{7-0} = target;
Jim Grosbachceab5012010-12-04 00:20:40 +0000482}
Evan Chenga8e29892007-01-19 07:51:42 +0000483
Evan Chengde17fb62009-10-31 23:46:45 +0000484// Compare and branch on zero / non-zero
485let isBranch = 1, isTerminator = 1 in {
Jim Grosbachcf6220a2010-12-09 19:01:46 +0000486 def tCBZ : T1I<(outs), (ins tGPR:$Rn, t_cbtarget:$target), IIC_Br,
Bill Wendling12280382010-11-19 23:14:32 +0000487 "cbz\t$Rn, $target", []>,
488 T1Misc<{0,0,?,1,?,?,?}> {
Bill Wendling849f2e32010-11-29 00:18:15 +0000489 // A8.6.27
Bill Wendling12280382010-11-19 23:14:32 +0000490 bits<6> target;
491 bits<3> Rn;
492 let Inst{9} = target{5};
493 let Inst{7-3} = target{4-0};
494 let Inst{2-0} = Rn;
495 }
Evan Chengde17fb62009-10-31 23:46:45 +0000496
Owen Anderson0bc8bbb2011-08-03 23:21:48 +0000497 def tCBNZ : T1I<(outs), (ins tGPR:$Rn, t_cbtarget:$target), IIC_Br,
498 "cbnz\t$Rn, $target", []>,
Bill Wendling12280382010-11-19 23:14:32 +0000499 T1Misc<{1,0,?,1,?,?,?}> {
Bill Wendling849f2e32010-11-29 00:18:15 +0000500 // A8.6.27
Bill Wendling12280382010-11-19 23:14:32 +0000501 bits<6> target;
502 bits<3> Rn;
503 let Inst{9} = target{5};
504 let Inst{7-3} = target{4-0};
505 let Inst{2-0} = Rn;
506 }
Evan Chengde17fb62009-10-31 23:46:45 +0000507}
508
Jim Grosbache36e21e2011-07-08 20:13:35 +0000509// Tail calls
510let isCall = 1, isTerminator = 1, isReturn = 1, isBarrier = 1 in {
511 // Darwin versions.
512 let Defs = [R0, R1, R2, R3, R9, R12, QQQQ0, QQQQ2, QQQQ3, PC],
513 Uses = [SP] in {
Jim Grosbachaf7f2d62011-07-08 20:32:21 +0000514 // tTAILJMPd: Darwin version uses a Thumb2 branch (no Thumb1 tail calls
515 // on Darwin), so it's in ARMInstrThumb2.td.
Jim Grosbach0b44aea2011-07-08 20:39:19 +0000516 def tTAILJMPr : tPseudoExpand<(outs), (ins tcGPR:$dst, variable_ops),
Owen Anderson16884412011-07-13 23:22:26 +0000517 4, IIC_Br, [],
Jim Grosbach0b44aea2011-07-08 20:39:19 +0000518 (tBX GPR:$dst, (ops 14, zero_reg))>,
519 Requires<[IsThumb, IsDarwin]>;
Jim Grosbache36e21e2011-07-08 20:13:35 +0000520 }
521 // Non-Darwin versions (the difference is R9).
522 let Defs = [R0, R1, R2, R3, R12, QQQQ0, QQQQ2, QQQQ3, PC],
523 Uses = [SP] in {
Jim Grosbachaf7f2d62011-07-08 20:32:21 +0000524 def tTAILJMPdND : tPseudoExpand<(outs), (ins t_brtarget:$dst, variable_ops),
Owen Anderson16884412011-07-13 23:22:26 +0000525 4, IIC_Br, [],
Jim Grosbachaf7f2d62011-07-08 20:32:21 +0000526 (tB t_brtarget:$dst)>,
527 Requires<[IsThumb, IsNotDarwin]>;
Jim Grosbach0b44aea2011-07-08 20:39:19 +0000528 def tTAILJMPrND : tPseudoExpand<(outs), (ins tcGPR:$dst, variable_ops),
Owen Anderson16884412011-07-13 23:22:26 +0000529 4, IIC_Br, [],
Jim Grosbach0b44aea2011-07-08 20:39:19 +0000530 (tBX GPR:$dst, (ops 14, zero_reg))>,
531 Requires<[IsThumb, IsNotDarwin]>;
Jim Grosbache36e21e2011-07-08 20:13:35 +0000532 }
533}
534
535
Johnny Chen4c61cdd2010-02-25 02:21:11 +0000536// A8.6.218 Supervisor Call (Software Interrupt) -- for disassembly only
537// A8.6.16 B: Encoding T1
538// If Inst{11-8} == 0b1111 then SEE SVC
Evan Cheng1e0eab12010-11-29 22:43:27 +0000539let isCall = 1, Uses = [SP] in
Jim Grosbached838482011-07-26 16:24:27 +0000540def tSVC : T1pI<(outs), (ins imm0_255:$imm), IIC_Br,
Bill Wendling6179c312010-11-20 00:53:35 +0000541 "svc", "\t$imm", []>, Encoding16 {
542 bits<8> imm;
Johnny Chen4c61cdd2010-02-25 02:21:11 +0000543 let Inst{15-12} = 0b1101;
Bill Wendling6179c312010-11-20 00:53:35 +0000544 let Inst{11-8} = 0b1111;
545 let Inst{7-0} = imm;
Johnny Chen4c61cdd2010-02-25 02:21:11 +0000546}
547
Bill Wendlingef4a68b2010-11-30 07:44:32 +0000548// The assembler uses 0xDEFE for a trap instruction.
Evan Chengfb3611d2010-05-11 07:26:32 +0000549let isBarrier = 1, isTerminator = 1 in
Owen Anderson18901d62011-05-11 17:00:48 +0000550def tTRAP : TI<(outs), (ins), IIC_Br,
Jim Grosbach2e6ae132010-09-23 18:05:37 +0000551 "trap", [(trap)]>, Encoding16 {
Bill Wendling7d0affd2010-11-21 10:55:23 +0000552 let Inst = 0xdefe;
Johnny Chen4c61cdd2010-02-25 02:21:11 +0000553}
554
Evan Chenga8e29892007-01-19 07:51:42 +0000555//===----------------------------------------------------------------------===//
556// Load Store Instructions.
557//
558
Bill Wendlingb6faf652010-12-14 22:10:49 +0000559// Loads: reg/reg and reg/imm5
Dan Gohmanbc9d98b2010-02-27 23:47:46 +0000560let canFoldAsLoad = 1, isReMaterializable = 1 in
Bill Wendlingb6faf652010-12-14 22:10:49 +0000561multiclass thumb_ld_rr_ri_enc<bits<3> reg_opc, bits<4> imm_opc,
562 Operand AddrMode_r, Operand AddrMode_i,
563 AddrMode am, InstrItinClass itin_r,
564 InstrItinClass itin_i, string asm,
565 PatFrag opnode> {
Bill Wendling345cdb62010-12-14 23:42:48 +0000566 def r : // reg/reg
Bill Wendlingb6faf652010-12-14 22:10:49 +0000567 T1pILdStEncode<reg_opc,
568 (outs tGPR:$Rt), (ins AddrMode_r:$addr),
569 am, itin_r, asm, "\t$Rt, $addr",
570 [(set tGPR:$Rt, (opnode AddrMode_r:$addr))]>;
Bill Wendling345cdb62010-12-14 23:42:48 +0000571 def i : // reg/imm5
Bill Wendlingb6faf652010-12-14 22:10:49 +0000572 T1pILdStEncodeImm<imm_opc, 1 /* Load */,
573 (outs tGPR:$Rt), (ins AddrMode_i:$addr),
574 am, itin_i, asm, "\t$Rt, $addr",
575 [(set tGPR:$Rt, (opnode AddrMode_i:$addr))]>;
576}
577// Stores: reg/reg and reg/imm5
578multiclass thumb_st_rr_ri_enc<bits<3> reg_opc, bits<4> imm_opc,
579 Operand AddrMode_r, Operand AddrMode_i,
580 AddrMode am, InstrItinClass itin_r,
581 InstrItinClass itin_i, string asm,
582 PatFrag opnode> {
Bill Wendling345cdb62010-12-14 23:42:48 +0000583 def r : // reg/reg
Bill Wendlingb6faf652010-12-14 22:10:49 +0000584 T1pILdStEncode<reg_opc,
585 (outs), (ins tGPR:$Rt, AddrMode_r:$addr),
586 am, itin_r, asm, "\t$Rt, $addr",
587 [(opnode tGPR:$Rt, AddrMode_r:$addr)]>;
Bill Wendling345cdb62010-12-14 23:42:48 +0000588 def i : // reg/imm5
Bill Wendlingb6faf652010-12-14 22:10:49 +0000589 T1pILdStEncodeImm<imm_opc, 0 /* Store */,
590 (outs), (ins tGPR:$Rt, AddrMode_i:$addr),
591 am, itin_i, asm, "\t$Rt, $addr",
592 [(opnode tGPR:$Rt, AddrMode_i:$addr)]>;
593}
Bill Wendling6179c312010-11-20 00:53:35 +0000594
Bill Wendlingb6faf652010-12-14 22:10:49 +0000595// A8.6.57 & A8.6.60
596defm tLDR : thumb_ld_rr_ri_enc<0b100, 0b0110, t_addrmode_rrs4,
597 t_addrmode_is4, AddrModeT1_4,
598 IIC_iLoad_r, IIC_iLoad_i, "ldr",
599 UnOpFrag<(load node:$Src)>>;
Evan Chenga8e29892007-01-19 07:51:42 +0000600
Bill Wendlingb6faf652010-12-14 22:10:49 +0000601// A8.6.64 & A8.6.61
602defm tLDRB : thumb_ld_rr_ri_enc<0b110, 0b0111, t_addrmode_rrs1,
603 t_addrmode_is1, AddrModeT1_1,
604 IIC_iLoad_bh_r, IIC_iLoad_bh_i, "ldrb",
605 UnOpFrag<(zextloadi8 node:$Src)>>;
Bill Wendling1fd374e2010-11-30 22:57:21 +0000606
Bill Wendlingb6faf652010-12-14 22:10:49 +0000607// A8.6.76 & A8.6.73
608defm tLDRH : thumb_ld_rr_ri_enc<0b101, 0b1000, t_addrmode_rrs2,
609 t_addrmode_is2, AddrModeT1_2,
610 IIC_iLoad_bh_r, IIC_iLoad_bh_i, "ldrh",
611 UnOpFrag<(zextloadi16 node:$Src)>>;
Evan Chengc38f2bc2007-01-23 22:59:13 +0000612
Evan Cheng2f297df2009-07-11 07:08:13 +0000613let AddedComplexity = 10 in
Bill Wendling1fd374e2010-11-30 22:57:21 +0000614def tLDRSB : // A8.6.80
Bill Wendling40062fb2010-12-01 01:38:08 +0000615 T1pILdStEncode<0b011, (outs tGPR:$dst), (ins t_addrmode_rr:$addr),
616 AddrModeT1_1, IIC_iLoad_bh_r,
617 "ldrsb", "\t$dst, $addr",
618 [(set tGPR:$dst, (sextloadi8 t_addrmode_rr:$addr))]>;
Evan Chengc38f2bc2007-01-23 22:59:13 +0000619
Evan Cheng2f297df2009-07-11 07:08:13 +0000620let AddedComplexity = 10 in
Bill Wendling1fd374e2010-11-30 22:57:21 +0000621def tLDRSH : // A8.6.84
Bill Wendling40062fb2010-12-01 01:38:08 +0000622 T1pILdStEncode<0b111, (outs tGPR:$dst), (ins t_addrmode_rr:$addr),
623 AddrModeT1_2, IIC_iLoad_bh_r,
624 "ldrsh", "\t$dst, $addr",
625 [(set tGPR:$dst, (sextloadi16 t_addrmode_rr:$addr))]>;
Evan Chengc38f2bc2007-01-23 22:59:13 +0000626
Dan Gohman15511cf2008-12-03 18:15:48 +0000627let canFoldAsLoad = 1 in
Jim Grosbachd967cd02010-12-07 21:50:47 +0000628def tLDRspi : T1pIs<(outs tGPR:$Rt), (ins t_addrmode_sp:$addr), IIC_iLoad_i,
Bill Wendlingdc381372010-12-15 23:31:24 +0000629 "ldr", "\t$Rt, $addr",
630 [(set tGPR:$Rt, (load t_addrmode_sp:$addr))]>,
Jim Grosbachd967cd02010-12-07 21:50:47 +0000631 T1LdStSP<{1,?,?}> {
632 bits<3> Rt;
633 bits<8> addr;
634 let Inst{10-8} = Rt;
635 let Inst{7-0} = addr;
636}
Evan Cheng012f2d92007-01-24 08:53:17 +0000637
638// Load tconstpool
Evan Cheng7883fa92009-11-04 00:00:39 +0000639// FIXME: Use ldr.n to work around a Darwin assembler bug.
Owen Anderson91614ae2011-07-18 22:14:02 +0000640let canFoldAsLoad = 1, isReMaterializable = 1, isCodeGenOnly = 1 in
Bill Wendlingb8958b02010-12-08 01:57:09 +0000641def tLDRpci : T1pIs<(outs tGPR:$Rt), (ins t_addrmode_pc:$addr), IIC_iLoad_i,
Bill Wendling3f8c1102010-11-30 23:54:45 +0000642 "ldr", ".n\t$Rt, $addr",
643 [(set tGPR:$Rt, (load (ARMWrapper tconstpool:$addr)))]>,
644 T1Encoding<{0,1,0,0,1,?}> {
645 // A6.2 & A8.6.59
646 bits<3> Rt;
Bill Wendlingb8958b02010-12-08 01:57:09 +0000647 bits<8> addr;
Bill Wendling3f8c1102010-11-30 23:54:45 +0000648 let Inst{10-8} = Rt;
Bill Wendlingb8958b02010-12-08 01:57:09 +0000649 let Inst{7-0} = addr;
Bill Wendling3f8c1102010-11-30 23:54:45 +0000650}
Evan Chengfa775d02007-03-19 07:20:03 +0000651
Johnny Chen597fa652011-04-22 19:12:43 +0000652// FIXME: Remove this entry when the above ldr.n workaround is fixed.
653// For disassembly use only.
654def tLDRpciDIS : T1pIs<(outs tGPR:$Rt), (ins t_addrmode_pc:$addr), IIC_iLoad_i,
655 "ldr", "\t$Rt, $addr",
656 [/* disassembly only */]>,
657 T1Encoding<{0,1,0,0,1,?}> {
658 // A6.2 & A8.6.59
659 bits<3> Rt;
660 bits<8> addr;
661 let Inst{10-8} = Rt;
662 let Inst{7-0} = addr;
663}
664
Bill Wendlingb6faf652010-12-14 22:10:49 +0000665// A8.6.194 & A8.6.192
666defm tSTR : thumb_st_rr_ri_enc<0b000, 0b0110, t_addrmode_rrs4,
667 t_addrmode_is4, AddrModeT1_4,
668 IIC_iStore_r, IIC_iStore_i, "str",
669 BinOpFrag<(store node:$LHS, node:$RHS)>>;
Evan Chenga8e29892007-01-19 07:51:42 +0000670
Bill Wendlingb6faf652010-12-14 22:10:49 +0000671// A8.6.197 & A8.6.195
672defm tSTRB : thumb_st_rr_ri_enc<0b010, 0b0111, t_addrmode_rrs1,
673 t_addrmode_is1, AddrModeT1_1,
674 IIC_iStore_bh_r, IIC_iStore_bh_i, "strb",
675 BinOpFrag<(truncstorei8 node:$LHS, node:$RHS)>>;
Evan Chengc38f2bc2007-01-23 22:59:13 +0000676
Bill Wendlingb6faf652010-12-14 22:10:49 +0000677// A8.6.207 & A8.6.205
678defm tSTRH : thumb_st_rr_ri_enc<0b001, 0b1000, t_addrmode_rrs2,
Jim Grosbachf921c0fe2011-06-13 22:54:22 +0000679 t_addrmode_is2, AddrModeT1_2,
680 IIC_iStore_bh_r, IIC_iStore_bh_i, "strh",
681 BinOpFrag<(truncstorei16 node:$LHS, node:$RHS)>>;
Bill Wendling1fd374e2010-11-30 22:57:21 +0000682
Evan Chenga8e29892007-01-19 07:51:42 +0000683
Jim Grosbachd967cd02010-12-07 21:50:47 +0000684def tSTRspi : T1pIs<(outs), (ins tGPR:$Rt, t_addrmode_sp:$addr), IIC_iStore_i,
Bill Wendlingf4caf692010-12-14 03:36:38 +0000685 "str", "\t$Rt, $addr",
686 [(store tGPR:$Rt, t_addrmode_sp:$addr)]>,
Jim Grosbachd967cd02010-12-07 21:50:47 +0000687 T1LdStSP<{0,?,?}> {
688 bits<3> Rt;
689 bits<8> addr;
690 let Inst{10-8} = Rt;
691 let Inst{7-0} = addr;
692}
Evan Cheng8e59ea92007-02-07 00:06:56 +0000693
Evan Chenga8e29892007-01-19 07:51:42 +0000694//===----------------------------------------------------------------------===//
695// Load / store multiple Instructions.
696//
697
Bill Wendling6c470b82010-11-13 09:09:38 +0000698multiclass thumb_ldst_mult<string asm, InstrItinClass itin,
699 InstrItinClass itin_upd, bits<6> T1Enc,
Owen Anderson565a0362011-07-18 23:25:34 +0000700 bit L_bit, string baseOpc> {
Bill Wendling73fe34a2010-11-16 01:16:36 +0000701 def IA :
Bill Wendling6c470b82010-11-13 09:09:38 +0000702 T1I<(outs), (ins GPR:$Rn, pred:$p, reglist:$regs, variable_ops),
Bill Wendling73fe34a2010-11-16 01:16:36 +0000703 itin, !strconcat(asm, "ia${p}\t$Rn, $regs"), []>,
Bill Wendling6179c312010-11-20 00:53:35 +0000704 T1Encoding<T1Enc> {
705 bits<3> Rn;
706 bits<8> regs;
707 let Inst{10-8} = Rn;
708 let Inst{7-0} = regs;
709 }
Owen Anderson565a0362011-07-18 23:25:34 +0000710
Bill Wendling73fe34a2010-11-16 01:16:36 +0000711 def IA_UPD :
Owen Anderson565a0362011-07-18 23:25:34 +0000712 InstTemplate<AddrModeNone, 0, IndexModeNone, Pseudo, GenericDomain,
713 "$Rn = $wb", itin_upd>,
714 PseudoInstExpansion<(!cast<Instruction>(!strconcat(baseOpc, "IA"))
715 GPR:$Rn, pred:$p, reglist:$regs)> {
716 let Size = 2;
717 let OutOperandList = (outs GPR:$wb);
718 let InOperandList = (ins GPR:$Rn, pred:$p, reglist:$regs, variable_ops);
719 let Pattern = [];
720 let isCodeGenOnly = 1;
721 let isPseudo = 1;
722 list<Predicate> Predicates = [IsThumb];
Bill Wendling6179c312010-11-20 00:53:35 +0000723 }
Bill Wendling6c470b82010-11-13 09:09:38 +0000724}
725
Bill Wendling73fe34a2010-11-16 01:16:36 +0000726// These require base address to be written back or one of the loaded regs.
Bill Wendlingddc918b2010-11-13 10:57:02 +0000727let neverHasSideEffects = 1 in {
728
729let mayLoad = 1, hasExtraDefRegAllocReq = 1 in
730defm tLDM : thumb_ldst_mult<"ldm", IIC_iLoad_m, IIC_iLoad_mu,
Owen Anderson565a0362011-07-18 23:25:34 +0000731 {1,1,0,0,1,?}, 1, "tLDM">;
Bill Wendlingddc918b2010-11-13 10:57:02 +0000732
733let mayStore = 1, hasExtraSrcRegAllocReq = 1 in
734defm tSTM : thumb_ldst_mult<"stm", IIC_iStore_m, IIC_iStore_mu,
Owen Anderson565a0362011-07-18 23:25:34 +0000735 {1,1,0,0,0,?}, 0, "tSTM">;
Owen Anderson18901d62011-05-11 17:00:48 +0000736
Bill Wendlingddc918b2010-11-13 10:57:02 +0000737} // neverHasSideEffects
Evan Cheng4b322e52009-08-11 21:11:32 +0000738
Evan Cheng0d92f5f2009-10-01 08:22:27 +0000739let mayLoad = 1, Uses = [SP], Defs = [SP], hasExtraDefRegAllocReq = 1 in
Bill Wendling602890d2010-11-19 01:33:10 +0000740def tPOP : T1I<(outs), (ins pred:$p, reglist:$regs, variable_ops),
Evan Chenga0792de2010-10-06 06:27:31 +0000741 IIC_iPop,
Bill Wendling602890d2010-11-19 01:33:10 +0000742 "pop${p}\t$regs", []>,
743 T1Misc<{1,1,0,?,?,?,?}> {
744 bits<16> regs;
Bill Wendling602890d2010-11-19 01:33:10 +0000745 let Inst{8} = regs{15};
746 let Inst{7-0} = regs{7-0};
747}
Evan Cheng4b322e52009-08-11 21:11:32 +0000748
Evan Cheng0d92f5f2009-10-01 08:22:27 +0000749let mayStore = 1, Uses = [SP], Defs = [SP], hasExtraSrcRegAllocReq = 1 in
Bill Wendling6179c312010-11-20 00:53:35 +0000750def tPUSH : T1I<(outs), (ins pred:$p, reglist:$regs, variable_ops),
Evan Chenga0792de2010-10-06 06:27:31 +0000751 IIC_iStore_m,
Bill Wendling6179c312010-11-20 00:53:35 +0000752 "push${p}\t$regs", []>,
753 T1Misc<{0,1,0,?,?,?,?}> {
754 bits<16> regs;
755 let Inst{8} = regs{14};
756 let Inst{7-0} = regs{7-0};
757}
Evan Chenga8e29892007-01-19 07:51:42 +0000758
759//===----------------------------------------------------------------------===//
760// Arithmetic Instructions.
761//
762
Bill Wendling1d045ee2010-12-01 02:28:08 +0000763// Helper classes for encoding T1pI patterns:
764class T1pIDPEncode<bits<4> opA, dag oops, dag iops, InstrItinClass itin,
765 string opc, string asm, list<dag> pattern>
766 : T1pI<oops, iops, itin, opc, asm, pattern>,
767 T1DataProcessing<opA> {
768 bits<3> Rm;
769 bits<3> Rn;
770 let Inst{5-3} = Rm;
771 let Inst{2-0} = Rn;
772}
773class T1pIMiscEncode<bits<7> opA, dag oops, dag iops, InstrItinClass itin,
774 string opc, string asm, list<dag> pattern>
775 : T1pI<oops, iops, itin, opc, asm, pattern>,
776 T1Misc<opA> {
777 bits<3> Rm;
778 bits<3> Rd;
779 let Inst{5-3} = Rm;
780 let Inst{2-0} = Rd;
781}
782
Bill Wendling76f4e102010-12-01 01:20:15 +0000783// Helper classes for encoding T1sI patterns:
784class T1sIDPEncode<bits<4> opA, dag oops, dag iops, InstrItinClass itin,
785 string opc, string asm, list<dag> pattern>
786 : T1sI<oops, iops, itin, opc, asm, pattern>,
787 T1DataProcessing<opA> {
788 bits<3> Rd;
789 bits<3> Rn;
790 let Inst{5-3} = Rn;
791 let Inst{2-0} = Rd;
792}
793class T1sIGenEncode<bits<5> opA, dag oops, dag iops, InstrItinClass itin,
794 string opc, string asm, list<dag> pattern>
795 : T1sI<oops, iops, itin, opc, asm, pattern>,
796 T1General<opA> {
797 bits<3> Rm;
798 bits<3> Rn;
799 bits<3> Rd;
800 let Inst{8-6} = Rm;
801 let Inst{5-3} = Rn;
802 let Inst{2-0} = Rd;
803}
804class T1sIGenEncodeImm<bits<5> opA, dag oops, dag iops, InstrItinClass itin,
805 string opc, string asm, list<dag> pattern>
806 : T1sI<oops, iops, itin, opc, asm, pattern>,
807 T1General<opA> {
808 bits<3> Rd;
809 bits<3> Rm;
810 let Inst{5-3} = Rm;
811 let Inst{2-0} = Rd;
812}
813
814// Helper classes for encoding T1sIt patterns:
Bill Wendlinga5a42d92010-12-01 00:48:44 +0000815class T1sItDPEncode<bits<4> opA, dag oops, dag iops, InstrItinClass itin,
816 string opc, string asm, list<dag> pattern>
817 : T1sIt<oops, iops, itin, opc, asm, pattern>,
818 T1DataProcessing<opA> {
Bill Wendling3f8c1102010-11-30 23:54:45 +0000819 bits<3> Rdn;
820 bits<3> Rm;
Bill Wendlinga5a42d92010-12-01 00:48:44 +0000821 let Inst{5-3} = Rm;
822 let Inst{2-0} = Rdn;
Bill Wendling95a6d172010-11-20 01:00:29 +0000823}
Bill Wendlinga5a42d92010-12-01 00:48:44 +0000824class T1sItGenEncodeImm<bits<5> opA, dag oops, dag iops, InstrItinClass itin,
825 string opc, string asm, list<dag> pattern>
826 : T1sIt<oops, iops, itin, opc, asm, pattern>,
827 T1General<opA> {
828 bits<3> Rdn;
829 bits<8> imm8;
830 let Inst{10-8} = Rdn;
831 let Inst{7-0} = imm8;
832}
833
834// Add with carry register
835let isCommutable = 1, Uses = [CPSR] in
836def tADC : // A8.6.2
837 T1sItDPEncode<0b0101, (outs tGPR:$Rdn), (ins tGPR:$Rn, tGPR:$Rm), IIC_iALUr,
838 "adc", "\t$Rdn, $Rm",
839 [(set tGPR:$Rdn, (adde tGPR:$Rn, tGPR:$Rm))]>;
Evan Cheng53d7dba2007-01-27 00:07:15 +0000840
David Goodwinc9ee1182009-06-25 22:49:55 +0000841// Add immediate
Bill Wendling76f4e102010-12-01 01:20:15 +0000842def tADDi3 : // A8.6.4 T1
Jim Grosbachf921c0fe2011-06-13 22:54:22 +0000843 T1sIGenEncodeImm<0b01110, (outs tGPR:$Rd), (ins tGPR:$Rm, i32imm:$imm3),
844 IIC_iALUi,
Bill Wendling76f4e102010-12-01 01:20:15 +0000845 "add", "\t$Rd, $Rm, $imm3",
846 [(set tGPR:$Rd, (add tGPR:$Rm, imm0_7:$imm3))]> {
Bill Wendling95a6d172010-11-20 01:00:29 +0000847 bits<3> imm3;
848 let Inst{8-6} = imm3;
Bill Wendling95a6d172010-11-20 01:00:29 +0000849}
Evan Chenga8e29892007-01-19 07:51:42 +0000850
Bill Wendlinga5a42d92010-12-01 00:48:44 +0000851def tADDi8 : // A8.6.4 T2
852 T1sItGenEncodeImm<{1,1,0,?,?}, (outs tGPR:$Rdn), (ins tGPR:$Rn, i32imm:$imm8),
853 IIC_iALUi,
854 "add", "\t$Rdn, $imm8",
855 [(set tGPR:$Rdn, (add tGPR:$Rn, imm8_255:$imm8))]>;
Evan Chenga8e29892007-01-19 07:51:42 +0000856
David Goodwinc9ee1182009-06-25 22:49:55 +0000857// Add register
Evan Cheng446c4282009-07-11 06:43:01 +0000858let isCommutable = 1 in
Bill Wendling76f4e102010-12-01 01:20:15 +0000859def tADDrr : // A8.6.6 T1
860 T1sIGenEncode<0b01100, (outs tGPR:$Rd), (ins tGPR:$Rn, tGPR:$Rm),
861 IIC_iALUr,
862 "add", "\t$Rd, $Rn, $Rm",
863 [(set tGPR:$Rd, (add tGPR:$Rn, tGPR:$Rm))]>;
Evan Chenga8e29892007-01-19 07:51:42 +0000864
Evan Chengcd799b92009-06-12 20:46:18 +0000865let neverHasSideEffects = 1 in
Bill Wendling0b424dc2010-12-01 01:32:02 +0000866def tADDhirr : T1pIt<(outs GPR:$Rdn), (ins GPR:$Rn, GPR:$Rm), IIC_iALUr,
867 "add", "\t$Rdn, $Rm", []>,
Bill Wendlinga09cc2b2010-11-20 01:18:47 +0000868 T1Special<{0,0,?,?}> {
869 // A8.6.6 T2
Bill Wendling0b424dc2010-12-01 01:32:02 +0000870 bits<4> Rdn;
871 bits<4> Rm;
872 let Inst{7} = Rdn{3};
873 let Inst{6-3} = Rm;
874 let Inst{2-0} = Rdn{2-0};
Bill Wendlinga09cc2b2010-11-20 01:18:47 +0000875}
Evan Chenga8e29892007-01-19 07:51:42 +0000876
Bill Wendlinga09cc2b2010-11-20 01:18:47 +0000877// AND register
Evan Cheng446c4282009-07-11 06:43:01 +0000878let isCommutable = 1 in
Bill Wendlinga5a42d92010-12-01 00:48:44 +0000879def tAND : // A8.6.12
880 T1sItDPEncode<0b0000, (outs tGPR:$Rdn), (ins tGPR:$Rn, tGPR:$Rm),
881 IIC_iBITr,
882 "and", "\t$Rdn, $Rm",
883 [(set tGPR:$Rdn, (and tGPR:$Rn, tGPR:$Rm))]>;
Evan Chenga8e29892007-01-19 07:51:42 +0000884
David Goodwinc9ee1182009-06-25 22:49:55 +0000885// ASR immediate
Bill Wendling76f4e102010-12-01 01:20:15 +0000886def tASRri : // A8.6.14
Owen Anderson6d746312011-08-08 20:42:17 +0000887 T1sIGenEncodeImm<{0,1,0,?,?}, (outs tGPR:$Rd), (ins tGPR:$Rm, imm_sr:$imm5),
Bill Wendling76f4e102010-12-01 01:20:15 +0000888 IIC_iMOVsi,
889 "asr", "\t$Rd, $Rm, $imm5",
Owen Anderson6d746312011-08-08 20:42:17 +0000890 [(set tGPR:$Rd, (sra tGPR:$Rm, (i32 imm_sr:$imm5)))]> {
Bill Wendlinga09cc2b2010-11-20 01:18:47 +0000891 bits<5> imm5;
892 let Inst{10-6} = imm5;
Bill Wendlinga09cc2b2010-11-20 01:18:47 +0000893}
Evan Chenga8e29892007-01-19 07:51:42 +0000894
David Goodwinc9ee1182009-06-25 22:49:55 +0000895// ASR register
Bill Wendlinga5a42d92010-12-01 00:48:44 +0000896def tASRrr : // A8.6.15
897 T1sItDPEncode<0b0100, (outs tGPR:$Rdn), (ins tGPR:$Rn, tGPR:$Rm),
898 IIC_iMOVsr,
899 "asr", "\t$Rdn, $Rm",
900 [(set tGPR:$Rdn, (sra tGPR:$Rn, tGPR:$Rm))]>;
Evan Chenga8e29892007-01-19 07:51:42 +0000901
David Goodwinc9ee1182009-06-25 22:49:55 +0000902// BIC register
Bill Wendlinga5a42d92010-12-01 00:48:44 +0000903def tBIC : // A8.6.20
904 T1sItDPEncode<0b1110, (outs tGPR:$Rdn), (ins tGPR:$Rn, tGPR:$Rm),
905 IIC_iBITr,
906 "bic", "\t$Rdn, $Rm",
907 [(set tGPR:$Rdn, (and tGPR:$Rn, (not tGPR:$Rm)))]>;
Evan Chenga8e29892007-01-19 07:51:42 +0000908
David Goodwinc9ee1182009-06-25 22:49:55 +0000909// CMN register
Gabor Greiff7d10f52010-09-14 22:00:50 +0000910let isCompare = 1, Defs = [CPSR] in {
Jim Grosbachd5d2bae2010-01-22 00:08:13 +0000911//FIXME: Disable CMN, as CCodes are backwards from compare expectations
912// Compare-to-zero still works out, just not the relationals
Bill Wendling0480e282010-12-01 02:36:55 +0000913//def tCMN : // A8.6.33
914// T1pIDPEncode<0b1011, (outs), (ins tGPR:$lhs, tGPR:$rhs),
915// IIC_iCMPr,
916// "cmn", "\t$lhs, $rhs",
917// [(ARMcmp tGPR:$lhs, (ineg tGPR:$rhs))]>;
Bill Wendling1d045ee2010-12-01 02:28:08 +0000918
919def tCMNz : // A8.6.33
920 T1pIDPEncode<0b1011, (outs), (ins tGPR:$Rn, tGPR:$Rm),
921 IIC_iCMPr,
922 "cmn", "\t$Rn, $Rm",
923 [(ARMcmpZ tGPR:$Rn, (ineg tGPR:$Rm))]>;
924
925} // isCompare = 1, Defs = [CPSR]
Lauro Ramos Venancio99966632007-04-02 01:30:03 +0000926
David Goodwinc9ee1182009-06-25 22:49:55 +0000927// CMP immediate
Gabor Greiff7d10f52010-09-14 22:00:50 +0000928let isCompare = 1, Defs = [CPSR] in {
Bill Wendling5cc88a22010-11-20 22:52:33 +0000929def tCMPi8 : T1pI<(outs), (ins tGPR:$Rn, i32imm:$imm8), IIC_iCMPi,
930 "cmp", "\t$Rn, $imm8",
931 [(ARMcmp tGPR:$Rn, imm0_255:$imm8)]>,
932 T1General<{1,0,1,?,?}> {
933 // A8.6.35
934 bits<3> Rn;
935 bits<8> imm8;
936 let Inst{10-8} = Rn;
937 let Inst{7-0} = imm8;
938}
939
David Goodwinc9ee1182009-06-25 22:49:55 +0000940// CMP register
Bill Wendling1d045ee2010-12-01 02:28:08 +0000941def tCMPr : // A8.6.36 T1
942 T1pIDPEncode<0b1010, (outs), (ins tGPR:$Rn, tGPR:$Rm),
943 IIC_iCMPr,
944 "cmp", "\t$Rn, $Rm",
945 [(ARMcmp tGPR:$Rn, tGPR:$Rm)]>;
946
Bill Wendling849f2e32010-11-29 00:18:15 +0000947def tCMPhir : T1pI<(outs), (ins GPR:$Rn, GPR:$Rm), IIC_iCMPr,
948 "cmp", "\t$Rn, $Rm", []>,
949 T1Special<{0,1,?,?}> {
950 // A8.6.36 T2
951 bits<4> Rm;
952 bits<4> Rn;
953 let Inst{7} = Rn{3};
954 let Inst{6-3} = Rm;
955 let Inst{2-0} = Rn{2-0};
956}
Bill Wendling5cc88a22010-11-20 22:52:33 +0000957} // isCompare = 1, Defs = [CPSR]
Lauro Ramos Venancio99966632007-04-02 01:30:03 +0000958
Evan Chenga8e29892007-01-19 07:51:42 +0000959
David Goodwinc9ee1182009-06-25 22:49:55 +0000960// XOR register
Evan Cheng446c4282009-07-11 06:43:01 +0000961let isCommutable = 1 in
Bill Wendlinga5a42d92010-12-01 00:48:44 +0000962def tEOR : // A8.6.45
963 T1sItDPEncode<0b0001, (outs tGPR:$Rdn), (ins tGPR:$Rn, tGPR:$Rm),
964 IIC_iBITr,
965 "eor", "\t$Rdn, $Rm",
966 [(set tGPR:$Rdn, (xor tGPR:$Rn, tGPR:$Rm))]>;
Evan Chenga8e29892007-01-19 07:51:42 +0000967
David Goodwinc9ee1182009-06-25 22:49:55 +0000968// LSL immediate
Bill Wendling76f4e102010-12-01 01:20:15 +0000969def tLSLri : // A8.6.88
970 T1sIGenEncodeImm<{0,0,0,?,?}, (outs tGPR:$Rd), (ins tGPR:$Rm, i32imm:$imm5),
971 IIC_iMOVsi,
972 "lsl", "\t$Rd, $Rm, $imm5",
973 [(set tGPR:$Rd, (shl tGPR:$Rm, (i32 imm:$imm5)))]> {
Bill Wendlingdcf0a472010-11-21 11:49:36 +0000974 bits<5> imm5;
975 let Inst{10-6} = imm5;
Bill Wendlingdcf0a472010-11-21 11:49:36 +0000976}
Evan Chenga8e29892007-01-19 07:51:42 +0000977
David Goodwinc9ee1182009-06-25 22:49:55 +0000978// LSL register
Bill Wendlinga5a42d92010-12-01 00:48:44 +0000979def tLSLrr : // A8.6.89
980 T1sItDPEncode<0b0010, (outs tGPR:$Rdn), (ins tGPR:$Rn, tGPR:$Rm),
981 IIC_iMOVsr,
982 "lsl", "\t$Rdn, $Rm",
983 [(set tGPR:$Rdn, (shl tGPR:$Rn, tGPR:$Rm))]>;
Evan Chenga8e29892007-01-19 07:51:42 +0000984
David Goodwinc9ee1182009-06-25 22:49:55 +0000985// LSR immediate
Bill Wendling76f4e102010-12-01 01:20:15 +0000986def tLSRri : // A8.6.90
Owen Anderson6d746312011-08-08 20:42:17 +0000987 T1sIGenEncodeImm<{0,0,1,?,?}, (outs tGPR:$Rd), (ins tGPR:$Rm, imm_sr:$imm5),
Bill Wendling76f4e102010-12-01 01:20:15 +0000988 IIC_iMOVsi,
989 "lsr", "\t$Rd, $Rm, $imm5",
Owen Anderson6d746312011-08-08 20:42:17 +0000990 [(set tGPR:$Rd, (srl tGPR:$Rm, (i32 imm_sr:$imm5)))]> {
Bill Wendlingdcf0a472010-11-21 11:49:36 +0000991 bits<5> imm5;
992 let Inst{10-6} = imm5;
Bill Wendlingdcf0a472010-11-21 11:49:36 +0000993}
Evan Chenga8e29892007-01-19 07:51:42 +0000994
David Goodwinc9ee1182009-06-25 22:49:55 +0000995// LSR register
Bill Wendlinga5a42d92010-12-01 00:48:44 +0000996def tLSRrr : // A8.6.91
997 T1sItDPEncode<0b0011, (outs tGPR:$Rdn), (ins tGPR:$Rn, tGPR:$Rm),
998 IIC_iMOVsr,
999 "lsr", "\t$Rdn, $Rm",
1000 [(set tGPR:$Rdn, (srl tGPR:$Rn, tGPR:$Rm))]>;
Evan Chenga8e29892007-01-19 07:51:42 +00001001
Bill Wendlingdcf0a472010-11-21 11:49:36 +00001002// Move register
Evan Chengc4af4632010-11-17 20:13:28 +00001003let isMoveImm = 1 in
Jim Grosbach6b8f1e32011-06-27 23:54:06 +00001004def tMOVi8 : T1sI<(outs tGPR:$Rd), (ins imm0_255:$imm8), IIC_iMOVi,
Bill Wendlingdcf0a472010-11-21 11:49:36 +00001005 "mov", "\t$Rd, $imm8",
1006 [(set tGPR:$Rd, imm0_255:$imm8)]>,
1007 T1General<{1,0,0,?,?}> {
1008 // A8.6.96
1009 bits<3> Rd;
1010 bits<8> imm8;
1011 let Inst{10-8} = Rd;
1012 let Inst{7-0} = imm8;
1013}
Evan Chenga8e29892007-01-19 07:51:42 +00001014
Jim Grosbachefeedce2011-07-01 17:14:11 +00001015// A7-73: MOV(2) - mov setting flag.
Evan Chenga8e29892007-01-19 07:51:42 +00001016
Evan Chengcd799b92009-06-12 20:46:18 +00001017let neverHasSideEffects = 1 in {
Jim Grosbach2a7b41b2011-06-30 23:38:17 +00001018def tMOVr : Thumb1pI<(outs GPR:$Rd), (ins GPR:$Rm), AddrModeNone,
Owen Anderson16884412011-07-13 23:22:26 +00001019 2, IIC_iMOVr,
Jim Grosbach63b46fa2011-06-30 22:10:46 +00001020 "mov", "\t$Rd, $Rm", "", []>,
Jim Grosbach2a7b41b2011-06-30 23:38:17 +00001021 T1Special<{1,0,?,?}> {
Bill Wendling534a5e42010-12-03 01:55:47 +00001022 // A8.6.97
1023 bits<4> Rd;
1024 bits<4> Rm;
Jim Grosbach2a7b41b2011-06-30 23:38:17 +00001025 let Inst{7} = Rd{3};
1026 let Inst{6-3} = Rm;
Bill Wendling534a5e42010-12-03 01:55:47 +00001027 let Inst{2-0} = Rd{2-0};
1028}
Evan Cheng446c4282009-07-11 06:43:01 +00001029let Defs = [CPSR] in
Bill Wendling534a5e42010-12-03 01:55:47 +00001030def tMOVSr : T1I<(outs tGPR:$Rd), (ins tGPR:$Rm), IIC_iMOVr,
1031 "movs\t$Rd, $Rm", []>, Encoding16 {
1032 // A8.6.97
1033 bits<3> Rd;
1034 bits<3> Rm;
Johnny Chend68e1192009-12-15 17:24:14 +00001035 let Inst{15-6} = 0b0000000000;
Bill Wendling534a5e42010-12-03 01:55:47 +00001036 let Inst{5-3} = Rm;
1037 let Inst{2-0} = Rd;
Johnny Chend68e1192009-12-15 17:24:14 +00001038}
Evan Chengcd799b92009-06-12 20:46:18 +00001039} // neverHasSideEffects
Evan Chenga8e29892007-01-19 07:51:42 +00001040
Bill Wendling0480e282010-12-01 02:36:55 +00001041// Multiply register
Evan Cheng446c4282009-07-11 06:43:01 +00001042let isCommutable = 1 in
Bill Wendlinga5a42d92010-12-01 00:48:44 +00001043def tMUL : // A8.6.105 T1
1044 T1sItDPEncode<0b1101, (outs tGPR:$Rdn), (ins tGPR:$Rn, tGPR:$Rm),
1045 IIC_iMUL32,
1046 "mul", "\t$Rdn, $Rm, $Rdn",
1047 [(set tGPR:$Rdn, (mul tGPR:$Rn, tGPR:$Rm))]>;
Evan Chenga8e29892007-01-19 07:51:42 +00001048
Bill Wendling76f4e102010-12-01 01:20:15 +00001049// Move inverse register
1050def tMVN : // A8.6.107
1051 T1sIDPEncode<0b1111, (outs tGPR:$Rd), (ins tGPR:$Rn), IIC_iMVNr,
1052 "mvn", "\t$Rd, $Rn",
1053 [(set tGPR:$Rd, (not tGPR:$Rn))]>;
Evan Chenga8e29892007-01-19 07:51:42 +00001054
Bill Wendlingdcf0a472010-11-21 11:49:36 +00001055// Bitwise or register
Evan Cheng446c4282009-07-11 06:43:01 +00001056let isCommutable = 1 in
Bill Wendlinga5a42d92010-12-01 00:48:44 +00001057def tORR : // A8.6.114
1058 T1sItDPEncode<0b1100, (outs tGPR:$Rdn), (ins tGPR:$Rn, tGPR:$Rm),
1059 IIC_iBITr,
1060 "orr", "\t$Rdn, $Rm",
1061 [(set tGPR:$Rdn, (or tGPR:$Rn, tGPR:$Rm))]>;
Evan Chenga8e29892007-01-19 07:51:42 +00001062
Bill Wendlingdcf0a472010-11-21 11:49:36 +00001063// Swaps
Bill Wendling1d045ee2010-12-01 02:28:08 +00001064def tREV : // A8.6.134
1065 T1pIMiscEncode<{1,0,1,0,0,0,?}, (outs tGPR:$Rd), (ins tGPR:$Rm),
1066 IIC_iUNAr,
1067 "rev", "\t$Rd, $Rm",
1068 [(set tGPR:$Rd, (bswap tGPR:$Rm))]>,
1069 Requires<[IsThumb, IsThumb1Only, HasV6]>;
Evan Chenga8e29892007-01-19 07:51:42 +00001070
Bill Wendling1d045ee2010-12-01 02:28:08 +00001071def tREV16 : // A8.6.135
1072 T1pIMiscEncode<{1,0,1,0,0,1,?}, (outs tGPR:$Rd), (ins tGPR:$Rm),
1073 IIC_iUNAr,
1074 "rev16", "\t$Rd, $Rm",
Evan Cheng9568e5c2011-06-21 06:01:08 +00001075 [(set tGPR:$Rd, (rotr (bswap tGPR:$Rm), (i32 16)))]>,
Bill Wendling1d045ee2010-12-01 02:28:08 +00001076 Requires<[IsThumb, IsThumb1Only, HasV6]>;
Evan Chenga8e29892007-01-19 07:51:42 +00001077
Bill Wendling1d045ee2010-12-01 02:28:08 +00001078def tREVSH : // A8.6.136
1079 T1pIMiscEncode<{1,0,1,0,1,1,?}, (outs tGPR:$Rd), (ins tGPR:$Rm),
1080 IIC_iUNAr,
1081 "revsh", "\t$Rd, $Rm",
Evan Cheng9568e5c2011-06-21 06:01:08 +00001082 [(set tGPR:$Rd, (sra (bswap tGPR:$Rm), (i32 16)))]>,
Bill Wendling1d045ee2010-12-01 02:28:08 +00001083 Requires<[IsThumb, IsThumb1Only, HasV6]>;
Evan Cheng446c4282009-07-11 06:43:01 +00001084
Bill Wendlinga5a42d92010-12-01 00:48:44 +00001085// Rotate right register
1086def tROR : // A8.6.139
1087 T1sItDPEncode<0b0111, (outs tGPR:$Rdn), (ins tGPR:$Rn, tGPR:$Rm),
1088 IIC_iMOVsr,
1089 "ror", "\t$Rdn, $Rm",
1090 [(set tGPR:$Rdn, (rotr tGPR:$Rn, tGPR:$Rm))]>;
Evan Cheng446c4282009-07-11 06:43:01 +00001091
Bill Wendlinga5a42d92010-12-01 00:48:44 +00001092// Negate register
Bill Wendling76f4e102010-12-01 01:20:15 +00001093def tRSB : // A8.6.141
1094 T1sIDPEncode<0b1001, (outs tGPR:$Rd), (ins tGPR:$Rn),
1095 IIC_iALUi,
1096 "rsb", "\t$Rd, $Rn, #0",
1097 [(set tGPR:$Rd, (ineg tGPR:$Rn))]>;
Evan Chenga8e29892007-01-19 07:51:42 +00001098
David Goodwinc9ee1182009-06-25 22:49:55 +00001099// Subtract with carry register
Evan Cheng446c4282009-07-11 06:43:01 +00001100let Uses = [CPSR] in
Bill Wendlinga5a42d92010-12-01 00:48:44 +00001101def tSBC : // A8.6.151
1102 T1sItDPEncode<0b0110, (outs tGPR:$Rdn), (ins tGPR:$Rn, tGPR:$Rm),
1103 IIC_iALUr,
1104 "sbc", "\t$Rdn, $Rm",
1105 [(set tGPR:$Rdn, (sube tGPR:$Rn, tGPR:$Rm))]>;
Evan Chenga8e29892007-01-19 07:51:42 +00001106
David Goodwinc9ee1182009-06-25 22:49:55 +00001107// Subtract immediate
Bill Wendling76f4e102010-12-01 01:20:15 +00001108def tSUBi3 : // A8.6.210 T1
1109 T1sIGenEncodeImm<0b01111, (outs tGPR:$Rd), (ins tGPR:$Rm, i32imm:$imm3),
1110 IIC_iALUi,
1111 "sub", "\t$Rd, $Rm, $imm3",
1112 [(set tGPR:$Rd, (add tGPR:$Rm, imm0_7_neg:$imm3))]> {
Bill Wendling5cbbf682010-11-29 01:00:43 +00001113 bits<3> imm3;
Bill Wendling5cbbf682010-11-29 01:00:43 +00001114 let Inst{8-6} = imm3;
Bill Wendling5cbbf682010-11-29 01:00:43 +00001115}
Jim Grosbach0ede14f2009-03-27 23:06:27 +00001116
Bill Wendlinga5a42d92010-12-01 00:48:44 +00001117def tSUBi8 : // A8.6.210 T2
1118 T1sItGenEncodeImm<{1,1,1,?,?}, (outs tGPR:$Rdn), (ins tGPR:$Rn, i32imm:$imm8),
1119 IIC_iALUi,
1120 "sub", "\t$Rdn, $imm8",
1121 [(set tGPR:$Rdn, (add tGPR:$Rn, imm8_255_neg:$imm8))]>;
Jim Grosbach0ede14f2009-03-27 23:06:27 +00001122
Bill Wendling76f4e102010-12-01 01:20:15 +00001123// Subtract register
1124def tSUBrr : // A8.6.212
1125 T1sIGenEncode<0b01101, (outs tGPR:$Rd), (ins tGPR:$Rn, tGPR:$Rm),
1126 IIC_iALUr,
1127 "sub", "\t$Rd, $Rn, $Rm",
1128 [(set tGPR:$Rd, (sub tGPR:$Rn, tGPR:$Rm))]>;
David Goodwinc9ee1182009-06-25 22:49:55 +00001129
1130// TODO: A7-96: STMIA - store multiple.
Evan Chenga8e29892007-01-19 07:51:42 +00001131
Bill Wendling76f4e102010-12-01 01:20:15 +00001132// Sign-extend byte
Bill Wendling1d045ee2010-12-01 02:28:08 +00001133def tSXTB : // A8.6.222
1134 T1pIMiscEncode<{0,0,1,0,0,1,?}, (outs tGPR:$Rd), (ins tGPR:$Rm),
1135 IIC_iUNAr,
1136 "sxtb", "\t$Rd, $Rm",
1137 [(set tGPR:$Rd, (sext_inreg tGPR:$Rm, i8))]>,
1138 Requires<[IsThumb, IsThumb1Only, HasV6]>;
David Goodwinc9ee1182009-06-25 22:49:55 +00001139
Bill Wendling1d045ee2010-12-01 02:28:08 +00001140// Sign-extend short
1141def tSXTH : // A8.6.224
1142 T1pIMiscEncode<{0,0,1,0,0,0,?}, (outs tGPR:$Rd), (ins tGPR:$Rm),
1143 IIC_iUNAr,
1144 "sxth", "\t$Rd, $Rm",
1145 [(set tGPR:$Rd, (sext_inreg tGPR:$Rm, i16))]>,
1146 Requires<[IsThumb, IsThumb1Only, HasV6]>;
Evan Chenga8e29892007-01-19 07:51:42 +00001147
Bill Wendling1d045ee2010-12-01 02:28:08 +00001148// Test
Gabor Greif007248b2010-09-14 20:47:43 +00001149let isCompare = 1, isCommutable = 1, Defs = [CPSR] in
Bill Wendling1d045ee2010-12-01 02:28:08 +00001150def tTST : // A8.6.230
1151 T1pIDPEncode<0b1000, (outs), (ins tGPR:$Rn, tGPR:$Rm), IIC_iTSTr,
1152 "tst", "\t$Rn, $Rm",
1153 [(ARMcmpZ (and_su tGPR:$Rn, tGPR:$Rm), 0)]>;
Evan Chenga8e29892007-01-19 07:51:42 +00001154
Bill Wendling1d045ee2010-12-01 02:28:08 +00001155// Zero-extend byte
1156def tUXTB : // A8.6.262
1157 T1pIMiscEncode<{0,0,1,0,1,1,?}, (outs tGPR:$Rd), (ins tGPR:$Rm),
1158 IIC_iUNAr,
1159 "uxtb", "\t$Rd, $Rm",
1160 [(set tGPR:$Rd, (and tGPR:$Rm, 0xFF))]>,
1161 Requires<[IsThumb, IsThumb1Only, HasV6]>;
David Goodwinc9ee1182009-06-25 22:49:55 +00001162
Bill Wendling1d045ee2010-12-01 02:28:08 +00001163// Zero-extend short
1164def tUXTH : // A8.6.264
1165 T1pIMiscEncode<{0,0,1,0,1,0,?}, (outs tGPR:$Rd), (ins tGPR:$Rm),
1166 IIC_iUNAr,
1167 "uxth", "\t$Rd, $Rm",
1168 [(set tGPR:$Rd, (and tGPR:$Rm, 0xFFFF))]>,
1169 Requires<[IsThumb, IsThumb1Only, HasV6]>;
Evan Chenga8e29892007-01-19 07:51:42 +00001170
Jim Grosbach80dc1162010-02-16 21:23:02 +00001171// Conditional move tMOVCCr - Used to implement the Thumb SELECT_CC operation.
Dan Gohman533297b2009-10-29 18:10:34 +00001172// Expanded after instruction selection into a branch sequence.
1173let usesCustomInserter = 1 in // Expanded after instruction selection.
Evan Cheng007ea272009-08-12 05:17:19 +00001174 def tMOVCCr_pseudo :
Evan Chengc9721652009-08-12 02:03:03 +00001175 PseudoInst<(outs tGPR:$dst), (ins tGPR:$false, tGPR:$true, pred:$cc),
Jim Grosbach99594eb2010-11-18 01:38:26 +00001176 NoItinerary,
Evan Chengc9721652009-08-12 02:03:03 +00001177 [/*(set tGPR:$dst, (ARMcmov tGPR:$false, tGPR:$true, imm:$cc))*/]>;
Evan Chenga8e29892007-01-19 07:51:42 +00001178
1179// tLEApcrel - Load a pc-relative address into a register without offending the
1180// assembler.
Jim Grosbachd40963c2010-12-14 22:28:03 +00001181
1182def tADR : T1I<(outs tGPR:$Rd), (ins t_adrlabel:$addr, pred:$p),
1183 IIC_iALUi, "adr{$p}\t$Rd, #$addr", []>,
1184 T1Encoding<{1,0,1,0,0,?}> {
Bill Wendling67077412010-11-30 00:18:30 +00001185 bits<3> Rd;
Jim Grosbachd40963c2010-12-14 22:28:03 +00001186 bits<8> addr;
Bill Wendling67077412010-11-30 00:18:30 +00001187 let Inst{10-8} = Rd;
Jim Grosbachd40963c2010-12-14 22:28:03 +00001188 let Inst{7-0} = addr;
Bill Wendling67077412010-11-30 00:18:30 +00001189}
Evan Chenga8e29892007-01-19 07:51:42 +00001190
Jim Grosbachd40963c2010-12-14 22:28:03 +00001191let neverHasSideEffects = 1, isReMaterializable = 1 in
1192def tLEApcrel : tPseudoInst<(outs tGPR:$Rd), (ins i32imm:$label, pred:$p),
Owen Anderson16884412011-07-13 23:22:26 +00001193 2, IIC_iALUi, []>;
Jim Grosbachd40963c2010-12-14 22:28:03 +00001194
1195def tLEApcrelJT : tPseudoInst<(outs tGPR:$Rd),
1196 (ins i32imm:$label, nohash_imm:$id, pred:$p),
Owen Anderson16884412011-07-13 23:22:26 +00001197 2, IIC_iALUi, []>;
Evan Chengd85ac4d2007-01-27 02:29:45 +00001198
Evan Chenga8e29892007-01-19 07:51:42 +00001199//===----------------------------------------------------------------------===//
Lauro Ramos Venancio64f4fa52007-04-27 13:54:47 +00001200// TLS Instructions
1201//
1202
1203// __aeabi_read_tp preserves the registers r1-r3.
Jim Grosbachff97eb02011-06-30 19:38:01 +00001204// This is a pseudo inst so that we can get the encoding right,
1205// complete with fixup for the aeabi_read_tp function.
1206let isCall = 1, Defs = [R0, R12, LR, CPSR], Uses = [SP] in
Owen Anderson16884412011-07-13 23:22:26 +00001207def tTPsoft : tPseudoInst<(outs), (ins), 4, IIC_Br,
Jim Grosbachff97eb02011-06-30 19:38:01 +00001208 [(set R0, ARMthread_pointer)]>;
Lauro Ramos Venancio64f4fa52007-04-27 13:54:47 +00001209
Bill Wendling0480e282010-12-01 02:36:55 +00001210//===----------------------------------------------------------------------===//
Jim Grosbachd1228742009-12-01 18:10:36 +00001211// SJLJ Exception handling intrinsics
Owen Anderson18901d62011-05-11 17:00:48 +00001212//
Bill Wendling0480e282010-12-01 02:36:55 +00001213
1214// eh_sjlj_setjmp() is an instruction sequence to store the return address and
1215// save #0 in R0 for the non-longjmp case. Since by its nature we may be coming
1216// from some other function to get here, and we're using the stack frame for the
1217// containing function to save/restore registers, we can't keep anything live in
1218// regs across the eh_sjlj_setjmp(), else it will almost certainly have been
Chris Lattner7a2bdde2011-04-15 05:18:47 +00001219// tromped upon when we get here from a longjmp(). We force everything out of
Bill Wendling0480e282010-12-01 02:36:55 +00001220// registers except for our own input by listing the relevant registers in
1221// Defs. By doing so, we also cause the prologue/epilogue code to actively
1222// preserve all of the callee-saved resgisters, which is exactly what we want.
1223// $val is a scratch register for our use.
Andrew Tricka1099f12011-06-07 00:08:49 +00001224let Defs = [ R0, R1, R2, R3, R4, R5, R6, R7, R12, CPSR ],
Bill Wendling0e45a5a2010-11-30 00:50:22 +00001225 hasSideEffects = 1, isBarrier = 1, isCodeGenOnly = 1 in
1226def tInt_eh_sjlj_setjmp : ThumbXI<(outs),(ins tGPR:$src, tGPR:$val),
Owen Anderson16884412011-07-13 23:22:26 +00001227 AddrModeNone, 0, NoItinerary, "","",
Bill Wendling0e45a5a2010-11-30 00:50:22 +00001228 [(set R0, (ARMeh_sjlj_setjmp tGPR:$src, tGPR:$val))]>;
Jim Grosbach5eb19512010-05-22 01:06:18 +00001229
1230// FIXME: Non-Darwin version(s)
Chris Lattnera4a3a5e2010-10-31 19:15:18 +00001231let isBarrier = 1, hasSideEffects = 1, isTerminator = 1, isCodeGenOnly = 1,
Bill Wendling0e45a5a2010-11-30 00:50:22 +00001232 Defs = [ R7, LR, SP ] in
Jim Grosbach5eb19512010-05-22 01:06:18 +00001233def tInt_eh_sjlj_longjmp : XI<(outs), (ins GPR:$src, GPR:$scratch),
Owen Anderson16884412011-07-13 23:22:26 +00001234 AddrModeNone, 0, IndexModeNone,
Bill Wendling0e45a5a2010-11-30 00:50:22 +00001235 Pseudo, NoItinerary, "", "",
1236 [(ARMeh_sjlj_longjmp GPR:$src, GPR:$scratch)]>,
1237 Requires<[IsThumb, IsDarwin]>;
Jim Grosbach5eb19512010-05-22 01:06:18 +00001238
Lauro Ramos Venancio64f4fa52007-04-27 13:54:47 +00001239//===----------------------------------------------------------------------===//
Evan Chenga8e29892007-01-19 07:51:42 +00001240// Non-Instruction Patterns
1241//
1242
Jim Grosbach97a884d2010-12-07 20:41:06 +00001243// Comparisons
1244def : T1Pat<(ARMcmpZ tGPR:$Rn, imm0_255:$imm8),
1245 (tCMPi8 tGPR:$Rn, imm0_255:$imm8)>;
1246def : T1Pat<(ARMcmpZ tGPR:$Rn, tGPR:$Rm),
1247 (tCMPr tGPR:$Rn, tGPR:$Rm)>;
1248
Evan Cheng892837a2009-07-10 02:09:04 +00001249// Add with carry
David Goodwinc9d138f2009-07-27 19:59:26 +00001250def : T1Pat<(addc tGPR:$lhs, imm0_7:$rhs),
1251 (tADDi3 tGPR:$lhs, imm0_7:$rhs)>;
1252def : T1Pat<(addc tGPR:$lhs, imm8_255:$rhs),
Evan Cheng89d177f2009-08-20 17:01:04 +00001253 (tADDi8 tGPR:$lhs, imm8_255:$rhs)>;
David Goodwinc9d138f2009-07-27 19:59:26 +00001254def : T1Pat<(addc tGPR:$lhs, tGPR:$rhs),
1255 (tADDrr tGPR:$lhs, tGPR:$rhs)>;
Evan Cheng892837a2009-07-10 02:09:04 +00001256
1257// Subtract with carry
David Goodwinc9d138f2009-07-27 19:59:26 +00001258def : T1Pat<(addc tGPR:$lhs, imm0_7_neg:$rhs),
1259 (tSUBi3 tGPR:$lhs, imm0_7_neg:$rhs)>;
1260def : T1Pat<(addc tGPR:$lhs, imm8_255_neg:$rhs),
1261 (tSUBi8 tGPR:$lhs, imm8_255_neg:$rhs)>;
1262def : T1Pat<(subc tGPR:$lhs, tGPR:$rhs),
1263 (tSUBrr tGPR:$lhs, tGPR:$rhs)>;
Evan Cheng892837a2009-07-10 02:09:04 +00001264
Evan Chenga8e29892007-01-19 07:51:42 +00001265// ConstantPool, GlobalAddress
David Goodwinc9d138f2009-07-27 19:59:26 +00001266def : T1Pat<(ARMWrapper tglobaladdr :$dst), (tLEApcrel tglobaladdr :$dst)>;
1267def : T1Pat<(ARMWrapper tconstpool :$dst), (tLEApcrel tconstpool :$dst)>;
Evan Chenga8e29892007-01-19 07:51:42 +00001268
Evan Chengd85ac4d2007-01-27 02:29:45 +00001269// JumpTable
David Goodwinc9d138f2009-07-27 19:59:26 +00001270def : T1Pat<(ARMWrapperJT tjumptable:$dst, imm:$id),
1271 (tLEApcrelJT tjumptable:$dst, imm:$id)>;
Evan Chengd85ac4d2007-01-27 02:29:45 +00001272
Evan Chenga8e29892007-01-19 07:51:42 +00001273// Direct calls
Evan Cheng20a2a0a2009-07-29 21:26:42 +00001274def : T1Pat<(ARMtcall texternalsym:$func), (tBL texternalsym:$func)>,
Evan Chengb6207242009-08-01 00:16:10 +00001275 Requires<[IsThumb, IsNotDarwin]>;
Evan Cheng20a2a0a2009-07-29 21:26:42 +00001276def : T1Pat<(ARMtcall texternalsym:$func), (tBLr9 texternalsym:$func)>,
Evan Chengb6207242009-08-01 00:16:10 +00001277 Requires<[IsThumb, IsDarwin]>;
Evan Cheng20a2a0a2009-07-29 21:26:42 +00001278
1279def : Tv5Pat<(ARMcall texternalsym:$func), (tBLXi texternalsym:$func)>,
Evan Chengb6207242009-08-01 00:16:10 +00001280 Requires<[IsThumb, HasV5T, IsNotDarwin]>;
Evan Cheng20a2a0a2009-07-29 21:26:42 +00001281def : Tv5Pat<(ARMcall texternalsym:$func), (tBLXi_r9 texternalsym:$func)>,
Evan Chengb6207242009-08-01 00:16:10 +00001282 Requires<[IsThumb, HasV5T, IsDarwin]>;
Evan Chenga8e29892007-01-19 07:51:42 +00001283
1284// Indirect calls to ARM routines
Evan Chengb6207242009-08-01 00:16:10 +00001285def : Tv5Pat<(ARMcall GPR:$dst), (tBLXr GPR:$dst)>,
1286 Requires<[IsThumb, HasV5T, IsNotDarwin]>;
1287def : Tv5Pat<(ARMcall GPR:$dst), (tBLXr_r9 GPR:$dst)>,
1288 Requires<[IsThumb, HasV5T, IsDarwin]>;
Evan Chenga8e29892007-01-19 07:51:42 +00001289
1290// zextload i1 -> zextload i8
Bill Wendlingf4caf692010-12-14 03:36:38 +00001291def : T1Pat<(zextloadi1 t_addrmode_rrs1:$addr),
1292 (tLDRBr t_addrmode_rrs1:$addr)>;
1293def : T1Pat<(zextloadi1 t_addrmode_is1:$addr),
1294 (tLDRBi t_addrmode_is1:$addr)>;
Jim Grosbach0ede14f2009-03-27 23:06:27 +00001295
Evan Chengb60c02e2007-01-26 19:13:16 +00001296// extload -> zextload
Bill Wendlingf4caf692010-12-14 03:36:38 +00001297def : T1Pat<(extloadi1 t_addrmode_rrs1:$addr), (tLDRBr t_addrmode_rrs1:$addr)>;
1298def : T1Pat<(extloadi1 t_addrmode_is1:$addr), (tLDRBi t_addrmode_is1:$addr)>;
1299def : T1Pat<(extloadi8 t_addrmode_rrs1:$addr), (tLDRBr t_addrmode_rrs1:$addr)>;
1300def : T1Pat<(extloadi8 t_addrmode_is1:$addr), (tLDRBi t_addrmode_is1:$addr)>;
1301def : T1Pat<(extloadi16 t_addrmode_rrs2:$addr), (tLDRHr t_addrmode_rrs2:$addr)>;
1302def : T1Pat<(extloadi16 t_addrmode_is2:$addr), (tLDRHi t_addrmode_is2:$addr)>;
Evan Chengb60c02e2007-01-26 19:13:16 +00001303
Evan Cheng0e87e232009-08-28 00:31:43 +00001304// If it's impossible to use [r,r] address mode for sextload, select to
Evan Cheng2f297df2009-07-11 07:08:13 +00001305// ldr{b|h} + sxt{b|h} instead.
Bill Wendling415af342010-12-15 00:58:57 +00001306def : T1Pat<(sextloadi8 t_addrmode_is1:$addr),
1307 (tSXTB (tLDRBi t_addrmode_is1:$addr))>,
1308 Requires<[IsThumb, IsThumb1Only, HasV6]>;
Bill Wendlingf4caf692010-12-14 03:36:38 +00001309def : T1Pat<(sextloadi8 t_addrmode_rrs1:$addr),
1310 (tSXTB (tLDRBr t_addrmode_rrs1:$addr))>,
Jim Grosbach6797f892010-11-01 17:08:58 +00001311 Requires<[IsThumb, IsThumb1Only, HasV6]>;
Bill Wendling415af342010-12-15 00:58:57 +00001312def : T1Pat<(sextloadi16 t_addrmode_is2:$addr),
1313 (tSXTH (tLDRHi t_addrmode_is2:$addr))>,
1314 Requires<[IsThumb, IsThumb1Only, HasV6]>;
Bill Wendlingf4caf692010-12-14 03:36:38 +00001315def : T1Pat<(sextloadi16 t_addrmode_rrs2:$addr),
1316 (tSXTH (tLDRHr t_addrmode_rrs2:$addr))>,
Jim Grosbach6797f892010-11-01 17:08:58 +00001317 Requires<[IsThumb, IsThumb1Only, HasV6]>;
Evan Cheng2f297df2009-07-11 07:08:13 +00001318
Bill Wendlingf4caf692010-12-14 03:36:38 +00001319def : T1Pat<(sextloadi8 t_addrmode_rrs1:$addr),
1320 (tASRri (tLSLri (tLDRBr t_addrmode_rrs1:$addr), 24), 24)>;
Bill Wendling415af342010-12-15 00:58:57 +00001321def : T1Pat<(sextloadi8 t_addrmode_is1:$addr),
1322 (tASRri (tLSLri (tLDRBi t_addrmode_is1:$addr), 24), 24)>;
1323def : T1Pat<(sextloadi16 t_addrmode_rrs2:$addr),
1324 (tASRri (tLSLri (tLDRHr t_addrmode_rrs2:$addr), 16), 16)>;
1325def : T1Pat<(sextloadi16 t_addrmode_is2:$addr),
1326 (tASRri (tLSLri (tLDRHi t_addrmode_is2:$addr), 16), 16)>;
Evan Cheng2f297df2009-07-11 07:08:13 +00001327
Evan Chenga8e29892007-01-19 07:51:42 +00001328// Large immediate handling.
1329
1330// Two piece imms.
Evan Cheng9cb9e672009-06-27 02:26:13 +00001331def : T1Pat<(i32 thumb_immshifted:$src),
1332 (tLSLri (tMOVi8 (thumb_immshifted_val imm:$src)),
1333 (thumb_immshifted_shamt imm:$src))>;
Evan Chenga8e29892007-01-19 07:51:42 +00001334
Evan Cheng9cb9e672009-06-27 02:26:13 +00001335def : T1Pat<(i32 imm0_255_comp:$src),
1336 (tMVN (tMOVi8 (imm_comp_XFORM imm:$src)))>;
Evan Chengb9803a82009-11-06 23:52:48 +00001337
1338// Pseudo instruction that combines ldr from constpool and add pc. This should
1339// be expanded into two instructions late to allow if-conversion and
1340// scheduling.
1341let isReMaterializable = 1 in
1342def tLDRpci_pic : PseudoInst<(outs GPR:$dst), (ins i32imm:$addr, pclabel:$cp),
Bill Wendling0480e282010-12-01 02:36:55 +00001343 NoItinerary,
Evan Chengb9803a82009-11-06 23:52:48 +00001344 [(set GPR:$dst, (ARMpic_add (load (ARMWrapper tconstpool:$addr)),
1345 imm:$cp))]>,
Jim Grosbach6797f892010-11-01 17:08:58 +00001346 Requires<[IsThumb, IsThumb1Only]>;
Jim Grosbach53e3fc42011-07-08 17:40:42 +00001347
1348// Pseudo-instruction for merged POP and return.
1349// FIXME: remove when we have a way to marking a MI with these properties.
1350let isReturn = 1, isTerminator = 1, isBarrier = 1, mayLoad = 1,
1351 hasExtraDefRegAllocReq = 1 in
1352def tPOP_RET : tPseudoExpand<(outs), (ins pred:$p, reglist:$regs, variable_ops),
Owen Anderson16884412011-07-13 23:22:26 +00001353 2, IIC_iPop_Br, [],
Jim Grosbach53e3fc42011-07-08 17:40:42 +00001354 (tPOP pred:$p, reglist:$regs)>;
1355
Jim Grosbachaa8d1b82011-07-08 22:25:23 +00001356// Indirect branch using "mov pc, $Rm"
1357let isBranch = 1, isTerminator = 1, isBarrier = 1, isIndirectBranch = 1 in {
Jim Grosbach7e61a312011-07-08 22:33:49 +00001358 def tBRIND : tPseudoExpand<(outs), (ins GPR:$Rm, pred:$p),
Owen Anderson16884412011-07-13 23:22:26 +00001359 2, IIC_Br, [(brind GPR:$Rm)],
Jim Grosbach7e61a312011-07-08 22:33:49 +00001360 (tMOVr PC, GPR:$Rm, pred:$p)>;
Jim Grosbachaa8d1b82011-07-08 22:25:23 +00001361}