blob: 2500e11d99da9382ff041cb57afb8a0bd8571887 [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";
Owen Anderson8d7d2e12011-08-09 20:55:18 +000085 let DecoderMethod = "DecodeThumbBROperand";
Jim Grosbache2467172010-12-10 18:21:33 +000086}
87
Jim Grosbach01086452010-12-10 17:13:40 +000088def t_bcctarget : Operand<i32> {
89 let EncoderMethod = "getThumbBCCTargetOpValue";
Owen Anderson8d7d2e12011-08-09 20:55:18 +000090 let DecoderMethod = "DecodeThumbBCCTargetOperand";
Jim Grosbach01086452010-12-10 17:13:40 +000091}
92
Jim Grosbachcf6220a2010-12-09 19:01:46 +000093def t_cbtarget : Operand<i32> {
Jim Grosbach027d6e82010-12-09 19:04:53 +000094 let EncoderMethod = "getThumbCBTargetOpValue";
Owen Anderson8d7d2e12011-08-09 20:55:18 +000095 let DecoderMethod = "DecodeThumbCmpBROperand";
Bill Wendlingdff2f712010-12-08 23:01:43 +000096}
97
Jim Grosbach662a8162010-12-06 23:57:07 +000098def t_bltarget : Operand<i32> {
99 let EncoderMethod = "getThumbBLTargetOpValue";
Owen Anderson648f9a72011-08-08 23:25:22 +0000100 let DecoderMethod = "DecodeThumbBLTargetOperand";
Jim Grosbach662a8162010-12-06 23:57:07 +0000101}
102
Bill Wendling09aa3f02010-12-09 00:39:08 +0000103def t_blxtarget : Operand<i32> {
104 let EncoderMethod = "getThumbBLXTargetOpValue";
Owen Anderson6d746312011-08-08 20:42:17 +0000105 let DecoderMethod = "DecodeThumbBLXOffset";
Bill Wendling09aa3f02010-12-09 00:39:08 +0000106}
Benjamin Kramer151bd172011-07-14 21:47:24 +0000107}
Bill Wendling09aa3f02010-12-09 00:39:08 +0000108
Evan Chenga8e29892007-01-19 07:51:42 +0000109// t_addrmode_rr := reg + reg
110//
Jim Grosbach7ce05792011-08-03 23:50:40 +0000111def t_addrmode_rr_asm_operand : AsmOperandClass { let Name = "MemThumbRR"; }
Evan Chenga8e29892007-01-19 07:51:42 +0000112def t_addrmode_rr : Operand<i32>,
113 ComplexPattern<i32, 2, "SelectThumbAddrModeRR", []> {
Bill Wendlingf4caf692010-12-14 03:36:38 +0000114 let EncoderMethod = "getThumbAddrModeRegRegOpValue";
Evan Chenga8e29892007-01-19 07:51:42 +0000115 let PrintMethod = "printThumbAddrModeRROperand";
Jim Grosbach30eae3c2009-04-07 20:34:09 +0000116 let MIOperandInfo = (ops tGPR:$base, tGPR:$offsreg);
Evan Chenga8e29892007-01-19 07:51:42 +0000117}
118
Bill Wendlingf4caf692010-12-14 03:36:38 +0000119// t_addrmode_rrs := reg + reg
Evan Chenga8e29892007-01-19 07:51:42 +0000120//
Bill Wendlingf4caf692010-12-14 03:36:38 +0000121def t_addrmode_rrs1 : Operand<i32>,
122 ComplexPattern<i32, 2, "SelectThumbAddrModeRI5S1", []> {
123 let EncoderMethod = "getThumbAddrModeRegRegOpValue";
124 let PrintMethod = "printThumbAddrModeRROperand";
Owen Anderson8d7d2e12011-08-09 20:55:18 +0000125 let DecoderMethod = "DecodeThumbAddrModeRR";
Jim Grosbach7ce05792011-08-03 23:50:40 +0000126 let ParserMatchClass = t_addrmode_rr_asm_operand;
Bill Wendlingf4caf692010-12-14 03:36:38 +0000127 let MIOperandInfo = (ops tGPR:$base, tGPR:$offsreg);
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";
Owen Anderson8d7d2e12011-08-09 20:55:18 +0000132 let DecoderMethod = "DecodeThumbAddrModeRR";
Bill Wendlingf4caf692010-12-14 03:36:38 +0000133 let PrintMethod = "printThumbAddrModeRROperand";
Jim Grosbach7ce05792011-08-03 23:50:40 +0000134 let ParserMatchClass = t_addrmode_rr_asm_operand;
Bill Wendlingf4caf692010-12-14 03:36:38 +0000135 let MIOperandInfo = (ops tGPR:$base, tGPR:$offsreg);
Bill Wendlingf4caf692010-12-14 03:36:38 +0000136}
137def t_addrmode_rrs4 : Operand<i32>,
138 ComplexPattern<i32, 2, "SelectThumbAddrModeRI5S4", []> {
139 let EncoderMethod = "getThumbAddrModeRegRegOpValue";
Owen Anderson8d7d2e12011-08-09 20:55:18 +0000140 let DecoderMethod = "DecodeThumbAddrModeRR";
Bill Wendlingf4caf692010-12-14 03:36:38 +0000141 let PrintMethod = "printThumbAddrModeRROperand";
Jim Grosbach7ce05792011-08-03 23:50:40 +0000142 let ParserMatchClass = t_addrmode_rr_asm_operand;
Bill Wendlingf4caf692010-12-14 03:36:38 +0000143 let MIOperandInfo = (ops tGPR:$base, tGPR:$offsreg);
Evan Chenga8e29892007-01-19 07:51:42 +0000144}
Evan Chengc38f2bc2007-01-23 22:59:13 +0000145
Bill Wendlingf4caf692010-12-14 03:36:38 +0000146// t_addrmode_is4 := reg + imm5 * 4
Evan Chengc38f2bc2007-01-23 22:59:13 +0000147//
Bill Wendlingf4caf692010-12-14 03:36:38 +0000148def t_addrmode_is4 : Operand<i32>,
149 ComplexPattern<i32, 2, "SelectThumbAddrModeImm5S4", []> {
150 let EncoderMethod = "getAddrModeISOpValue";
Owen Anderson8d7d2e12011-08-09 20:55:18 +0000151 let DecoderMethod = "DecodeThumbAddrModeIS";
Bill Wendlingf4caf692010-12-14 03:36:38 +0000152 let PrintMethod = "printThumbAddrModeImm5S4Operand";
153 let MIOperandInfo = (ops tGPR:$base, i32imm:$offsimm);
Bill Wendlingf4caf692010-12-14 03:36:38 +0000154}
155
156// t_addrmode_is2 := reg + imm5 * 2
157//
158def t_addrmode_is2 : Operand<i32>,
159 ComplexPattern<i32, 2, "SelectThumbAddrModeImm5S2", []> {
160 let EncoderMethod = "getAddrModeISOpValue";
Owen Anderson8d7d2e12011-08-09 20:55:18 +0000161 let DecoderMethod = "DecodeThumbAddrModeIS";
Bill Wendlingf4caf692010-12-14 03:36:38 +0000162 let PrintMethod = "printThumbAddrModeImm5S2Operand";
163 let MIOperandInfo = (ops tGPR:$base, i32imm:$offsimm);
Bill Wendlingf4caf692010-12-14 03:36:38 +0000164}
165
166// t_addrmode_is1 := reg + imm5
167//
168def t_addrmode_is1 : Operand<i32>,
169 ComplexPattern<i32, 2, "SelectThumbAddrModeImm5S1", []> {
170 let EncoderMethod = "getAddrModeISOpValue";
Owen Anderson8d7d2e12011-08-09 20:55:18 +0000171 let DecoderMethod = "DecodeThumbAddrModeIS";
Bill Wendlingf4caf692010-12-14 03:36:38 +0000172 let PrintMethod = "printThumbAddrModeImm5S1Operand";
173 let MIOperandInfo = (ops tGPR:$base, i32imm:$offsimm);
Evan Chenga8e29892007-01-19 07:51:42 +0000174}
175
176// t_addrmode_sp := sp + imm8 * 4
177//
178def t_addrmode_sp : Operand<i32>,
179 ComplexPattern<i32, 2, "SelectThumbAddrModeSP", []> {
Jim Grosbachd967cd02010-12-07 21:50:47 +0000180 let EncoderMethod = "getAddrModeThumbSPOpValue";
Owen Anderson648f9a72011-08-08 23:25:22 +0000181 let DecoderMethod = "DecodeThumbAddrModeSP";
Evan Chenga8e29892007-01-19 07:51:42 +0000182 let PrintMethod = "printThumbAddrModeSPOperand";
Jakob Stoklund Olesenc5b7ef12010-01-13 00:43:06 +0000183 let MIOperandInfo = (ops GPR:$base, i32imm:$offsimm);
Evan Chenga8e29892007-01-19 07:51:42 +0000184}
185
Bill Wendlingb8958b02010-12-08 01:57:09 +0000186// t_addrmode_pc := <label> => pc + imm8 * 4
187//
188def t_addrmode_pc : Operand<i32> {
189 let EncoderMethod = "getAddrModePCOpValue";
Owen Anderson8d7d2e12011-08-09 20:55:18 +0000190 let DecoderMethod = "DecodeThumbAddrModePC";
Bill Wendlingb8958b02010-12-08 01:57:09 +0000191}
192
Evan Chenga8e29892007-01-19 07:51:42 +0000193//===----------------------------------------------------------------------===//
194// Miscellaneous Instructions.
195//
196
Jim Grosbach4642ad32010-02-22 23:10:38 +0000197// FIXME: Marking these as hasSideEffects is necessary to prevent machine DCE
198// from removing one half of the matched pairs. That breaks PEI, which assumes
199// these will always be in pairs, and asserts if it finds otherwise. Better way?
200let Defs = [SP], Uses = [SP], hasSideEffects = 1 in {
Evan Cheng44bec522007-05-15 01:29:07 +0000201def tADJCALLSTACKUP :
Bill Wendlinga8981662010-11-19 22:02:18 +0000202 PseudoInst<(outs), (ins i32imm:$amt1, i32imm:$amt2), NoItinerary,
203 [(ARMcallseq_end imm:$amt1, imm:$amt2)]>,
204 Requires<[IsThumb, IsThumb1Only]>;
Evan Cheng44bec522007-05-15 01:29:07 +0000205
Jim Grosbach0ede14f2009-03-27 23:06:27 +0000206def tADJCALLSTACKDOWN :
Bill Wendlinga8981662010-11-19 22:02:18 +0000207 PseudoInst<(outs), (ins i32imm:$amt), NoItinerary,
208 [(ARMcallseq_start imm:$amt)]>,
209 Requires<[IsThumb, IsThumb1Only]>;
Evan Cheng071a2792007-09-11 19:55:27 +0000210}
Evan Cheng44bec522007-05-15 01:29:07 +0000211
Bill Wendling0e45a5a2010-11-30 00:50:22 +0000212// T1Disassembly - A simple class to make encoding some disassembly patterns
213// easier and less verbose.
Bill Wendlinga46a4932010-11-29 22:15:03 +0000214class T1Disassembly<bits<2> op1, bits<8> op2>
215 : T1Encoding<0b101111> {
216 let Inst{9-8} = op1;
217 let Inst{7-0} = op2;
218}
219
Johnny Chenbd2c6232010-02-25 03:28:51 +0000220def tNOP : T1pI<(outs), (ins), NoItinerary, "nop", "",
221 [/* For disassembly only; pattern left blank */]>,
Bill Wendlinga46a4932010-11-29 22:15:03 +0000222 T1Disassembly<0b11, 0x00>; // A8.6.110
Johnny Chenbd2c6232010-02-25 03:28:51 +0000223
Johnny Chend86d2692010-02-25 17:51:03 +0000224def tYIELD : T1pI<(outs), (ins), NoItinerary, "yield", "",
225 [/* For disassembly only; pattern left blank */]>,
Bill Wendlinga46a4932010-11-29 22:15:03 +0000226 T1Disassembly<0b11, 0x10>; // A8.6.410
Johnny Chend86d2692010-02-25 17:51:03 +0000227
228def tWFE : T1pI<(outs), (ins), NoItinerary, "wfe", "",
229 [/* For disassembly only; pattern left blank */]>,
Bill Wendlinga46a4932010-11-29 22:15:03 +0000230 T1Disassembly<0b11, 0x20>; // A8.6.408
Johnny Chend86d2692010-02-25 17:51:03 +0000231
232def tWFI : T1pI<(outs), (ins), NoItinerary, "wfi", "",
233 [/* For disassembly only; pattern left blank */]>,
Bill Wendlinga46a4932010-11-29 22:15:03 +0000234 T1Disassembly<0b11, 0x30>; // A8.6.409
Johnny Chend86d2692010-02-25 17:51:03 +0000235
236def tSEV : T1pI<(outs), (ins), NoItinerary, "sev", "",
237 [/* For disassembly only; pattern left blank */]>,
Bill Wendlinga46a4932010-11-29 22:15:03 +0000238 T1Disassembly<0b11, 0x40>; // A8.6.157
239
240// The i32imm operand $val can be used by a debugger to store more information
241// about the breakpoint.
242def tBKPT : T1I<(outs), (ins i32imm:$val), NoItinerary, "bkpt\t$val",
243 [/* For disassembly only; pattern left blank */]>,
244 T1Disassembly<0b10, {?,?,?,?,?,?,?,?}> {
245 // A8.6.22
246 bits<8> val;
247 let Inst{7-0} = val;
248}
Johnny Chend86d2692010-02-25 17:51:03 +0000249
Jim Grosbach06322472011-07-22 17:52:23 +0000250def tSETEND : T1I<(outs), (ins setend_op:$end), NoItinerary, "setend\t$end",
251 []>, T1Encoding<0b101101> {
252 bits<1> end;
Bill Wendling7d0affd2010-11-21 10:55:23 +0000253 // A8.6.156
Johnny Chend86d2692010-02-25 17:51:03 +0000254 let Inst{9-5} = 0b10010;
Bill Wendlinga8981662010-11-19 22:02:18 +0000255 let Inst{4} = 1;
Jim Grosbach06322472011-07-22 17:52:23 +0000256 let Inst{3} = end;
Bill Wendlinga8981662010-11-19 22:02:18 +0000257 let Inst{2-0} = 0b000;
Johnny Chend86d2692010-02-25 17:51:03 +0000258}
259
Johnny Chen93042d12010-03-02 18:14:57 +0000260// Change Processor State is a system instruction -- for disassembly only.
Bruno Cardoso Lopesa2b6e412011-02-14 13:09:44 +0000261def tCPS : T1I<(outs), (ins imod_op:$imod, iflags_op:$iflags),
262 NoItinerary, "cps$imod $iflags",
263 [/* For disassembly only; pattern left blank */]>,
Bill Wendling849f2e32010-11-29 00:18:15 +0000264 T1Misc<0b0110011> {
265 // A8.6.38 & B6.1.1
Bruno Cardoso Lopesa2b6e412011-02-14 13:09:44 +0000266 bit imod;
267 bits<3> iflags;
268
269 let Inst{4} = imod;
270 let Inst{3} = 0;
271 let Inst{2-0} = iflags;
Owen Anderson8d7d2e12011-08-09 20:55:18 +0000272 let DecoderMethod = "DecodeThumbCPS";
Bill Wendling849f2e32010-11-29 00:18:15 +0000273}
Johnny Chen93042d12010-03-02 18:14:57 +0000274
Evan Cheng35d6c412009-08-04 23:47:55 +0000275// For both thumb1 and thumb2.
Chris Lattnera4a3a5e2010-10-31 19:15:18 +0000276let isNotDuplicable = 1, isCodeGenOnly = 1 in
Jim Grosbacha3fbadf2010-09-30 19:53:58 +0000277def tPICADD : TIt<(outs GPR:$dst), (ins GPR:$lhs, pclabel:$cp), IIC_iALUr, "",
Bill Wendling0ae28e42010-11-19 22:37:33 +0000278 [(set GPR:$dst, (ARMpic_add GPR:$lhs, imm:$cp))]>,
Johnny Chend68e1192009-12-15 17:24:14 +0000279 T1Special<{0,0,?,?}> {
Bill Wendling0e45a5a2010-11-30 00:50:22 +0000280 // A8.6.6
Bill Wendling0ae28e42010-11-19 22:37:33 +0000281 bits<3> dst;
Bill Wendling0e45a5a2010-11-30 00:50:22 +0000282 let Inst{6-3} = 0b1111; // Rm = pc
Bill Wendling0ae28e42010-11-19 22:37:33 +0000283 let Inst{2-0} = dst;
Johnny Chend68e1192009-12-15 17:24:14 +0000284}
Evan Chenga8e29892007-01-19 07:51:42 +0000285
Bill Wendling0ae28e42010-11-19 22:37:33 +0000286// ADD <Rd>, sp, #<imm8>
287// This is rematerializable, which is particularly useful for taking the
288// address of locals.
289let isReMaterializable = 1 in
290def tADDrSPi : T1I<(outs tGPR:$dst), (ins GPR:$sp, t_imm_s4:$rhs), IIC_iALUi,
291 "add\t$dst, $sp, $rhs", []>,
292 T1Encoding<{1,0,1,0,1,?}> {
293 // A6.2 & A8.6.8
294 bits<3> dst;
295 bits<8> rhs;
296 let Inst{10-8} = dst;
297 let Inst{7-0} = rhs;
Owen Anderson8d7d2e12011-08-09 20:55:18 +0000298 let DecoderMethod = "DecodeThumbAddSpecialReg";
Bill Wendling0ae28e42010-11-19 22:37:33 +0000299}
300
301// ADD sp, sp, #<imm7>
Evan Cheng2ef9c8a2009-11-19 06:57:41 +0000302def tADDspi : TIt<(outs GPR:$dst), (ins GPR:$lhs, t_imm_s4:$rhs), IIC_iALUi,
Johnny Chend68e1192009-12-15 17:24:14 +0000303 "add\t$dst, $rhs", []>,
Bill Wendling0ae28e42010-11-19 22:37:33 +0000304 T1Misc<{0,0,0,0,0,?,?}> {
305 // A6.2.5 & A8.6.8
306 bits<7> rhs;
307 let Inst{6-0} = rhs;
Owen Anderson8d7d2e12011-08-09 20:55:18 +0000308 let DecoderMethod = "DecodeThumbAddSPImm";
Bill Wendling0ae28e42010-11-19 22:37:33 +0000309}
Evan Cheng7dcf4a82009-06-25 01:05:06 +0000310
Bill Wendling0ae28e42010-11-19 22:37:33 +0000311// SUB sp, sp, #<imm7>
312// FIXME: The encoding and the ASM string don't match up.
Evan Cheng2ef9c8a2009-11-19 06:57:41 +0000313def tSUBspi : TIt<(outs GPR:$dst), (ins GPR:$lhs, t_imm_s4:$rhs), IIC_iALUi,
Johnny Chend68e1192009-12-15 17:24:14 +0000314 "sub\t$dst, $rhs", []>,
Bill Wendling0ae28e42010-11-19 22:37:33 +0000315 T1Misc<{0,0,0,0,1,?,?}> {
316 // A6.2.5 & A8.6.214
317 bits<7> rhs;
318 let Inst{6-0} = rhs;
Owen Anderson8d7d2e12011-08-09 20:55:18 +0000319 let DecoderMethod = "DecodeThumbAddSPImm";
Bill Wendling0ae28e42010-11-19 22:37:33 +0000320}
Evan Cheng86198642009-08-07 00:34:42 +0000321
Bill Wendling0ae28e42010-11-19 22:37:33 +0000322// ADD <Rm>, sp
David Goodwin5d598aa2009-08-19 18:00:44 +0000323def tADDrSP : TIt<(outs GPR:$dst), (ins GPR:$lhs, GPR:$rhs), IIC_iALUr,
Johnny Chend68e1192009-12-15 17:24:14 +0000324 "add\t$dst, $rhs", []>,
325 T1Special<{0,0,?,?}> {
Bill Wendling0ae28e42010-11-19 22:37:33 +0000326 // A8.6.9 Encoding T1
327 bits<4> dst;
328 let Inst{7} = dst{3};
329 let Inst{6-3} = 0b1101;
330 let Inst{2-0} = dst{2-0};
Owen Anderson8d7d2e12011-08-09 20:55:18 +0000331 let DecoderMethod = "DecodeThumbAddSPReg";
Johnny Chend68e1192009-12-15 17:24:14 +0000332}
Evan Cheng86198642009-08-07 00:34:42 +0000333
Bill Wendling0ae28e42010-11-19 22:37:33 +0000334// ADD sp, <Rm>
David Goodwin5d598aa2009-08-19 18:00:44 +0000335def tADDspr : TIt<(outs GPR:$dst), (ins GPR:$lhs, GPR:$rhs), IIC_iALUr,
Johnny Chend68e1192009-12-15 17:24:14 +0000336 "add\t$dst, $rhs", []>,
337 T1Special<{0,0,?,?}> {
338 // A8.6.9 Encoding T2
Bill Wendling0ae28e42010-11-19 22:37:33 +0000339 bits<4> dst;
Johnny Chend68e1192009-12-15 17:24:14 +0000340 let Inst{7} = 1;
Bill Wendling0ae28e42010-11-19 22:37:33 +0000341 let Inst{6-3} = dst;
Johnny Chend68e1192009-12-15 17:24:14 +0000342 let Inst{2-0} = 0b101;
Owen Anderson8d7d2e12011-08-09 20:55:18 +0000343 let DecoderMethod = "DecodeThumbAddSPReg";
Johnny Chend68e1192009-12-15 17:24:14 +0000344}
Evan Cheng86198642009-08-07 00:34:42 +0000345
Evan Chenga8e29892007-01-19 07:51:42 +0000346//===----------------------------------------------------------------------===//
347// Control Flow Instructions.
348//
349
Bob Wilson8d4de5a2009-10-28 18:26:41 +0000350// Indirect branches
351let isBranch = 1, isTerminator = 1, isBarrier = 1, isIndirectBranch = 1 in {
Cameron Zwarich421b1062011-05-26 03:41:12 +0000352 def tBX : TI<(outs), (ins GPR:$Rm, pred:$p), IIC_Br, "bx${p}\t$Rm", []>,
353 T1Special<{1,1,0,?}> {
354 // A6.2.3 & A8.6.25
355 bits<4> Rm;
356 let Inst{6-3} = Rm;
357 let Inst{2-0} = 0b000;
358 }
Bob Wilson8d4de5a2009-10-28 18:26:41 +0000359}
360
Jim Grosbachead77cd2011-07-08 21:04:05 +0000361let isReturn = 1, isTerminator = 1, isBarrier = 1 in {
Owen Anderson16884412011-07-13 23:22:26 +0000362 def tBX_RET : tPseudoExpand<(outs), (ins pred:$p), 2, IIC_Br,
Jim Grosbach25e6d482011-07-08 21:50:04 +0000363 [(ARMretflag)], (tBX LR, pred:$p)>;
Jim Grosbachead77cd2011-07-08 21:04:05 +0000364
365 // Alternative return instruction used by vararg functions.
Jim Grosbach25e6d482011-07-08 21:50:04 +0000366 def tBX_RET_vararg : tPseudoExpand<(outs), (ins tGPR:$Rm, pred:$p),
Owen Anderson16884412011-07-13 23:22:26 +0000367 2, IIC_Br, [],
Jim Grosbach25e6d482011-07-08 21:50:04 +0000368 (tBX GPR:$Rm, pred:$p)>;
Jim Grosbachead77cd2011-07-08 21:04:05 +0000369}
370
Bill Wendling0480e282010-12-01 02:36:55 +0000371// All calls clobber the non-callee saved registers. SP is marked as a use to
372// prevent stack-pointer assignments that appear immediately before calls from
373// potentially appearing dead.
Jim Grosbach0ede14f2009-03-27 23:06:27 +0000374let isCall = 1,
Evan Cheng1e0eab12010-11-29 22:43:27 +0000375 // On non-Darwin platforms R9 is callee-saved.
Jakob Stoklund Olesen2944b4f2011-05-03 22:31:24 +0000376 Defs = [R0, R1, R2, R3, R12, LR, QQQQ0, QQQQ2, QQQQ3, CPSR, FPSCR],
Evan Cheng1e0eab12010-11-29 22:43:27 +0000377 Uses = [SP] in {
Evan Chengb6207242009-08-01 00:16:10 +0000378 // Also used for Thumb2
Johnny Chend68e1192009-12-15 17:24:14 +0000379 def tBL : TIx2<0b11110, 0b11, 1,
Owen Anderson0af0dc82011-07-18 18:50:52 +0000380 (outs), (ins pred:$p, t_bltarget:$func, variable_ops), IIC_Br,
381 "bl${p}\t$func",
Johnny Chend68e1192009-12-15 17:24:14 +0000382 [(ARMtcall tglobaladdr:$func)]>,
Bill Wendling534a5e42010-12-03 01:55:47 +0000383 Requires<[IsThumb, IsNotDarwin]> {
Owen Anderson648f9a72011-08-08 23:25:22 +0000384 bits<22> func;
385 let Inst{26} = func{21};
Jim Grosbach662a8162010-12-06 23:57:07 +0000386 let Inst{25-16} = func{20-11};
Jim Grosbach4fa102b2010-12-03 22:33:42 +0000387 let Inst{13} = 1;
388 let Inst{11} = 1;
Jim Grosbach662a8162010-12-06 23:57:07 +0000389 let Inst{10-0} = func{10-0};
Bill Wendling534a5e42010-12-03 01:55:47 +0000390 }
Evan Cheng20a2a0a2009-07-29 21:26:42 +0000391
Evan Chengb6207242009-08-01 00:16:10 +0000392 // ARMv5T and above, also used for Thumb2
Johnny Chend68e1192009-12-15 17:24:14 +0000393 def tBLXi : TIx2<0b11110, 0b11, 0,
Owen Anderson0af0dc82011-07-18 18:50:52 +0000394 (outs), (ins pred:$p, t_blxtarget:$func, variable_ops), IIC_Br,
395 "blx${p}\t$func",
Johnny Chend68e1192009-12-15 17:24:14 +0000396 [(ARMcall tglobaladdr:$func)]>,
Jim Grosbach4fa102b2010-12-03 22:33:42 +0000397 Requires<[IsThumb, HasV5T, IsNotDarwin]> {
Jim Grosbach662a8162010-12-06 23:57:07 +0000398 bits<21> func;
399 let Inst{25-16} = func{20-11};
Jim Grosbach4fa102b2010-12-03 22:33:42 +0000400 let Inst{13} = 1;
401 let Inst{11} = 1;
Jim Grosbach662a8162010-12-06 23:57:07 +0000402 let Inst{10-1} = func{10-1};
403 let Inst{0} = 0; // func{0} is assumed zero
Jim Grosbach4fa102b2010-12-03 22:33:42 +0000404 }
Evan Cheng20a2a0a2009-07-29 21:26:42 +0000405
Evan Chengb6207242009-08-01 00:16:10 +0000406 // Also used for Thumb2
Owen Anderson0af0dc82011-07-18 18:50:52 +0000407 def tBLXr : TI<(outs), (ins pred:$p, GPR:$func, variable_ops), IIC_Br,
408 "blx${p}\t$func",
Evan Chengb6207242009-08-01 00:16:10 +0000409 [(ARMtcall GPR:$func)]>,
Johnny Chend68e1192009-12-15 17:24:14 +0000410 Requires<[IsThumb, HasV5T, IsNotDarwin]>,
Owen Anderson18901d62011-05-11 17:00:48 +0000411 T1Special<{1,1,1,?}> { // A6.2.3 & A8.6.24;
412 bits<4> func;
413 let Inst{6-3} = func;
414 let Inst{2-0} = 0b000;
415 }
Evan Cheng20a2a0a2009-07-29 21:26:42 +0000416
Lauro Ramos Venanciob8a93a42007-03-27 16:19:21 +0000417 // ARMv4T
Cameron Zwarichad70f6d2011-05-25 21:53:50 +0000418 def tBX_CALL : tPseudoInst<(outs), (ins tGPR:$func, variable_ops),
Owen Anderson16884412011-07-13 23:22:26 +0000419 4, IIC_Br,
Evan Cheng20a2a0a2009-07-29 21:26:42 +0000420 [(ARMcall_nolink tGPR:$func)]>,
Jim Grosbach6797f892010-11-01 17:08:58 +0000421 Requires<[IsThumb, IsThumb1Only, IsNotDarwin]>;
Evan Cheng20a2a0a2009-07-29 21:26:42 +0000422}
423
Evan Cheng20a2a0a2009-07-29 21:26:42 +0000424let isCall = 1,
Evan Cheng1e0eab12010-11-29 22:43:27 +0000425 // On Darwin R9 is call-clobbered.
426 // R7 is marked as a use to prevent frame-pointer assignments from being
427 // moved above / below calls.
Jakob Stoklund Olesen2944b4f2011-05-03 22:31:24 +0000428 Defs = [R0, R1, R2, R3, R9, R12, LR, QQQQ0, QQQQ2, QQQQ3, CPSR, FPSCR],
Evan Cheng1e0eab12010-11-29 22:43:27 +0000429 Uses = [R7, SP] in {
Evan Chengb6207242009-08-01 00:16:10 +0000430 // Also used for Thumb2
Owen Anderson0af0dc82011-07-18 18:50:52 +0000431 def tBLr9 : tPseudoExpand<(outs), (ins pred:$p, t_bltarget:$func, variable_ops),
432 4, IIC_Br, [(ARMtcall tglobaladdr:$func)],
433 (tBL pred:$p, t_bltarget:$func)>,
434 Requires<[IsThumb, IsDarwin]>;
Evan Cheng20a2a0a2009-07-29 21:26:42 +0000435
Evan Chengb6207242009-08-01 00:16:10 +0000436 // ARMv5T and above, also used for Thumb2
Owen Anderson0af0dc82011-07-18 18:50:52 +0000437 def tBLXi_r9 : tPseudoExpand<(outs), (ins pred:$p, t_blxtarget:$func, variable_ops),
438 4, IIC_Br, [(ARMcall tglobaladdr:$func)],
439 (tBLXi pred:$p, t_blxtarget:$func)>,
440 Requires<[IsThumb, HasV5T, IsDarwin]>;
Evan Cheng20a2a0a2009-07-29 21:26:42 +0000441
Evan Chengb6207242009-08-01 00:16:10 +0000442 // Also used for Thumb2
Owen Anderson0af0dc82011-07-18 18:50:52 +0000443 def tBLXr_r9 : tPseudoExpand<(outs), (ins pred:$p, GPR:$func, variable_ops),
444 2, IIC_Br, [(ARMtcall GPR:$func)],
445 (tBLXr pred:$p, GPR:$func)>,
446 Requires<[IsThumb, HasV5T, IsDarwin]>;
Evan Cheng20a2a0a2009-07-29 21:26:42 +0000447
448 // ARMv4T
Cameron Zwarichad70f6d2011-05-25 21:53:50 +0000449 def tBXr9_CALL : tPseudoInst<(outs), (ins tGPR:$func, variable_ops),
Owen Anderson16884412011-07-13 23:22:26 +0000450 4, IIC_Br,
Johnny Chend68e1192009-12-15 17:24:14 +0000451 [(ARMcall_nolink tGPR:$func)]>,
Jim Grosbach6797f892010-11-01 17:08:58 +0000452 Requires<[IsThumb, IsThumb1Only, IsDarwin]>;
Evan Chenga8e29892007-01-19 07:51:42 +0000453}
454
Bill Wendling0480e282010-12-01 02:36:55 +0000455let isBranch = 1, isTerminator = 1, isBarrier = 1 in {
456 let isPredicable = 1 in
Jim Grosbache2467172010-12-10 18:21:33 +0000457 def tB : T1I<(outs), (ins t_brtarget:$target), IIC_Br,
Bill Wendling0480e282010-12-01 02:36:55 +0000458 "b\t$target", [(br bb:$target)]>,
Jim Grosbache2467172010-12-10 18:21:33 +0000459 T1Encoding<{1,1,1,0,0,?}> {
460 bits<11> target;
461 let Inst{10-0} = target;
462 }
Evan Chenga8e29892007-01-19 07:51:42 +0000463
Evan Cheng225dfe92007-01-30 01:13:37 +0000464 // Far jump
Jim Grosbach3efad8f2010-12-16 19:11:16 +0000465 // Just a pseudo for a tBL instruction. Needed to let regalloc know about
466 // the clobber of LR.
Evan Cheng53c67c02009-08-07 05:45:07 +0000467 let Defs = [LR] in
Owen Anderson0af0dc82011-07-18 18:50:52 +0000468 def tBfar : tPseudoExpand<(outs), (ins t_bltarget:$target, pred:$p),
469 4, IIC_Br, [], (tBL pred:$p, t_bltarget:$target)>;
Evan Cheng225dfe92007-01-30 01:13:37 +0000470
Jim Grosbachf1aa47d2010-11-29 19:32:47 +0000471 def tBR_JTr : tPseudoInst<(outs),
472 (ins tGPR:$target, i32imm:$jt, i32imm:$id),
Owen Anderson16884412011-07-13 23:22:26 +0000473 0, IIC_Br,
Jim Grosbachf1aa47d2010-11-29 19:32:47 +0000474 [(ARMbrjt tGPR:$target, tjumptable:$jt, imm:$id)]> {
475 list<Predicate> Predicates = [IsThumb, IsThumb1Only];
Johnny Chenbbc71b22009-12-16 02:32:54 +0000476 }
Evan Chengd85ac4d2007-01-27 02:29:45 +0000477}
478
Evan Chengc85e8322007-07-05 07:13:32 +0000479// FIXME: should be able to write a pattern for ARMBrcond, but can't use
Jim Grosbach0ede14f2009-03-27 23:06:27 +0000480// a two-value operand where a dag node expects two operands. :(
Evan Chengffbacca2007-07-21 00:34:19 +0000481let isBranch = 1, isTerminator = 1 in
Jim Grosbach01086452010-12-10 17:13:40 +0000482 def tBcc : T1I<(outs), (ins t_bcctarget:$target, pred:$p), IIC_Br,
Jim Grosbachceab5012010-12-04 00:20:40 +0000483 "b${p}\t$target",
Johnny Chend68e1192009-12-15 17:24:14 +0000484 [/*(ARMbrcond bb:$target, imm:$cc)*/]>,
Eric Christopher33281b22011-05-27 03:50:53 +0000485 T1BranchCond<{1,1,0,1}> {
Jim Grosbachceab5012010-12-04 00:20:40 +0000486 bits<4> p;
Jim Grosbach01086452010-12-10 17:13:40 +0000487 bits<8> target;
Jim Grosbachceab5012010-12-04 00:20:40 +0000488 let Inst{11-8} = p;
Jim Grosbach01086452010-12-10 17:13:40 +0000489 let Inst{7-0} = target;
Jim Grosbachceab5012010-12-04 00:20:40 +0000490}
Evan Chenga8e29892007-01-19 07:51:42 +0000491
Evan Chengde17fb62009-10-31 23:46:45 +0000492// Compare and branch on zero / non-zero
493let isBranch = 1, isTerminator = 1 in {
Jim Grosbachcf6220a2010-12-09 19:01:46 +0000494 def tCBZ : T1I<(outs), (ins tGPR:$Rn, t_cbtarget:$target), IIC_Br,
Bill Wendling12280382010-11-19 23:14:32 +0000495 "cbz\t$Rn, $target", []>,
496 T1Misc<{0,0,?,1,?,?,?}> {
Bill Wendling849f2e32010-11-29 00:18:15 +0000497 // A8.6.27
Bill Wendling12280382010-11-19 23:14:32 +0000498 bits<6> target;
499 bits<3> Rn;
500 let Inst{9} = target{5};
501 let Inst{7-3} = target{4-0};
502 let Inst{2-0} = Rn;
503 }
Evan Chengde17fb62009-10-31 23:46:45 +0000504
Owen Anderson0bc8bbb2011-08-03 23:21:48 +0000505 def tCBNZ : T1I<(outs), (ins tGPR:$Rn, t_cbtarget:$target), IIC_Br,
506 "cbnz\t$Rn, $target", []>,
Bill Wendling12280382010-11-19 23:14:32 +0000507 T1Misc<{1,0,?,1,?,?,?}> {
Bill Wendling849f2e32010-11-29 00:18:15 +0000508 // A8.6.27
Bill Wendling12280382010-11-19 23:14:32 +0000509 bits<6> target;
510 bits<3> Rn;
511 let Inst{9} = target{5};
512 let Inst{7-3} = target{4-0};
513 let Inst{2-0} = Rn;
514 }
Evan Chengde17fb62009-10-31 23:46:45 +0000515}
516
Jim Grosbache36e21e2011-07-08 20:13:35 +0000517// Tail calls
518let isCall = 1, isTerminator = 1, isReturn = 1, isBarrier = 1 in {
519 // Darwin versions.
520 let Defs = [R0, R1, R2, R3, R9, R12, QQQQ0, QQQQ2, QQQQ3, PC],
521 Uses = [SP] in {
Jim Grosbachaf7f2d62011-07-08 20:32:21 +0000522 // tTAILJMPd: Darwin version uses a Thumb2 branch (no Thumb1 tail calls
523 // on Darwin), so it's in ARMInstrThumb2.td.
Jim Grosbach0b44aea2011-07-08 20:39:19 +0000524 def tTAILJMPr : tPseudoExpand<(outs), (ins tcGPR:$dst, variable_ops),
Owen Anderson16884412011-07-13 23:22:26 +0000525 4, IIC_Br, [],
Jim Grosbach0b44aea2011-07-08 20:39:19 +0000526 (tBX GPR:$dst, (ops 14, zero_reg))>,
527 Requires<[IsThumb, IsDarwin]>;
Jim Grosbache36e21e2011-07-08 20:13:35 +0000528 }
529 // Non-Darwin versions (the difference is R9).
530 let Defs = [R0, R1, R2, R3, R12, QQQQ0, QQQQ2, QQQQ3, PC],
531 Uses = [SP] in {
Jim Grosbachaf7f2d62011-07-08 20:32:21 +0000532 def tTAILJMPdND : tPseudoExpand<(outs), (ins t_brtarget:$dst, variable_ops),
Owen Anderson16884412011-07-13 23:22:26 +0000533 4, IIC_Br, [],
Jim Grosbachaf7f2d62011-07-08 20:32:21 +0000534 (tB t_brtarget:$dst)>,
535 Requires<[IsThumb, IsNotDarwin]>;
Jim Grosbach0b44aea2011-07-08 20:39:19 +0000536 def tTAILJMPrND : tPseudoExpand<(outs), (ins tcGPR:$dst, variable_ops),
Owen Anderson16884412011-07-13 23:22:26 +0000537 4, IIC_Br, [],
Jim Grosbach0b44aea2011-07-08 20:39:19 +0000538 (tBX GPR:$dst, (ops 14, zero_reg))>,
539 Requires<[IsThumb, IsNotDarwin]>;
Jim Grosbache36e21e2011-07-08 20:13:35 +0000540 }
541}
542
543
Johnny Chen4c61cdd2010-02-25 02:21:11 +0000544// A8.6.218 Supervisor Call (Software Interrupt) -- for disassembly only
545// A8.6.16 B: Encoding T1
546// If Inst{11-8} == 0b1111 then SEE SVC
Evan Cheng1e0eab12010-11-29 22:43:27 +0000547let isCall = 1, Uses = [SP] in
Jim Grosbached838482011-07-26 16:24:27 +0000548def tSVC : T1pI<(outs), (ins imm0_255:$imm), IIC_Br,
Bill Wendling6179c312010-11-20 00:53:35 +0000549 "svc", "\t$imm", []>, Encoding16 {
550 bits<8> imm;
Johnny Chen4c61cdd2010-02-25 02:21:11 +0000551 let Inst{15-12} = 0b1101;
Bill Wendling6179c312010-11-20 00:53:35 +0000552 let Inst{11-8} = 0b1111;
553 let Inst{7-0} = imm;
Johnny Chen4c61cdd2010-02-25 02:21:11 +0000554}
555
Bill Wendlingef4a68b2010-11-30 07:44:32 +0000556// The assembler uses 0xDEFE for a trap instruction.
Evan Chengfb3611d2010-05-11 07:26:32 +0000557let isBarrier = 1, isTerminator = 1 in
Owen Anderson18901d62011-05-11 17:00:48 +0000558def tTRAP : TI<(outs), (ins), IIC_Br,
Jim Grosbach2e6ae132010-09-23 18:05:37 +0000559 "trap", [(trap)]>, Encoding16 {
Bill Wendling7d0affd2010-11-21 10:55:23 +0000560 let Inst = 0xdefe;
Johnny Chen4c61cdd2010-02-25 02:21:11 +0000561}
562
Evan Chenga8e29892007-01-19 07:51:42 +0000563//===----------------------------------------------------------------------===//
564// Load Store Instructions.
565//
566
Bill Wendlingb6faf652010-12-14 22:10:49 +0000567// Loads: reg/reg and reg/imm5
Dan Gohmanbc9d98b2010-02-27 23:47:46 +0000568let canFoldAsLoad = 1, isReMaterializable = 1 in
Bill Wendlingb6faf652010-12-14 22:10:49 +0000569multiclass thumb_ld_rr_ri_enc<bits<3> reg_opc, bits<4> imm_opc,
570 Operand AddrMode_r, Operand AddrMode_i,
571 AddrMode am, InstrItinClass itin_r,
572 InstrItinClass itin_i, string asm,
573 PatFrag opnode> {
Bill Wendling345cdb62010-12-14 23:42:48 +0000574 def r : // reg/reg
Bill Wendlingb6faf652010-12-14 22:10:49 +0000575 T1pILdStEncode<reg_opc,
576 (outs tGPR:$Rt), (ins AddrMode_r:$addr),
577 am, itin_r, asm, "\t$Rt, $addr",
578 [(set tGPR:$Rt, (opnode AddrMode_r:$addr))]>;
Bill Wendling345cdb62010-12-14 23:42:48 +0000579 def i : // reg/imm5
Bill Wendlingb6faf652010-12-14 22:10:49 +0000580 T1pILdStEncodeImm<imm_opc, 1 /* Load */,
581 (outs tGPR:$Rt), (ins AddrMode_i:$addr),
582 am, itin_i, asm, "\t$Rt, $addr",
583 [(set tGPR:$Rt, (opnode AddrMode_i:$addr))]>;
584}
585// Stores: reg/reg and reg/imm5
586multiclass thumb_st_rr_ri_enc<bits<3> reg_opc, bits<4> imm_opc,
587 Operand AddrMode_r, Operand AddrMode_i,
588 AddrMode am, InstrItinClass itin_r,
589 InstrItinClass itin_i, string asm,
590 PatFrag opnode> {
Bill Wendling345cdb62010-12-14 23:42:48 +0000591 def r : // reg/reg
Bill Wendlingb6faf652010-12-14 22:10:49 +0000592 T1pILdStEncode<reg_opc,
593 (outs), (ins tGPR:$Rt, AddrMode_r:$addr),
594 am, itin_r, asm, "\t$Rt, $addr",
595 [(opnode tGPR:$Rt, AddrMode_r:$addr)]>;
Bill Wendling345cdb62010-12-14 23:42:48 +0000596 def i : // reg/imm5
Bill Wendlingb6faf652010-12-14 22:10:49 +0000597 T1pILdStEncodeImm<imm_opc, 0 /* Store */,
598 (outs), (ins tGPR:$Rt, AddrMode_i:$addr),
599 am, itin_i, asm, "\t$Rt, $addr",
600 [(opnode tGPR:$Rt, AddrMode_i:$addr)]>;
601}
Bill Wendling6179c312010-11-20 00:53:35 +0000602
Bill Wendlingb6faf652010-12-14 22:10:49 +0000603// A8.6.57 & A8.6.60
604defm tLDR : thumb_ld_rr_ri_enc<0b100, 0b0110, t_addrmode_rrs4,
605 t_addrmode_is4, AddrModeT1_4,
606 IIC_iLoad_r, IIC_iLoad_i, "ldr",
607 UnOpFrag<(load node:$Src)>>;
Evan Chenga8e29892007-01-19 07:51:42 +0000608
Bill Wendlingb6faf652010-12-14 22:10:49 +0000609// A8.6.64 & A8.6.61
610defm tLDRB : thumb_ld_rr_ri_enc<0b110, 0b0111, t_addrmode_rrs1,
611 t_addrmode_is1, AddrModeT1_1,
612 IIC_iLoad_bh_r, IIC_iLoad_bh_i, "ldrb",
613 UnOpFrag<(zextloadi8 node:$Src)>>;
Bill Wendling1fd374e2010-11-30 22:57:21 +0000614
Bill Wendlingb6faf652010-12-14 22:10:49 +0000615// A8.6.76 & A8.6.73
616defm tLDRH : thumb_ld_rr_ri_enc<0b101, 0b1000, t_addrmode_rrs2,
617 t_addrmode_is2, AddrModeT1_2,
618 IIC_iLoad_bh_r, IIC_iLoad_bh_i, "ldrh",
619 UnOpFrag<(zextloadi16 node:$Src)>>;
Evan Chengc38f2bc2007-01-23 22:59:13 +0000620
Evan Cheng2f297df2009-07-11 07:08:13 +0000621let AddedComplexity = 10 in
Bill Wendling1fd374e2010-11-30 22:57:21 +0000622def tLDRSB : // A8.6.80
Bill Wendling40062fb2010-12-01 01:38:08 +0000623 T1pILdStEncode<0b011, (outs tGPR:$dst), (ins t_addrmode_rr:$addr),
624 AddrModeT1_1, IIC_iLoad_bh_r,
625 "ldrsb", "\t$dst, $addr",
626 [(set tGPR:$dst, (sextloadi8 t_addrmode_rr:$addr))]>;
Evan Chengc38f2bc2007-01-23 22:59:13 +0000627
Evan Cheng2f297df2009-07-11 07:08:13 +0000628let AddedComplexity = 10 in
Bill Wendling1fd374e2010-11-30 22:57:21 +0000629def tLDRSH : // A8.6.84
Bill Wendling40062fb2010-12-01 01:38:08 +0000630 T1pILdStEncode<0b111, (outs tGPR:$dst), (ins t_addrmode_rr:$addr),
631 AddrModeT1_2, IIC_iLoad_bh_r,
632 "ldrsh", "\t$dst, $addr",
633 [(set tGPR:$dst, (sextloadi16 t_addrmode_rr:$addr))]>;
Evan Chengc38f2bc2007-01-23 22:59:13 +0000634
Dan Gohman15511cf2008-12-03 18:15:48 +0000635let canFoldAsLoad = 1 in
Jim Grosbachd967cd02010-12-07 21:50:47 +0000636def tLDRspi : T1pIs<(outs tGPR:$Rt), (ins t_addrmode_sp:$addr), IIC_iLoad_i,
Bill Wendlingdc381372010-12-15 23:31:24 +0000637 "ldr", "\t$Rt, $addr",
638 [(set tGPR:$Rt, (load t_addrmode_sp:$addr))]>,
Jim Grosbachd967cd02010-12-07 21:50:47 +0000639 T1LdStSP<{1,?,?}> {
640 bits<3> Rt;
641 bits<8> addr;
642 let Inst{10-8} = Rt;
643 let Inst{7-0} = addr;
644}
Evan Cheng012f2d92007-01-24 08:53:17 +0000645
646// Load tconstpool
Evan Cheng7883fa92009-11-04 00:00:39 +0000647// FIXME: Use ldr.n to work around a Darwin assembler bug.
Owen Anderson91614ae2011-07-18 22:14:02 +0000648let canFoldAsLoad = 1, isReMaterializable = 1, isCodeGenOnly = 1 in
Bill Wendlingb8958b02010-12-08 01:57:09 +0000649def tLDRpci : T1pIs<(outs tGPR:$Rt), (ins t_addrmode_pc:$addr), IIC_iLoad_i,
Bill Wendling3f8c1102010-11-30 23:54:45 +0000650 "ldr", ".n\t$Rt, $addr",
651 [(set tGPR:$Rt, (load (ARMWrapper tconstpool:$addr)))]>,
652 T1Encoding<{0,1,0,0,1,?}> {
653 // A6.2 & A8.6.59
654 bits<3> Rt;
Bill Wendlingb8958b02010-12-08 01:57:09 +0000655 bits<8> addr;
Bill Wendling3f8c1102010-11-30 23:54:45 +0000656 let Inst{10-8} = Rt;
Bill Wendlingb8958b02010-12-08 01:57:09 +0000657 let Inst{7-0} = addr;
Bill Wendling3f8c1102010-11-30 23:54:45 +0000658}
Evan Chengfa775d02007-03-19 07:20:03 +0000659
Johnny Chen597fa652011-04-22 19:12:43 +0000660// FIXME: Remove this entry when the above ldr.n workaround is fixed.
661// For disassembly use only.
662def tLDRpciDIS : T1pIs<(outs tGPR:$Rt), (ins t_addrmode_pc:$addr), IIC_iLoad_i,
663 "ldr", "\t$Rt, $addr",
664 [/* disassembly only */]>,
665 T1Encoding<{0,1,0,0,1,?}> {
666 // A6.2 & A8.6.59
667 bits<3> Rt;
668 bits<8> addr;
669 let Inst{10-8} = Rt;
670 let Inst{7-0} = addr;
671}
672
Bill Wendlingb6faf652010-12-14 22:10:49 +0000673// A8.6.194 & A8.6.192
674defm tSTR : thumb_st_rr_ri_enc<0b000, 0b0110, t_addrmode_rrs4,
675 t_addrmode_is4, AddrModeT1_4,
676 IIC_iStore_r, IIC_iStore_i, "str",
677 BinOpFrag<(store node:$LHS, node:$RHS)>>;
Evan Chenga8e29892007-01-19 07:51:42 +0000678
Bill Wendlingb6faf652010-12-14 22:10:49 +0000679// A8.6.197 & A8.6.195
680defm tSTRB : thumb_st_rr_ri_enc<0b010, 0b0111, t_addrmode_rrs1,
681 t_addrmode_is1, AddrModeT1_1,
682 IIC_iStore_bh_r, IIC_iStore_bh_i, "strb",
683 BinOpFrag<(truncstorei8 node:$LHS, node:$RHS)>>;
Evan Chengc38f2bc2007-01-23 22:59:13 +0000684
Bill Wendlingb6faf652010-12-14 22:10:49 +0000685// A8.6.207 & A8.6.205
686defm tSTRH : thumb_st_rr_ri_enc<0b001, 0b1000, t_addrmode_rrs2,
Jim Grosbachf921c0fe2011-06-13 22:54:22 +0000687 t_addrmode_is2, AddrModeT1_2,
688 IIC_iStore_bh_r, IIC_iStore_bh_i, "strh",
689 BinOpFrag<(truncstorei16 node:$LHS, node:$RHS)>>;
Bill Wendling1fd374e2010-11-30 22:57:21 +0000690
Evan Chenga8e29892007-01-19 07:51:42 +0000691
Jim Grosbachd967cd02010-12-07 21:50:47 +0000692def tSTRspi : T1pIs<(outs), (ins tGPR:$Rt, t_addrmode_sp:$addr), IIC_iStore_i,
Bill Wendlingf4caf692010-12-14 03:36:38 +0000693 "str", "\t$Rt, $addr",
694 [(store tGPR:$Rt, t_addrmode_sp:$addr)]>,
Jim Grosbachd967cd02010-12-07 21:50:47 +0000695 T1LdStSP<{0,?,?}> {
696 bits<3> Rt;
697 bits<8> addr;
698 let Inst{10-8} = Rt;
699 let Inst{7-0} = addr;
700}
Evan Cheng8e59ea92007-02-07 00:06:56 +0000701
Evan Chenga8e29892007-01-19 07:51:42 +0000702//===----------------------------------------------------------------------===//
703// Load / store multiple Instructions.
704//
705
Bill Wendling6c470b82010-11-13 09:09:38 +0000706multiclass thumb_ldst_mult<string asm, InstrItinClass itin,
707 InstrItinClass itin_upd, bits<6> T1Enc,
Owen Anderson565a0362011-07-18 23:25:34 +0000708 bit L_bit, string baseOpc> {
Bill Wendling73fe34a2010-11-16 01:16:36 +0000709 def IA :
Bill Wendling6c470b82010-11-13 09:09:38 +0000710 T1I<(outs), (ins GPR:$Rn, pred:$p, reglist:$regs, variable_ops),
Bill Wendling73fe34a2010-11-16 01:16:36 +0000711 itin, !strconcat(asm, "ia${p}\t$Rn, $regs"), []>,
Bill Wendling6179c312010-11-20 00:53:35 +0000712 T1Encoding<T1Enc> {
713 bits<3> Rn;
714 bits<8> regs;
715 let Inst{10-8} = Rn;
716 let Inst{7-0} = regs;
717 }
Owen Anderson565a0362011-07-18 23:25:34 +0000718
Bill Wendling73fe34a2010-11-16 01:16:36 +0000719 def IA_UPD :
Owen Anderson565a0362011-07-18 23:25:34 +0000720 InstTemplate<AddrModeNone, 0, IndexModeNone, Pseudo, GenericDomain,
721 "$Rn = $wb", itin_upd>,
722 PseudoInstExpansion<(!cast<Instruction>(!strconcat(baseOpc, "IA"))
723 GPR:$Rn, pred:$p, reglist:$regs)> {
724 let Size = 2;
725 let OutOperandList = (outs GPR:$wb);
726 let InOperandList = (ins GPR:$Rn, pred:$p, reglist:$regs, variable_ops);
727 let Pattern = [];
728 let isCodeGenOnly = 1;
729 let isPseudo = 1;
730 list<Predicate> Predicates = [IsThumb];
Bill Wendling6179c312010-11-20 00:53:35 +0000731 }
Bill Wendling6c470b82010-11-13 09:09:38 +0000732}
733
Bill Wendling73fe34a2010-11-16 01:16:36 +0000734// These require base address to be written back or one of the loaded regs.
Bill Wendlingddc918b2010-11-13 10:57:02 +0000735let neverHasSideEffects = 1 in {
736
737let mayLoad = 1, hasExtraDefRegAllocReq = 1 in
738defm tLDM : thumb_ldst_mult<"ldm", IIC_iLoad_m, IIC_iLoad_mu,
Owen Anderson565a0362011-07-18 23:25:34 +0000739 {1,1,0,0,1,?}, 1, "tLDM">;
Bill Wendlingddc918b2010-11-13 10:57:02 +0000740
741let mayStore = 1, hasExtraSrcRegAllocReq = 1 in
742defm tSTM : thumb_ldst_mult<"stm", IIC_iStore_m, IIC_iStore_mu,
Owen Anderson565a0362011-07-18 23:25:34 +0000743 {1,1,0,0,0,?}, 0, "tSTM">;
Owen Anderson18901d62011-05-11 17:00:48 +0000744
Bill Wendlingddc918b2010-11-13 10:57:02 +0000745} // neverHasSideEffects
Evan Cheng4b322e52009-08-11 21:11:32 +0000746
Evan Cheng0d92f5f2009-10-01 08:22:27 +0000747let mayLoad = 1, Uses = [SP], Defs = [SP], hasExtraDefRegAllocReq = 1 in
Bill Wendling602890d2010-11-19 01:33:10 +0000748def tPOP : T1I<(outs), (ins pred:$p, reglist:$regs, variable_ops),
Evan Chenga0792de2010-10-06 06:27:31 +0000749 IIC_iPop,
Bill Wendling602890d2010-11-19 01:33:10 +0000750 "pop${p}\t$regs", []>,
751 T1Misc<{1,1,0,?,?,?,?}> {
752 bits<16> regs;
Bill Wendling602890d2010-11-19 01:33:10 +0000753 let Inst{8} = regs{15};
754 let Inst{7-0} = regs{7-0};
755}
Evan Cheng4b322e52009-08-11 21:11:32 +0000756
Evan Cheng0d92f5f2009-10-01 08:22:27 +0000757let mayStore = 1, Uses = [SP], Defs = [SP], hasExtraSrcRegAllocReq = 1 in
Bill Wendling6179c312010-11-20 00:53:35 +0000758def tPUSH : T1I<(outs), (ins pred:$p, reglist:$regs, variable_ops),
Evan Chenga0792de2010-10-06 06:27:31 +0000759 IIC_iStore_m,
Bill Wendling6179c312010-11-20 00:53:35 +0000760 "push${p}\t$regs", []>,
761 T1Misc<{0,1,0,?,?,?,?}> {
762 bits<16> regs;
763 let Inst{8} = regs{14};
764 let Inst{7-0} = regs{7-0};
765}
Evan Chenga8e29892007-01-19 07:51:42 +0000766
767//===----------------------------------------------------------------------===//
768// Arithmetic Instructions.
769//
770
Bill Wendling1d045ee2010-12-01 02:28:08 +0000771// Helper classes for encoding T1pI patterns:
772class T1pIDPEncode<bits<4> opA, dag oops, dag iops, InstrItinClass itin,
773 string opc, string asm, list<dag> pattern>
774 : T1pI<oops, iops, itin, opc, asm, pattern>,
775 T1DataProcessing<opA> {
776 bits<3> Rm;
777 bits<3> Rn;
778 let Inst{5-3} = Rm;
779 let Inst{2-0} = Rn;
780}
781class T1pIMiscEncode<bits<7> opA, dag oops, dag iops, InstrItinClass itin,
782 string opc, string asm, list<dag> pattern>
783 : T1pI<oops, iops, itin, opc, asm, pattern>,
784 T1Misc<opA> {
785 bits<3> Rm;
786 bits<3> Rd;
787 let Inst{5-3} = Rm;
788 let Inst{2-0} = Rd;
789}
790
Bill Wendling76f4e102010-12-01 01:20:15 +0000791// Helper classes for encoding T1sI patterns:
792class T1sIDPEncode<bits<4> opA, dag oops, dag iops, InstrItinClass itin,
793 string opc, string asm, list<dag> pattern>
794 : T1sI<oops, iops, itin, opc, asm, pattern>,
795 T1DataProcessing<opA> {
796 bits<3> Rd;
797 bits<3> Rn;
798 let Inst{5-3} = Rn;
799 let Inst{2-0} = Rd;
800}
801class T1sIGenEncode<bits<5> opA, dag oops, dag iops, InstrItinClass itin,
802 string opc, string asm, list<dag> pattern>
803 : T1sI<oops, iops, itin, opc, asm, pattern>,
804 T1General<opA> {
805 bits<3> Rm;
806 bits<3> Rn;
807 bits<3> Rd;
808 let Inst{8-6} = Rm;
809 let Inst{5-3} = Rn;
810 let Inst{2-0} = Rd;
811}
812class T1sIGenEncodeImm<bits<5> opA, dag oops, dag iops, InstrItinClass itin,
813 string opc, string asm, list<dag> pattern>
814 : T1sI<oops, iops, itin, opc, asm, pattern>,
815 T1General<opA> {
816 bits<3> Rd;
817 bits<3> Rm;
818 let Inst{5-3} = Rm;
819 let Inst{2-0} = Rd;
820}
821
822// Helper classes for encoding T1sIt patterns:
Bill Wendlinga5a42d92010-12-01 00:48:44 +0000823class T1sItDPEncode<bits<4> opA, dag oops, dag iops, InstrItinClass itin,
824 string opc, string asm, list<dag> pattern>
825 : T1sIt<oops, iops, itin, opc, asm, pattern>,
826 T1DataProcessing<opA> {
Bill Wendling3f8c1102010-11-30 23:54:45 +0000827 bits<3> Rdn;
828 bits<3> Rm;
Bill Wendlinga5a42d92010-12-01 00:48:44 +0000829 let Inst{5-3} = Rm;
830 let Inst{2-0} = Rdn;
Bill Wendling95a6d172010-11-20 01:00:29 +0000831}
Bill Wendlinga5a42d92010-12-01 00:48:44 +0000832class T1sItGenEncodeImm<bits<5> opA, dag oops, dag iops, InstrItinClass itin,
833 string opc, string asm, list<dag> pattern>
834 : T1sIt<oops, iops, itin, opc, asm, pattern>,
835 T1General<opA> {
836 bits<3> Rdn;
837 bits<8> imm8;
838 let Inst{10-8} = Rdn;
839 let Inst{7-0} = imm8;
840}
841
842// Add with carry register
843let isCommutable = 1, Uses = [CPSR] in
844def tADC : // A8.6.2
845 T1sItDPEncode<0b0101, (outs tGPR:$Rdn), (ins tGPR:$Rn, tGPR:$Rm), IIC_iALUr,
846 "adc", "\t$Rdn, $Rm",
847 [(set tGPR:$Rdn, (adde tGPR:$Rn, tGPR:$Rm))]>;
Evan Cheng53d7dba2007-01-27 00:07:15 +0000848
David Goodwinc9ee1182009-06-25 22:49:55 +0000849// Add immediate
Bill Wendling76f4e102010-12-01 01:20:15 +0000850def tADDi3 : // A8.6.4 T1
Jim Grosbachf921c0fe2011-06-13 22:54:22 +0000851 T1sIGenEncodeImm<0b01110, (outs tGPR:$Rd), (ins tGPR:$Rm, i32imm:$imm3),
852 IIC_iALUi,
Bill Wendling76f4e102010-12-01 01:20:15 +0000853 "add", "\t$Rd, $Rm, $imm3",
854 [(set tGPR:$Rd, (add tGPR:$Rm, imm0_7:$imm3))]> {
Bill Wendling95a6d172010-11-20 01:00:29 +0000855 bits<3> imm3;
856 let Inst{8-6} = imm3;
Bill Wendling95a6d172010-11-20 01:00:29 +0000857}
Evan Chenga8e29892007-01-19 07:51:42 +0000858
Bill Wendlinga5a42d92010-12-01 00:48:44 +0000859def tADDi8 : // A8.6.4 T2
860 T1sItGenEncodeImm<{1,1,0,?,?}, (outs tGPR:$Rdn), (ins tGPR:$Rn, i32imm:$imm8),
861 IIC_iALUi,
862 "add", "\t$Rdn, $imm8",
863 [(set tGPR:$Rdn, (add tGPR:$Rn, imm8_255:$imm8))]>;
Evan Chenga8e29892007-01-19 07:51:42 +0000864
David Goodwinc9ee1182009-06-25 22:49:55 +0000865// Add register
Evan Cheng446c4282009-07-11 06:43:01 +0000866let isCommutable = 1 in
Bill Wendling76f4e102010-12-01 01:20:15 +0000867def tADDrr : // A8.6.6 T1
868 T1sIGenEncode<0b01100, (outs tGPR:$Rd), (ins tGPR:$Rn, tGPR:$Rm),
869 IIC_iALUr,
870 "add", "\t$Rd, $Rn, $Rm",
871 [(set tGPR:$Rd, (add tGPR:$Rn, tGPR:$Rm))]>;
Evan Chenga8e29892007-01-19 07:51:42 +0000872
Evan Chengcd799b92009-06-12 20:46:18 +0000873let neverHasSideEffects = 1 in
Bill Wendling0b424dc2010-12-01 01:32:02 +0000874def tADDhirr : T1pIt<(outs GPR:$Rdn), (ins GPR:$Rn, GPR:$Rm), IIC_iALUr,
875 "add", "\t$Rdn, $Rm", []>,
Bill Wendlinga09cc2b2010-11-20 01:18:47 +0000876 T1Special<{0,0,?,?}> {
877 // A8.6.6 T2
Bill Wendling0b424dc2010-12-01 01:32:02 +0000878 bits<4> Rdn;
879 bits<4> Rm;
880 let Inst{7} = Rdn{3};
881 let Inst{6-3} = Rm;
882 let Inst{2-0} = Rdn{2-0};
Bill Wendlinga09cc2b2010-11-20 01:18:47 +0000883}
Evan Chenga8e29892007-01-19 07:51:42 +0000884
Bill Wendlinga09cc2b2010-11-20 01:18:47 +0000885// AND register
Evan Cheng446c4282009-07-11 06:43:01 +0000886let isCommutable = 1 in
Bill Wendlinga5a42d92010-12-01 00:48:44 +0000887def tAND : // A8.6.12
888 T1sItDPEncode<0b0000, (outs tGPR:$Rdn), (ins tGPR:$Rn, tGPR:$Rm),
889 IIC_iBITr,
890 "and", "\t$Rdn, $Rm",
891 [(set tGPR:$Rdn, (and tGPR:$Rn, tGPR:$Rm))]>;
Evan Chenga8e29892007-01-19 07:51:42 +0000892
David Goodwinc9ee1182009-06-25 22:49:55 +0000893// ASR immediate
Bill Wendling76f4e102010-12-01 01:20:15 +0000894def tASRri : // A8.6.14
Owen Anderson6d746312011-08-08 20:42:17 +0000895 T1sIGenEncodeImm<{0,1,0,?,?}, (outs tGPR:$Rd), (ins tGPR:$Rm, imm_sr:$imm5),
Bill Wendling76f4e102010-12-01 01:20:15 +0000896 IIC_iMOVsi,
897 "asr", "\t$Rd, $Rm, $imm5",
Owen Anderson6d746312011-08-08 20:42:17 +0000898 [(set tGPR:$Rd, (sra tGPR:$Rm, (i32 imm_sr:$imm5)))]> {
Bill Wendlinga09cc2b2010-11-20 01:18:47 +0000899 bits<5> imm5;
900 let Inst{10-6} = imm5;
Bill Wendlinga09cc2b2010-11-20 01:18:47 +0000901}
Evan Chenga8e29892007-01-19 07:51:42 +0000902
David Goodwinc9ee1182009-06-25 22:49:55 +0000903// ASR register
Bill Wendlinga5a42d92010-12-01 00:48:44 +0000904def tASRrr : // A8.6.15
905 T1sItDPEncode<0b0100, (outs tGPR:$Rdn), (ins tGPR:$Rn, tGPR:$Rm),
906 IIC_iMOVsr,
907 "asr", "\t$Rdn, $Rm",
908 [(set tGPR:$Rdn, (sra tGPR:$Rn, tGPR:$Rm))]>;
Evan Chenga8e29892007-01-19 07:51:42 +0000909
David Goodwinc9ee1182009-06-25 22:49:55 +0000910// BIC register
Bill Wendlinga5a42d92010-12-01 00:48:44 +0000911def tBIC : // A8.6.20
912 T1sItDPEncode<0b1110, (outs tGPR:$Rdn), (ins tGPR:$Rn, tGPR:$Rm),
913 IIC_iBITr,
914 "bic", "\t$Rdn, $Rm",
915 [(set tGPR:$Rdn, (and tGPR:$Rn, (not tGPR:$Rm)))]>;
Evan Chenga8e29892007-01-19 07:51:42 +0000916
David Goodwinc9ee1182009-06-25 22:49:55 +0000917// CMN register
Gabor Greiff7d10f52010-09-14 22:00:50 +0000918let isCompare = 1, Defs = [CPSR] in {
Jim Grosbachd5d2bae2010-01-22 00:08:13 +0000919//FIXME: Disable CMN, as CCodes are backwards from compare expectations
920// Compare-to-zero still works out, just not the relationals
Bill Wendling0480e282010-12-01 02:36:55 +0000921//def tCMN : // A8.6.33
922// T1pIDPEncode<0b1011, (outs), (ins tGPR:$lhs, tGPR:$rhs),
923// IIC_iCMPr,
924// "cmn", "\t$lhs, $rhs",
925// [(ARMcmp tGPR:$lhs, (ineg tGPR:$rhs))]>;
Bill Wendling1d045ee2010-12-01 02:28:08 +0000926
927def tCMNz : // A8.6.33
928 T1pIDPEncode<0b1011, (outs), (ins tGPR:$Rn, tGPR:$Rm),
929 IIC_iCMPr,
930 "cmn", "\t$Rn, $Rm",
931 [(ARMcmpZ tGPR:$Rn, (ineg tGPR:$Rm))]>;
932
933} // isCompare = 1, Defs = [CPSR]
Lauro Ramos Venancio99966632007-04-02 01:30:03 +0000934
David Goodwinc9ee1182009-06-25 22:49:55 +0000935// CMP immediate
Gabor Greiff7d10f52010-09-14 22:00:50 +0000936let isCompare = 1, Defs = [CPSR] in {
Bill Wendling5cc88a22010-11-20 22:52:33 +0000937def tCMPi8 : T1pI<(outs), (ins tGPR:$Rn, i32imm:$imm8), IIC_iCMPi,
938 "cmp", "\t$Rn, $imm8",
939 [(ARMcmp tGPR:$Rn, imm0_255:$imm8)]>,
940 T1General<{1,0,1,?,?}> {
941 // A8.6.35
942 bits<3> Rn;
943 bits<8> imm8;
944 let Inst{10-8} = Rn;
945 let Inst{7-0} = imm8;
946}
947
David Goodwinc9ee1182009-06-25 22:49:55 +0000948// CMP register
Bill Wendling1d045ee2010-12-01 02:28:08 +0000949def tCMPr : // A8.6.36 T1
950 T1pIDPEncode<0b1010, (outs), (ins tGPR:$Rn, tGPR:$Rm),
951 IIC_iCMPr,
952 "cmp", "\t$Rn, $Rm",
953 [(ARMcmp tGPR:$Rn, tGPR:$Rm)]>;
954
Bill Wendling849f2e32010-11-29 00:18:15 +0000955def tCMPhir : T1pI<(outs), (ins GPR:$Rn, GPR:$Rm), IIC_iCMPr,
956 "cmp", "\t$Rn, $Rm", []>,
957 T1Special<{0,1,?,?}> {
958 // A8.6.36 T2
959 bits<4> Rm;
960 bits<4> Rn;
961 let Inst{7} = Rn{3};
962 let Inst{6-3} = Rm;
963 let Inst{2-0} = Rn{2-0};
964}
Bill Wendling5cc88a22010-11-20 22:52:33 +0000965} // isCompare = 1, Defs = [CPSR]
Lauro Ramos Venancio99966632007-04-02 01:30:03 +0000966
Evan Chenga8e29892007-01-19 07:51:42 +0000967
David Goodwinc9ee1182009-06-25 22:49:55 +0000968// XOR register
Evan Cheng446c4282009-07-11 06:43:01 +0000969let isCommutable = 1 in
Bill Wendlinga5a42d92010-12-01 00:48:44 +0000970def tEOR : // A8.6.45
971 T1sItDPEncode<0b0001, (outs tGPR:$Rdn), (ins tGPR:$Rn, tGPR:$Rm),
972 IIC_iBITr,
973 "eor", "\t$Rdn, $Rm",
974 [(set tGPR:$Rdn, (xor tGPR:$Rn, tGPR:$Rm))]>;
Evan Chenga8e29892007-01-19 07:51:42 +0000975
David Goodwinc9ee1182009-06-25 22:49:55 +0000976// LSL immediate
Bill Wendling76f4e102010-12-01 01:20:15 +0000977def tLSLri : // A8.6.88
978 T1sIGenEncodeImm<{0,0,0,?,?}, (outs tGPR:$Rd), (ins tGPR:$Rm, i32imm:$imm5),
979 IIC_iMOVsi,
980 "lsl", "\t$Rd, $Rm, $imm5",
981 [(set tGPR:$Rd, (shl tGPR:$Rm, (i32 imm:$imm5)))]> {
Bill Wendlingdcf0a472010-11-21 11:49:36 +0000982 bits<5> imm5;
983 let Inst{10-6} = imm5;
Bill Wendlingdcf0a472010-11-21 11:49:36 +0000984}
Evan Chenga8e29892007-01-19 07:51:42 +0000985
David Goodwinc9ee1182009-06-25 22:49:55 +0000986// LSL register
Bill Wendlinga5a42d92010-12-01 00:48:44 +0000987def tLSLrr : // A8.6.89
988 T1sItDPEncode<0b0010, (outs tGPR:$Rdn), (ins tGPR:$Rn, tGPR:$Rm),
989 IIC_iMOVsr,
990 "lsl", "\t$Rdn, $Rm",
991 [(set tGPR:$Rdn, (shl tGPR:$Rn, tGPR:$Rm))]>;
Evan Chenga8e29892007-01-19 07:51:42 +0000992
David Goodwinc9ee1182009-06-25 22:49:55 +0000993// LSR immediate
Bill Wendling76f4e102010-12-01 01:20:15 +0000994def tLSRri : // A8.6.90
Owen Anderson6d746312011-08-08 20:42:17 +0000995 T1sIGenEncodeImm<{0,0,1,?,?}, (outs tGPR:$Rd), (ins tGPR:$Rm, imm_sr:$imm5),
Bill Wendling76f4e102010-12-01 01:20:15 +0000996 IIC_iMOVsi,
997 "lsr", "\t$Rd, $Rm, $imm5",
Owen Anderson6d746312011-08-08 20:42:17 +0000998 [(set tGPR:$Rd, (srl tGPR:$Rm, (i32 imm_sr:$imm5)))]> {
Bill Wendlingdcf0a472010-11-21 11:49:36 +0000999 bits<5> imm5;
1000 let Inst{10-6} = imm5;
Bill Wendlingdcf0a472010-11-21 11:49:36 +00001001}
Evan Chenga8e29892007-01-19 07:51:42 +00001002
David Goodwinc9ee1182009-06-25 22:49:55 +00001003// LSR register
Bill Wendlinga5a42d92010-12-01 00:48:44 +00001004def tLSRrr : // A8.6.91
1005 T1sItDPEncode<0b0011, (outs tGPR:$Rdn), (ins tGPR:$Rn, tGPR:$Rm),
1006 IIC_iMOVsr,
1007 "lsr", "\t$Rdn, $Rm",
1008 [(set tGPR:$Rdn, (srl tGPR:$Rn, tGPR:$Rm))]>;
Evan Chenga8e29892007-01-19 07:51:42 +00001009
Bill Wendlingdcf0a472010-11-21 11:49:36 +00001010// Move register
Evan Chengc4af4632010-11-17 20:13:28 +00001011let isMoveImm = 1 in
Jim Grosbach6b8f1e32011-06-27 23:54:06 +00001012def tMOVi8 : T1sI<(outs tGPR:$Rd), (ins imm0_255:$imm8), IIC_iMOVi,
Bill Wendlingdcf0a472010-11-21 11:49:36 +00001013 "mov", "\t$Rd, $imm8",
1014 [(set tGPR:$Rd, imm0_255:$imm8)]>,
1015 T1General<{1,0,0,?,?}> {
1016 // A8.6.96
1017 bits<3> Rd;
1018 bits<8> imm8;
1019 let Inst{10-8} = Rd;
1020 let Inst{7-0} = imm8;
1021}
Evan Chenga8e29892007-01-19 07:51:42 +00001022
Jim Grosbachefeedce2011-07-01 17:14:11 +00001023// A7-73: MOV(2) - mov setting flag.
Evan Chenga8e29892007-01-19 07:51:42 +00001024
Evan Chengcd799b92009-06-12 20:46:18 +00001025let neverHasSideEffects = 1 in {
Jim Grosbach2a7b41b2011-06-30 23:38:17 +00001026def tMOVr : Thumb1pI<(outs GPR:$Rd), (ins GPR:$Rm), AddrModeNone,
Owen Anderson16884412011-07-13 23:22:26 +00001027 2, IIC_iMOVr,
Jim Grosbach63b46fa2011-06-30 22:10:46 +00001028 "mov", "\t$Rd, $Rm", "", []>,
Jim Grosbach2a7b41b2011-06-30 23:38:17 +00001029 T1Special<{1,0,?,?}> {
Bill Wendling534a5e42010-12-03 01:55:47 +00001030 // A8.6.97
1031 bits<4> Rd;
1032 bits<4> Rm;
Jim Grosbach2a7b41b2011-06-30 23:38:17 +00001033 let Inst{7} = Rd{3};
1034 let Inst{6-3} = Rm;
Bill Wendling534a5e42010-12-03 01:55:47 +00001035 let Inst{2-0} = Rd{2-0};
1036}
Evan Cheng446c4282009-07-11 06:43:01 +00001037let Defs = [CPSR] in
Bill Wendling534a5e42010-12-03 01:55:47 +00001038def tMOVSr : T1I<(outs tGPR:$Rd), (ins tGPR:$Rm), IIC_iMOVr,
1039 "movs\t$Rd, $Rm", []>, Encoding16 {
1040 // A8.6.97
1041 bits<3> Rd;
1042 bits<3> Rm;
Johnny Chend68e1192009-12-15 17:24:14 +00001043 let Inst{15-6} = 0b0000000000;
Bill Wendling534a5e42010-12-03 01:55:47 +00001044 let Inst{5-3} = Rm;
1045 let Inst{2-0} = Rd;
Johnny Chend68e1192009-12-15 17:24:14 +00001046}
Evan Chengcd799b92009-06-12 20:46:18 +00001047} // neverHasSideEffects
Evan Chenga8e29892007-01-19 07:51:42 +00001048
Bill Wendling0480e282010-12-01 02:36:55 +00001049// Multiply register
Evan Cheng446c4282009-07-11 06:43:01 +00001050let isCommutable = 1 in
Bill Wendlinga5a42d92010-12-01 00:48:44 +00001051def tMUL : // A8.6.105 T1
1052 T1sItDPEncode<0b1101, (outs tGPR:$Rdn), (ins tGPR:$Rn, tGPR:$Rm),
1053 IIC_iMUL32,
1054 "mul", "\t$Rdn, $Rm, $Rdn",
1055 [(set tGPR:$Rdn, (mul tGPR:$Rn, tGPR:$Rm))]>;
Evan Chenga8e29892007-01-19 07:51:42 +00001056
Bill Wendling76f4e102010-12-01 01:20:15 +00001057// Move inverse register
1058def tMVN : // A8.6.107
1059 T1sIDPEncode<0b1111, (outs tGPR:$Rd), (ins tGPR:$Rn), IIC_iMVNr,
1060 "mvn", "\t$Rd, $Rn",
1061 [(set tGPR:$Rd, (not tGPR:$Rn))]>;
Evan Chenga8e29892007-01-19 07:51:42 +00001062
Bill Wendlingdcf0a472010-11-21 11:49:36 +00001063// Bitwise or register
Evan Cheng446c4282009-07-11 06:43:01 +00001064let isCommutable = 1 in
Bill Wendlinga5a42d92010-12-01 00:48:44 +00001065def tORR : // A8.6.114
1066 T1sItDPEncode<0b1100, (outs tGPR:$Rdn), (ins tGPR:$Rn, tGPR:$Rm),
1067 IIC_iBITr,
1068 "orr", "\t$Rdn, $Rm",
1069 [(set tGPR:$Rdn, (or tGPR:$Rn, tGPR:$Rm))]>;
Evan Chenga8e29892007-01-19 07:51:42 +00001070
Bill Wendlingdcf0a472010-11-21 11:49:36 +00001071// Swaps
Bill Wendling1d045ee2010-12-01 02:28:08 +00001072def tREV : // A8.6.134
1073 T1pIMiscEncode<{1,0,1,0,0,0,?}, (outs tGPR:$Rd), (ins tGPR:$Rm),
1074 IIC_iUNAr,
1075 "rev", "\t$Rd, $Rm",
1076 [(set tGPR:$Rd, (bswap tGPR:$Rm))]>,
1077 Requires<[IsThumb, IsThumb1Only, HasV6]>;
Evan Chenga8e29892007-01-19 07:51:42 +00001078
Bill Wendling1d045ee2010-12-01 02:28:08 +00001079def tREV16 : // A8.6.135
1080 T1pIMiscEncode<{1,0,1,0,0,1,?}, (outs tGPR:$Rd), (ins tGPR:$Rm),
1081 IIC_iUNAr,
1082 "rev16", "\t$Rd, $Rm",
Evan Cheng9568e5c2011-06-21 06:01:08 +00001083 [(set tGPR:$Rd, (rotr (bswap tGPR:$Rm), (i32 16)))]>,
Bill Wendling1d045ee2010-12-01 02:28:08 +00001084 Requires<[IsThumb, IsThumb1Only, HasV6]>;
Evan Chenga8e29892007-01-19 07:51:42 +00001085
Bill Wendling1d045ee2010-12-01 02:28:08 +00001086def tREVSH : // A8.6.136
1087 T1pIMiscEncode<{1,0,1,0,1,1,?}, (outs tGPR:$Rd), (ins tGPR:$Rm),
1088 IIC_iUNAr,
1089 "revsh", "\t$Rd, $Rm",
Evan Cheng9568e5c2011-06-21 06:01:08 +00001090 [(set tGPR:$Rd, (sra (bswap tGPR:$Rm), (i32 16)))]>,
Bill Wendling1d045ee2010-12-01 02:28:08 +00001091 Requires<[IsThumb, IsThumb1Only, HasV6]>;
Evan Cheng446c4282009-07-11 06:43:01 +00001092
Bill Wendlinga5a42d92010-12-01 00:48:44 +00001093// Rotate right register
1094def tROR : // A8.6.139
1095 T1sItDPEncode<0b0111, (outs tGPR:$Rdn), (ins tGPR:$Rn, tGPR:$Rm),
1096 IIC_iMOVsr,
1097 "ror", "\t$Rdn, $Rm",
1098 [(set tGPR:$Rdn, (rotr tGPR:$Rn, tGPR:$Rm))]>;
Evan Cheng446c4282009-07-11 06:43:01 +00001099
Bill Wendlinga5a42d92010-12-01 00:48:44 +00001100// Negate register
Bill Wendling76f4e102010-12-01 01:20:15 +00001101def tRSB : // A8.6.141
1102 T1sIDPEncode<0b1001, (outs tGPR:$Rd), (ins tGPR:$Rn),
1103 IIC_iALUi,
1104 "rsb", "\t$Rd, $Rn, #0",
1105 [(set tGPR:$Rd, (ineg tGPR:$Rn))]>;
Evan Chenga8e29892007-01-19 07:51:42 +00001106
David Goodwinc9ee1182009-06-25 22:49:55 +00001107// Subtract with carry register
Evan Cheng446c4282009-07-11 06:43:01 +00001108let Uses = [CPSR] in
Bill Wendlinga5a42d92010-12-01 00:48:44 +00001109def tSBC : // A8.6.151
1110 T1sItDPEncode<0b0110, (outs tGPR:$Rdn), (ins tGPR:$Rn, tGPR:$Rm),
1111 IIC_iALUr,
1112 "sbc", "\t$Rdn, $Rm",
1113 [(set tGPR:$Rdn, (sube tGPR:$Rn, tGPR:$Rm))]>;
Evan Chenga8e29892007-01-19 07:51:42 +00001114
David Goodwinc9ee1182009-06-25 22:49:55 +00001115// Subtract immediate
Bill Wendling76f4e102010-12-01 01:20:15 +00001116def tSUBi3 : // A8.6.210 T1
1117 T1sIGenEncodeImm<0b01111, (outs tGPR:$Rd), (ins tGPR:$Rm, i32imm:$imm3),
1118 IIC_iALUi,
1119 "sub", "\t$Rd, $Rm, $imm3",
1120 [(set tGPR:$Rd, (add tGPR:$Rm, imm0_7_neg:$imm3))]> {
Bill Wendling5cbbf682010-11-29 01:00:43 +00001121 bits<3> imm3;
Bill Wendling5cbbf682010-11-29 01:00:43 +00001122 let Inst{8-6} = imm3;
Bill Wendling5cbbf682010-11-29 01:00:43 +00001123}
Jim Grosbach0ede14f2009-03-27 23:06:27 +00001124
Bill Wendlinga5a42d92010-12-01 00:48:44 +00001125def tSUBi8 : // A8.6.210 T2
1126 T1sItGenEncodeImm<{1,1,1,?,?}, (outs tGPR:$Rdn), (ins tGPR:$Rn, i32imm:$imm8),
1127 IIC_iALUi,
1128 "sub", "\t$Rdn, $imm8",
1129 [(set tGPR:$Rdn, (add tGPR:$Rn, imm8_255_neg:$imm8))]>;
Jim Grosbach0ede14f2009-03-27 23:06:27 +00001130
Bill Wendling76f4e102010-12-01 01:20:15 +00001131// Subtract register
1132def tSUBrr : // A8.6.212
1133 T1sIGenEncode<0b01101, (outs tGPR:$Rd), (ins tGPR:$Rn, tGPR:$Rm),
1134 IIC_iALUr,
1135 "sub", "\t$Rd, $Rn, $Rm",
1136 [(set tGPR:$Rd, (sub tGPR:$Rn, tGPR:$Rm))]>;
David Goodwinc9ee1182009-06-25 22:49:55 +00001137
1138// TODO: A7-96: STMIA - store multiple.
Evan Chenga8e29892007-01-19 07:51:42 +00001139
Bill Wendling76f4e102010-12-01 01:20:15 +00001140// Sign-extend byte
Bill Wendling1d045ee2010-12-01 02:28:08 +00001141def tSXTB : // A8.6.222
1142 T1pIMiscEncode<{0,0,1,0,0,1,?}, (outs tGPR:$Rd), (ins tGPR:$Rm),
1143 IIC_iUNAr,
1144 "sxtb", "\t$Rd, $Rm",
1145 [(set tGPR:$Rd, (sext_inreg tGPR:$Rm, i8))]>,
1146 Requires<[IsThumb, IsThumb1Only, HasV6]>;
David Goodwinc9ee1182009-06-25 22:49:55 +00001147
Bill Wendling1d045ee2010-12-01 02:28:08 +00001148// Sign-extend short
1149def tSXTH : // A8.6.224
1150 T1pIMiscEncode<{0,0,1,0,0,0,?}, (outs tGPR:$Rd), (ins tGPR:$Rm),
1151 IIC_iUNAr,
1152 "sxth", "\t$Rd, $Rm",
1153 [(set tGPR:$Rd, (sext_inreg tGPR:$Rm, i16))]>,
1154 Requires<[IsThumb, IsThumb1Only, HasV6]>;
Evan Chenga8e29892007-01-19 07:51:42 +00001155
Bill Wendling1d045ee2010-12-01 02:28:08 +00001156// Test
Gabor Greif007248b2010-09-14 20:47:43 +00001157let isCompare = 1, isCommutable = 1, Defs = [CPSR] in
Bill Wendling1d045ee2010-12-01 02:28:08 +00001158def tTST : // A8.6.230
1159 T1pIDPEncode<0b1000, (outs), (ins tGPR:$Rn, tGPR:$Rm), IIC_iTSTr,
1160 "tst", "\t$Rn, $Rm",
1161 [(ARMcmpZ (and_su tGPR:$Rn, tGPR:$Rm), 0)]>;
Evan Chenga8e29892007-01-19 07:51:42 +00001162
Bill Wendling1d045ee2010-12-01 02:28:08 +00001163// Zero-extend byte
1164def tUXTB : // A8.6.262
1165 T1pIMiscEncode<{0,0,1,0,1,1,?}, (outs tGPR:$Rd), (ins tGPR:$Rm),
1166 IIC_iUNAr,
1167 "uxtb", "\t$Rd, $Rm",
1168 [(set tGPR:$Rd, (and tGPR:$Rm, 0xFF))]>,
1169 Requires<[IsThumb, IsThumb1Only, HasV6]>;
David Goodwinc9ee1182009-06-25 22:49:55 +00001170
Bill Wendling1d045ee2010-12-01 02:28:08 +00001171// Zero-extend short
1172def tUXTH : // A8.6.264
1173 T1pIMiscEncode<{0,0,1,0,1,0,?}, (outs tGPR:$Rd), (ins tGPR:$Rm),
1174 IIC_iUNAr,
1175 "uxth", "\t$Rd, $Rm",
1176 [(set tGPR:$Rd, (and tGPR:$Rm, 0xFFFF))]>,
1177 Requires<[IsThumb, IsThumb1Only, HasV6]>;
Evan Chenga8e29892007-01-19 07:51:42 +00001178
Jim Grosbach80dc1162010-02-16 21:23:02 +00001179// Conditional move tMOVCCr - Used to implement the Thumb SELECT_CC operation.
Dan Gohman533297b2009-10-29 18:10:34 +00001180// Expanded after instruction selection into a branch sequence.
1181let usesCustomInserter = 1 in // Expanded after instruction selection.
Evan Cheng007ea272009-08-12 05:17:19 +00001182 def tMOVCCr_pseudo :
Evan Chengc9721652009-08-12 02:03:03 +00001183 PseudoInst<(outs tGPR:$dst), (ins tGPR:$false, tGPR:$true, pred:$cc),
Jim Grosbach99594eb2010-11-18 01:38:26 +00001184 NoItinerary,
Evan Chengc9721652009-08-12 02:03:03 +00001185 [/*(set tGPR:$dst, (ARMcmov tGPR:$false, tGPR:$true, imm:$cc))*/]>;
Evan Chenga8e29892007-01-19 07:51:42 +00001186
1187// tLEApcrel - Load a pc-relative address into a register without offending the
1188// assembler.
Jim Grosbachd40963c2010-12-14 22:28:03 +00001189
1190def tADR : T1I<(outs tGPR:$Rd), (ins t_adrlabel:$addr, pred:$p),
1191 IIC_iALUi, "adr{$p}\t$Rd, #$addr", []>,
1192 T1Encoding<{1,0,1,0,0,?}> {
Bill Wendling67077412010-11-30 00:18:30 +00001193 bits<3> Rd;
Jim Grosbachd40963c2010-12-14 22:28:03 +00001194 bits<8> addr;
Bill Wendling67077412010-11-30 00:18:30 +00001195 let Inst{10-8} = Rd;
Jim Grosbachd40963c2010-12-14 22:28:03 +00001196 let Inst{7-0} = addr;
Owen Anderson8d7d2e12011-08-09 20:55:18 +00001197 let DecoderMethod = "DecodeThumbAddSpecialReg";
Bill Wendling67077412010-11-30 00:18:30 +00001198}
Evan Chenga8e29892007-01-19 07:51:42 +00001199
Jim Grosbachd40963c2010-12-14 22:28:03 +00001200let neverHasSideEffects = 1, isReMaterializable = 1 in
1201def tLEApcrel : tPseudoInst<(outs tGPR:$Rd), (ins i32imm:$label, pred:$p),
Owen Anderson16884412011-07-13 23:22:26 +00001202 2, IIC_iALUi, []>;
Jim Grosbachd40963c2010-12-14 22:28:03 +00001203
1204def tLEApcrelJT : tPseudoInst<(outs tGPR:$Rd),
1205 (ins i32imm:$label, nohash_imm:$id, pred:$p),
Owen Anderson16884412011-07-13 23:22:26 +00001206 2, IIC_iALUi, []>;
Evan Chengd85ac4d2007-01-27 02:29:45 +00001207
Evan Chenga8e29892007-01-19 07:51:42 +00001208//===----------------------------------------------------------------------===//
Lauro Ramos Venancio64f4fa52007-04-27 13:54:47 +00001209// TLS Instructions
1210//
1211
1212// __aeabi_read_tp preserves the registers r1-r3.
Jim Grosbachff97eb02011-06-30 19:38:01 +00001213// This is a pseudo inst so that we can get the encoding right,
1214// complete with fixup for the aeabi_read_tp function.
1215let isCall = 1, Defs = [R0, R12, LR, CPSR], Uses = [SP] in
Owen Anderson16884412011-07-13 23:22:26 +00001216def tTPsoft : tPseudoInst<(outs), (ins), 4, IIC_Br,
Jim Grosbachff97eb02011-06-30 19:38:01 +00001217 [(set R0, ARMthread_pointer)]>;
Lauro Ramos Venancio64f4fa52007-04-27 13:54:47 +00001218
Bill Wendling0480e282010-12-01 02:36:55 +00001219//===----------------------------------------------------------------------===//
Jim Grosbachd1228742009-12-01 18:10:36 +00001220// SJLJ Exception handling intrinsics
Owen Anderson18901d62011-05-11 17:00:48 +00001221//
Bill Wendling0480e282010-12-01 02:36:55 +00001222
1223// eh_sjlj_setjmp() is an instruction sequence to store the return address and
1224// save #0 in R0 for the non-longjmp case. Since by its nature we may be coming
1225// from some other function to get here, and we're using the stack frame for the
1226// containing function to save/restore registers, we can't keep anything live in
1227// regs across the eh_sjlj_setjmp(), else it will almost certainly have been
Chris Lattner7a2bdde2011-04-15 05:18:47 +00001228// tromped upon when we get here from a longjmp(). We force everything out of
Bill Wendling0480e282010-12-01 02:36:55 +00001229// registers except for our own input by listing the relevant registers in
1230// Defs. By doing so, we also cause the prologue/epilogue code to actively
1231// preserve all of the callee-saved resgisters, which is exactly what we want.
1232// $val is a scratch register for our use.
Andrew Tricka1099f12011-06-07 00:08:49 +00001233let Defs = [ R0, R1, R2, R3, R4, R5, R6, R7, R12, CPSR ],
Bill Wendling0e45a5a2010-11-30 00:50:22 +00001234 hasSideEffects = 1, isBarrier = 1, isCodeGenOnly = 1 in
1235def tInt_eh_sjlj_setjmp : ThumbXI<(outs),(ins tGPR:$src, tGPR:$val),
Owen Anderson16884412011-07-13 23:22:26 +00001236 AddrModeNone, 0, NoItinerary, "","",
Bill Wendling0e45a5a2010-11-30 00:50:22 +00001237 [(set R0, (ARMeh_sjlj_setjmp tGPR:$src, tGPR:$val))]>;
Jim Grosbach5eb19512010-05-22 01:06:18 +00001238
1239// FIXME: Non-Darwin version(s)
Chris Lattnera4a3a5e2010-10-31 19:15:18 +00001240let isBarrier = 1, hasSideEffects = 1, isTerminator = 1, isCodeGenOnly = 1,
Bill Wendling0e45a5a2010-11-30 00:50:22 +00001241 Defs = [ R7, LR, SP ] in
Jim Grosbach5eb19512010-05-22 01:06:18 +00001242def tInt_eh_sjlj_longjmp : XI<(outs), (ins GPR:$src, GPR:$scratch),
Owen Anderson16884412011-07-13 23:22:26 +00001243 AddrModeNone, 0, IndexModeNone,
Bill Wendling0e45a5a2010-11-30 00:50:22 +00001244 Pseudo, NoItinerary, "", "",
1245 [(ARMeh_sjlj_longjmp GPR:$src, GPR:$scratch)]>,
1246 Requires<[IsThumb, IsDarwin]>;
Jim Grosbach5eb19512010-05-22 01:06:18 +00001247
Lauro Ramos Venancio64f4fa52007-04-27 13:54:47 +00001248//===----------------------------------------------------------------------===//
Evan Chenga8e29892007-01-19 07:51:42 +00001249// Non-Instruction Patterns
1250//
1251
Jim Grosbach97a884d2010-12-07 20:41:06 +00001252// Comparisons
1253def : T1Pat<(ARMcmpZ tGPR:$Rn, imm0_255:$imm8),
1254 (tCMPi8 tGPR:$Rn, imm0_255:$imm8)>;
1255def : T1Pat<(ARMcmpZ tGPR:$Rn, tGPR:$Rm),
1256 (tCMPr tGPR:$Rn, tGPR:$Rm)>;
1257
Evan Cheng892837a2009-07-10 02:09:04 +00001258// Add with carry
David Goodwinc9d138f2009-07-27 19:59:26 +00001259def : T1Pat<(addc tGPR:$lhs, imm0_7:$rhs),
1260 (tADDi3 tGPR:$lhs, imm0_7:$rhs)>;
1261def : T1Pat<(addc tGPR:$lhs, imm8_255:$rhs),
Evan Cheng89d177f2009-08-20 17:01:04 +00001262 (tADDi8 tGPR:$lhs, imm8_255:$rhs)>;
David Goodwinc9d138f2009-07-27 19:59:26 +00001263def : T1Pat<(addc tGPR:$lhs, tGPR:$rhs),
1264 (tADDrr tGPR:$lhs, tGPR:$rhs)>;
Evan Cheng892837a2009-07-10 02:09:04 +00001265
1266// Subtract with carry
David Goodwinc9d138f2009-07-27 19:59:26 +00001267def : T1Pat<(addc tGPR:$lhs, imm0_7_neg:$rhs),
1268 (tSUBi3 tGPR:$lhs, imm0_7_neg:$rhs)>;
1269def : T1Pat<(addc tGPR:$lhs, imm8_255_neg:$rhs),
1270 (tSUBi8 tGPR:$lhs, imm8_255_neg:$rhs)>;
1271def : T1Pat<(subc tGPR:$lhs, tGPR:$rhs),
1272 (tSUBrr tGPR:$lhs, tGPR:$rhs)>;
Evan Cheng892837a2009-07-10 02:09:04 +00001273
Evan Chenga8e29892007-01-19 07:51:42 +00001274// ConstantPool, GlobalAddress
David Goodwinc9d138f2009-07-27 19:59:26 +00001275def : T1Pat<(ARMWrapper tglobaladdr :$dst), (tLEApcrel tglobaladdr :$dst)>;
1276def : T1Pat<(ARMWrapper tconstpool :$dst), (tLEApcrel tconstpool :$dst)>;
Evan Chenga8e29892007-01-19 07:51:42 +00001277
Evan Chengd85ac4d2007-01-27 02:29:45 +00001278// JumpTable
David Goodwinc9d138f2009-07-27 19:59:26 +00001279def : T1Pat<(ARMWrapperJT tjumptable:$dst, imm:$id),
1280 (tLEApcrelJT tjumptable:$dst, imm:$id)>;
Evan Chengd85ac4d2007-01-27 02:29:45 +00001281
Evan Chenga8e29892007-01-19 07:51:42 +00001282// Direct calls
Evan Cheng20a2a0a2009-07-29 21:26:42 +00001283def : T1Pat<(ARMtcall texternalsym:$func), (tBL texternalsym:$func)>,
Evan Chengb6207242009-08-01 00:16:10 +00001284 Requires<[IsThumb, IsNotDarwin]>;
Evan Cheng20a2a0a2009-07-29 21:26:42 +00001285def : T1Pat<(ARMtcall texternalsym:$func), (tBLr9 texternalsym:$func)>,
Evan Chengb6207242009-08-01 00:16:10 +00001286 Requires<[IsThumb, IsDarwin]>;
Evan Cheng20a2a0a2009-07-29 21:26:42 +00001287
1288def : Tv5Pat<(ARMcall texternalsym:$func), (tBLXi texternalsym:$func)>,
Evan Chengb6207242009-08-01 00:16:10 +00001289 Requires<[IsThumb, HasV5T, IsNotDarwin]>;
Evan Cheng20a2a0a2009-07-29 21:26:42 +00001290def : Tv5Pat<(ARMcall texternalsym:$func), (tBLXi_r9 texternalsym:$func)>,
Evan Chengb6207242009-08-01 00:16:10 +00001291 Requires<[IsThumb, HasV5T, IsDarwin]>;
Evan Chenga8e29892007-01-19 07:51:42 +00001292
1293// Indirect calls to ARM routines
Evan Chengb6207242009-08-01 00:16:10 +00001294def : Tv5Pat<(ARMcall GPR:$dst), (tBLXr GPR:$dst)>,
1295 Requires<[IsThumb, HasV5T, IsNotDarwin]>;
1296def : Tv5Pat<(ARMcall GPR:$dst), (tBLXr_r9 GPR:$dst)>,
1297 Requires<[IsThumb, HasV5T, IsDarwin]>;
Evan Chenga8e29892007-01-19 07:51:42 +00001298
1299// zextload i1 -> zextload i8
Bill Wendlingf4caf692010-12-14 03:36:38 +00001300def : T1Pat<(zextloadi1 t_addrmode_rrs1:$addr),
1301 (tLDRBr t_addrmode_rrs1:$addr)>;
1302def : T1Pat<(zextloadi1 t_addrmode_is1:$addr),
1303 (tLDRBi t_addrmode_is1:$addr)>;
Jim Grosbach0ede14f2009-03-27 23:06:27 +00001304
Evan Chengb60c02e2007-01-26 19:13:16 +00001305// extload -> zextload
Bill Wendlingf4caf692010-12-14 03:36:38 +00001306def : T1Pat<(extloadi1 t_addrmode_rrs1:$addr), (tLDRBr t_addrmode_rrs1:$addr)>;
1307def : T1Pat<(extloadi1 t_addrmode_is1:$addr), (tLDRBi t_addrmode_is1:$addr)>;
1308def : T1Pat<(extloadi8 t_addrmode_rrs1:$addr), (tLDRBr t_addrmode_rrs1:$addr)>;
1309def : T1Pat<(extloadi8 t_addrmode_is1:$addr), (tLDRBi t_addrmode_is1:$addr)>;
1310def : T1Pat<(extloadi16 t_addrmode_rrs2:$addr), (tLDRHr t_addrmode_rrs2:$addr)>;
1311def : T1Pat<(extloadi16 t_addrmode_is2:$addr), (tLDRHi t_addrmode_is2:$addr)>;
Evan Chengb60c02e2007-01-26 19:13:16 +00001312
Evan Cheng0e87e232009-08-28 00:31:43 +00001313// If it's impossible to use [r,r] address mode for sextload, select to
Evan Cheng2f297df2009-07-11 07:08:13 +00001314// ldr{b|h} + sxt{b|h} instead.
Bill Wendling415af342010-12-15 00:58:57 +00001315def : T1Pat<(sextloadi8 t_addrmode_is1:$addr),
1316 (tSXTB (tLDRBi t_addrmode_is1:$addr))>,
1317 Requires<[IsThumb, IsThumb1Only, HasV6]>;
Bill Wendlingf4caf692010-12-14 03:36:38 +00001318def : T1Pat<(sextloadi8 t_addrmode_rrs1:$addr),
1319 (tSXTB (tLDRBr t_addrmode_rrs1:$addr))>,
Jim Grosbach6797f892010-11-01 17:08:58 +00001320 Requires<[IsThumb, IsThumb1Only, HasV6]>;
Bill Wendling415af342010-12-15 00:58:57 +00001321def : T1Pat<(sextloadi16 t_addrmode_is2:$addr),
1322 (tSXTH (tLDRHi t_addrmode_is2:$addr))>,
1323 Requires<[IsThumb, IsThumb1Only, HasV6]>;
Bill Wendlingf4caf692010-12-14 03:36:38 +00001324def : T1Pat<(sextloadi16 t_addrmode_rrs2:$addr),
1325 (tSXTH (tLDRHr t_addrmode_rrs2:$addr))>,
Jim Grosbach6797f892010-11-01 17:08:58 +00001326 Requires<[IsThumb, IsThumb1Only, HasV6]>;
Evan Cheng2f297df2009-07-11 07:08:13 +00001327
Bill Wendlingf4caf692010-12-14 03:36:38 +00001328def : T1Pat<(sextloadi8 t_addrmode_rrs1:$addr),
1329 (tASRri (tLSLri (tLDRBr t_addrmode_rrs1:$addr), 24), 24)>;
Bill Wendling415af342010-12-15 00:58:57 +00001330def : T1Pat<(sextloadi8 t_addrmode_is1:$addr),
1331 (tASRri (tLSLri (tLDRBi t_addrmode_is1:$addr), 24), 24)>;
1332def : T1Pat<(sextloadi16 t_addrmode_rrs2:$addr),
1333 (tASRri (tLSLri (tLDRHr t_addrmode_rrs2:$addr), 16), 16)>;
1334def : T1Pat<(sextloadi16 t_addrmode_is2:$addr),
1335 (tASRri (tLSLri (tLDRHi t_addrmode_is2:$addr), 16), 16)>;
Evan Cheng2f297df2009-07-11 07:08:13 +00001336
Evan Chenga8e29892007-01-19 07:51:42 +00001337// Large immediate handling.
1338
1339// Two piece imms.
Evan Cheng9cb9e672009-06-27 02:26:13 +00001340def : T1Pat<(i32 thumb_immshifted:$src),
1341 (tLSLri (tMOVi8 (thumb_immshifted_val imm:$src)),
1342 (thumb_immshifted_shamt imm:$src))>;
Evan Chenga8e29892007-01-19 07:51:42 +00001343
Evan Cheng9cb9e672009-06-27 02:26:13 +00001344def : T1Pat<(i32 imm0_255_comp:$src),
1345 (tMVN (tMOVi8 (imm_comp_XFORM imm:$src)))>;
Evan Chengb9803a82009-11-06 23:52:48 +00001346
1347// Pseudo instruction that combines ldr from constpool and add pc. This should
1348// be expanded into two instructions late to allow if-conversion and
1349// scheduling.
1350let isReMaterializable = 1 in
1351def tLDRpci_pic : PseudoInst<(outs GPR:$dst), (ins i32imm:$addr, pclabel:$cp),
Bill Wendling0480e282010-12-01 02:36:55 +00001352 NoItinerary,
Evan Chengb9803a82009-11-06 23:52:48 +00001353 [(set GPR:$dst, (ARMpic_add (load (ARMWrapper tconstpool:$addr)),
1354 imm:$cp))]>,
Jim Grosbach6797f892010-11-01 17:08:58 +00001355 Requires<[IsThumb, IsThumb1Only]>;
Jim Grosbach53e3fc42011-07-08 17:40:42 +00001356
1357// Pseudo-instruction for merged POP and return.
1358// FIXME: remove when we have a way to marking a MI with these properties.
1359let isReturn = 1, isTerminator = 1, isBarrier = 1, mayLoad = 1,
1360 hasExtraDefRegAllocReq = 1 in
1361def tPOP_RET : tPseudoExpand<(outs), (ins pred:$p, reglist:$regs, variable_ops),
Owen Anderson16884412011-07-13 23:22:26 +00001362 2, IIC_iPop_Br, [],
Jim Grosbach53e3fc42011-07-08 17:40:42 +00001363 (tPOP pred:$p, reglist:$regs)>;
1364
Jim Grosbachaa8d1b82011-07-08 22:25:23 +00001365// Indirect branch using "mov pc, $Rm"
1366let isBranch = 1, isTerminator = 1, isBarrier = 1, isIndirectBranch = 1 in {
Jim Grosbach7e61a312011-07-08 22:33:49 +00001367 def tBRIND : tPseudoExpand<(outs), (ins GPR:$Rm, pred:$p),
Owen Anderson16884412011-07-13 23:22:26 +00001368 2, IIC_Br, [(brind GPR:$Rm)],
Jim Grosbach7e61a312011-07-08 22:33:49 +00001369 (tMOVr PC, GPR:$Rm, pred:$p)>;
Jim Grosbachaa8d1b82011-07-08 22:25:23 +00001370}