blob: bfe83eceb13fb02244d9af11aee7227d51b94775 [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
Evan Chenga8e29892007-01-19 07:51:42 +000022def imm_neg_XFORM : SDNodeXForm<imm, [{
Owen Anderson825b72b2009-08-11 20:47:22 +000023 return CurDAG->getTargetConstant(-(int)N->getZExtValue(), MVT::i32);
Evan Chenga8e29892007-01-19 07:51:42 +000024}]>;
25def imm_comp_XFORM : SDNodeXForm<imm, [{
Owen Anderson825b72b2009-08-11 20:47:22 +000026 return CurDAG->getTargetConstant(~((uint32_t)N->getZExtValue()), MVT::i32);
Evan Chenga8e29892007-01-19 07:51:42 +000027}]>;
28
Evan Chenga8e29892007-01-19 07:51:42 +000029def imm0_7_neg : PatLeaf<(i32 imm), [{
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +000030 return (uint32_t)-N->getZExtValue() < 8;
Evan Chenga8e29892007-01-19 07:51:42 +000031}], imm_neg_XFORM>;
32
Jim Grosbach6b8f1e32011-06-27 23:54:06 +000033def imm0_255_asmoperand : AsmOperandClass { let Name = "Imm0_255"; }
34def imm0_255 : Operand<i32>, ImmLeaf<i32, [{ return Imm >= 0 && Imm < 256; }]> {
35 let ParserMatchClass = imm0_255_asmoperand;
36}
Evan Chenga8e29892007-01-19 07:51:42 +000037def imm0_255_comp : PatLeaf<(i32 imm), [{
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +000038 return ~((uint32_t)N->getZExtValue()) < 256;
Evan Chenga8e29892007-01-19 07:51:42 +000039}]>;
40
Eric Christopher8f232d32011-04-28 05:49:04 +000041def imm8_255 : ImmLeaf<i32, [{
42 return Imm >= 8 && Imm < 256;
Evan Chenga8e29892007-01-19 07:51:42 +000043}]>;
44def imm8_255_neg : PatLeaf<(i32 imm), [{
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +000045 unsigned Val = -N->getZExtValue();
Evan Chenga8e29892007-01-19 07:51:42 +000046 return Val >= 8 && Val < 256;
47}], imm_neg_XFORM>;
48
Bill Wendling0480e282010-12-01 02:36:55 +000049// Break imm's up into two pieces: an immediate + a left shift. This uses
50// thumb_immshifted to match and thumb_immshifted_val and thumb_immshifted_shamt
51// to get the val/shift pieces.
Evan Chenga8e29892007-01-19 07:51:42 +000052def thumb_immshifted : PatLeaf<(imm), [{
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +000053 return ARM_AM::isThumbImmShiftedVal((unsigned)N->getZExtValue());
Evan Chenga8e29892007-01-19 07:51:42 +000054}]>;
55
56def thumb_immshifted_val : SDNodeXForm<imm, [{
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +000057 unsigned V = ARM_AM::getThumbImmNonShiftedVal((unsigned)N->getZExtValue());
Owen Anderson825b72b2009-08-11 20:47:22 +000058 return CurDAG->getTargetConstant(V, MVT::i32);
Evan Chenga8e29892007-01-19 07:51:42 +000059}]>;
60
61def thumb_immshifted_shamt : SDNodeXForm<imm, [{
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +000062 unsigned V = ARM_AM::getThumbImmValShift((unsigned)N->getZExtValue());
Owen Anderson825b72b2009-08-11 20:47:22 +000063 return CurDAG->getTargetConstant(V, MVT::i32);
Evan Chenga8e29892007-01-19 07:51:42 +000064}]>;
65
Jim Grosbachd40963c2010-12-14 22:28:03 +000066// ADR instruction labels.
67def t_adrlabel : Operand<i32> {
68 let EncoderMethod = "getThumbAdrLabelOpValue";
69}
70
Evan Cheng2ef9c8a2009-11-19 06:57:41 +000071// Scaled 4 immediate.
72def t_imm_s4 : Operand<i32> {
73 let PrintMethod = "printThumbS4ImmOperand";
Benjamin Kramer151bd172011-07-14 21:47:24 +000074 let OperandType = "OPERAND_IMMEDIATE";
Evan Cheng2ef9c8a2009-11-19 06:57:41 +000075}
76
Evan Chenga8e29892007-01-19 07:51:42 +000077// Define Thumb specific addressing modes.
78
Benjamin Kramer151bd172011-07-14 21:47:24 +000079let OperandType = "OPERAND_PCREL" in {
Jim Grosbache2467172010-12-10 18:21:33 +000080def t_brtarget : Operand<OtherVT> {
81 let EncoderMethod = "getThumbBRTargetOpValue";
82}
83
Jim Grosbach01086452010-12-10 17:13:40 +000084def t_bcctarget : Operand<i32> {
85 let EncoderMethod = "getThumbBCCTargetOpValue";
86}
87
Jim Grosbachcf6220a2010-12-09 19:01:46 +000088def t_cbtarget : Operand<i32> {
Jim Grosbach027d6e82010-12-09 19:04:53 +000089 let EncoderMethod = "getThumbCBTargetOpValue";
Bill Wendlingdff2f712010-12-08 23:01:43 +000090}
91
Jim Grosbach662a8162010-12-06 23:57:07 +000092def t_bltarget : Operand<i32> {
93 let EncoderMethod = "getThumbBLTargetOpValue";
94}
95
Bill Wendling09aa3f02010-12-09 00:39:08 +000096def t_blxtarget : Operand<i32> {
97 let EncoderMethod = "getThumbBLXTargetOpValue";
98}
Benjamin Kramer151bd172011-07-14 21:47:24 +000099}
Bill Wendling09aa3f02010-12-09 00:39:08 +0000100
Bill Wendlingf4caf692010-12-14 03:36:38 +0000101def MemModeRegThumbAsmOperand : AsmOperandClass {
102 let Name = "MemModeRegThumb";
103 let SuperClasses = [];
104}
105
106def MemModeImmThumbAsmOperand : AsmOperandClass {
107 let Name = "MemModeImmThumb";
Bill Wendlingef4a68b2010-11-30 07:44:32 +0000108 let SuperClasses = [];
109}
110
Evan Chenga8e29892007-01-19 07:51:42 +0000111// t_addrmode_rr := reg + reg
112//
113def t_addrmode_rr : Operand<i32>,
114 ComplexPattern<i32, 2, "SelectThumbAddrModeRR", []> {
Bill Wendlingf4caf692010-12-14 03:36:38 +0000115 let EncoderMethod = "getThumbAddrModeRegRegOpValue";
Evan Chenga8e29892007-01-19 07:51:42 +0000116 let PrintMethod = "printThumbAddrModeRROperand";
Jim Grosbach30eae3c2009-04-07 20:34:09 +0000117 let MIOperandInfo = (ops tGPR:$base, tGPR:$offsreg);
Evan Chenga8e29892007-01-19 07:51:42 +0000118}
119
Bill Wendlingf4caf692010-12-14 03:36:38 +0000120// t_addrmode_rrs := reg + reg
Evan Chenga8e29892007-01-19 07:51:42 +0000121//
Bill Wendlingf4caf692010-12-14 03:36:38 +0000122def t_addrmode_rrs1 : Operand<i32>,
123 ComplexPattern<i32, 2, "SelectThumbAddrModeRI5S1", []> {
124 let EncoderMethod = "getThumbAddrModeRegRegOpValue";
125 let PrintMethod = "printThumbAddrModeRROperand";
126 let MIOperandInfo = (ops tGPR:$base, tGPR:$offsreg);
127 let ParserMatchClass = MemModeRegThumbAsmOperand;
Evan Chenga8e29892007-01-19 07:51:42 +0000128}
Bill Wendlingf4caf692010-12-14 03:36:38 +0000129def t_addrmode_rrs2 : Operand<i32>,
130 ComplexPattern<i32, 2, "SelectThumbAddrModeRI5S2", []> {
131 let EncoderMethod = "getThumbAddrModeRegRegOpValue";
132 let PrintMethod = "printThumbAddrModeRROperand";
133 let MIOperandInfo = (ops tGPR:$base, tGPR:$offsreg);
134 let ParserMatchClass = MemModeRegThumbAsmOperand;
135}
136def t_addrmode_rrs4 : Operand<i32>,
137 ComplexPattern<i32, 2, "SelectThumbAddrModeRI5S4", []> {
138 let EncoderMethod = "getThumbAddrModeRegRegOpValue";
139 let PrintMethod = "printThumbAddrModeRROperand";
140 let MIOperandInfo = (ops tGPR:$base, tGPR:$offsreg);
141 let ParserMatchClass = MemModeRegThumbAsmOperand;
Evan Chenga8e29892007-01-19 07:51:42 +0000142}
Evan Chengc38f2bc2007-01-23 22:59:13 +0000143
Bill Wendlingf4caf692010-12-14 03:36:38 +0000144// t_addrmode_is4 := reg + imm5 * 4
Evan Chengc38f2bc2007-01-23 22:59:13 +0000145//
Bill Wendlingf4caf692010-12-14 03:36:38 +0000146def t_addrmode_is4 : Operand<i32>,
147 ComplexPattern<i32, 2, "SelectThumbAddrModeImm5S4", []> {
148 let EncoderMethod = "getAddrModeISOpValue";
149 let PrintMethod = "printThumbAddrModeImm5S4Operand";
150 let MIOperandInfo = (ops tGPR:$base, i32imm:$offsimm);
151 let ParserMatchClass = MemModeImmThumbAsmOperand;
152}
153
154// t_addrmode_is2 := reg + imm5 * 2
155//
156def t_addrmode_is2 : Operand<i32>,
157 ComplexPattern<i32, 2, "SelectThumbAddrModeImm5S2", []> {
158 let EncoderMethod = "getAddrModeISOpValue";
159 let PrintMethod = "printThumbAddrModeImm5S2Operand";
160 let MIOperandInfo = (ops tGPR:$base, i32imm:$offsimm);
161 let ParserMatchClass = MemModeImmThumbAsmOperand;
162}
163
164// t_addrmode_is1 := reg + imm5
165//
166def t_addrmode_is1 : Operand<i32>,
167 ComplexPattern<i32, 2, "SelectThumbAddrModeImm5S1", []> {
168 let EncoderMethod = "getAddrModeISOpValue";
169 let PrintMethod = "printThumbAddrModeImm5S1Operand";
170 let MIOperandInfo = (ops tGPR:$base, i32imm:$offsimm);
171 let ParserMatchClass = MemModeImmThumbAsmOperand;
Evan Chenga8e29892007-01-19 07:51:42 +0000172}
173
174// t_addrmode_sp := sp + imm8 * 4
175//
176def t_addrmode_sp : Operand<i32>,
177 ComplexPattern<i32, 2, "SelectThumbAddrModeSP", []> {
Jim Grosbachd967cd02010-12-07 21:50:47 +0000178 let EncoderMethod = "getAddrModeThumbSPOpValue";
Evan Chenga8e29892007-01-19 07:51:42 +0000179 let PrintMethod = "printThumbAddrModeSPOperand";
Jakob Stoklund Olesenc5b7ef12010-01-13 00:43:06 +0000180 let MIOperandInfo = (ops GPR:$base, i32imm:$offsimm);
Bill Wendlingf4caf692010-12-14 03:36:38 +0000181 let ParserMatchClass = MemModeImmThumbAsmOperand;
Evan Chenga8e29892007-01-19 07:51:42 +0000182}
183
Bill Wendlingb8958b02010-12-08 01:57:09 +0000184// t_addrmode_pc := <label> => pc + imm8 * 4
185//
186def t_addrmode_pc : Operand<i32> {
187 let EncoderMethod = "getAddrModePCOpValue";
Bill Wendlingf4caf692010-12-14 03:36:38 +0000188 let ParserMatchClass = MemModeImmThumbAsmOperand;
Bill Wendlingb8958b02010-12-08 01:57:09 +0000189}
190
Evan Chenga8e29892007-01-19 07:51:42 +0000191//===----------------------------------------------------------------------===//
192// Miscellaneous Instructions.
193//
194
Jim Grosbach4642ad32010-02-22 23:10:38 +0000195// FIXME: Marking these as hasSideEffects is necessary to prevent machine DCE
196// from removing one half of the matched pairs. That breaks PEI, which assumes
197// these will always be in pairs, and asserts if it finds otherwise. Better way?
198let Defs = [SP], Uses = [SP], hasSideEffects = 1 in {
Evan Cheng44bec522007-05-15 01:29:07 +0000199def tADJCALLSTACKUP :
Bill Wendlinga8981662010-11-19 22:02:18 +0000200 PseudoInst<(outs), (ins i32imm:$amt1, i32imm:$amt2), NoItinerary,
201 [(ARMcallseq_end imm:$amt1, imm:$amt2)]>,
202 Requires<[IsThumb, IsThumb1Only]>;
Evan Cheng44bec522007-05-15 01:29:07 +0000203
Jim Grosbach0ede14f2009-03-27 23:06:27 +0000204def tADJCALLSTACKDOWN :
Bill Wendlinga8981662010-11-19 22:02:18 +0000205 PseudoInst<(outs), (ins i32imm:$amt), NoItinerary,
206 [(ARMcallseq_start imm:$amt)]>,
207 Requires<[IsThumb, IsThumb1Only]>;
Evan Cheng071a2792007-09-11 19:55:27 +0000208}
Evan Cheng44bec522007-05-15 01:29:07 +0000209
Bill Wendling0e45a5a2010-11-30 00:50:22 +0000210// T1Disassembly - A simple class to make encoding some disassembly patterns
211// easier and less verbose.
Bill Wendlinga46a4932010-11-29 22:15:03 +0000212class T1Disassembly<bits<2> op1, bits<8> op2>
213 : T1Encoding<0b101111> {
214 let Inst{9-8} = op1;
215 let Inst{7-0} = op2;
216}
217
Johnny Chenbd2c6232010-02-25 03:28:51 +0000218def tNOP : T1pI<(outs), (ins), NoItinerary, "nop", "",
219 [/* For disassembly only; pattern left blank */]>,
Bill Wendlinga46a4932010-11-29 22:15:03 +0000220 T1Disassembly<0b11, 0x00>; // A8.6.110
Johnny Chenbd2c6232010-02-25 03:28:51 +0000221
Johnny Chend86d2692010-02-25 17:51:03 +0000222def tYIELD : T1pI<(outs), (ins), NoItinerary, "yield", "",
223 [/* For disassembly only; pattern left blank */]>,
Bill Wendlinga46a4932010-11-29 22:15:03 +0000224 T1Disassembly<0b11, 0x10>; // A8.6.410
Johnny Chend86d2692010-02-25 17:51:03 +0000225
226def tWFE : T1pI<(outs), (ins), NoItinerary, "wfe", "",
227 [/* For disassembly only; pattern left blank */]>,
Bill Wendlinga46a4932010-11-29 22:15:03 +0000228 T1Disassembly<0b11, 0x20>; // A8.6.408
Johnny Chend86d2692010-02-25 17:51:03 +0000229
230def tWFI : T1pI<(outs), (ins), NoItinerary, "wfi", "",
231 [/* For disassembly only; pattern left blank */]>,
Bill Wendlinga46a4932010-11-29 22:15:03 +0000232 T1Disassembly<0b11, 0x30>; // A8.6.409
Johnny Chend86d2692010-02-25 17:51:03 +0000233
234def tSEV : T1pI<(outs), (ins), NoItinerary, "sev", "",
235 [/* For disassembly only; pattern left blank */]>,
Bill Wendlinga46a4932010-11-29 22:15:03 +0000236 T1Disassembly<0b11, 0x40>; // A8.6.157
237
238// The i32imm operand $val can be used by a debugger to store more information
239// about the breakpoint.
240def tBKPT : T1I<(outs), (ins i32imm:$val), NoItinerary, "bkpt\t$val",
241 [/* For disassembly only; pattern left blank */]>,
242 T1Disassembly<0b10, {?,?,?,?,?,?,?,?}> {
243 // A8.6.22
244 bits<8> val;
245 let Inst{7-0} = val;
246}
Johnny Chend86d2692010-02-25 17:51:03 +0000247
248def tSETENDBE : T1I<(outs), (ins), NoItinerary, "setend\tbe",
249 [/* For disassembly only; pattern left blank */]>,
250 T1Encoding<0b101101> {
Bill Wendling7d0affd2010-11-21 10:55:23 +0000251 // A8.6.156
Johnny Chend86d2692010-02-25 17:51:03 +0000252 let Inst{9-5} = 0b10010;
Bill Wendlinga8981662010-11-19 22:02:18 +0000253 let Inst{4} = 1;
254 let Inst{3} = 1; // Big-Endian
255 let Inst{2-0} = 0b000;
Johnny Chend86d2692010-02-25 17:51:03 +0000256}
257
258def tSETENDLE : T1I<(outs), (ins), NoItinerary, "setend\tle",
259 [/* For disassembly only; pattern left blank */]>,
260 T1Encoding<0b101101> {
Bill Wendling7d0affd2010-11-21 10:55:23 +0000261 // A8.6.156
Johnny Chend86d2692010-02-25 17:51:03 +0000262 let Inst{9-5} = 0b10010;
Bill Wendlinga8981662010-11-19 22:02:18 +0000263 let Inst{4} = 1;
264 let Inst{3} = 0; // Little-Endian
265 let Inst{2-0} = 0b000;
Johnny Chend86d2692010-02-25 17:51:03 +0000266}
267
Johnny Chen93042d12010-03-02 18:14:57 +0000268// Change Processor State is a system instruction -- for disassembly only.
Bruno Cardoso Lopesa2b6e412011-02-14 13:09:44 +0000269def tCPS : T1I<(outs), (ins imod_op:$imod, iflags_op:$iflags),
270 NoItinerary, "cps$imod $iflags",
271 [/* For disassembly only; pattern left blank */]>,
Bill Wendling849f2e32010-11-29 00:18:15 +0000272 T1Misc<0b0110011> {
273 // A8.6.38 & B6.1.1
Bruno Cardoso Lopesa2b6e412011-02-14 13:09:44 +0000274 bit imod;
275 bits<3> iflags;
276
277 let Inst{4} = imod;
278 let Inst{3} = 0;
279 let Inst{2-0} = iflags;
Bill Wendling849f2e32010-11-29 00:18:15 +0000280}
Johnny Chen93042d12010-03-02 18:14:57 +0000281
Evan Cheng35d6c412009-08-04 23:47:55 +0000282// For both thumb1 and thumb2.
Chris Lattnera4a3a5e2010-10-31 19:15:18 +0000283let isNotDuplicable = 1, isCodeGenOnly = 1 in
Jim Grosbacha3fbadf2010-09-30 19:53:58 +0000284def tPICADD : TIt<(outs GPR:$dst), (ins GPR:$lhs, pclabel:$cp), IIC_iALUr, "",
Bill Wendling0ae28e42010-11-19 22:37:33 +0000285 [(set GPR:$dst, (ARMpic_add GPR:$lhs, imm:$cp))]>,
Johnny Chend68e1192009-12-15 17:24:14 +0000286 T1Special<{0,0,?,?}> {
Bill Wendling0e45a5a2010-11-30 00:50:22 +0000287 // A8.6.6
Bill Wendling0ae28e42010-11-19 22:37:33 +0000288 bits<3> dst;
Bill Wendling0e45a5a2010-11-30 00:50:22 +0000289 let Inst{6-3} = 0b1111; // Rm = pc
Bill Wendling0ae28e42010-11-19 22:37:33 +0000290 let Inst{2-0} = dst;
Johnny Chend68e1192009-12-15 17:24:14 +0000291}
Evan Chenga8e29892007-01-19 07:51:42 +0000292
Bill Wendling0e45a5a2010-11-30 00:50:22 +0000293// PC relative add (ADR).
Evan Cheng2ef9c8a2009-11-19 06:57:41 +0000294def tADDrPCi : T1I<(outs tGPR:$dst), (ins t_imm_s4:$rhs), IIC_iALUi,
Bill Wendling0ae28e42010-11-19 22:37:33 +0000295 "add\t$dst, pc, $rhs", []>,
296 T1Encoding<{1,0,1,0,0,?}> {
297 // A6.2 & A8.6.10
298 bits<3> dst;
299 bits<8> rhs;
300 let Inst{10-8} = dst;
301 let Inst{7-0} = rhs;
Jim Grosbach663e3392010-08-30 19:49:58 +0000302}
Evan Cheng7dcf4a82009-06-25 01:05:06 +0000303
Bill Wendling0ae28e42010-11-19 22:37:33 +0000304// ADD <Rd>, sp, #<imm8>
305// This is rematerializable, which is particularly useful for taking the
306// address of locals.
307let isReMaterializable = 1 in
308def tADDrSPi : T1I<(outs tGPR:$dst), (ins GPR:$sp, t_imm_s4:$rhs), IIC_iALUi,
309 "add\t$dst, $sp, $rhs", []>,
310 T1Encoding<{1,0,1,0,1,?}> {
311 // A6.2 & A8.6.8
312 bits<3> dst;
313 bits<8> rhs;
314 let Inst{10-8} = dst;
315 let Inst{7-0} = rhs;
316}
317
318// ADD sp, sp, #<imm7>
Evan Cheng2ef9c8a2009-11-19 06:57:41 +0000319def tADDspi : TIt<(outs GPR:$dst), (ins GPR:$lhs, t_imm_s4:$rhs), IIC_iALUi,
Johnny Chend68e1192009-12-15 17:24:14 +0000320 "add\t$dst, $rhs", []>,
Bill Wendling0ae28e42010-11-19 22:37:33 +0000321 T1Misc<{0,0,0,0,0,?,?}> {
322 // A6.2.5 & A8.6.8
323 bits<7> rhs;
324 let Inst{6-0} = rhs;
325}
Evan Cheng7dcf4a82009-06-25 01:05:06 +0000326
Bill Wendling0ae28e42010-11-19 22:37:33 +0000327// SUB sp, sp, #<imm7>
328// FIXME: The encoding and the ASM string don't match up.
Evan Cheng2ef9c8a2009-11-19 06:57:41 +0000329def tSUBspi : TIt<(outs GPR:$dst), (ins GPR:$lhs, t_imm_s4:$rhs), IIC_iALUi,
Johnny Chend68e1192009-12-15 17:24:14 +0000330 "sub\t$dst, $rhs", []>,
Bill Wendling0ae28e42010-11-19 22:37:33 +0000331 T1Misc<{0,0,0,0,1,?,?}> {
332 // A6.2.5 & A8.6.214
333 bits<7> rhs;
334 let Inst{6-0} = rhs;
335}
Evan Cheng86198642009-08-07 00:34:42 +0000336
Bill Wendling0ae28e42010-11-19 22:37:33 +0000337// ADD <Rm>, sp
David Goodwin5d598aa2009-08-19 18:00:44 +0000338def tADDrSP : TIt<(outs GPR:$dst), (ins GPR:$lhs, GPR:$rhs), IIC_iALUr,
Johnny Chend68e1192009-12-15 17:24:14 +0000339 "add\t$dst, $rhs", []>,
340 T1Special<{0,0,?,?}> {
Bill Wendling0ae28e42010-11-19 22:37:33 +0000341 // A8.6.9 Encoding T1
342 bits<4> dst;
343 let Inst{7} = dst{3};
344 let Inst{6-3} = 0b1101;
345 let Inst{2-0} = dst{2-0};
Johnny Chend68e1192009-12-15 17:24:14 +0000346}
Evan Cheng86198642009-08-07 00:34:42 +0000347
Bill Wendling0ae28e42010-11-19 22:37:33 +0000348// ADD sp, <Rm>
David Goodwin5d598aa2009-08-19 18:00:44 +0000349def tADDspr : TIt<(outs GPR:$dst), (ins GPR:$lhs, GPR:$rhs), IIC_iALUr,
Johnny Chend68e1192009-12-15 17:24:14 +0000350 "add\t$dst, $rhs", []>,
351 T1Special<{0,0,?,?}> {
352 // A8.6.9 Encoding T2
Bill Wendling0ae28e42010-11-19 22:37:33 +0000353 bits<4> dst;
Johnny Chend68e1192009-12-15 17:24:14 +0000354 let Inst{7} = 1;
Bill Wendling0ae28e42010-11-19 22:37:33 +0000355 let Inst{6-3} = dst;
Johnny Chend68e1192009-12-15 17:24:14 +0000356 let Inst{2-0} = 0b101;
357}
Evan Cheng86198642009-08-07 00:34:42 +0000358
Evan Chenga8e29892007-01-19 07:51:42 +0000359//===----------------------------------------------------------------------===//
360// Control Flow Instructions.
361//
362
Bob Wilson8d4de5a2009-10-28 18:26:41 +0000363// Indirect branches
364let isBranch = 1, isTerminator = 1, isBarrier = 1, isIndirectBranch = 1 in {
Cameron Zwarich421b1062011-05-26 03:41:12 +0000365 def tBX : TI<(outs), (ins GPR:$Rm, pred:$p), IIC_Br, "bx${p}\t$Rm", []>,
366 T1Special<{1,1,0,?}> {
367 // A6.2.3 & A8.6.25
368 bits<4> Rm;
369 let Inst{6-3} = Rm;
370 let Inst{2-0} = 0b000;
371 }
Bob Wilson8d4de5a2009-10-28 18:26:41 +0000372}
373
Jim Grosbachead77cd2011-07-08 21:04:05 +0000374let isReturn = 1, isTerminator = 1, isBarrier = 1 in {
Owen Anderson16884412011-07-13 23:22:26 +0000375 def tBX_RET : tPseudoExpand<(outs), (ins pred:$p), 2, IIC_Br,
Jim Grosbach25e6d482011-07-08 21:50:04 +0000376 [(ARMretflag)], (tBX LR, pred:$p)>;
Jim Grosbachead77cd2011-07-08 21:04:05 +0000377
378 // Alternative return instruction used by vararg functions.
Jim Grosbach25e6d482011-07-08 21:50:04 +0000379 def tBX_RET_vararg : tPseudoExpand<(outs), (ins tGPR:$Rm, pred:$p),
Owen Anderson16884412011-07-13 23:22:26 +0000380 2, IIC_Br, [],
Jim Grosbach25e6d482011-07-08 21:50:04 +0000381 (tBX GPR:$Rm, pred:$p)>;
Jim Grosbachead77cd2011-07-08 21:04:05 +0000382}
383
Bill Wendling0480e282010-12-01 02:36:55 +0000384// All calls clobber the non-callee saved registers. SP is marked as a use to
385// prevent stack-pointer assignments that appear immediately before calls from
386// potentially appearing dead.
Jim Grosbach0ede14f2009-03-27 23:06:27 +0000387let isCall = 1,
Evan Cheng1e0eab12010-11-29 22:43:27 +0000388 // On non-Darwin platforms R9 is callee-saved.
Jakob Stoklund Olesen2944b4f2011-05-03 22:31:24 +0000389 Defs = [R0, R1, R2, R3, R12, LR, QQQQ0, QQQQ2, QQQQ3, CPSR, FPSCR],
Evan Cheng1e0eab12010-11-29 22:43:27 +0000390 Uses = [SP] in {
Evan Chengb6207242009-08-01 00:16:10 +0000391 // Also used for Thumb2
Johnny Chend68e1192009-12-15 17:24:14 +0000392 def tBL : TIx2<0b11110, 0b11, 1,
Jim Grosbach662a8162010-12-06 23:57:07 +0000393 (outs), (ins t_bltarget:$func, variable_ops), IIC_Br,
Jim Grosbach1d6111c2010-10-06 21:36:43 +0000394 "bl\t$func",
Johnny Chend68e1192009-12-15 17:24:14 +0000395 [(ARMtcall tglobaladdr:$func)]>,
Bill Wendling534a5e42010-12-03 01:55:47 +0000396 Requires<[IsThumb, IsNotDarwin]> {
Jim Grosbach662a8162010-12-06 23:57:07 +0000397 bits<21> func;
398 let Inst{25-16} = func{20-11};
Jim Grosbach4fa102b2010-12-03 22:33:42 +0000399 let Inst{13} = 1;
400 let Inst{11} = 1;
Jim Grosbach662a8162010-12-06 23:57:07 +0000401 let Inst{10-0} = func{10-0};
Bill Wendling534a5e42010-12-03 01:55:47 +0000402 }
Evan Cheng20a2a0a2009-07-29 21:26:42 +0000403
Evan Chengb6207242009-08-01 00:16:10 +0000404 // ARMv5T and above, also used for Thumb2
Johnny Chend68e1192009-12-15 17:24:14 +0000405 def tBLXi : TIx2<0b11110, 0b11, 0,
Bill Wendling09aa3f02010-12-09 00:39:08 +0000406 (outs), (ins t_blxtarget:$func, variable_ops), IIC_Br,
Jim Grosbach1d6111c2010-10-06 21:36:43 +0000407 "blx\t$func",
Johnny Chend68e1192009-12-15 17:24:14 +0000408 [(ARMcall tglobaladdr:$func)]>,
Jim Grosbach4fa102b2010-12-03 22:33:42 +0000409 Requires<[IsThumb, HasV5T, IsNotDarwin]> {
Jim Grosbach662a8162010-12-06 23:57:07 +0000410 bits<21> func;
411 let Inst{25-16} = func{20-11};
Jim Grosbach4fa102b2010-12-03 22:33:42 +0000412 let Inst{13} = 1;
413 let Inst{11} = 1;
Jim Grosbach662a8162010-12-06 23:57:07 +0000414 let Inst{10-1} = func{10-1};
415 let Inst{0} = 0; // func{0} is assumed zero
Jim Grosbach4fa102b2010-12-03 22:33:42 +0000416 }
Evan Cheng20a2a0a2009-07-29 21:26:42 +0000417
Evan Chengb6207242009-08-01 00:16:10 +0000418 // Also used for Thumb2
Jim Grosbach64171712010-02-16 21:07:46 +0000419 def tBLXr : TI<(outs), (ins GPR:$func, variable_ops), IIC_Br,
Evan Cheng699beba2009-10-27 00:08:59 +0000420 "blx\t$func",
Evan Chengb6207242009-08-01 00:16:10 +0000421 [(ARMtcall GPR:$func)]>,
Johnny Chend68e1192009-12-15 17:24:14 +0000422 Requires<[IsThumb, HasV5T, IsNotDarwin]>,
Owen Anderson18901d62011-05-11 17:00:48 +0000423 T1Special<{1,1,1,?}> { // A6.2.3 & A8.6.24;
424 bits<4> func;
425 let Inst{6-3} = func;
426 let Inst{2-0} = 0b000;
427 }
Evan Cheng20a2a0a2009-07-29 21:26:42 +0000428
Lauro Ramos Venanciob8a93a42007-03-27 16:19:21 +0000429 // ARMv4T
Cameron Zwarichad70f6d2011-05-25 21:53:50 +0000430 def tBX_CALL : tPseudoInst<(outs), (ins tGPR:$func, variable_ops),
Owen Anderson16884412011-07-13 23:22:26 +0000431 4, IIC_Br,
Evan Cheng20a2a0a2009-07-29 21:26:42 +0000432 [(ARMcall_nolink tGPR:$func)]>,
Jim Grosbach6797f892010-11-01 17:08:58 +0000433 Requires<[IsThumb, IsThumb1Only, IsNotDarwin]>;
Evan Cheng20a2a0a2009-07-29 21:26:42 +0000434}
435
Evan Cheng20a2a0a2009-07-29 21:26:42 +0000436let isCall = 1,
Evan Cheng1e0eab12010-11-29 22:43:27 +0000437 // On Darwin R9 is call-clobbered.
438 // R7 is marked as a use to prevent frame-pointer assignments from being
439 // moved above / below calls.
Jakob Stoklund Olesen2944b4f2011-05-03 22:31:24 +0000440 Defs = [R0, R1, R2, R3, R9, R12, LR, QQQQ0, QQQQ2, QQQQ3, CPSR, FPSCR],
Evan Cheng1e0eab12010-11-29 22:43:27 +0000441 Uses = [R7, SP] in {
Evan Chengb6207242009-08-01 00:16:10 +0000442 // Also used for Thumb2
Johnny Chend68e1192009-12-15 17:24:14 +0000443 def tBLr9 : TIx2<0b11110, 0b11, 1,
Jim Grosbach662a8162010-12-06 23:57:07 +0000444 (outs), (ins pred:$p, t_bltarget:$func, variable_ops),
445 IIC_Br, "bl${p}\t$func",
Evan Cheng20a2a0a2009-07-29 21:26:42 +0000446 [(ARMtcall tglobaladdr:$func)]>,
Bill Wendling534a5e42010-12-03 01:55:47 +0000447 Requires<[IsThumb, IsDarwin]> {
Jim Grosbach662a8162010-12-06 23:57:07 +0000448 bits<21> func;
449 let Inst{25-16} = func{20-11};
450 let Inst{13} = 1;
451 let Inst{11} = 1;
452 let Inst{10-0} = func{10-0};
Bill Wendling534a5e42010-12-03 01:55:47 +0000453 }
Evan Cheng20a2a0a2009-07-29 21:26:42 +0000454
Evan Chengb6207242009-08-01 00:16:10 +0000455 // ARMv5T and above, also used for Thumb2
Johnny Chend68e1192009-12-15 17:24:14 +0000456 def tBLXi_r9 : TIx2<0b11110, 0b11, 0,
Bill Wendling09aa3f02010-12-09 00:39:08 +0000457 (outs), (ins pred:$p, t_blxtarget:$func, variable_ops),
Jim Grosbach662a8162010-12-06 23:57:07 +0000458 IIC_Br, "blx${p}\t$func",
Evan Cheng20a2a0a2009-07-29 21:26:42 +0000459 [(ARMcall tglobaladdr:$func)]>,
Jim Grosbach4fa102b2010-12-03 22:33:42 +0000460 Requires<[IsThumb, HasV5T, IsDarwin]> {
Jim Grosbach662a8162010-12-06 23:57:07 +0000461 bits<21> func;
462 let Inst{25-16} = func{20-11};
Jim Grosbach4fa102b2010-12-03 22:33:42 +0000463 let Inst{13} = 1;
464 let Inst{11} = 1;
Jim Grosbach662a8162010-12-06 23:57:07 +0000465 let Inst{10-1} = func{10-1};
466 let Inst{0} = 0; // func{0} is assumed zero
Jim Grosbach4fa102b2010-12-03 22:33:42 +0000467 }
Evan Cheng20a2a0a2009-07-29 21:26:42 +0000468
Evan Chengb6207242009-08-01 00:16:10 +0000469 // Also used for Thumb2
Bill Wendling849f2e32010-11-29 00:18:15 +0000470 def tBLXr_r9 : TI<(outs), (ins pred:$p, GPR:$func, variable_ops), IIC_Br,
471 "blx${p}\t$func",
Johnny Chend68e1192009-12-15 17:24:14 +0000472 [(ARMtcall GPR:$func)]>,
473 Requires<[IsThumb, HasV5T, IsDarwin]>,
Bill Wendling849f2e32010-11-29 00:18:15 +0000474 T1Special<{1,1,1,?}> {
475 // A6.2.3 & A8.6.24
476 bits<4> func;
477 let Inst{6-3} = func;
478 let Inst{2-0} = 0b000;
479 }
Evan Cheng20a2a0a2009-07-29 21:26:42 +0000480
481 // ARMv4T
Cameron Zwarichad70f6d2011-05-25 21:53:50 +0000482 def tBXr9_CALL : tPseudoInst<(outs), (ins tGPR:$func, variable_ops),
Owen Anderson16884412011-07-13 23:22:26 +0000483 4, IIC_Br,
Johnny Chend68e1192009-12-15 17:24:14 +0000484 [(ARMcall_nolink tGPR:$func)]>,
Jim Grosbach6797f892010-11-01 17:08:58 +0000485 Requires<[IsThumb, IsThumb1Only, IsDarwin]>;
Evan Chenga8e29892007-01-19 07:51:42 +0000486}
487
Bill Wendling0480e282010-12-01 02:36:55 +0000488let isBranch = 1, isTerminator = 1, isBarrier = 1 in {
489 let isPredicable = 1 in
Jim Grosbache2467172010-12-10 18:21:33 +0000490 def tB : T1I<(outs), (ins t_brtarget:$target), IIC_Br,
Bill Wendling0480e282010-12-01 02:36:55 +0000491 "b\t$target", [(br bb:$target)]>,
Jim Grosbache2467172010-12-10 18:21:33 +0000492 T1Encoding<{1,1,1,0,0,?}> {
493 bits<11> target;
494 let Inst{10-0} = target;
495 }
Evan Chenga8e29892007-01-19 07:51:42 +0000496
Evan Cheng225dfe92007-01-30 01:13:37 +0000497 // Far jump
Jim Grosbach3efad8f2010-12-16 19:11:16 +0000498 // Just a pseudo for a tBL instruction. Needed to let regalloc know about
499 // the clobber of LR.
Evan Cheng53c67c02009-08-07 05:45:07 +0000500 let Defs = [LR] in
Jim Grosbach53e3fc42011-07-08 17:40:42 +0000501 def tBfar : tPseudoExpand<(outs), (ins t_bltarget:$target),
Owen Anderson16884412011-07-13 23:22:26 +0000502 4, IIC_Br, [], (tBL t_bltarget:$target)>;
Evan Cheng225dfe92007-01-30 01:13:37 +0000503
Jim Grosbachf1aa47d2010-11-29 19:32:47 +0000504 def tBR_JTr : tPseudoInst<(outs),
505 (ins tGPR:$target, i32imm:$jt, i32imm:$id),
Owen Anderson16884412011-07-13 23:22:26 +0000506 0, IIC_Br,
Jim Grosbachf1aa47d2010-11-29 19:32:47 +0000507 [(ARMbrjt tGPR:$target, tjumptable:$jt, imm:$id)]> {
508 list<Predicate> Predicates = [IsThumb, IsThumb1Only];
Johnny Chenbbc71b22009-12-16 02:32:54 +0000509 }
Evan Chengd85ac4d2007-01-27 02:29:45 +0000510}
511
Evan Chengc85e8322007-07-05 07:13:32 +0000512// FIXME: should be able to write a pattern for ARMBrcond, but can't use
Jim Grosbach0ede14f2009-03-27 23:06:27 +0000513// a two-value operand where a dag node expects two operands. :(
Evan Chengffbacca2007-07-21 00:34:19 +0000514let isBranch = 1, isTerminator = 1 in
Jim Grosbach01086452010-12-10 17:13:40 +0000515 def tBcc : T1I<(outs), (ins t_bcctarget:$target, pred:$p), IIC_Br,
Jim Grosbachceab5012010-12-04 00:20:40 +0000516 "b${p}\t$target",
Johnny Chend68e1192009-12-15 17:24:14 +0000517 [/*(ARMbrcond bb:$target, imm:$cc)*/]>,
Eric Christopher33281b22011-05-27 03:50:53 +0000518 T1BranchCond<{1,1,0,1}> {
Jim Grosbachceab5012010-12-04 00:20:40 +0000519 bits<4> p;
Jim Grosbach01086452010-12-10 17:13:40 +0000520 bits<8> target;
Jim Grosbachceab5012010-12-04 00:20:40 +0000521 let Inst{11-8} = p;
Jim Grosbach01086452010-12-10 17:13:40 +0000522 let Inst{7-0} = target;
Jim Grosbachceab5012010-12-04 00:20:40 +0000523}
Evan Chenga8e29892007-01-19 07:51:42 +0000524
Evan Chengde17fb62009-10-31 23:46:45 +0000525// Compare and branch on zero / non-zero
526let isBranch = 1, isTerminator = 1 in {
Jim Grosbachcf6220a2010-12-09 19:01:46 +0000527 def tCBZ : T1I<(outs), (ins tGPR:$Rn, t_cbtarget:$target), IIC_Br,
Bill Wendling12280382010-11-19 23:14:32 +0000528 "cbz\t$Rn, $target", []>,
529 T1Misc<{0,0,?,1,?,?,?}> {
Bill Wendling849f2e32010-11-29 00:18:15 +0000530 // A8.6.27
Bill Wendling12280382010-11-19 23:14:32 +0000531 bits<6> target;
532 bits<3> Rn;
533 let Inst{9} = target{5};
534 let Inst{7-3} = target{4-0};
535 let Inst{2-0} = Rn;
536 }
Evan Chengde17fb62009-10-31 23:46:45 +0000537
Jim Grosbachcf6220a2010-12-09 19:01:46 +0000538 def tCBNZ : T1I<(outs), (ins tGPR:$cmp, t_cbtarget:$target), IIC_Br,
Johnny Chend68e1192009-12-15 17:24:14 +0000539 "cbnz\t$cmp, $target", []>,
Bill Wendling12280382010-11-19 23:14:32 +0000540 T1Misc<{1,0,?,1,?,?,?}> {
Bill Wendling849f2e32010-11-29 00:18:15 +0000541 // A8.6.27
Bill Wendling12280382010-11-19 23:14:32 +0000542 bits<6> target;
543 bits<3> Rn;
544 let Inst{9} = target{5};
545 let Inst{7-3} = target{4-0};
546 let Inst{2-0} = Rn;
547 }
Evan Chengde17fb62009-10-31 23:46:45 +0000548}
549
Jim Grosbache36e21e2011-07-08 20:13:35 +0000550// Tail calls
551let isCall = 1, isTerminator = 1, isReturn = 1, isBarrier = 1 in {
552 // Darwin versions.
553 let Defs = [R0, R1, R2, R3, R9, R12, QQQQ0, QQQQ2, QQQQ3, PC],
554 Uses = [SP] in {
Jim Grosbachaf7f2d62011-07-08 20:32:21 +0000555 // tTAILJMPd: Darwin version uses a Thumb2 branch (no Thumb1 tail calls
556 // on Darwin), so it's in ARMInstrThumb2.td.
Jim Grosbach0b44aea2011-07-08 20:39:19 +0000557 def tTAILJMPr : tPseudoExpand<(outs), (ins tcGPR:$dst, variable_ops),
Owen Anderson16884412011-07-13 23:22:26 +0000558 4, IIC_Br, [],
Jim Grosbach0b44aea2011-07-08 20:39:19 +0000559 (tBX GPR:$dst, (ops 14, zero_reg))>,
560 Requires<[IsThumb, IsDarwin]>;
Jim Grosbache36e21e2011-07-08 20:13:35 +0000561 }
562 // Non-Darwin versions (the difference is R9).
563 let Defs = [R0, R1, R2, R3, R12, QQQQ0, QQQQ2, QQQQ3, PC],
564 Uses = [SP] in {
Jim Grosbachaf7f2d62011-07-08 20:32:21 +0000565 def tTAILJMPdND : tPseudoExpand<(outs), (ins t_brtarget:$dst, variable_ops),
Owen Anderson16884412011-07-13 23:22:26 +0000566 4, IIC_Br, [],
Jim Grosbachaf7f2d62011-07-08 20:32:21 +0000567 (tB t_brtarget:$dst)>,
568 Requires<[IsThumb, IsNotDarwin]>;
Jim Grosbach0b44aea2011-07-08 20:39:19 +0000569 def tTAILJMPrND : tPseudoExpand<(outs), (ins tcGPR:$dst, variable_ops),
Owen Anderson16884412011-07-13 23:22:26 +0000570 4, IIC_Br, [],
Jim Grosbach0b44aea2011-07-08 20:39:19 +0000571 (tBX GPR:$dst, (ops 14, zero_reg))>,
572 Requires<[IsThumb, IsNotDarwin]>;
Jim Grosbache36e21e2011-07-08 20:13:35 +0000573 }
574}
575
576
Johnny Chen4c61cdd2010-02-25 02:21:11 +0000577// A8.6.218 Supervisor Call (Software Interrupt) -- for disassembly only
578// A8.6.16 B: Encoding T1
579// If Inst{11-8} == 0b1111 then SEE SVC
Evan Cheng1e0eab12010-11-29 22:43:27 +0000580let isCall = 1, Uses = [SP] in
Bill Wendling6179c312010-11-20 00:53:35 +0000581def tSVC : T1pI<(outs), (ins i32imm:$imm), IIC_Br,
582 "svc", "\t$imm", []>, Encoding16 {
583 bits<8> imm;
Johnny Chen4c61cdd2010-02-25 02:21:11 +0000584 let Inst{15-12} = 0b1101;
Bill Wendling6179c312010-11-20 00:53:35 +0000585 let Inst{11-8} = 0b1111;
586 let Inst{7-0} = imm;
Johnny Chen4c61cdd2010-02-25 02:21:11 +0000587}
588
Bill Wendlingef4a68b2010-11-30 07:44:32 +0000589// The assembler uses 0xDEFE for a trap instruction.
Evan Chengfb3611d2010-05-11 07:26:32 +0000590let isBarrier = 1, isTerminator = 1 in
Owen Anderson18901d62011-05-11 17:00:48 +0000591def tTRAP : TI<(outs), (ins), IIC_Br,
Jim Grosbach2e6ae132010-09-23 18:05:37 +0000592 "trap", [(trap)]>, Encoding16 {
Bill Wendling7d0affd2010-11-21 10:55:23 +0000593 let Inst = 0xdefe;
Johnny Chen4c61cdd2010-02-25 02:21:11 +0000594}
595
Evan Chenga8e29892007-01-19 07:51:42 +0000596//===----------------------------------------------------------------------===//
597// Load Store Instructions.
598//
599
Bill Wendlingb6faf652010-12-14 22:10:49 +0000600// Loads: reg/reg and reg/imm5
Dan Gohmanbc9d98b2010-02-27 23:47:46 +0000601let canFoldAsLoad = 1, isReMaterializable = 1 in
Bill Wendlingb6faf652010-12-14 22:10:49 +0000602multiclass thumb_ld_rr_ri_enc<bits<3> reg_opc, bits<4> imm_opc,
603 Operand AddrMode_r, Operand AddrMode_i,
604 AddrMode am, InstrItinClass itin_r,
605 InstrItinClass itin_i, string asm,
606 PatFrag opnode> {
Bill Wendling345cdb62010-12-14 23:42:48 +0000607 def r : // reg/reg
Bill Wendlingb6faf652010-12-14 22:10:49 +0000608 T1pILdStEncode<reg_opc,
609 (outs tGPR:$Rt), (ins AddrMode_r:$addr),
610 am, itin_r, asm, "\t$Rt, $addr",
611 [(set tGPR:$Rt, (opnode AddrMode_r:$addr))]>;
Bill Wendling345cdb62010-12-14 23:42:48 +0000612 def i : // reg/imm5
Bill Wendlingb6faf652010-12-14 22:10:49 +0000613 T1pILdStEncodeImm<imm_opc, 1 /* Load */,
614 (outs tGPR:$Rt), (ins AddrMode_i:$addr),
615 am, itin_i, asm, "\t$Rt, $addr",
616 [(set tGPR:$Rt, (opnode AddrMode_i:$addr))]>;
617}
618// Stores: reg/reg and reg/imm5
619multiclass thumb_st_rr_ri_enc<bits<3> reg_opc, bits<4> imm_opc,
620 Operand AddrMode_r, Operand AddrMode_i,
621 AddrMode am, InstrItinClass itin_r,
622 InstrItinClass itin_i, string asm,
623 PatFrag opnode> {
Bill Wendling345cdb62010-12-14 23:42:48 +0000624 def r : // reg/reg
Bill Wendlingb6faf652010-12-14 22:10:49 +0000625 T1pILdStEncode<reg_opc,
626 (outs), (ins tGPR:$Rt, AddrMode_r:$addr),
627 am, itin_r, asm, "\t$Rt, $addr",
628 [(opnode tGPR:$Rt, AddrMode_r:$addr)]>;
Bill Wendling345cdb62010-12-14 23:42:48 +0000629 def i : // reg/imm5
Bill Wendlingb6faf652010-12-14 22:10:49 +0000630 T1pILdStEncodeImm<imm_opc, 0 /* Store */,
631 (outs), (ins tGPR:$Rt, AddrMode_i:$addr),
632 am, itin_i, asm, "\t$Rt, $addr",
633 [(opnode tGPR:$Rt, AddrMode_i:$addr)]>;
634}
Bill Wendling6179c312010-11-20 00:53:35 +0000635
Bill Wendlingb6faf652010-12-14 22:10:49 +0000636// A8.6.57 & A8.6.60
637defm tLDR : thumb_ld_rr_ri_enc<0b100, 0b0110, t_addrmode_rrs4,
638 t_addrmode_is4, AddrModeT1_4,
639 IIC_iLoad_r, IIC_iLoad_i, "ldr",
640 UnOpFrag<(load node:$Src)>>;
Evan Chenga8e29892007-01-19 07:51:42 +0000641
Bill Wendlingb6faf652010-12-14 22:10:49 +0000642// A8.6.64 & A8.6.61
643defm tLDRB : thumb_ld_rr_ri_enc<0b110, 0b0111, t_addrmode_rrs1,
644 t_addrmode_is1, AddrModeT1_1,
645 IIC_iLoad_bh_r, IIC_iLoad_bh_i, "ldrb",
646 UnOpFrag<(zextloadi8 node:$Src)>>;
Bill Wendling1fd374e2010-11-30 22:57:21 +0000647
Bill Wendlingb6faf652010-12-14 22:10:49 +0000648// A8.6.76 & A8.6.73
649defm tLDRH : thumb_ld_rr_ri_enc<0b101, 0b1000, t_addrmode_rrs2,
650 t_addrmode_is2, AddrModeT1_2,
651 IIC_iLoad_bh_r, IIC_iLoad_bh_i, "ldrh",
652 UnOpFrag<(zextloadi16 node:$Src)>>;
Evan Chengc38f2bc2007-01-23 22:59:13 +0000653
Evan Cheng2f297df2009-07-11 07:08:13 +0000654let AddedComplexity = 10 in
Bill Wendling1fd374e2010-11-30 22:57:21 +0000655def tLDRSB : // A8.6.80
Bill Wendling40062fb2010-12-01 01:38:08 +0000656 T1pILdStEncode<0b011, (outs tGPR:$dst), (ins t_addrmode_rr:$addr),
657 AddrModeT1_1, IIC_iLoad_bh_r,
658 "ldrsb", "\t$dst, $addr",
659 [(set tGPR:$dst, (sextloadi8 t_addrmode_rr:$addr))]>;
Evan Chengc38f2bc2007-01-23 22:59:13 +0000660
Evan Cheng2f297df2009-07-11 07:08:13 +0000661let AddedComplexity = 10 in
Bill Wendling1fd374e2010-11-30 22:57:21 +0000662def tLDRSH : // A8.6.84
Bill Wendling40062fb2010-12-01 01:38:08 +0000663 T1pILdStEncode<0b111, (outs tGPR:$dst), (ins t_addrmode_rr:$addr),
664 AddrModeT1_2, IIC_iLoad_bh_r,
665 "ldrsh", "\t$dst, $addr",
666 [(set tGPR:$dst, (sextloadi16 t_addrmode_rr:$addr))]>;
Evan Chengc38f2bc2007-01-23 22:59:13 +0000667
Dan Gohman15511cf2008-12-03 18:15:48 +0000668let canFoldAsLoad = 1 in
Jim Grosbachd967cd02010-12-07 21:50:47 +0000669def tLDRspi : T1pIs<(outs tGPR:$Rt), (ins t_addrmode_sp:$addr), IIC_iLoad_i,
Bill Wendlingdc381372010-12-15 23:31:24 +0000670 "ldr", "\t$Rt, $addr",
671 [(set tGPR:$Rt, (load t_addrmode_sp:$addr))]>,
Jim Grosbachd967cd02010-12-07 21:50:47 +0000672 T1LdStSP<{1,?,?}> {
673 bits<3> Rt;
674 bits<8> addr;
675 let Inst{10-8} = Rt;
676 let Inst{7-0} = addr;
677}
Evan Cheng012f2d92007-01-24 08:53:17 +0000678
679// Load tconstpool
Evan Cheng7883fa92009-11-04 00:00:39 +0000680// FIXME: Use ldr.n to work around a Darwin assembler bug.
Dan Gohmanbc9d98b2010-02-27 23:47:46 +0000681let canFoldAsLoad = 1, isReMaterializable = 1 in
Bill Wendlingb8958b02010-12-08 01:57:09 +0000682def tLDRpci : T1pIs<(outs tGPR:$Rt), (ins t_addrmode_pc:$addr), IIC_iLoad_i,
Bill Wendling3f8c1102010-11-30 23:54:45 +0000683 "ldr", ".n\t$Rt, $addr",
684 [(set tGPR:$Rt, (load (ARMWrapper tconstpool:$addr)))]>,
685 T1Encoding<{0,1,0,0,1,?}> {
686 // A6.2 & A8.6.59
687 bits<3> Rt;
Bill Wendlingb8958b02010-12-08 01:57:09 +0000688 bits<8> addr;
Bill Wendling3f8c1102010-11-30 23:54:45 +0000689 let Inst{10-8} = Rt;
Bill Wendlingb8958b02010-12-08 01:57:09 +0000690 let Inst{7-0} = addr;
Bill Wendling3f8c1102010-11-30 23:54:45 +0000691}
Evan Chengfa775d02007-03-19 07:20:03 +0000692
Johnny Chen597fa652011-04-22 19:12:43 +0000693// FIXME: Remove this entry when the above ldr.n workaround is fixed.
694// For disassembly use only.
695def tLDRpciDIS : T1pIs<(outs tGPR:$Rt), (ins t_addrmode_pc:$addr), IIC_iLoad_i,
696 "ldr", "\t$Rt, $addr",
697 [/* disassembly only */]>,
698 T1Encoding<{0,1,0,0,1,?}> {
699 // A6.2 & A8.6.59
700 bits<3> Rt;
701 bits<8> addr;
702 let Inst{10-8} = Rt;
703 let Inst{7-0} = addr;
704}
705
Bill Wendlingb6faf652010-12-14 22:10:49 +0000706// A8.6.194 & A8.6.192
707defm tSTR : thumb_st_rr_ri_enc<0b000, 0b0110, t_addrmode_rrs4,
708 t_addrmode_is4, AddrModeT1_4,
709 IIC_iStore_r, IIC_iStore_i, "str",
710 BinOpFrag<(store node:$LHS, node:$RHS)>>;
Evan Chenga8e29892007-01-19 07:51:42 +0000711
Bill Wendlingb6faf652010-12-14 22:10:49 +0000712// A8.6.197 & A8.6.195
713defm tSTRB : thumb_st_rr_ri_enc<0b010, 0b0111, t_addrmode_rrs1,
714 t_addrmode_is1, AddrModeT1_1,
715 IIC_iStore_bh_r, IIC_iStore_bh_i, "strb",
716 BinOpFrag<(truncstorei8 node:$LHS, node:$RHS)>>;
Evan Chengc38f2bc2007-01-23 22:59:13 +0000717
Bill Wendlingb6faf652010-12-14 22:10:49 +0000718// A8.6.207 & A8.6.205
719defm tSTRH : thumb_st_rr_ri_enc<0b001, 0b1000, t_addrmode_rrs2,
Jim Grosbachf921c0fe2011-06-13 22:54:22 +0000720 t_addrmode_is2, AddrModeT1_2,
721 IIC_iStore_bh_r, IIC_iStore_bh_i, "strh",
722 BinOpFrag<(truncstorei16 node:$LHS, node:$RHS)>>;
Bill Wendling1fd374e2010-11-30 22:57:21 +0000723
Evan Chenga8e29892007-01-19 07:51:42 +0000724
Jim Grosbachd967cd02010-12-07 21:50:47 +0000725def tSTRspi : T1pIs<(outs), (ins tGPR:$Rt, t_addrmode_sp:$addr), IIC_iStore_i,
Bill Wendlingf4caf692010-12-14 03:36:38 +0000726 "str", "\t$Rt, $addr",
727 [(store tGPR:$Rt, t_addrmode_sp:$addr)]>,
Jim Grosbachd967cd02010-12-07 21:50:47 +0000728 T1LdStSP<{0,?,?}> {
729 bits<3> Rt;
730 bits<8> addr;
731 let Inst{10-8} = Rt;
732 let Inst{7-0} = addr;
733}
Evan Cheng8e59ea92007-02-07 00:06:56 +0000734
Evan Chenga8e29892007-01-19 07:51:42 +0000735//===----------------------------------------------------------------------===//
736// Load / store multiple Instructions.
737//
738
Bill Wendling6c470b82010-11-13 09:09:38 +0000739multiclass thumb_ldst_mult<string asm, InstrItinClass itin,
740 InstrItinClass itin_upd, bits<6> T1Enc,
741 bit L_bit> {
Bill Wendling73fe34a2010-11-16 01:16:36 +0000742 def IA :
Bill Wendling6c470b82010-11-13 09:09:38 +0000743 T1I<(outs), (ins GPR:$Rn, pred:$p, reglist:$regs, variable_ops),
Bill Wendling73fe34a2010-11-16 01:16:36 +0000744 itin, !strconcat(asm, "ia${p}\t$Rn, $regs"), []>,
Bill Wendling6179c312010-11-20 00:53:35 +0000745 T1Encoding<T1Enc> {
746 bits<3> Rn;
747 bits<8> regs;
748 let Inst{10-8} = Rn;
749 let Inst{7-0} = regs;
750 }
Bill Wendling73fe34a2010-11-16 01:16:36 +0000751 def IA_UPD :
Bill Wendling6c470b82010-11-13 09:09:38 +0000752 T1It<(outs GPR:$wb), (ins GPR:$Rn, pred:$p, reglist:$regs, variable_ops),
Bill Wendling73fe34a2010-11-16 01:16:36 +0000753 itin_upd, !strconcat(asm, "ia${p}\t$Rn!, $regs"), "$Rn = $wb", []>,
Bill Wendling6179c312010-11-20 00:53:35 +0000754 T1Encoding<T1Enc> {
755 bits<3> Rn;
756 bits<8> regs;
757 let Inst{10-8} = Rn;
758 let Inst{7-0} = regs;
759 }
Bill Wendling6c470b82010-11-13 09:09:38 +0000760}
761
Bill Wendling73fe34a2010-11-16 01:16:36 +0000762// These require base address to be written back or one of the loaded regs.
Bill Wendlingddc918b2010-11-13 10:57:02 +0000763let neverHasSideEffects = 1 in {
764
765let mayLoad = 1, hasExtraDefRegAllocReq = 1 in
766defm tLDM : thumb_ldst_mult<"ldm", IIC_iLoad_m, IIC_iLoad_mu,
767 {1,1,0,0,1,?}, 1>;
768
769let mayStore = 1, hasExtraSrcRegAllocReq = 1 in
770defm tSTM : thumb_ldst_mult<"stm", IIC_iStore_m, IIC_iStore_mu,
771 {1,1,0,0,0,?}, 0>;
Owen Anderson18901d62011-05-11 17:00:48 +0000772
Bill Wendlingddc918b2010-11-13 10:57:02 +0000773} // neverHasSideEffects
Evan Cheng4b322e52009-08-11 21:11:32 +0000774
Evan Cheng0d92f5f2009-10-01 08:22:27 +0000775let mayLoad = 1, Uses = [SP], Defs = [SP], hasExtraDefRegAllocReq = 1 in
Bill Wendling602890d2010-11-19 01:33:10 +0000776def tPOP : T1I<(outs), (ins pred:$p, reglist:$regs, variable_ops),
Evan Chenga0792de2010-10-06 06:27:31 +0000777 IIC_iPop,
Bill Wendling602890d2010-11-19 01:33:10 +0000778 "pop${p}\t$regs", []>,
779 T1Misc<{1,1,0,?,?,?,?}> {
780 bits<16> regs;
Bill Wendling602890d2010-11-19 01:33:10 +0000781 let Inst{8} = regs{15};
782 let Inst{7-0} = regs{7-0};
783}
Evan Cheng4b322e52009-08-11 21:11:32 +0000784
Evan Cheng0d92f5f2009-10-01 08:22:27 +0000785let mayStore = 1, Uses = [SP], Defs = [SP], hasExtraSrcRegAllocReq = 1 in
Bill Wendling6179c312010-11-20 00:53:35 +0000786def tPUSH : T1I<(outs), (ins pred:$p, reglist:$regs, variable_ops),
Evan Chenga0792de2010-10-06 06:27:31 +0000787 IIC_iStore_m,
Bill Wendling6179c312010-11-20 00:53:35 +0000788 "push${p}\t$regs", []>,
789 T1Misc<{0,1,0,?,?,?,?}> {
790 bits<16> regs;
791 let Inst{8} = regs{14};
792 let Inst{7-0} = regs{7-0};
793}
Evan Chenga8e29892007-01-19 07:51:42 +0000794
795//===----------------------------------------------------------------------===//
796// Arithmetic Instructions.
797//
798
Bill Wendling1d045ee2010-12-01 02:28:08 +0000799// Helper classes for encoding T1pI patterns:
800class T1pIDPEncode<bits<4> opA, dag oops, dag iops, InstrItinClass itin,
801 string opc, string asm, list<dag> pattern>
802 : T1pI<oops, iops, itin, opc, asm, pattern>,
803 T1DataProcessing<opA> {
804 bits<3> Rm;
805 bits<3> Rn;
806 let Inst{5-3} = Rm;
807 let Inst{2-0} = Rn;
808}
809class T1pIMiscEncode<bits<7> opA, dag oops, dag iops, InstrItinClass itin,
810 string opc, string asm, list<dag> pattern>
811 : T1pI<oops, iops, itin, opc, asm, pattern>,
812 T1Misc<opA> {
813 bits<3> Rm;
814 bits<3> Rd;
815 let Inst{5-3} = Rm;
816 let Inst{2-0} = Rd;
817}
818
Bill Wendling76f4e102010-12-01 01:20:15 +0000819// Helper classes for encoding T1sI patterns:
820class T1sIDPEncode<bits<4> opA, dag oops, dag iops, InstrItinClass itin,
821 string opc, string asm, list<dag> pattern>
822 : T1sI<oops, iops, itin, opc, asm, pattern>,
823 T1DataProcessing<opA> {
824 bits<3> Rd;
825 bits<3> Rn;
826 let Inst{5-3} = Rn;
827 let Inst{2-0} = Rd;
828}
829class T1sIGenEncode<bits<5> opA, dag oops, dag iops, InstrItinClass itin,
830 string opc, string asm, list<dag> pattern>
831 : T1sI<oops, iops, itin, opc, asm, pattern>,
832 T1General<opA> {
833 bits<3> Rm;
834 bits<3> Rn;
835 bits<3> Rd;
836 let Inst{8-6} = Rm;
837 let Inst{5-3} = Rn;
838 let Inst{2-0} = Rd;
839}
840class T1sIGenEncodeImm<bits<5> opA, dag oops, dag iops, InstrItinClass itin,
841 string opc, string asm, list<dag> pattern>
842 : T1sI<oops, iops, itin, opc, asm, pattern>,
843 T1General<opA> {
844 bits<3> Rd;
845 bits<3> Rm;
846 let Inst{5-3} = Rm;
847 let Inst{2-0} = Rd;
848}
849
850// Helper classes for encoding T1sIt patterns:
Bill Wendlinga5a42d92010-12-01 00:48:44 +0000851class T1sItDPEncode<bits<4> opA, dag oops, dag iops, InstrItinClass itin,
852 string opc, string asm, list<dag> pattern>
853 : T1sIt<oops, iops, itin, opc, asm, pattern>,
854 T1DataProcessing<opA> {
Bill Wendling3f8c1102010-11-30 23:54:45 +0000855 bits<3> Rdn;
856 bits<3> Rm;
Bill Wendlinga5a42d92010-12-01 00:48:44 +0000857 let Inst{5-3} = Rm;
858 let Inst{2-0} = Rdn;
Bill Wendling95a6d172010-11-20 01:00:29 +0000859}
Bill Wendlinga5a42d92010-12-01 00:48:44 +0000860class T1sItGenEncodeImm<bits<5> opA, dag oops, dag iops, InstrItinClass itin,
861 string opc, string asm, list<dag> pattern>
862 : T1sIt<oops, iops, itin, opc, asm, pattern>,
863 T1General<opA> {
864 bits<3> Rdn;
865 bits<8> imm8;
866 let Inst{10-8} = Rdn;
867 let Inst{7-0} = imm8;
868}
869
870// Add with carry register
871let isCommutable = 1, Uses = [CPSR] in
872def tADC : // A8.6.2
873 T1sItDPEncode<0b0101, (outs tGPR:$Rdn), (ins tGPR:$Rn, tGPR:$Rm), IIC_iALUr,
874 "adc", "\t$Rdn, $Rm",
875 [(set tGPR:$Rdn, (adde tGPR:$Rn, tGPR:$Rm))]>;
Evan Cheng53d7dba2007-01-27 00:07:15 +0000876
David Goodwinc9ee1182009-06-25 22:49:55 +0000877// Add immediate
Bill Wendling76f4e102010-12-01 01:20:15 +0000878def tADDi3 : // A8.6.4 T1
Jim Grosbachf921c0fe2011-06-13 22:54:22 +0000879 T1sIGenEncodeImm<0b01110, (outs tGPR:$Rd), (ins tGPR:$Rm, i32imm:$imm3),
880 IIC_iALUi,
Bill Wendling76f4e102010-12-01 01:20:15 +0000881 "add", "\t$Rd, $Rm, $imm3",
882 [(set tGPR:$Rd, (add tGPR:$Rm, imm0_7:$imm3))]> {
Bill Wendling95a6d172010-11-20 01:00:29 +0000883 bits<3> imm3;
884 let Inst{8-6} = imm3;
Bill Wendling95a6d172010-11-20 01:00:29 +0000885}
Evan Chenga8e29892007-01-19 07:51:42 +0000886
Bill Wendlinga5a42d92010-12-01 00:48:44 +0000887def tADDi8 : // A8.6.4 T2
888 T1sItGenEncodeImm<{1,1,0,?,?}, (outs tGPR:$Rdn), (ins tGPR:$Rn, i32imm:$imm8),
889 IIC_iALUi,
890 "add", "\t$Rdn, $imm8",
891 [(set tGPR:$Rdn, (add tGPR:$Rn, imm8_255:$imm8))]>;
Evan Chenga8e29892007-01-19 07:51:42 +0000892
David Goodwinc9ee1182009-06-25 22:49:55 +0000893// Add register
Evan Cheng446c4282009-07-11 06:43:01 +0000894let isCommutable = 1 in
Bill Wendling76f4e102010-12-01 01:20:15 +0000895def tADDrr : // A8.6.6 T1
896 T1sIGenEncode<0b01100, (outs tGPR:$Rd), (ins tGPR:$Rn, tGPR:$Rm),
897 IIC_iALUr,
898 "add", "\t$Rd, $Rn, $Rm",
899 [(set tGPR:$Rd, (add tGPR:$Rn, tGPR:$Rm))]>;
Evan Chenga8e29892007-01-19 07:51:42 +0000900
Evan Chengcd799b92009-06-12 20:46:18 +0000901let neverHasSideEffects = 1 in
Bill Wendling0b424dc2010-12-01 01:32:02 +0000902def tADDhirr : T1pIt<(outs GPR:$Rdn), (ins GPR:$Rn, GPR:$Rm), IIC_iALUr,
903 "add", "\t$Rdn, $Rm", []>,
Bill Wendlinga09cc2b2010-11-20 01:18:47 +0000904 T1Special<{0,0,?,?}> {
905 // A8.6.6 T2
Bill Wendling0b424dc2010-12-01 01:32:02 +0000906 bits<4> Rdn;
907 bits<4> Rm;
908 let Inst{7} = Rdn{3};
909 let Inst{6-3} = Rm;
910 let Inst{2-0} = Rdn{2-0};
Bill Wendlinga09cc2b2010-11-20 01:18:47 +0000911}
Evan Chenga8e29892007-01-19 07:51:42 +0000912
Bill Wendlinga09cc2b2010-11-20 01:18:47 +0000913// AND register
Evan Cheng446c4282009-07-11 06:43:01 +0000914let isCommutable = 1 in
Bill Wendlinga5a42d92010-12-01 00:48:44 +0000915def tAND : // A8.6.12
916 T1sItDPEncode<0b0000, (outs tGPR:$Rdn), (ins tGPR:$Rn, tGPR:$Rm),
917 IIC_iBITr,
918 "and", "\t$Rdn, $Rm",
919 [(set tGPR:$Rdn, (and tGPR:$Rn, tGPR:$Rm))]>;
Evan Chenga8e29892007-01-19 07:51:42 +0000920
David Goodwinc9ee1182009-06-25 22:49:55 +0000921// ASR immediate
Bill Wendling76f4e102010-12-01 01:20:15 +0000922def tASRri : // A8.6.14
923 T1sIGenEncodeImm<{0,1,0,?,?}, (outs tGPR:$Rd), (ins tGPR:$Rm, i32imm:$imm5),
924 IIC_iMOVsi,
925 "asr", "\t$Rd, $Rm, $imm5",
926 [(set tGPR:$Rd, (sra tGPR:$Rm, (i32 imm:$imm5)))]> {
Bill Wendlinga09cc2b2010-11-20 01:18:47 +0000927 bits<5> imm5;
928 let Inst{10-6} = imm5;
Bill Wendlinga09cc2b2010-11-20 01:18:47 +0000929}
Evan Chenga8e29892007-01-19 07:51:42 +0000930
David Goodwinc9ee1182009-06-25 22:49:55 +0000931// ASR register
Bill Wendlinga5a42d92010-12-01 00:48:44 +0000932def tASRrr : // A8.6.15
933 T1sItDPEncode<0b0100, (outs tGPR:$Rdn), (ins tGPR:$Rn, tGPR:$Rm),
934 IIC_iMOVsr,
935 "asr", "\t$Rdn, $Rm",
936 [(set tGPR:$Rdn, (sra tGPR:$Rn, tGPR:$Rm))]>;
Evan Chenga8e29892007-01-19 07:51:42 +0000937
David Goodwinc9ee1182009-06-25 22:49:55 +0000938// BIC register
Bill Wendlinga5a42d92010-12-01 00:48:44 +0000939def tBIC : // A8.6.20
940 T1sItDPEncode<0b1110, (outs tGPR:$Rdn), (ins tGPR:$Rn, tGPR:$Rm),
941 IIC_iBITr,
942 "bic", "\t$Rdn, $Rm",
943 [(set tGPR:$Rdn, (and tGPR:$Rn, (not tGPR:$Rm)))]>;
Evan Chenga8e29892007-01-19 07:51:42 +0000944
David Goodwinc9ee1182009-06-25 22:49:55 +0000945// CMN register
Gabor Greiff7d10f52010-09-14 22:00:50 +0000946let isCompare = 1, Defs = [CPSR] in {
Jim Grosbachd5d2bae2010-01-22 00:08:13 +0000947//FIXME: Disable CMN, as CCodes are backwards from compare expectations
948// Compare-to-zero still works out, just not the relationals
Bill Wendling0480e282010-12-01 02:36:55 +0000949//def tCMN : // A8.6.33
950// T1pIDPEncode<0b1011, (outs), (ins tGPR:$lhs, tGPR:$rhs),
951// IIC_iCMPr,
952// "cmn", "\t$lhs, $rhs",
953// [(ARMcmp tGPR:$lhs, (ineg tGPR:$rhs))]>;
Bill Wendling1d045ee2010-12-01 02:28:08 +0000954
955def tCMNz : // A8.6.33
956 T1pIDPEncode<0b1011, (outs), (ins tGPR:$Rn, tGPR:$Rm),
957 IIC_iCMPr,
958 "cmn", "\t$Rn, $Rm",
959 [(ARMcmpZ tGPR:$Rn, (ineg tGPR:$Rm))]>;
960
961} // isCompare = 1, Defs = [CPSR]
Lauro Ramos Venancio99966632007-04-02 01:30:03 +0000962
David Goodwinc9ee1182009-06-25 22:49:55 +0000963// CMP immediate
Gabor Greiff7d10f52010-09-14 22:00:50 +0000964let isCompare = 1, Defs = [CPSR] in {
Bill Wendling5cc88a22010-11-20 22:52:33 +0000965def tCMPi8 : T1pI<(outs), (ins tGPR:$Rn, i32imm:$imm8), IIC_iCMPi,
966 "cmp", "\t$Rn, $imm8",
967 [(ARMcmp tGPR:$Rn, imm0_255:$imm8)]>,
968 T1General<{1,0,1,?,?}> {
969 // A8.6.35
970 bits<3> Rn;
971 bits<8> imm8;
972 let Inst{10-8} = Rn;
973 let Inst{7-0} = imm8;
974}
975
David Goodwinc9ee1182009-06-25 22:49:55 +0000976// CMP register
Bill Wendling1d045ee2010-12-01 02:28:08 +0000977def tCMPr : // A8.6.36 T1
978 T1pIDPEncode<0b1010, (outs), (ins tGPR:$Rn, tGPR:$Rm),
979 IIC_iCMPr,
980 "cmp", "\t$Rn, $Rm",
981 [(ARMcmp tGPR:$Rn, tGPR:$Rm)]>;
982
Bill Wendling849f2e32010-11-29 00:18:15 +0000983def tCMPhir : T1pI<(outs), (ins GPR:$Rn, GPR:$Rm), IIC_iCMPr,
984 "cmp", "\t$Rn, $Rm", []>,
985 T1Special<{0,1,?,?}> {
986 // A8.6.36 T2
987 bits<4> Rm;
988 bits<4> Rn;
989 let Inst{7} = Rn{3};
990 let Inst{6-3} = Rm;
991 let Inst{2-0} = Rn{2-0};
992}
Bill Wendling5cc88a22010-11-20 22:52:33 +0000993} // isCompare = 1, Defs = [CPSR]
Lauro Ramos Venancio99966632007-04-02 01:30:03 +0000994
Evan Chenga8e29892007-01-19 07:51:42 +0000995
David Goodwinc9ee1182009-06-25 22:49:55 +0000996// XOR register
Evan Cheng446c4282009-07-11 06:43:01 +0000997let isCommutable = 1 in
Bill Wendlinga5a42d92010-12-01 00:48:44 +0000998def tEOR : // A8.6.45
999 T1sItDPEncode<0b0001, (outs tGPR:$Rdn), (ins tGPR:$Rn, tGPR:$Rm),
1000 IIC_iBITr,
1001 "eor", "\t$Rdn, $Rm",
1002 [(set tGPR:$Rdn, (xor tGPR:$Rn, tGPR:$Rm))]>;
Evan Chenga8e29892007-01-19 07:51:42 +00001003
David Goodwinc9ee1182009-06-25 22:49:55 +00001004// LSL immediate
Bill Wendling76f4e102010-12-01 01:20:15 +00001005def tLSLri : // A8.6.88
1006 T1sIGenEncodeImm<{0,0,0,?,?}, (outs tGPR:$Rd), (ins tGPR:$Rm, i32imm:$imm5),
1007 IIC_iMOVsi,
1008 "lsl", "\t$Rd, $Rm, $imm5",
1009 [(set tGPR:$Rd, (shl tGPR:$Rm, (i32 imm:$imm5)))]> {
Bill Wendlingdcf0a472010-11-21 11:49:36 +00001010 bits<5> imm5;
1011 let Inst{10-6} = imm5;
Bill Wendlingdcf0a472010-11-21 11:49:36 +00001012}
Evan Chenga8e29892007-01-19 07:51:42 +00001013
David Goodwinc9ee1182009-06-25 22:49:55 +00001014// LSL register
Bill Wendlinga5a42d92010-12-01 00:48:44 +00001015def tLSLrr : // A8.6.89
1016 T1sItDPEncode<0b0010, (outs tGPR:$Rdn), (ins tGPR:$Rn, tGPR:$Rm),
1017 IIC_iMOVsr,
1018 "lsl", "\t$Rdn, $Rm",
1019 [(set tGPR:$Rdn, (shl tGPR:$Rn, tGPR:$Rm))]>;
Evan Chenga8e29892007-01-19 07:51:42 +00001020
David Goodwinc9ee1182009-06-25 22:49:55 +00001021// LSR immediate
Bill Wendling76f4e102010-12-01 01:20:15 +00001022def tLSRri : // A8.6.90
1023 T1sIGenEncodeImm<{0,0,1,?,?}, (outs tGPR:$Rd), (ins tGPR:$Rm, i32imm:$imm5),
1024 IIC_iMOVsi,
1025 "lsr", "\t$Rd, $Rm, $imm5",
1026 [(set tGPR:$Rd, (srl tGPR:$Rm, (i32 imm:$imm5)))]> {
Bill Wendlingdcf0a472010-11-21 11:49:36 +00001027 bits<5> imm5;
1028 let Inst{10-6} = imm5;
Bill Wendlingdcf0a472010-11-21 11:49:36 +00001029}
Evan Chenga8e29892007-01-19 07:51:42 +00001030
David Goodwinc9ee1182009-06-25 22:49:55 +00001031// LSR register
Bill Wendlinga5a42d92010-12-01 00:48:44 +00001032def tLSRrr : // A8.6.91
1033 T1sItDPEncode<0b0011, (outs tGPR:$Rdn), (ins tGPR:$Rn, tGPR:$Rm),
1034 IIC_iMOVsr,
1035 "lsr", "\t$Rdn, $Rm",
1036 [(set tGPR:$Rdn, (srl tGPR:$Rn, tGPR:$Rm))]>;
Evan Chenga8e29892007-01-19 07:51:42 +00001037
Bill Wendlingdcf0a472010-11-21 11:49:36 +00001038// Move register
Evan Chengc4af4632010-11-17 20:13:28 +00001039let isMoveImm = 1 in
Jim Grosbach6b8f1e32011-06-27 23:54:06 +00001040def tMOVi8 : T1sI<(outs tGPR:$Rd), (ins imm0_255:$imm8), IIC_iMOVi,
Bill Wendlingdcf0a472010-11-21 11:49:36 +00001041 "mov", "\t$Rd, $imm8",
1042 [(set tGPR:$Rd, imm0_255:$imm8)]>,
1043 T1General<{1,0,0,?,?}> {
1044 // A8.6.96
1045 bits<3> Rd;
1046 bits<8> imm8;
1047 let Inst{10-8} = Rd;
1048 let Inst{7-0} = imm8;
1049}
Evan Chenga8e29892007-01-19 07:51:42 +00001050
Jim Grosbachefeedce2011-07-01 17:14:11 +00001051// A7-73: MOV(2) - mov setting flag.
Evan Chenga8e29892007-01-19 07:51:42 +00001052
Evan Chengcd799b92009-06-12 20:46:18 +00001053let neverHasSideEffects = 1 in {
Jim Grosbach2a7b41b2011-06-30 23:38:17 +00001054def tMOVr : Thumb1pI<(outs GPR:$Rd), (ins GPR:$Rm), AddrModeNone,
Owen Anderson16884412011-07-13 23:22:26 +00001055 2, IIC_iMOVr,
Jim Grosbach63b46fa2011-06-30 22:10:46 +00001056 "mov", "\t$Rd, $Rm", "", []>,
Jim Grosbach2a7b41b2011-06-30 23:38:17 +00001057 T1Special<{1,0,?,?}> {
Bill Wendling534a5e42010-12-03 01:55:47 +00001058 // A8.6.97
1059 bits<4> Rd;
1060 bits<4> Rm;
Jim Grosbach2a7b41b2011-06-30 23:38:17 +00001061 let Inst{7} = Rd{3};
1062 let Inst{6-3} = Rm;
Bill Wendling534a5e42010-12-03 01:55:47 +00001063 let Inst{2-0} = Rd{2-0};
1064}
Evan Cheng446c4282009-07-11 06:43:01 +00001065let Defs = [CPSR] in
Bill Wendling534a5e42010-12-03 01:55:47 +00001066def tMOVSr : T1I<(outs tGPR:$Rd), (ins tGPR:$Rm), IIC_iMOVr,
1067 "movs\t$Rd, $Rm", []>, Encoding16 {
1068 // A8.6.97
1069 bits<3> Rd;
1070 bits<3> Rm;
Johnny Chend68e1192009-12-15 17:24:14 +00001071 let Inst{15-6} = 0b0000000000;
Bill Wendling534a5e42010-12-03 01:55:47 +00001072 let Inst{5-3} = Rm;
1073 let Inst{2-0} = Rd;
Johnny Chend68e1192009-12-15 17:24:14 +00001074}
Evan Chengcd799b92009-06-12 20:46:18 +00001075} // neverHasSideEffects
Evan Chenga8e29892007-01-19 07:51:42 +00001076
Bill Wendling0480e282010-12-01 02:36:55 +00001077// Multiply register
Evan Cheng446c4282009-07-11 06:43:01 +00001078let isCommutable = 1 in
Bill Wendlinga5a42d92010-12-01 00:48:44 +00001079def tMUL : // A8.6.105 T1
1080 T1sItDPEncode<0b1101, (outs tGPR:$Rdn), (ins tGPR:$Rn, tGPR:$Rm),
1081 IIC_iMUL32,
1082 "mul", "\t$Rdn, $Rm, $Rdn",
1083 [(set tGPR:$Rdn, (mul tGPR:$Rn, tGPR:$Rm))]>;
Evan Chenga8e29892007-01-19 07:51:42 +00001084
Bill Wendling76f4e102010-12-01 01:20:15 +00001085// Move inverse register
1086def tMVN : // A8.6.107
1087 T1sIDPEncode<0b1111, (outs tGPR:$Rd), (ins tGPR:$Rn), IIC_iMVNr,
1088 "mvn", "\t$Rd, $Rn",
1089 [(set tGPR:$Rd, (not tGPR:$Rn))]>;
Evan Chenga8e29892007-01-19 07:51:42 +00001090
Bill Wendlingdcf0a472010-11-21 11:49:36 +00001091// Bitwise or register
Evan Cheng446c4282009-07-11 06:43:01 +00001092let isCommutable = 1 in
Bill Wendlinga5a42d92010-12-01 00:48:44 +00001093def tORR : // A8.6.114
1094 T1sItDPEncode<0b1100, (outs tGPR:$Rdn), (ins tGPR:$Rn, tGPR:$Rm),
1095 IIC_iBITr,
1096 "orr", "\t$Rdn, $Rm",
1097 [(set tGPR:$Rdn, (or tGPR:$Rn, tGPR:$Rm))]>;
Evan Chenga8e29892007-01-19 07:51:42 +00001098
Bill Wendlingdcf0a472010-11-21 11:49:36 +00001099// Swaps
Bill Wendling1d045ee2010-12-01 02:28:08 +00001100def tREV : // A8.6.134
1101 T1pIMiscEncode<{1,0,1,0,0,0,?}, (outs tGPR:$Rd), (ins tGPR:$Rm),
1102 IIC_iUNAr,
1103 "rev", "\t$Rd, $Rm",
1104 [(set tGPR:$Rd, (bswap tGPR:$Rm))]>,
1105 Requires<[IsThumb, IsThumb1Only, HasV6]>;
Evan Chenga8e29892007-01-19 07:51:42 +00001106
Bill Wendling1d045ee2010-12-01 02:28:08 +00001107def tREV16 : // A8.6.135
1108 T1pIMiscEncode<{1,0,1,0,0,1,?}, (outs tGPR:$Rd), (ins tGPR:$Rm),
1109 IIC_iUNAr,
1110 "rev16", "\t$Rd, $Rm",
Evan Cheng9568e5c2011-06-21 06:01:08 +00001111 [(set tGPR:$Rd, (rotr (bswap tGPR:$Rm), (i32 16)))]>,
Bill Wendling1d045ee2010-12-01 02:28:08 +00001112 Requires<[IsThumb, IsThumb1Only, HasV6]>;
Evan Chenga8e29892007-01-19 07:51:42 +00001113
Bill Wendling1d045ee2010-12-01 02:28:08 +00001114def tREVSH : // A8.6.136
1115 T1pIMiscEncode<{1,0,1,0,1,1,?}, (outs tGPR:$Rd), (ins tGPR:$Rm),
1116 IIC_iUNAr,
1117 "revsh", "\t$Rd, $Rm",
Evan Cheng9568e5c2011-06-21 06:01:08 +00001118 [(set tGPR:$Rd, (sra (bswap tGPR:$Rm), (i32 16)))]>,
Bill Wendling1d045ee2010-12-01 02:28:08 +00001119 Requires<[IsThumb, IsThumb1Only, HasV6]>;
Evan Cheng446c4282009-07-11 06:43:01 +00001120
Bill Wendlinga5a42d92010-12-01 00:48:44 +00001121// Rotate right register
1122def tROR : // A8.6.139
1123 T1sItDPEncode<0b0111, (outs tGPR:$Rdn), (ins tGPR:$Rn, tGPR:$Rm),
1124 IIC_iMOVsr,
1125 "ror", "\t$Rdn, $Rm",
1126 [(set tGPR:$Rdn, (rotr tGPR:$Rn, tGPR:$Rm))]>;
Evan Cheng446c4282009-07-11 06:43:01 +00001127
Bill Wendlinga5a42d92010-12-01 00:48:44 +00001128// Negate register
Bill Wendling76f4e102010-12-01 01:20:15 +00001129def tRSB : // A8.6.141
1130 T1sIDPEncode<0b1001, (outs tGPR:$Rd), (ins tGPR:$Rn),
1131 IIC_iALUi,
1132 "rsb", "\t$Rd, $Rn, #0",
1133 [(set tGPR:$Rd, (ineg tGPR:$Rn))]>;
Evan Chenga8e29892007-01-19 07:51:42 +00001134
David Goodwinc9ee1182009-06-25 22:49:55 +00001135// Subtract with carry register
Evan Cheng446c4282009-07-11 06:43:01 +00001136let Uses = [CPSR] in
Bill Wendlinga5a42d92010-12-01 00:48:44 +00001137def tSBC : // A8.6.151
1138 T1sItDPEncode<0b0110, (outs tGPR:$Rdn), (ins tGPR:$Rn, tGPR:$Rm),
1139 IIC_iALUr,
1140 "sbc", "\t$Rdn, $Rm",
1141 [(set tGPR:$Rdn, (sube tGPR:$Rn, tGPR:$Rm))]>;
Evan Chenga8e29892007-01-19 07:51:42 +00001142
David Goodwinc9ee1182009-06-25 22:49:55 +00001143// Subtract immediate
Bill Wendling76f4e102010-12-01 01:20:15 +00001144def tSUBi3 : // A8.6.210 T1
1145 T1sIGenEncodeImm<0b01111, (outs tGPR:$Rd), (ins tGPR:$Rm, i32imm:$imm3),
1146 IIC_iALUi,
1147 "sub", "\t$Rd, $Rm, $imm3",
1148 [(set tGPR:$Rd, (add tGPR:$Rm, imm0_7_neg:$imm3))]> {
Bill Wendling5cbbf682010-11-29 01:00:43 +00001149 bits<3> imm3;
Bill Wendling5cbbf682010-11-29 01:00:43 +00001150 let Inst{8-6} = imm3;
Bill Wendling5cbbf682010-11-29 01:00:43 +00001151}
Jim Grosbach0ede14f2009-03-27 23:06:27 +00001152
Bill Wendlinga5a42d92010-12-01 00:48:44 +00001153def tSUBi8 : // A8.6.210 T2
1154 T1sItGenEncodeImm<{1,1,1,?,?}, (outs tGPR:$Rdn), (ins tGPR:$Rn, i32imm:$imm8),
1155 IIC_iALUi,
1156 "sub", "\t$Rdn, $imm8",
1157 [(set tGPR:$Rdn, (add tGPR:$Rn, imm8_255_neg:$imm8))]>;
Jim Grosbach0ede14f2009-03-27 23:06:27 +00001158
Bill Wendling76f4e102010-12-01 01:20:15 +00001159// Subtract register
1160def tSUBrr : // A8.6.212
1161 T1sIGenEncode<0b01101, (outs tGPR:$Rd), (ins tGPR:$Rn, tGPR:$Rm),
1162 IIC_iALUr,
1163 "sub", "\t$Rd, $Rn, $Rm",
1164 [(set tGPR:$Rd, (sub tGPR:$Rn, tGPR:$Rm))]>;
David Goodwinc9ee1182009-06-25 22:49:55 +00001165
1166// TODO: A7-96: STMIA - store multiple.
Evan Chenga8e29892007-01-19 07:51:42 +00001167
Bill Wendling76f4e102010-12-01 01:20:15 +00001168// Sign-extend byte
Bill Wendling1d045ee2010-12-01 02:28:08 +00001169def tSXTB : // A8.6.222
1170 T1pIMiscEncode<{0,0,1,0,0,1,?}, (outs tGPR:$Rd), (ins tGPR:$Rm),
1171 IIC_iUNAr,
1172 "sxtb", "\t$Rd, $Rm",
1173 [(set tGPR:$Rd, (sext_inreg tGPR:$Rm, i8))]>,
1174 Requires<[IsThumb, IsThumb1Only, HasV6]>;
David Goodwinc9ee1182009-06-25 22:49:55 +00001175
Bill Wendling1d045ee2010-12-01 02:28:08 +00001176// Sign-extend short
1177def tSXTH : // A8.6.224
1178 T1pIMiscEncode<{0,0,1,0,0,0,?}, (outs tGPR:$Rd), (ins tGPR:$Rm),
1179 IIC_iUNAr,
1180 "sxth", "\t$Rd, $Rm",
1181 [(set tGPR:$Rd, (sext_inreg tGPR:$Rm, i16))]>,
1182 Requires<[IsThumb, IsThumb1Only, HasV6]>;
Evan Chenga8e29892007-01-19 07:51:42 +00001183
Bill Wendling1d045ee2010-12-01 02:28:08 +00001184// Test
Gabor Greif007248b2010-09-14 20:47:43 +00001185let isCompare = 1, isCommutable = 1, Defs = [CPSR] in
Bill Wendling1d045ee2010-12-01 02:28:08 +00001186def tTST : // A8.6.230
1187 T1pIDPEncode<0b1000, (outs), (ins tGPR:$Rn, tGPR:$Rm), IIC_iTSTr,
1188 "tst", "\t$Rn, $Rm",
1189 [(ARMcmpZ (and_su tGPR:$Rn, tGPR:$Rm), 0)]>;
Evan Chenga8e29892007-01-19 07:51:42 +00001190
Bill Wendling1d045ee2010-12-01 02:28:08 +00001191// Zero-extend byte
1192def tUXTB : // A8.6.262
1193 T1pIMiscEncode<{0,0,1,0,1,1,?}, (outs tGPR:$Rd), (ins tGPR:$Rm),
1194 IIC_iUNAr,
1195 "uxtb", "\t$Rd, $Rm",
1196 [(set tGPR:$Rd, (and tGPR:$Rm, 0xFF))]>,
1197 Requires<[IsThumb, IsThumb1Only, HasV6]>;
David Goodwinc9ee1182009-06-25 22:49:55 +00001198
Bill Wendling1d045ee2010-12-01 02:28:08 +00001199// Zero-extend short
1200def tUXTH : // A8.6.264
1201 T1pIMiscEncode<{0,0,1,0,1,0,?}, (outs tGPR:$Rd), (ins tGPR:$Rm),
1202 IIC_iUNAr,
1203 "uxth", "\t$Rd, $Rm",
1204 [(set tGPR:$Rd, (and tGPR:$Rm, 0xFFFF))]>,
1205 Requires<[IsThumb, IsThumb1Only, HasV6]>;
Evan Chenga8e29892007-01-19 07:51:42 +00001206
Jim Grosbach80dc1162010-02-16 21:23:02 +00001207// Conditional move tMOVCCr - Used to implement the Thumb SELECT_CC operation.
Dan Gohman533297b2009-10-29 18:10:34 +00001208// Expanded after instruction selection into a branch sequence.
1209let usesCustomInserter = 1 in // Expanded after instruction selection.
Evan Cheng007ea272009-08-12 05:17:19 +00001210 def tMOVCCr_pseudo :
Evan Chengc9721652009-08-12 02:03:03 +00001211 PseudoInst<(outs tGPR:$dst), (ins tGPR:$false, tGPR:$true, pred:$cc),
Jim Grosbach99594eb2010-11-18 01:38:26 +00001212 NoItinerary,
Evan Chengc9721652009-08-12 02:03:03 +00001213 [/*(set tGPR:$dst, (ARMcmov tGPR:$false, tGPR:$true, imm:$cc))*/]>;
Evan Chenga8e29892007-01-19 07:51:42 +00001214
1215// tLEApcrel - Load a pc-relative address into a register without offending the
1216// assembler.
Jim Grosbachd40963c2010-12-14 22:28:03 +00001217
1218def tADR : T1I<(outs tGPR:$Rd), (ins t_adrlabel:$addr, pred:$p),
1219 IIC_iALUi, "adr{$p}\t$Rd, #$addr", []>,
1220 T1Encoding<{1,0,1,0,0,?}> {
Bill Wendling67077412010-11-30 00:18:30 +00001221 bits<3> Rd;
Jim Grosbachd40963c2010-12-14 22:28:03 +00001222 bits<8> addr;
Bill Wendling67077412010-11-30 00:18:30 +00001223 let Inst{10-8} = Rd;
Jim Grosbachd40963c2010-12-14 22:28:03 +00001224 let Inst{7-0} = addr;
Bill Wendling67077412010-11-30 00:18:30 +00001225}
Evan Chenga8e29892007-01-19 07:51:42 +00001226
Jim Grosbachd40963c2010-12-14 22:28:03 +00001227let neverHasSideEffects = 1, isReMaterializable = 1 in
1228def tLEApcrel : tPseudoInst<(outs tGPR:$Rd), (ins i32imm:$label, pred:$p),
Owen Anderson16884412011-07-13 23:22:26 +00001229 2, IIC_iALUi, []>;
Jim Grosbachd40963c2010-12-14 22:28:03 +00001230
1231def tLEApcrelJT : tPseudoInst<(outs tGPR:$Rd),
1232 (ins i32imm:$label, nohash_imm:$id, pred:$p),
Owen Anderson16884412011-07-13 23:22:26 +00001233 2, IIC_iALUi, []>;
Evan Chengd85ac4d2007-01-27 02:29:45 +00001234
Evan Chenga8e29892007-01-19 07:51:42 +00001235//===----------------------------------------------------------------------===//
Lauro Ramos Venancio64f4fa52007-04-27 13:54:47 +00001236// TLS Instructions
1237//
1238
1239// __aeabi_read_tp preserves the registers r1-r3.
Jim Grosbachff97eb02011-06-30 19:38:01 +00001240// This is a pseudo inst so that we can get the encoding right,
1241// complete with fixup for the aeabi_read_tp function.
1242let isCall = 1, Defs = [R0, R12, LR, CPSR], Uses = [SP] in
Owen Anderson16884412011-07-13 23:22:26 +00001243def tTPsoft : tPseudoInst<(outs), (ins), 4, IIC_Br,
Jim Grosbachff97eb02011-06-30 19:38:01 +00001244 [(set R0, ARMthread_pointer)]>;
Lauro Ramos Venancio64f4fa52007-04-27 13:54:47 +00001245
Bill Wendling0480e282010-12-01 02:36:55 +00001246//===----------------------------------------------------------------------===//
Jim Grosbachd1228742009-12-01 18:10:36 +00001247// SJLJ Exception handling intrinsics
Owen Anderson18901d62011-05-11 17:00:48 +00001248//
Bill Wendling0480e282010-12-01 02:36:55 +00001249
1250// eh_sjlj_setjmp() is an instruction sequence to store the return address and
1251// save #0 in R0 for the non-longjmp case. Since by its nature we may be coming
1252// from some other function to get here, and we're using the stack frame for the
1253// containing function to save/restore registers, we can't keep anything live in
1254// regs across the eh_sjlj_setjmp(), else it will almost certainly have been
Chris Lattner7a2bdde2011-04-15 05:18:47 +00001255// tromped upon when we get here from a longjmp(). We force everything out of
Bill Wendling0480e282010-12-01 02:36:55 +00001256// registers except for our own input by listing the relevant registers in
1257// Defs. By doing so, we also cause the prologue/epilogue code to actively
1258// preserve all of the callee-saved resgisters, which is exactly what we want.
1259// $val is a scratch register for our use.
Andrew Tricka1099f12011-06-07 00:08:49 +00001260let Defs = [ R0, R1, R2, R3, R4, R5, R6, R7, R12, CPSR ],
Bill Wendling0e45a5a2010-11-30 00:50:22 +00001261 hasSideEffects = 1, isBarrier = 1, isCodeGenOnly = 1 in
1262def tInt_eh_sjlj_setjmp : ThumbXI<(outs),(ins tGPR:$src, tGPR:$val),
Owen Anderson16884412011-07-13 23:22:26 +00001263 AddrModeNone, 0, NoItinerary, "","",
Bill Wendling0e45a5a2010-11-30 00:50:22 +00001264 [(set R0, (ARMeh_sjlj_setjmp tGPR:$src, tGPR:$val))]>;
Jim Grosbach5eb19512010-05-22 01:06:18 +00001265
1266// FIXME: Non-Darwin version(s)
Chris Lattnera4a3a5e2010-10-31 19:15:18 +00001267let isBarrier = 1, hasSideEffects = 1, isTerminator = 1, isCodeGenOnly = 1,
Bill Wendling0e45a5a2010-11-30 00:50:22 +00001268 Defs = [ R7, LR, SP ] in
Jim Grosbach5eb19512010-05-22 01:06:18 +00001269def tInt_eh_sjlj_longjmp : XI<(outs), (ins GPR:$src, GPR:$scratch),
Owen Anderson16884412011-07-13 23:22:26 +00001270 AddrModeNone, 0, IndexModeNone,
Bill Wendling0e45a5a2010-11-30 00:50:22 +00001271 Pseudo, NoItinerary, "", "",
1272 [(ARMeh_sjlj_longjmp GPR:$src, GPR:$scratch)]>,
1273 Requires<[IsThumb, IsDarwin]>;
Jim Grosbach5eb19512010-05-22 01:06:18 +00001274
Lauro Ramos Venancio64f4fa52007-04-27 13:54:47 +00001275//===----------------------------------------------------------------------===//
Evan Chenga8e29892007-01-19 07:51:42 +00001276// Non-Instruction Patterns
1277//
1278
Jim Grosbach97a884d2010-12-07 20:41:06 +00001279// Comparisons
1280def : T1Pat<(ARMcmpZ tGPR:$Rn, imm0_255:$imm8),
1281 (tCMPi8 tGPR:$Rn, imm0_255:$imm8)>;
1282def : T1Pat<(ARMcmpZ tGPR:$Rn, tGPR:$Rm),
1283 (tCMPr tGPR:$Rn, tGPR:$Rm)>;
1284
Evan Cheng892837a2009-07-10 02:09:04 +00001285// Add with carry
David Goodwinc9d138f2009-07-27 19:59:26 +00001286def : T1Pat<(addc tGPR:$lhs, imm0_7:$rhs),
1287 (tADDi3 tGPR:$lhs, imm0_7:$rhs)>;
1288def : T1Pat<(addc tGPR:$lhs, imm8_255:$rhs),
Evan Cheng89d177f2009-08-20 17:01:04 +00001289 (tADDi8 tGPR:$lhs, imm8_255:$rhs)>;
David Goodwinc9d138f2009-07-27 19:59:26 +00001290def : T1Pat<(addc tGPR:$lhs, tGPR:$rhs),
1291 (tADDrr tGPR:$lhs, tGPR:$rhs)>;
Evan Cheng892837a2009-07-10 02:09:04 +00001292
1293// Subtract with carry
David Goodwinc9d138f2009-07-27 19:59:26 +00001294def : T1Pat<(addc tGPR:$lhs, imm0_7_neg:$rhs),
1295 (tSUBi3 tGPR:$lhs, imm0_7_neg:$rhs)>;
1296def : T1Pat<(addc tGPR:$lhs, imm8_255_neg:$rhs),
1297 (tSUBi8 tGPR:$lhs, imm8_255_neg:$rhs)>;
1298def : T1Pat<(subc tGPR:$lhs, tGPR:$rhs),
1299 (tSUBrr tGPR:$lhs, tGPR:$rhs)>;
Evan Cheng892837a2009-07-10 02:09:04 +00001300
Evan Chenga8e29892007-01-19 07:51:42 +00001301// ConstantPool, GlobalAddress
David Goodwinc9d138f2009-07-27 19:59:26 +00001302def : T1Pat<(ARMWrapper tglobaladdr :$dst), (tLEApcrel tglobaladdr :$dst)>;
1303def : T1Pat<(ARMWrapper tconstpool :$dst), (tLEApcrel tconstpool :$dst)>;
Evan Chenga8e29892007-01-19 07:51:42 +00001304
Evan Chengd85ac4d2007-01-27 02:29:45 +00001305// JumpTable
David Goodwinc9d138f2009-07-27 19:59:26 +00001306def : T1Pat<(ARMWrapperJT tjumptable:$dst, imm:$id),
1307 (tLEApcrelJT tjumptable:$dst, imm:$id)>;
Evan Chengd85ac4d2007-01-27 02:29:45 +00001308
Evan Chenga8e29892007-01-19 07:51:42 +00001309// Direct calls
Evan Cheng20a2a0a2009-07-29 21:26:42 +00001310def : T1Pat<(ARMtcall texternalsym:$func), (tBL texternalsym:$func)>,
Evan Chengb6207242009-08-01 00:16:10 +00001311 Requires<[IsThumb, IsNotDarwin]>;
Evan Cheng20a2a0a2009-07-29 21:26:42 +00001312def : T1Pat<(ARMtcall texternalsym:$func), (tBLr9 texternalsym:$func)>,
Evan Chengb6207242009-08-01 00:16:10 +00001313 Requires<[IsThumb, IsDarwin]>;
Evan Cheng20a2a0a2009-07-29 21:26:42 +00001314
1315def : Tv5Pat<(ARMcall texternalsym:$func), (tBLXi texternalsym:$func)>,
Evan Chengb6207242009-08-01 00:16:10 +00001316 Requires<[IsThumb, HasV5T, IsNotDarwin]>;
Evan Cheng20a2a0a2009-07-29 21:26:42 +00001317def : Tv5Pat<(ARMcall texternalsym:$func), (tBLXi_r9 texternalsym:$func)>,
Evan Chengb6207242009-08-01 00:16:10 +00001318 Requires<[IsThumb, HasV5T, IsDarwin]>;
Evan Chenga8e29892007-01-19 07:51:42 +00001319
1320// Indirect calls to ARM routines
Evan Chengb6207242009-08-01 00:16:10 +00001321def : Tv5Pat<(ARMcall GPR:$dst), (tBLXr GPR:$dst)>,
1322 Requires<[IsThumb, HasV5T, IsNotDarwin]>;
1323def : Tv5Pat<(ARMcall GPR:$dst), (tBLXr_r9 GPR:$dst)>,
1324 Requires<[IsThumb, HasV5T, IsDarwin]>;
Evan Chenga8e29892007-01-19 07:51:42 +00001325
1326// zextload i1 -> zextload i8
Bill Wendlingf4caf692010-12-14 03:36:38 +00001327def : T1Pat<(zextloadi1 t_addrmode_rrs1:$addr),
1328 (tLDRBr t_addrmode_rrs1:$addr)>;
1329def : T1Pat<(zextloadi1 t_addrmode_is1:$addr),
1330 (tLDRBi t_addrmode_is1:$addr)>;
Jim Grosbach0ede14f2009-03-27 23:06:27 +00001331
Evan Chengb60c02e2007-01-26 19:13:16 +00001332// extload -> zextload
Bill Wendlingf4caf692010-12-14 03:36:38 +00001333def : T1Pat<(extloadi1 t_addrmode_rrs1:$addr), (tLDRBr t_addrmode_rrs1:$addr)>;
1334def : T1Pat<(extloadi1 t_addrmode_is1:$addr), (tLDRBi t_addrmode_is1:$addr)>;
1335def : T1Pat<(extloadi8 t_addrmode_rrs1:$addr), (tLDRBr t_addrmode_rrs1:$addr)>;
1336def : T1Pat<(extloadi8 t_addrmode_is1:$addr), (tLDRBi t_addrmode_is1:$addr)>;
1337def : T1Pat<(extloadi16 t_addrmode_rrs2:$addr), (tLDRHr t_addrmode_rrs2:$addr)>;
1338def : T1Pat<(extloadi16 t_addrmode_is2:$addr), (tLDRHi t_addrmode_is2:$addr)>;
Evan Chengb60c02e2007-01-26 19:13:16 +00001339
Evan Cheng0e87e232009-08-28 00:31:43 +00001340// If it's impossible to use [r,r] address mode for sextload, select to
Evan Cheng2f297df2009-07-11 07:08:13 +00001341// ldr{b|h} + sxt{b|h} instead.
Bill Wendling415af342010-12-15 00:58:57 +00001342def : T1Pat<(sextloadi8 t_addrmode_is1:$addr),
1343 (tSXTB (tLDRBi t_addrmode_is1:$addr))>,
1344 Requires<[IsThumb, IsThumb1Only, HasV6]>;
Bill Wendlingf4caf692010-12-14 03:36:38 +00001345def : T1Pat<(sextloadi8 t_addrmode_rrs1:$addr),
1346 (tSXTB (tLDRBr t_addrmode_rrs1:$addr))>,
Jim Grosbach6797f892010-11-01 17:08:58 +00001347 Requires<[IsThumb, IsThumb1Only, HasV6]>;
Bill Wendling415af342010-12-15 00:58:57 +00001348def : T1Pat<(sextloadi16 t_addrmode_is2:$addr),
1349 (tSXTH (tLDRHi t_addrmode_is2:$addr))>,
1350 Requires<[IsThumb, IsThumb1Only, HasV6]>;
Bill Wendlingf4caf692010-12-14 03:36:38 +00001351def : T1Pat<(sextloadi16 t_addrmode_rrs2:$addr),
1352 (tSXTH (tLDRHr t_addrmode_rrs2:$addr))>,
Jim Grosbach6797f892010-11-01 17:08:58 +00001353 Requires<[IsThumb, IsThumb1Only, HasV6]>;
Evan Cheng2f297df2009-07-11 07:08:13 +00001354
Bill Wendlingf4caf692010-12-14 03:36:38 +00001355def : T1Pat<(sextloadi8 t_addrmode_rrs1:$addr),
1356 (tASRri (tLSLri (tLDRBr t_addrmode_rrs1:$addr), 24), 24)>;
Bill Wendling415af342010-12-15 00:58:57 +00001357def : T1Pat<(sextloadi8 t_addrmode_is1:$addr),
1358 (tASRri (tLSLri (tLDRBi t_addrmode_is1:$addr), 24), 24)>;
1359def : T1Pat<(sextloadi16 t_addrmode_rrs2:$addr),
1360 (tASRri (tLSLri (tLDRHr t_addrmode_rrs2:$addr), 16), 16)>;
1361def : T1Pat<(sextloadi16 t_addrmode_is2:$addr),
1362 (tASRri (tLSLri (tLDRHi t_addrmode_is2:$addr), 16), 16)>;
Evan Cheng2f297df2009-07-11 07:08:13 +00001363
Evan Chenga8e29892007-01-19 07:51:42 +00001364// Large immediate handling.
1365
1366// Two piece imms.
Evan Cheng9cb9e672009-06-27 02:26:13 +00001367def : T1Pat<(i32 thumb_immshifted:$src),
1368 (tLSLri (tMOVi8 (thumb_immshifted_val imm:$src)),
1369 (thumb_immshifted_shamt imm:$src))>;
Evan Chenga8e29892007-01-19 07:51:42 +00001370
Evan Cheng9cb9e672009-06-27 02:26:13 +00001371def : T1Pat<(i32 imm0_255_comp:$src),
1372 (tMVN (tMOVi8 (imm_comp_XFORM imm:$src)))>;
Evan Chengb9803a82009-11-06 23:52:48 +00001373
1374// Pseudo instruction that combines ldr from constpool and add pc. This should
1375// be expanded into two instructions late to allow if-conversion and
1376// scheduling.
1377let isReMaterializable = 1 in
1378def tLDRpci_pic : PseudoInst<(outs GPR:$dst), (ins i32imm:$addr, pclabel:$cp),
Bill Wendling0480e282010-12-01 02:36:55 +00001379 NoItinerary,
Evan Chengb9803a82009-11-06 23:52:48 +00001380 [(set GPR:$dst, (ARMpic_add (load (ARMWrapper tconstpool:$addr)),
1381 imm:$cp))]>,
Jim Grosbach6797f892010-11-01 17:08:58 +00001382 Requires<[IsThumb, IsThumb1Only]>;
Jim Grosbach53e3fc42011-07-08 17:40:42 +00001383
1384// Pseudo-instruction for merged POP and return.
1385// FIXME: remove when we have a way to marking a MI with these properties.
1386let isReturn = 1, isTerminator = 1, isBarrier = 1, mayLoad = 1,
1387 hasExtraDefRegAllocReq = 1 in
1388def tPOP_RET : tPseudoExpand<(outs), (ins pred:$p, reglist:$regs, variable_ops),
Owen Anderson16884412011-07-13 23:22:26 +00001389 2, IIC_iPop_Br, [],
Jim Grosbach53e3fc42011-07-08 17:40:42 +00001390 (tPOP pred:$p, reglist:$regs)>;
1391
Jim Grosbachaa8d1b82011-07-08 22:25:23 +00001392// Indirect branch using "mov pc, $Rm"
1393let isBranch = 1, isTerminator = 1, isBarrier = 1, isIndirectBranch = 1 in {
Jim Grosbach7e61a312011-07-08 22:33:49 +00001394 def tBRIND : tPseudoExpand<(outs), (ins GPR:$Rm, pred:$p),
Owen Anderson16884412011-07-13 23:22:26 +00001395 2, IIC_Br, [(brind GPR:$Rm)],
Jim Grosbach7e61a312011-07-08 22:33:49 +00001396 (tMOVr PC, GPR:$Rm, pred:$p)>;
Jim Grosbachaa8d1b82011-07-08 22:25:23 +00001397}