blob: 199691f6c30555ddd509e3ebae681c208581adfb [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
Jim Grosbach70939ee2011-08-17 21:51:27 +000022def imm_sr_XFORM: SDNodeXForm<imm, [{
23 unsigned Imm = N->getZExtValue();
24 return CurDAG->getTargetConstant((Imm == 32 ? 0 : Imm), MVT::i32);
25}]>;
26def ThumbSRImmAsmOperand: AsmOperandClass { let Name = "ImmThumbSR"; }
27def imm_sr : Operand<i32>, PatLeaf<(imm), [{
28 uint64_t Imm = N->getZExtValue();
Owen Anderson6d746312011-08-08 20:42:17 +000029 return Imm > 0 && Imm <= 32;
Jim Grosbach70939ee2011-08-17 21:51:27 +000030}], imm_sr_XFORM> {
31 let PrintMethod = "printThumbSRImm";
32 let ParserMatchClass = ThumbSRImmAsmOperand;
Owen Anderson6d746312011-08-08 20:42:17 +000033}
34
Evan Chenga8e29892007-01-19 07:51:42 +000035def imm_neg_XFORM : SDNodeXForm<imm, [{
Owen Anderson825b72b2009-08-11 20:47:22 +000036 return CurDAG->getTargetConstant(-(int)N->getZExtValue(), MVT::i32);
Evan Chenga8e29892007-01-19 07:51:42 +000037}]>;
38def imm_comp_XFORM : SDNodeXForm<imm, [{
Owen Anderson825b72b2009-08-11 20:47:22 +000039 return CurDAG->getTargetConstant(~((uint32_t)N->getZExtValue()), MVT::i32);
Evan Chenga8e29892007-01-19 07:51:42 +000040}]>;
41
Evan Chenga8e29892007-01-19 07:51:42 +000042def imm0_7_neg : PatLeaf<(i32 imm), [{
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +000043 return (uint32_t)-N->getZExtValue() < 8;
Evan Chenga8e29892007-01-19 07:51:42 +000044}], imm_neg_XFORM>;
45
Evan Chenga8e29892007-01-19 07:51:42 +000046def imm0_255_comp : PatLeaf<(i32 imm), [{
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +000047 return ~((uint32_t)N->getZExtValue()) < 256;
Evan Chenga8e29892007-01-19 07:51:42 +000048}]>;
49
Eric Christopher8f232d32011-04-28 05:49:04 +000050def imm8_255 : ImmLeaf<i32, [{
51 return Imm >= 8 && Imm < 256;
Evan Chenga8e29892007-01-19 07:51:42 +000052}]>;
53def imm8_255_neg : PatLeaf<(i32 imm), [{
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +000054 unsigned Val = -N->getZExtValue();
Evan Chenga8e29892007-01-19 07:51:42 +000055 return Val >= 8 && Val < 256;
56}], imm_neg_XFORM>;
57
Bill Wendling0480e282010-12-01 02:36:55 +000058// Break imm's up into two pieces: an immediate + a left shift. This uses
59// thumb_immshifted to match and thumb_immshifted_val and thumb_immshifted_shamt
60// to get the val/shift pieces.
Evan Chenga8e29892007-01-19 07:51:42 +000061def thumb_immshifted : PatLeaf<(imm), [{
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +000062 return ARM_AM::isThumbImmShiftedVal((unsigned)N->getZExtValue());
Evan Chenga8e29892007-01-19 07:51:42 +000063}]>;
64
65def thumb_immshifted_val : SDNodeXForm<imm, [{
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +000066 unsigned V = ARM_AM::getThumbImmNonShiftedVal((unsigned)N->getZExtValue());
Owen Anderson825b72b2009-08-11 20:47:22 +000067 return CurDAG->getTargetConstant(V, MVT::i32);
Evan Chenga8e29892007-01-19 07:51:42 +000068}]>;
69
70def thumb_immshifted_shamt : SDNodeXForm<imm, [{
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +000071 unsigned V = ARM_AM::getThumbImmValShift((unsigned)N->getZExtValue());
Owen Anderson825b72b2009-08-11 20:47:22 +000072 return CurDAG->getTargetConstant(V, MVT::i32);
Evan Chenga8e29892007-01-19 07:51:42 +000073}]>;
74
Jim Grosbachd40963c2010-12-14 22:28:03 +000075// ADR instruction labels.
76def t_adrlabel : Operand<i32> {
77 let EncoderMethod = "getThumbAdrLabelOpValue";
78}
79
Evan Cheng2ef9c8a2009-11-19 06:57:41 +000080// Scaled 4 immediate.
81def t_imm_s4 : Operand<i32> {
82 let PrintMethod = "printThumbS4ImmOperand";
Benjamin Kramer151bd172011-07-14 21:47:24 +000083 let OperandType = "OPERAND_IMMEDIATE";
Evan Cheng2ef9c8a2009-11-19 06:57:41 +000084}
85
Evan Chenga8e29892007-01-19 07:51:42 +000086// Define Thumb specific addressing modes.
87
Benjamin Kramer151bd172011-07-14 21:47:24 +000088let OperandType = "OPERAND_PCREL" in {
Jim Grosbache2467172010-12-10 18:21:33 +000089def t_brtarget : Operand<OtherVT> {
90 let EncoderMethod = "getThumbBRTargetOpValue";
Owen Anderson8d7d2e12011-08-09 20:55:18 +000091 let DecoderMethod = "DecodeThumbBROperand";
Jim Grosbache2467172010-12-10 18:21:33 +000092}
93
Jim Grosbach01086452010-12-10 17:13:40 +000094def t_bcctarget : Operand<i32> {
95 let EncoderMethod = "getThumbBCCTargetOpValue";
Owen Anderson8d7d2e12011-08-09 20:55:18 +000096 let DecoderMethod = "DecodeThumbBCCTargetOperand";
Jim Grosbach01086452010-12-10 17:13:40 +000097}
98
Jim Grosbachcf6220a2010-12-09 19:01:46 +000099def t_cbtarget : Operand<i32> {
Jim Grosbach027d6e82010-12-09 19:04:53 +0000100 let EncoderMethod = "getThumbCBTargetOpValue";
Owen Anderson8d7d2e12011-08-09 20:55:18 +0000101 let DecoderMethod = "DecodeThumbCmpBROperand";
Bill Wendlingdff2f712010-12-08 23:01:43 +0000102}
103
Jim Grosbach662a8162010-12-06 23:57:07 +0000104def t_bltarget : Operand<i32> {
105 let EncoderMethod = "getThumbBLTargetOpValue";
Owen Anderson648f9a72011-08-08 23:25:22 +0000106 let DecoderMethod = "DecodeThumbBLTargetOperand";
Jim Grosbach662a8162010-12-06 23:57:07 +0000107}
108
Bill Wendling09aa3f02010-12-09 00:39:08 +0000109def t_blxtarget : Operand<i32> {
110 let EncoderMethod = "getThumbBLXTargetOpValue";
Owen Anderson6d746312011-08-08 20:42:17 +0000111 let DecoderMethod = "DecodeThumbBLXOffset";
Bill Wendling09aa3f02010-12-09 00:39:08 +0000112}
Benjamin Kramer151bd172011-07-14 21:47:24 +0000113}
Bill Wendling09aa3f02010-12-09 00:39:08 +0000114
Evan Chenga8e29892007-01-19 07:51:42 +0000115// t_addrmode_rr := reg + reg
116//
Jim Grosbach7ce05792011-08-03 23:50:40 +0000117def t_addrmode_rr_asm_operand : AsmOperandClass { let Name = "MemThumbRR"; }
Evan Chenga8e29892007-01-19 07:51:42 +0000118def t_addrmode_rr : Operand<i32>,
119 ComplexPattern<i32, 2, "SelectThumbAddrModeRR", []> {
Bill Wendlingf4caf692010-12-14 03:36:38 +0000120 let EncoderMethod = "getThumbAddrModeRegRegOpValue";
Evan Chenga8e29892007-01-19 07:51:42 +0000121 let PrintMethod = "printThumbAddrModeRROperand";
Owen Anderson305e0462011-08-15 19:00:06 +0000122 let DecoderMethod = "DecodeThumbAddrModeRR";
Jim Grosbach30eae3c2009-04-07 20:34:09 +0000123 let MIOperandInfo = (ops tGPR:$base, tGPR:$offsreg);
Evan Chenga8e29892007-01-19 07:51:42 +0000124}
125
Bill Wendlingf4caf692010-12-14 03:36:38 +0000126// t_addrmode_rrs := reg + reg
Evan Chenga8e29892007-01-19 07:51:42 +0000127//
Bill Wendlingf4caf692010-12-14 03:36:38 +0000128def t_addrmode_rrs1 : Operand<i32>,
129 ComplexPattern<i32, 2, "SelectThumbAddrModeRI5S1", []> {
130 let EncoderMethod = "getThumbAddrModeRegRegOpValue";
131 let PrintMethod = "printThumbAddrModeRROperand";
Owen Anderson8d7d2e12011-08-09 20:55:18 +0000132 let DecoderMethod = "DecodeThumbAddrModeRR";
Jim Grosbach7ce05792011-08-03 23:50:40 +0000133 let ParserMatchClass = t_addrmode_rr_asm_operand;
Bill Wendlingf4caf692010-12-14 03:36:38 +0000134 let MIOperandInfo = (ops tGPR:$base, tGPR:$offsreg);
Evan Chenga8e29892007-01-19 07:51:42 +0000135}
Bill Wendlingf4caf692010-12-14 03:36:38 +0000136def t_addrmode_rrs2 : Operand<i32>,
137 ComplexPattern<i32, 2, "SelectThumbAddrModeRI5S2", []> {
138 let EncoderMethod = "getThumbAddrModeRegRegOpValue";
Owen Anderson8d7d2e12011-08-09 20:55:18 +0000139 let DecoderMethod = "DecodeThumbAddrModeRR";
Bill Wendlingf4caf692010-12-14 03:36:38 +0000140 let PrintMethod = "printThumbAddrModeRROperand";
Jim Grosbach7ce05792011-08-03 23:50:40 +0000141 let ParserMatchClass = t_addrmode_rr_asm_operand;
Bill Wendlingf4caf692010-12-14 03:36:38 +0000142 let MIOperandInfo = (ops tGPR:$base, tGPR:$offsreg);
Bill Wendlingf4caf692010-12-14 03:36:38 +0000143}
144def t_addrmode_rrs4 : Operand<i32>,
145 ComplexPattern<i32, 2, "SelectThumbAddrModeRI5S4", []> {
146 let EncoderMethod = "getThumbAddrModeRegRegOpValue";
Owen Anderson8d7d2e12011-08-09 20:55:18 +0000147 let DecoderMethod = "DecodeThumbAddrModeRR";
Bill Wendlingf4caf692010-12-14 03:36:38 +0000148 let PrintMethod = "printThumbAddrModeRROperand";
Jim Grosbach7ce05792011-08-03 23:50:40 +0000149 let ParserMatchClass = t_addrmode_rr_asm_operand;
Bill Wendlingf4caf692010-12-14 03:36:38 +0000150 let MIOperandInfo = (ops tGPR:$base, tGPR:$offsreg);
Evan Chenga8e29892007-01-19 07:51:42 +0000151}
Evan Chengc38f2bc2007-01-23 22:59:13 +0000152
Bill Wendlingf4caf692010-12-14 03:36:38 +0000153// t_addrmode_is4 := reg + imm5 * 4
Evan Chengc38f2bc2007-01-23 22:59:13 +0000154//
Bill Wendlingf4caf692010-12-14 03:36:38 +0000155def t_addrmode_is4 : Operand<i32>,
156 ComplexPattern<i32, 2, "SelectThumbAddrModeImm5S4", []> {
157 let EncoderMethod = "getAddrModeISOpValue";
Owen Anderson8d7d2e12011-08-09 20:55:18 +0000158 let DecoderMethod = "DecodeThumbAddrModeIS";
Bill Wendlingf4caf692010-12-14 03:36:38 +0000159 let PrintMethod = "printThumbAddrModeImm5S4Operand";
160 let MIOperandInfo = (ops tGPR:$base, i32imm:$offsimm);
Bill Wendlingf4caf692010-12-14 03:36:38 +0000161}
162
163// t_addrmode_is2 := reg + imm5 * 2
164//
165def t_addrmode_is2 : Operand<i32>,
166 ComplexPattern<i32, 2, "SelectThumbAddrModeImm5S2", []> {
167 let EncoderMethod = "getAddrModeISOpValue";
Owen Anderson8d7d2e12011-08-09 20:55:18 +0000168 let DecoderMethod = "DecodeThumbAddrModeIS";
Bill Wendlingf4caf692010-12-14 03:36:38 +0000169 let PrintMethod = "printThumbAddrModeImm5S2Operand";
170 let MIOperandInfo = (ops tGPR:$base, i32imm:$offsimm);
Bill Wendlingf4caf692010-12-14 03:36:38 +0000171}
172
173// t_addrmode_is1 := reg + imm5
174//
175def t_addrmode_is1 : Operand<i32>,
176 ComplexPattern<i32, 2, "SelectThumbAddrModeImm5S1", []> {
177 let EncoderMethod = "getAddrModeISOpValue";
Owen Anderson8d7d2e12011-08-09 20:55:18 +0000178 let DecoderMethod = "DecodeThumbAddrModeIS";
Bill Wendlingf4caf692010-12-14 03:36:38 +0000179 let PrintMethod = "printThumbAddrModeImm5S1Operand";
180 let MIOperandInfo = (ops tGPR:$base, i32imm:$offsimm);
Evan Chenga8e29892007-01-19 07:51:42 +0000181}
182
183// t_addrmode_sp := sp + imm8 * 4
184//
185def t_addrmode_sp : Operand<i32>,
186 ComplexPattern<i32, 2, "SelectThumbAddrModeSP", []> {
Jim Grosbachd967cd02010-12-07 21:50:47 +0000187 let EncoderMethod = "getAddrModeThumbSPOpValue";
Owen Anderson648f9a72011-08-08 23:25:22 +0000188 let DecoderMethod = "DecodeThumbAddrModeSP";
Evan Chenga8e29892007-01-19 07:51:42 +0000189 let PrintMethod = "printThumbAddrModeSPOperand";
Jakob Stoklund Olesenc5b7ef12010-01-13 00:43:06 +0000190 let MIOperandInfo = (ops GPR:$base, i32imm:$offsimm);
Evan Chenga8e29892007-01-19 07:51:42 +0000191}
192
Bill Wendlingb8958b02010-12-08 01:57:09 +0000193// t_addrmode_pc := <label> => pc + imm8 * 4
194//
195def t_addrmode_pc : Operand<i32> {
196 let EncoderMethod = "getAddrModePCOpValue";
Owen Anderson8d7d2e12011-08-09 20:55:18 +0000197 let DecoderMethod = "DecodeThumbAddrModePC";
Bill Wendlingb8958b02010-12-08 01:57:09 +0000198}
199
Evan Chenga8e29892007-01-19 07:51:42 +0000200//===----------------------------------------------------------------------===//
201// Miscellaneous Instructions.
202//
203
Jim Grosbach4642ad32010-02-22 23:10:38 +0000204// FIXME: Marking these as hasSideEffects is necessary to prevent machine DCE
205// from removing one half of the matched pairs. That breaks PEI, which assumes
206// these will always be in pairs, and asserts if it finds otherwise. Better way?
207let Defs = [SP], Uses = [SP], hasSideEffects = 1 in {
Evan Cheng44bec522007-05-15 01:29:07 +0000208def tADJCALLSTACKUP :
Bill Wendlinga8981662010-11-19 22:02:18 +0000209 PseudoInst<(outs), (ins i32imm:$amt1, i32imm:$amt2), NoItinerary,
210 [(ARMcallseq_end imm:$amt1, imm:$amt2)]>,
211 Requires<[IsThumb, IsThumb1Only]>;
Evan Cheng44bec522007-05-15 01:29:07 +0000212
Jim Grosbach0ede14f2009-03-27 23:06:27 +0000213def tADJCALLSTACKDOWN :
Bill Wendlinga8981662010-11-19 22:02:18 +0000214 PseudoInst<(outs), (ins i32imm:$amt), NoItinerary,
215 [(ARMcallseq_start imm:$amt)]>,
216 Requires<[IsThumb, IsThumb1Only]>;
Evan Cheng071a2792007-09-11 19:55:27 +0000217}
Evan Cheng44bec522007-05-15 01:29:07 +0000218
Jim Grosbach421993f2011-08-17 23:08:57 +0000219class T1SystemEncoding<bits<8> opc>
Bill Wendlinga46a4932010-11-29 22:15:03 +0000220 : T1Encoding<0b101111> {
Jim Grosbach421993f2011-08-17 23:08:57 +0000221 let Inst{9-8} = 0b11;
222 let Inst{7-0} = opc;
Bill Wendlinga46a4932010-11-29 22:15:03 +0000223}
224
Jim Grosbach421993f2011-08-17 23:08:57 +0000225def tNOP : T1pI<(outs), (ins), NoItinerary, "nop", "", []>,
226 T1SystemEncoding<0x00>; // A8.6.110
Johnny Chenbd2c6232010-02-25 03:28:51 +0000227
Jim Grosbach421993f2011-08-17 23:08:57 +0000228def tYIELD : T1pI<(outs), (ins), NoItinerary, "yield", "", []>,
229 T1SystemEncoding<0x10>; // A8.6.410
Johnny Chend86d2692010-02-25 17:51:03 +0000230
Jim Grosbach421993f2011-08-17 23:08:57 +0000231def tWFE : T1pI<(outs), (ins), NoItinerary, "wfe", "", []>,
232 T1SystemEncoding<0x20>; // A8.6.408
Johnny Chend86d2692010-02-25 17:51:03 +0000233
Jim Grosbach421993f2011-08-17 23:08:57 +0000234def tWFI : T1pI<(outs), (ins), NoItinerary, "wfi", "", []>,
235 T1SystemEncoding<0x30>; // A8.6.409
Johnny Chend86d2692010-02-25 17:51:03 +0000236
Jim Grosbach421993f2011-08-17 23:08:57 +0000237def tSEV : T1pI<(outs), (ins), NoItinerary, "sev", "", []>,
238 T1SystemEncoding<0x40>; // A8.6.157
Bill Wendlinga46a4932010-11-29 22:15:03 +0000239
Jim Grosbach421993f2011-08-17 23:08:57 +0000240// The imm operand $val can be used by a debugger to store more information
Bill Wendlinga46a4932010-11-29 22:15:03 +0000241// about the breakpoint.
Jim Grosbach421993f2011-08-17 23:08:57 +0000242def tBKPT : T1I<(outs), (ins imm0_255:$val), NoItinerary, "bkpt\t$val",
243 []>,
244 T1Encoding<0b101111> {
245 let Inst{9-8} = 0b10;
Bill Wendlinga46a4932010-11-29 22:15:03 +0000246 // A8.6.22
247 bits<8> val;
248 let Inst{7-0} = val;
249}
Johnny Chend86d2692010-02-25 17:51:03 +0000250
Jim Grosbach06322472011-07-22 17:52:23 +0000251def tSETEND : T1I<(outs), (ins setend_op:$end), NoItinerary, "setend\t$end",
252 []>, T1Encoding<0b101101> {
253 bits<1> end;
Bill Wendling7d0affd2010-11-21 10:55:23 +0000254 // A8.6.156
Johnny Chend86d2692010-02-25 17:51:03 +0000255 let Inst{9-5} = 0b10010;
Bill Wendlinga8981662010-11-19 22:02:18 +0000256 let Inst{4} = 1;
Jim Grosbach06322472011-07-22 17:52:23 +0000257 let Inst{3} = end;
Bill Wendlinga8981662010-11-19 22:02:18 +0000258 let Inst{2-0} = 0b000;
Johnny Chend86d2692010-02-25 17:51:03 +0000259}
260
Johnny Chen93042d12010-03-02 18:14:57 +0000261// Change Processor State is a system instruction -- for disassembly only.
Bruno Cardoso Lopesa2b6e412011-02-14 13:09:44 +0000262def tCPS : T1I<(outs), (ins imod_op:$imod, iflags_op:$iflags),
263 NoItinerary, "cps$imod $iflags",
264 [/* For disassembly only; pattern left blank */]>,
Bill Wendling849f2e32010-11-29 00:18:15 +0000265 T1Misc<0b0110011> {
266 // A8.6.38 & B6.1.1
Bruno Cardoso Lopesa2b6e412011-02-14 13:09:44 +0000267 bit imod;
268 bits<3> iflags;
269
270 let Inst{4} = imod;
271 let Inst{3} = 0;
272 let Inst{2-0} = iflags;
Owen Anderson8d7d2e12011-08-09 20:55:18 +0000273 let DecoderMethod = "DecodeThumbCPS";
Bill Wendling849f2e32010-11-29 00:18:15 +0000274}
Johnny Chen93042d12010-03-02 18:14:57 +0000275
Evan Cheng35d6c412009-08-04 23:47:55 +0000276// For both thumb1 and thumb2.
Chris Lattnera4a3a5e2010-10-31 19:15:18 +0000277let isNotDuplicable = 1, isCodeGenOnly = 1 in
Jim Grosbacha3fbadf2010-09-30 19:53:58 +0000278def tPICADD : TIt<(outs GPR:$dst), (ins GPR:$lhs, pclabel:$cp), IIC_iALUr, "",
Bill Wendling0ae28e42010-11-19 22:37:33 +0000279 [(set GPR:$dst, (ARMpic_add GPR:$lhs, imm:$cp))]>,
Johnny Chend68e1192009-12-15 17:24:14 +0000280 T1Special<{0,0,?,?}> {
Bill Wendling0e45a5a2010-11-30 00:50:22 +0000281 // A8.6.6
Bill Wendling0ae28e42010-11-19 22:37:33 +0000282 bits<3> dst;
Bill Wendling0e45a5a2010-11-30 00:50:22 +0000283 let Inst{6-3} = 0b1111; // Rm = pc
Bill Wendling0ae28e42010-11-19 22:37:33 +0000284 let Inst{2-0} = dst;
Johnny Chend68e1192009-12-15 17:24:14 +0000285}
Evan Chenga8e29892007-01-19 07:51:42 +0000286
Bill Wendling0ae28e42010-11-19 22:37:33 +0000287// ADD <Rd>, sp, #<imm8>
288// This is rematerializable, which is particularly useful for taking the
289// address of locals.
290let isReMaterializable = 1 in
291def tADDrSPi : T1I<(outs tGPR:$dst), (ins GPR:$sp, t_imm_s4:$rhs), IIC_iALUi,
292 "add\t$dst, $sp, $rhs", []>,
293 T1Encoding<{1,0,1,0,1,?}> {
294 // A6.2 & A8.6.8
295 bits<3> dst;
296 bits<8> rhs;
297 let Inst{10-8} = dst;
298 let Inst{7-0} = rhs;
Owen Anderson8d7d2e12011-08-09 20:55:18 +0000299 let DecoderMethod = "DecodeThumbAddSpecialReg";
Bill Wendling0ae28e42010-11-19 22:37:33 +0000300}
301
302// ADD sp, sp, #<imm7>
Evan Cheng2ef9c8a2009-11-19 06:57:41 +0000303def tADDspi : TIt<(outs GPR:$dst), (ins GPR:$lhs, t_imm_s4:$rhs), IIC_iALUi,
Johnny Chend68e1192009-12-15 17:24:14 +0000304 "add\t$dst, $rhs", []>,
Bill Wendling0ae28e42010-11-19 22:37:33 +0000305 T1Misc<{0,0,0,0,0,?,?}> {
306 // A6.2.5 & A8.6.8
307 bits<7> rhs;
308 let Inst{6-0} = rhs;
Owen Anderson8d7d2e12011-08-09 20:55:18 +0000309 let DecoderMethod = "DecodeThumbAddSPImm";
Bill Wendling0ae28e42010-11-19 22:37:33 +0000310}
Evan Cheng7dcf4a82009-06-25 01:05:06 +0000311
Bill Wendling0ae28e42010-11-19 22:37:33 +0000312// SUB sp, sp, #<imm7>
313// FIXME: The encoding and the ASM string don't match up.
Evan Cheng2ef9c8a2009-11-19 06:57:41 +0000314def tSUBspi : TIt<(outs GPR:$dst), (ins GPR:$lhs, t_imm_s4:$rhs), IIC_iALUi,
Johnny Chend68e1192009-12-15 17:24:14 +0000315 "sub\t$dst, $rhs", []>,
Bill Wendling0ae28e42010-11-19 22:37:33 +0000316 T1Misc<{0,0,0,0,1,?,?}> {
317 // A6.2.5 & A8.6.214
318 bits<7> rhs;
319 let Inst{6-0} = rhs;
Owen Anderson8d7d2e12011-08-09 20:55:18 +0000320 let DecoderMethod = "DecodeThumbAddSPImm";
Bill Wendling0ae28e42010-11-19 22:37:33 +0000321}
Evan Cheng86198642009-08-07 00:34:42 +0000322
Bill Wendling0ae28e42010-11-19 22:37:33 +0000323// ADD <Rm>, sp
David Goodwin5d598aa2009-08-19 18:00:44 +0000324def tADDrSP : TIt<(outs GPR:$dst), (ins GPR:$lhs, GPR:$rhs), IIC_iALUr,
Johnny Chend68e1192009-12-15 17:24:14 +0000325 "add\t$dst, $rhs", []>,
326 T1Special<{0,0,?,?}> {
Bill Wendling0ae28e42010-11-19 22:37:33 +0000327 // A8.6.9 Encoding T1
328 bits<4> dst;
329 let Inst{7} = dst{3};
330 let Inst{6-3} = 0b1101;
331 let Inst{2-0} = dst{2-0};
Owen Anderson8d7d2e12011-08-09 20:55:18 +0000332 let DecoderMethod = "DecodeThumbAddSPReg";
Johnny Chend68e1192009-12-15 17:24:14 +0000333}
Evan Cheng86198642009-08-07 00:34:42 +0000334
Bill Wendling0ae28e42010-11-19 22:37:33 +0000335// ADD sp, <Rm>
David Goodwin5d598aa2009-08-19 18:00:44 +0000336def tADDspr : TIt<(outs GPR:$dst), (ins GPR:$lhs, GPR:$rhs), IIC_iALUr,
Johnny Chend68e1192009-12-15 17:24:14 +0000337 "add\t$dst, $rhs", []>,
338 T1Special<{0,0,?,?}> {
339 // A8.6.9 Encoding T2
Bill Wendling0ae28e42010-11-19 22:37:33 +0000340 bits<4> dst;
Johnny Chend68e1192009-12-15 17:24:14 +0000341 let Inst{7} = 1;
Bill Wendling0ae28e42010-11-19 22:37:33 +0000342 let Inst{6-3} = dst;
Johnny Chend68e1192009-12-15 17:24:14 +0000343 let Inst{2-0} = 0b101;
Owen Anderson8d7d2e12011-08-09 20:55:18 +0000344 let DecoderMethod = "DecodeThumbAddSPReg";
Johnny Chend68e1192009-12-15 17:24:14 +0000345}
Evan Cheng86198642009-08-07 00:34:42 +0000346
Evan Chenga8e29892007-01-19 07:51:42 +0000347//===----------------------------------------------------------------------===//
348// Control Flow Instructions.
349//
350
Bob Wilson8d4de5a2009-10-28 18:26:41 +0000351// Indirect branches
352let isBranch = 1, isTerminator = 1, isBarrier = 1, isIndirectBranch = 1 in {
Cameron Zwarich421b1062011-05-26 03:41:12 +0000353 def tBX : TI<(outs), (ins GPR:$Rm, pred:$p), IIC_Br, "bx${p}\t$Rm", []>,
354 T1Special<{1,1,0,?}> {
355 // A6.2.3 & A8.6.25
356 bits<4> Rm;
357 let Inst{6-3} = Rm;
358 let Inst{2-0} = 0b000;
359 }
Bob Wilson8d4de5a2009-10-28 18:26:41 +0000360}
361
Jim Grosbachead77cd2011-07-08 21:04:05 +0000362let isReturn = 1, isTerminator = 1, isBarrier = 1 in {
Owen Anderson16884412011-07-13 23:22:26 +0000363 def tBX_RET : tPseudoExpand<(outs), (ins pred:$p), 2, IIC_Br,
Jim Grosbach25e6d482011-07-08 21:50:04 +0000364 [(ARMretflag)], (tBX LR, pred:$p)>;
Jim Grosbachead77cd2011-07-08 21:04:05 +0000365
366 // Alternative return instruction used by vararg functions.
Jim Grosbach25e6d482011-07-08 21:50:04 +0000367 def tBX_RET_vararg : tPseudoExpand<(outs), (ins tGPR:$Rm, pred:$p),
Owen Anderson16884412011-07-13 23:22:26 +0000368 2, IIC_Br, [],
Jim Grosbach25e6d482011-07-08 21:50:04 +0000369 (tBX GPR:$Rm, pred:$p)>;
Jim Grosbachead77cd2011-07-08 21:04:05 +0000370}
371
Bill Wendling0480e282010-12-01 02:36:55 +0000372// All calls clobber the non-callee saved registers. SP is marked as a use to
373// prevent stack-pointer assignments that appear immediately before calls from
374// potentially appearing dead.
Jim Grosbach0ede14f2009-03-27 23:06:27 +0000375let isCall = 1,
Evan Cheng1e0eab12010-11-29 22:43:27 +0000376 // On non-Darwin platforms R9 is callee-saved.
Jakob Stoklund Olesen2944b4f2011-05-03 22:31:24 +0000377 Defs = [R0, R1, R2, R3, R12, LR, QQQQ0, QQQQ2, QQQQ3, CPSR, FPSCR],
Evan Cheng1e0eab12010-11-29 22:43:27 +0000378 Uses = [SP] in {
Evan Chengb6207242009-08-01 00:16:10 +0000379 // Also used for Thumb2
Johnny Chend68e1192009-12-15 17:24:14 +0000380 def tBL : TIx2<0b11110, 0b11, 1,
Owen Anderson0af0dc82011-07-18 18:50:52 +0000381 (outs), (ins pred:$p, t_bltarget:$func, variable_ops), IIC_Br,
382 "bl${p}\t$func",
Johnny Chend68e1192009-12-15 17:24:14 +0000383 [(ARMtcall tglobaladdr:$func)]>,
Bill Wendling534a5e42010-12-03 01:55:47 +0000384 Requires<[IsThumb, IsNotDarwin]> {
Owen Anderson648f9a72011-08-08 23:25:22 +0000385 bits<22> func;
386 let Inst{26} = func{21};
Jim Grosbach662a8162010-12-06 23:57:07 +0000387 let Inst{25-16} = func{20-11};
Jim Grosbach4fa102b2010-12-03 22:33:42 +0000388 let Inst{13} = 1;
389 let Inst{11} = 1;
Jim Grosbach662a8162010-12-06 23:57:07 +0000390 let Inst{10-0} = func{10-0};
Bill Wendling534a5e42010-12-03 01:55:47 +0000391 }
Evan Cheng20a2a0a2009-07-29 21:26:42 +0000392
Evan Chengb6207242009-08-01 00:16:10 +0000393 // ARMv5T and above, also used for Thumb2
Johnny Chend68e1192009-12-15 17:24:14 +0000394 def tBLXi : TIx2<0b11110, 0b11, 0,
Jim Grosbach5f687de2011-08-18 16:50:45 +0000395 (outs), (ins pred:$p, t_blxtarget:$func, variable_ops), IIC_Br,
Owen Anderson0af0dc82011-07-18 18:50:52 +0000396 "blx${p}\t$func",
Johnny Chend68e1192009-12-15 17:24:14 +0000397 [(ARMcall tglobaladdr:$func)]>,
Jim Grosbach4fa102b2010-12-03 22:33:42 +0000398 Requires<[IsThumb, HasV5T, IsNotDarwin]> {
Jim Grosbach662a8162010-12-06 23:57:07 +0000399 bits<21> func;
400 let Inst{25-16} = func{20-11};
Jim Grosbach4fa102b2010-12-03 22:33:42 +0000401 let Inst{13} = 1;
402 let Inst{11} = 1;
Jim Grosbach662a8162010-12-06 23:57:07 +0000403 let Inst{10-1} = func{10-1};
404 let Inst{0} = 0; // func{0} is assumed zero
Jim Grosbach4fa102b2010-12-03 22:33:42 +0000405 }
Evan Cheng20a2a0a2009-07-29 21:26:42 +0000406
Evan Chengb6207242009-08-01 00:16:10 +0000407 // Also used for Thumb2
Owen Anderson0af0dc82011-07-18 18:50:52 +0000408 def tBLXr : TI<(outs), (ins pred:$p, GPR:$func, variable_ops), IIC_Br,
409 "blx${p}\t$func",
Evan Chengb6207242009-08-01 00:16:10 +0000410 [(ARMtcall GPR:$func)]>,
Johnny Chend68e1192009-12-15 17:24:14 +0000411 Requires<[IsThumb, HasV5T, IsNotDarwin]>,
Owen Anderson18901d62011-05-11 17:00:48 +0000412 T1Special<{1,1,1,?}> { // A6.2.3 & A8.6.24;
413 bits<4> func;
414 let Inst{6-3} = func;
415 let Inst{2-0} = 0b000;
416 }
Evan Cheng20a2a0a2009-07-29 21:26:42 +0000417
Lauro Ramos Venanciob8a93a42007-03-27 16:19:21 +0000418 // ARMv4T
Cameron Zwarichad70f6d2011-05-25 21:53:50 +0000419 def tBX_CALL : tPseudoInst<(outs), (ins tGPR:$func, variable_ops),
Owen Anderson16884412011-07-13 23:22:26 +0000420 4, IIC_Br,
Evan Cheng20a2a0a2009-07-29 21:26:42 +0000421 [(ARMcall_nolink tGPR:$func)]>,
Jim Grosbach6797f892010-11-01 17:08:58 +0000422 Requires<[IsThumb, IsThumb1Only, IsNotDarwin]>;
Evan Cheng20a2a0a2009-07-29 21:26:42 +0000423}
424
Evan Cheng20a2a0a2009-07-29 21:26:42 +0000425let isCall = 1,
Evan Cheng1e0eab12010-11-29 22:43:27 +0000426 // On Darwin R9 is call-clobbered.
427 // R7 is marked as a use to prevent frame-pointer assignments from being
428 // moved above / below calls.
Jakob Stoklund Olesen2944b4f2011-05-03 22:31:24 +0000429 Defs = [R0, R1, R2, R3, R9, R12, LR, QQQQ0, QQQQ2, QQQQ3, CPSR, FPSCR],
Evan Cheng1e0eab12010-11-29 22:43:27 +0000430 Uses = [R7, SP] in {
Evan Chengb6207242009-08-01 00:16:10 +0000431 // Also used for Thumb2
Owen Anderson0af0dc82011-07-18 18:50:52 +0000432 def tBLr9 : tPseudoExpand<(outs), (ins pred:$p, t_bltarget:$func, variable_ops),
433 4, IIC_Br, [(ARMtcall tglobaladdr:$func)],
434 (tBL pred:$p, t_bltarget:$func)>,
435 Requires<[IsThumb, IsDarwin]>;
Evan Cheng20a2a0a2009-07-29 21:26:42 +0000436
Evan Chengb6207242009-08-01 00:16:10 +0000437 // ARMv5T and above, also used for Thumb2
Owen Anderson0af0dc82011-07-18 18:50:52 +0000438 def tBLXi_r9 : tPseudoExpand<(outs), (ins pred:$p, t_blxtarget:$func, variable_ops),
439 4, IIC_Br, [(ARMcall tglobaladdr:$func)],
440 (tBLXi pred:$p, t_blxtarget:$func)>,
441 Requires<[IsThumb, HasV5T, IsDarwin]>;
Evan Cheng20a2a0a2009-07-29 21:26:42 +0000442
Evan Chengb6207242009-08-01 00:16:10 +0000443 // Also used for Thumb2
Owen Anderson0af0dc82011-07-18 18:50:52 +0000444 def tBLXr_r9 : tPseudoExpand<(outs), (ins pred:$p, GPR:$func, variable_ops),
445 2, IIC_Br, [(ARMtcall GPR:$func)],
446 (tBLXr pred:$p, GPR:$func)>,
447 Requires<[IsThumb, HasV5T, IsDarwin]>;
Evan Cheng20a2a0a2009-07-29 21:26:42 +0000448
449 // ARMv4T
Cameron Zwarichad70f6d2011-05-25 21:53:50 +0000450 def tBXr9_CALL : tPseudoInst<(outs), (ins tGPR:$func, variable_ops),
Owen Anderson16884412011-07-13 23:22:26 +0000451 4, IIC_Br,
Johnny Chend68e1192009-12-15 17:24:14 +0000452 [(ARMcall_nolink tGPR:$func)]>,
Jim Grosbach6797f892010-11-01 17:08:58 +0000453 Requires<[IsThumb, IsThumb1Only, IsDarwin]>;
Evan Chenga8e29892007-01-19 07:51:42 +0000454}
455
Bill Wendling0480e282010-12-01 02:36:55 +0000456let isBranch = 1, isTerminator = 1, isBarrier = 1 in {
457 let isPredicable = 1 in
Jim Grosbache2467172010-12-10 18:21:33 +0000458 def tB : T1I<(outs), (ins t_brtarget:$target), IIC_Br,
Bill Wendling0480e282010-12-01 02:36:55 +0000459 "b\t$target", [(br bb:$target)]>,
Jim Grosbache2467172010-12-10 18:21:33 +0000460 T1Encoding<{1,1,1,0,0,?}> {
461 bits<11> target;
462 let Inst{10-0} = target;
463 }
Evan Chenga8e29892007-01-19 07:51:42 +0000464
Evan Cheng225dfe92007-01-30 01:13:37 +0000465 // Far jump
Jim Grosbach3efad8f2010-12-16 19:11:16 +0000466 // Just a pseudo for a tBL instruction. Needed to let regalloc know about
467 // the clobber of LR.
Evan Cheng53c67c02009-08-07 05:45:07 +0000468 let Defs = [LR] in
Owen Anderson0af0dc82011-07-18 18:50:52 +0000469 def tBfar : tPseudoExpand<(outs), (ins t_bltarget:$target, pred:$p),
470 4, IIC_Br, [], (tBL pred:$p, t_bltarget:$target)>;
Evan Cheng225dfe92007-01-30 01:13:37 +0000471
Jim Grosbachf1aa47d2010-11-29 19:32:47 +0000472 def tBR_JTr : tPseudoInst<(outs),
473 (ins tGPR:$target, i32imm:$jt, i32imm:$id),
Owen Anderson16884412011-07-13 23:22:26 +0000474 0, IIC_Br,
Jim Grosbachf1aa47d2010-11-29 19:32:47 +0000475 [(ARMbrjt tGPR:$target, tjumptable:$jt, imm:$id)]> {
476 list<Predicate> Predicates = [IsThumb, IsThumb1Only];
Johnny Chenbbc71b22009-12-16 02:32:54 +0000477 }
Evan Chengd85ac4d2007-01-27 02:29:45 +0000478}
479
Evan Chengc85e8322007-07-05 07:13:32 +0000480// FIXME: should be able to write a pattern for ARMBrcond, but can't use
Jim Grosbach0ede14f2009-03-27 23:06:27 +0000481// a two-value operand where a dag node expects two operands. :(
Evan Chengffbacca2007-07-21 00:34:19 +0000482let isBranch = 1, isTerminator = 1 in
Jim Grosbach01086452010-12-10 17:13:40 +0000483 def tBcc : T1I<(outs), (ins t_bcctarget:$target, pred:$p), IIC_Br,
Jim Grosbachceab5012010-12-04 00:20:40 +0000484 "b${p}\t$target",
Johnny Chend68e1192009-12-15 17:24:14 +0000485 [/*(ARMbrcond bb:$target, imm:$cc)*/]>,
Eric Christopher33281b22011-05-27 03:50:53 +0000486 T1BranchCond<{1,1,0,1}> {
Jim Grosbachceab5012010-12-04 00:20:40 +0000487 bits<4> p;
Jim Grosbach01086452010-12-10 17:13:40 +0000488 bits<8> target;
Jim Grosbachceab5012010-12-04 00:20:40 +0000489 let Inst{11-8} = p;
Jim Grosbach01086452010-12-10 17:13:40 +0000490 let Inst{7-0} = target;
Jim Grosbachceab5012010-12-04 00:20:40 +0000491}
Evan Chenga8e29892007-01-19 07:51:42 +0000492
Jim Grosbache36e21e2011-07-08 20:13:35 +0000493// Tail calls
494let isCall = 1, isTerminator = 1, isReturn = 1, isBarrier = 1 in {
495 // Darwin versions.
496 let Defs = [R0, R1, R2, R3, R9, R12, QQQQ0, QQQQ2, QQQQ3, PC],
497 Uses = [SP] in {
Jim Grosbachaf7f2d62011-07-08 20:32:21 +0000498 // tTAILJMPd: Darwin version uses a Thumb2 branch (no Thumb1 tail calls
499 // on Darwin), so it's in ARMInstrThumb2.td.
Jim Grosbach0b44aea2011-07-08 20:39:19 +0000500 def tTAILJMPr : tPseudoExpand<(outs), (ins tcGPR:$dst, variable_ops),
Owen Anderson16884412011-07-13 23:22:26 +0000501 4, IIC_Br, [],
Jim Grosbach0b44aea2011-07-08 20:39:19 +0000502 (tBX GPR:$dst, (ops 14, zero_reg))>,
503 Requires<[IsThumb, IsDarwin]>;
Jim Grosbache36e21e2011-07-08 20:13:35 +0000504 }
505 // Non-Darwin versions (the difference is R9).
506 let Defs = [R0, R1, R2, R3, R12, QQQQ0, QQQQ2, QQQQ3, PC],
507 Uses = [SP] in {
Jim Grosbachaf7f2d62011-07-08 20:32:21 +0000508 def tTAILJMPdND : tPseudoExpand<(outs), (ins t_brtarget:$dst, variable_ops),
Owen Anderson16884412011-07-13 23:22:26 +0000509 4, IIC_Br, [],
Jim Grosbachaf7f2d62011-07-08 20:32:21 +0000510 (tB t_brtarget:$dst)>,
511 Requires<[IsThumb, IsNotDarwin]>;
Jim Grosbach0b44aea2011-07-08 20:39:19 +0000512 def tTAILJMPrND : tPseudoExpand<(outs), (ins tcGPR:$dst, variable_ops),
Owen Anderson16884412011-07-13 23:22:26 +0000513 4, IIC_Br, [],
Jim Grosbach0b44aea2011-07-08 20:39:19 +0000514 (tBX GPR:$dst, (ops 14, zero_reg))>,
515 Requires<[IsThumb, IsNotDarwin]>;
Jim Grosbache36e21e2011-07-08 20:13:35 +0000516 }
517}
518
519
Johnny Chen4c61cdd2010-02-25 02:21:11 +0000520// A8.6.218 Supervisor Call (Software Interrupt) -- for disassembly only
521// A8.6.16 B: Encoding T1
522// If Inst{11-8} == 0b1111 then SEE SVC
Evan Cheng1e0eab12010-11-29 22:43:27 +0000523let isCall = 1, Uses = [SP] in
Jim Grosbached838482011-07-26 16:24:27 +0000524def tSVC : T1pI<(outs), (ins imm0_255:$imm), IIC_Br,
Bill Wendling6179c312010-11-20 00:53:35 +0000525 "svc", "\t$imm", []>, Encoding16 {
526 bits<8> imm;
Johnny Chen4c61cdd2010-02-25 02:21:11 +0000527 let Inst{15-12} = 0b1101;
Bill Wendling6179c312010-11-20 00:53:35 +0000528 let Inst{11-8} = 0b1111;
529 let Inst{7-0} = imm;
Johnny Chen4c61cdd2010-02-25 02:21:11 +0000530}
531
Bill Wendlingef4a68b2010-11-30 07:44:32 +0000532// The assembler uses 0xDEFE for a trap instruction.
Evan Chengfb3611d2010-05-11 07:26:32 +0000533let isBarrier = 1, isTerminator = 1 in
Owen Anderson18901d62011-05-11 17:00:48 +0000534def tTRAP : TI<(outs), (ins), IIC_Br,
Jim Grosbach2e6ae132010-09-23 18:05:37 +0000535 "trap", [(trap)]>, Encoding16 {
Bill Wendling7d0affd2010-11-21 10:55:23 +0000536 let Inst = 0xdefe;
Johnny Chen4c61cdd2010-02-25 02:21:11 +0000537}
538
Evan Chenga8e29892007-01-19 07:51:42 +0000539//===----------------------------------------------------------------------===//
540// Load Store Instructions.
541//
542
Bill Wendlingb6faf652010-12-14 22:10:49 +0000543// Loads: reg/reg and reg/imm5
Dan Gohmanbc9d98b2010-02-27 23:47:46 +0000544let canFoldAsLoad = 1, isReMaterializable = 1 in
Bill Wendlingb6faf652010-12-14 22:10:49 +0000545multiclass thumb_ld_rr_ri_enc<bits<3> reg_opc, bits<4> imm_opc,
546 Operand AddrMode_r, Operand AddrMode_i,
547 AddrMode am, InstrItinClass itin_r,
548 InstrItinClass itin_i, string asm,
549 PatFrag opnode> {
Bill Wendling345cdb62010-12-14 23:42:48 +0000550 def r : // reg/reg
Bill Wendlingb6faf652010-12-14 22:10:49 +0000551 T1pILdStEncode<reg_opc,
552 (outs tGPR:$Rt), (ins AddrMode_r:$addr),
553 am, itin_r, asm, "\t$Rt, $addr",
554 [(set tGPR:$Rt, (opnode AddrMode_r:$addr))]>;
Bill Wendling345cdb62010-12-14 23:42:48 +0000555 def i : // reg/imm5
Bill Wendlingb6faf652010-12-14 22:10:49 +0000556 T1pILdStEncodeImm<imm_opc, 1 /* Load */,
557 (outs tGPR:$Rt), (ins AddrMode_i:$addr),
558 am, itin_i, asm, "\t$Rt, $addr",
559 [(set tGPR:$Rt, (opnode AddrMode_i:$addr))]>;
560}
561// Stores: reg/reg and reg/imm5
562multiclass thumb_st_rr_ri_enc<bits<3> reg_opc, bits<4> imm_opc,
563 Operand AddrMode_r, Operand AddrMode_i,
564 AddrMode am, InstrItinClass itin_r,
565 InstrItinClass itin_i, string asm,
566 PatFrag opnode> {
Bill Wendling345cdb62010-12-14 23:42:48 +0000567 def r : // reg/reg
Bill Wendlingb6faf652010-12-14 22:10:49 +0000568 T1pILdStEncode<reg_opc,
569 (outs), (ins tGPR:$Rt, AddrMode_r:$addr),
570 am, itin_r, asm, "\t$Rt, $addr",
571 [(opnode tGPR:$Rt, AddrMode_r:$addr)]>;
Bill Wendling345cdb62010-12-14 23:42:48 +0000572 def i : // reg/imm5
Bill Wendlingb6faf652010-12-14 22:10:49 +0000573 T1pILdStEncodeImm<imm_opc, 0 /* Store */,
574 (outs), (ins tGPR:$Rt, AddrMode_i:$addr),
575 am, itin_i, asm, "\t$Rt, $addr",
576 [(opnode tGPR:$Rt, AddrMode_i:$addr)]>;
577}
Bill Wendling6179c312010-11-20 00:53:35 +0000578
Bill Wendlingb6faf652010-12-14 22:10:49 +0000579// A8.6.57 & A8.6.60
580defm tLDR : thumb_ld_rr_ri_enc<0b100, 0b0110, t_addrmode_rrs4,
581 t_addrmode_is4, AddrModeT1_4,
582 IIC_iLoad_r, IIC_iLoad_i, "ldr",
583 UnOpFrag<(load node:$Src)>>;
Evan Chenga8e29892007-01-19 07:51:42 +0000584
Bill Wendlingb6faf652010-12-14 22:10:49 +0000585// A8.6.64 & A8.6.61
586defm tLDRB : thumb_ld_rr_ri_enc<0b110, 0b0111, t_addrmode_rrs1,
587 t_addrmode_is1, AddrModeT1_1,
588 IIC_iLoad_bh_r, IIC_iLoad_bh_i, "ldrb",
589 UnOpFrag<(zextloadi8 node:$Src)>>;
Bill Wendling1fd374e2010-11-30 22:57:21 +0000590
Bill Wendlingb6faf652010-12-14 22:10:49 +0000591// A8.6.76 & A8.6.73
592defm tLDRH : thumb_ld_rr_ri_enc<0b101, 0b1000, t_addrmode_rrs2,
593 t_addrmode_is2, AddrModeT1_2,
594 IIC_iLoad_bh_r, IIC_iLoad_bh_i, "ldrh",
595 UnOpFrag<(zextloadi16 node:$Src)>>;
Evan Chengc38f2bc2007-01-23 22:59:13 +0000596
Evan Cheng2f297df2009-07-11 07:08:13 +0000597let AddedComplexity = 10 in
Bill Wendling1fd374e2010-11-30 22:57:21 +0000598def tLDRSB : // A8.6.80
Owen Anderson305e0462011-08-15 19:00:06 +0000599 T1pILdStEncode<0b011, (outs tGPR:$Rt), (ins t_addrmode_rr:$addr),
Bill Wendling40062fb2010-12-01 01:38:08 +0000600 AddrModeT1_1, IIC_iLoad_bh_r,
Owen Anderson305e0462011-08-15 19:00:06 +0000601 "ldrsb", "\t$Rt, $addr",
602 [(set tGPR:$Rt, (sextloadi8 t_addrmode_rr:$addr))]>;
Evan Chengc38f2bc2007-01-23 22:59:13 +0000603
Evan Cheng2f297df2009-07-11 07:08:13 +0000604let AddedComplexity = 10 in
Bill Wendling1fd374e2010-11-30 22:57:21 +0000605def tLDRSH : // A8.6.84
Owen Anderson305e0462011-08-15 19:00:06 +0000606 T1pILdStEncode<0b111, (outs tGPR:$Rt), (ins t_addrmode_rr:$addr),
Bill Wendling40062fb2010-12-01 01:38:08 +0000607 AddrModeT1_2, IIC_iLoad_bh_r,
Owen Anderson305e0462011-08-15 19:00:06 +0000608 "ldrsh", "\t$Rt, $addr",
609 [(set tGPR:$Rt, (sextloadi16 t_addrmode_rr:$addr))]>;
Evan Chengc38f2bc2007-01-23 22:59:13 +0000610
Dan Gohman15511cf2008-12-03 18:15:48 +0000611let canFoldAsLoad = 1 in
Jim Grosbachd967cd02010-12-07 21:50:47 +0000612def tLDRspi : T1pIs<(outs tGPR:$Rt), (ins t_addrmode_sp:$addr), IIC_iLoad_i,
Bill Wendlingdc381372010-12-15 23:31:24 +0000613 "ldr", "\t$Rt, $addr",
614 [(set tGPR:$Rt, (load t_addrmode_sp:$addr))]>,
Jim Grosbachd967cd02010-12-07 21:50:47 +0000615 T1LdStSP<{1,?,?}> {
616 bits<3> Rt;
617 bits<8> addr;
618 let Inst{10-8} = Rt;
619 let Inst{7-0} = addr;
620}
Evan Cheng012f2d92007-01-24 08:53:17 +0000621
622// Load tconstpool
Evan Cheng7883fa92009-11-04 00:00:39 +0000623// FIXME: Use ldr.n to work around a Darwin assembler bug.
Owen Anderson91614ae2011-07-18 22:14:02 +0000624let canFoldAsLoad = 1, isReMaterializable = 1, isCodeGenOnly = 1 in
Bill Wendlingb8958b02010-12-08 01:57:09 +0000625def tLDRpci : T1pIs<(outs tGPR:$Rt), (ins t_addrmode_pc:$addr), IIC_iLoad_i,
Bill Wendling3f8c1102010-11-30 23:54:45 +0000626 "ldr", ".n\t$Rt, $addr",
627 [(set tGPR:$Rt, (load (ARMWrapper tconstpool:$addr)))]>,
628 T1Encoding<{0,1,0,0,1,?}> {
629 // A6.2 & A8.6.59
630 bits<3> Rt;
Bill Wendlingb8958b02010-12-08 01:57:09 +0000631 bits<8> addr;
Bill Wendling3f8c1102010-11-30 23:54:45 +0000632 let Inst{10-8} = Rt;
Bill Wendlingb8958b02010-12-08 01:57:09 +0000633 let Inst{7-0} = addr;
Bill Wendling3f8c1102010-11-30 23:54:45 +0000634}
Evan Chengfa775d02007-03-19 07:20:03 +0000635
Johnny Chen597fa652011-04-22 19:12:43 +0000636// FIXME: Remove this entry when the above ldr.n workaround is fixed.
637// For disassembly use only.
638def tLDRpciDIS : T1pIs<(outs tGPR:$Rt), (ins t_addrmode_pc:$addr), IIC_iLoad_i,
639 "ldr", "\t$Rt, $addr",
640 [/* disassembly only */]>,
641 T1Encoding<{0,1,0,0,1,?}> {
642 // A6.2 & A8.6.59
643 bits<3> Rt;
644 bits<8> addr;
645 let Inst{10-8} = Rt;
646 let Inst{7-0} = addr;
647}
648
Bill Wendlingb6faf652010-12-14 22:10:49 +0000649// A8.6.194 & A8.6.192
650defm tSTR : thumb_st_rr_ri_enc<0b000, 0b0110, t_addrmode_rrs4,
651 t_addrmode_is4, AddrModeT1_4,
652 IIC_iStore_r, IIC_iStore_i, "str",
653 BinOpFrag<(store node:$LHS, node:$RHS)>>;
Evan Chenga8e29892007-01-19 07:51:42 +0000654
Bill Wendlingb6faf652010-12-14 22:10:49 +0000655// A8.6.197 & A8.6.195
656defm tSTRB : thumb_st_rr_ri_enc<0b010, 0b0111, t_addrmode_rrs1,
657 t_addrmode_is1, AddrModeT1_1,
658 IIC_iStore_bh_r, IIC_iStore_bh_i, "strb",
659 BinOpFrag<(truncstorei8 node:$LHS, node:$RHS)>>;
Evan Chengc38f2bc2007-01-23 22:59:13 +0000660
Bill Wendlingb6faf652010-12-14 22:10:49 +0000661// A8.6.207 & A8.6.205
662defm tSTRH : thumb_st_rr_ri_enc<0b001, 0b1000, t_addrmode_rrs2,
Jim Grosbachf921c0fe2011-06-13 22:54:22 +0000663 t_addrmode_is2, AddrModeT1_2,
664 IIC_iStore_bh_r, IIC_iStore_bh_i, "strh",
665 BinOpFrag<(truncstorei16 node:$LHS, node:$RHS)>>;
Bill Wendling1fd374e2010-11-30 22:57:21 +0000666
Evan Chenga8e29892007-01-19 07:51:42 +0000667
Jim Grosbachd967cd02010-12-07 21:50:47 +0000668def tSTRspi : T1pIs<(outs), (ins tGPR:$Rt, t_addrmode_sp:$addr), IIC_iStore_i,
Bill Wendlingf4caf692010-12-14 03:36:38 +0000669 "str", "\t$Rt, $addr",
670 [(store tGPR:$Rt, t_addrmode_sp:$addr)]>,
Jim Grosbachd967cd02010-12-07 21:50:47 +0000671 T1LdStSP<{0,?,?}> {
672 bits<3> Rt;
673 bits<8> addr;
674 let Inst{10-8} = Rt;
675 let Inst{7-0} = addr;
676}
Evan Cheng8e59ea92007-02-07 00:06:56 +0000677
Evan Chenga8e29892007-01-19 07:51:42 +0000678//===----------------------------------------------------------------------===//
679// Load / store multiple Instructions.
680//
681
Bill Wendling6c470b82010-11-13 09:09:38 +0000682multiclass thumb_ldst_mult<string asm, InstrItinClass itin,
683 InstrItinClass itin_upd, bits<6> T1Enc,
Owen Anderson565a0362011-07-18 23:25:34 +0000684 bit L_bit, string baseOpc> {
Bill Wendling73fe34a2010-11-16 01:16:36 +0000685 def IA :
Jim Grosbach93b3eff2011-08-18 21:50:53 +0000686 T1I<(outs), (ins tGPR:$Rn, pred:$p, reglist:$regs, variable_ops),
687 itin, !strconcat(asm, "${p}\t$Rn, $regs"), []>,
Bill Wendling6179c312010-11-20 00:53:35 +0000688 T1Encoding<T1Enc> {
689 bits<3> Rn;
690 bits<8> regs;
691 let Inst{10-8} = Rn;
692 let Inst{7-0} = regs;
693 }
Owen Anderson565a0362011-07-18 23:25:34 +0000694
Bill Wendling73fe34a2010-11-16 01:16:36 +0000695 def IA_UPD :
Owen Anderson565a0362011-07-18 23:25:34 +0000696 InstTemplate<AddrModeNone, 0, IndexModeNone, Pseudo, GenericDomain,
697 "$Rn = $wb", itin_upd>,
698 PseudoInstExpansion<(!cast<Instruction>(!strconcat(baseOpc, "IA"))
Jim Grosbach93b3eff2011-08-18 21:50:53 +0000699 tGPR:$Rn, pred:$p, reglist:$regs)> {
Owen Anderson565a0362011-07-18 23:25:34 +0000700 let Size = 2;
701 let OutOperandList = (outs GPR:$wb);
702 let InOperandList = (ins GPR:$Rn, pred:$p, reglist:$regs, variable_ops);
703 let Pattern = [];
704 let isCodeGenOnly = 1;
705 let isPseudo = 1;
706 list<Predicate> Predicates = [IsThumb];
Bill Wendling6179c312010-11-20 00:53:35 +0000707 }
Bill Wendling6c470b82010-11-13 09:09:38 +0000708}
709
Bill Wendling73fe34a2010-11-16 01:16:36 +0000710// These require base address to be written back or one of the loaded regs.
Bill Wendlingddc918b2010-11-13 10:57:02 +0000711let neverHasSideEffects = 1 in {
712
713let mayLoad = 1, hasExtraDefRegAllocReq = 1 in
714defm tLDM : thumb_ldst_mult<"ldm", IIC_iLoad_m, IIC_iLoad_mu,
Owen Anderson565a0362011-07-18 23:25:34 +0000715 {1,1,0,0,1,?}, 1, "tLDM">;
Bill Wendlingddc918b2010-11-13 10:57:02 +0000716
717let mayStore = 1, hasExtraSrcRegAllocReq = 1 in
718defm tSTM : thumb_ldst_mult<"stm", IIC_iStore_m, IIC_iStore_mu,
Owen Anderson565a0362011-07-18 23:25:34 +0000719 {1,1,0,0,0,?}, 0, "tSTM">;
Owen Anderson18901d62011-05-11 17:00:48 +0000720
Bill Wendlingddc918b2010-11-13 10:57:02 +0000721} // neverHasSideEffects
Evan Cheng4b322e52009-08-11 21:11:32 +0000722
Jim Grosbach93b3eff2011-08-18 21:50:53 +0000723def : InstAlias<"ldm${p} $Rn!, $regs",
724 (tLDMIA tGPR:$Rn, pred:$p, reglist:$regs)>,
725 Requires<[IsThumb, IsThumb1Only]>;
726
727
Evan Cheng0d92f5f2009-10-01 08:22:27 +0000728let mayLoad = 1, Uses = [SP], Defs = [SP], hasExtraDefRegAllocReq = 1 in
Bill Wendling602890d2010-11-19 01:33:10 +0000729def tPOP : T1I<(outs), (ins pred:$p, reglist:$regs, variable_ops),
Evan Chenga0792de2010-10-06 06:27:31 +0000730 IIC_iPop,
Bill Wendling602890d2010-11-19 01:33:10 +0000731 "pop${p}\t$regs", []>,
732 T1Misc<{1,1,0,?,?,?,?}> {
733 bits<16> regs;
Bill Wendling602890d2010-11-19 01:33:10 +0000734 let Inst{8} = regs{15};
735 let Inst{7-0} = regs{7-0};
736}
Evan Cheng4b322e52009-08-11 21:11:32 +0000737
Evan Cheng0d92f5f2009-10-01 08:22:27 +0000738let mayStore = 1, Uses = [SP], Defs = [SP], hasExtraSrcRegAllocReq = 1 in
Bill Wendling6179c312010-11-20 00:53:35 +0000739def tPUSH : T1I<(outs), (ins pred:$p, reglist:$regs, variable_ops),
Evan Chenga0792de2010-10-06 06:27:31 +0000740 IIC_iStore_m,
Bill Wendling6179c312010-11-20 00:53:35 +0000741 "push${p}\t$regs", []>,
742 T1Misc<{0,1,0,?,?,?,?}> {
743 bits<16> regs;
744 let Inst{8} = regs{14};
745 let Inst{7-0} = regs{7-0};
746}
Evan Chenga8e29892007-01-19 07:51:42 +0000747
748//===----------------------------------------------------------------------===//
749// Arithmetic Instructions.
750//
751
Bill Wendling1d045ee2010-12-01 02:28:08 +0000752// Helper classes for encoding T1pI patterns:
753class T1pIDPEncode<bits<4> opA, dag oops, dag iops, InstrItinClass itin,
754 string opc, string asm, list<dag> pattern>
755 : T1pI<oops, iops, itin, opc, asm, pattern>,
756 T1DataProcessing<opA> {
757 bits<3> Rm;
758 bits<3> Rn;
759 let Inst{5-3} = Rm;
760 let Inst{2-0} = Rn;
761}
762class T1pIMiscEncode<bits<7> opA, dag oops, dag iops, InstrItinClass itin,
763 string opc, string asm, list<dag> pattern>
764 : T1pI<oops, iops, itin, opc, asm, pattern>,
765 T1Misc<opA> {
766 bits<3> Rm;
767 bits<3> Rd;
768 let Inst{5-3} = Rm;
769 let Inst{2-0} = Rd;
770}
771
Bill Wendling76f4e102010-12-01 01:20:15 +0000772// Helper classes for encoding T1sI patterns:
773class T1sIDPEncode<bits<4> opA, dag oops, dag iops, InstrItinClass itin,
774 string opc, string asm, list<dag> pattern>
775 : T1sI<oops, iops, itin, opc, asm, pattern>,
776 T1DataProcessing<opA> {
777 bits<3> Rd;
778 bits<3> Rn;
779 let Inst{5-3} = Rn;
780 let Inst{2-0} = Rd;
781}
782class T1sIGenEncode<bits<5> opA, dag oops, dag iops, InstrItinClass itin,
783 string opc, string asm, list<dag> pattern>
784 : T1sI<oops, iops, itin, opc, asm, pattern>,
785 T1General<opA> {
786 bits<3> Rm;
787 bits<3> Rn;
788 bits<3> Rd;
789 let Inst{8-6} = Rm;
790 let Inst{5-3} = Rn;
791 let Inst{2-0} = Rd;
792}
793class T1sIGenEncodeImm<bits<5> opA, dag oops, dag iops, InstrItinClass itin,
794 string opc, string asm, list<dag> pattern>
795 : T1sI<oops, iops, itin, opc, asm, pattern>,
796 T1General<opA> {
797 bits<3> Rd;
798 bits<3> Rm;
799 let Inst{5-3} = Rm;
800 let Inst{2-0} = Rd;
801}
802
803// Helper classes for encoding T1sIt patterns:
Bill Wendlinga5a42d92010-12-01 00:48:44 +0000804class T1sItDPEncode<bits<4> opA, dag oops, dag iops, InstrItinClass itin,
805 string opc, string asm, list<dag> pattern>
806 : T1sIt<oops, iops, itin, opc, asm, pattern>,
807 T1DataProcessing<opA> {
Bill Wendling3f8c1102010-11-30 23:54:45 +0000808 bits<3> Rdn;
809 bits<3> Rm;
Bill Wendlinga5a42d92010-12-01 00:48:44 +0000810 let Inst{5-3} = Rm;
811 let Inst{2-0} = Rdn;
Bill Wendling95a6d172010-11-20 01:00:29 +0000812}
Bill Wendlinga5a42d92010-12-01 00:48:44 +0000813class T1sItGenEncodeImm<bits<5> opA, dag oops, dag iops, InstrItinClass itin,
814 string opc, string asm, list<dag> pattern>
815 : T1sIt<oops, iops, itin, opc, asm, pattern>,
816 T1General<opA> {
817 bits<3> Rdn;
818 bits<8> imm8;
819 let Inst{10-8} = Rdn;
820 let Inst{7-0} = imm8;
821}
822
823// Add with carry register
824let isCommutable = 1, Uses = [CPSR] in
825def tADC : // A8.6.2
826 T1sItDPEncode<0b0101, (outs tGPR:$Rdn), (ins tGPR:$Rn, tGPR:$Rm), IIC_iALUr,
827 "adc", "\t$Rdn, $Rm",
828 [(set tGPR:$Rdn, (adde tGPR:$Rn, tGPR:$Rm))]>;
Evan Cheng53d7dba2007-01-27 00:07:15 +0000829
David Goodwinc9ee1182009-06-25 22:49:55 +0000830// Add immediate
Bill Wendling76f4e102010-12-01 01:20:15 +0000831def tADDi3 : // A8.6.4 T1
Jim Grosbach89e2aa62011-08-16 23:57:34 +0000832 T1sIGenEncodeImm<0b01110, (outs tGPR:$Rd), (ins tGPR:$Rm, imm0_7:$imm3),
Jim Grosbachf921c0fe2011-06-13 22:54:22 +0000833 IIC_iALUi,
Bill Wendling76f4e102010-12-01 01:20:15 +0000834 "add", "\t$Rd, $Rm, $imm3",
835 [(set tGPR:$Rd, (add tGPR:$Rm, imm0_7:$imm3))]> {
Bill Wendling95a6d172010-11-20 01:00:29 +0000836 bits<3> imm3;
837 let Inst{8-6} = imm3;
Bill Wendling95a6d172010-11-20 01:00:29 +0000838}
Evan Chenga8e29892007-01-19 07:51:42 +0000839
Bill Wendlinga5a42d92010-12-01 00:48:44 +0000840def tADDi8 : // A8.6.4 T2
Jim Grosbach89e2aa62011-08-16 23:57:34 +0000841 T1sItGenEncodeImm<{1,1,0,?,?}, (outs tGPR:$Rdn),
842 (ins tGPR:$Rn, imm0_255:$imm8), IIC_iALUi,
Bill Wendlinga5a42d92010-12-01 00:48:44 +0000843 "add", "\t$Rdn, $imm8",
844 [(set tGPR:$Rdn, (add tGPR:$Rn, imm8_255:$imm8))]>;
Evan Chenga8e29892007-01-19 07:51:42 +0000845
David Goodwinc9ee1182009-06-25 22:49:55 +0000846// Add register
Evan Cheng446c4282009-07-11 06:43:01 +0000847let isCommutable = 1 in
Bill Wendling76f4e102010-12-01 01:20:15 +0000848def tADDrr : // A8.6.6 T1
849 T1sIGenEncode<0b01100, (outs tGPR:$Rd), (ins tGPR:$Rn, tGPR:$Rm),
850 IIC_iALUr,
851 "add", "\t$Rd, $Rn, $Rm",
852 [(set tGPR:$Rd, (add tGPR:$Rn, tGPR:$Rm))]>;
Evan Chenga8e29892007-01-19 07:51:42 +0000853
Evan Chengcd799b92009-06-12 20:46:18 +0000854let neverHasSideEffects = 1 in
Bill Wendling0b424dc2010-12-01 01:32:02 +0000855def tADDhirr : T1pIt<(outs GPR:$Rdn), (ins GPR:$Rn, GPR:$Rm), IIC_iALUr,
856 "add", "\t$Rdn, $Rm", []>,
Bill Wendlinga09cc2b2010-11-20 01:18:47 +0000857 T1Special<{0,0,?,?}> {
858 // A8.6.6 T2
Bill Wendling0b424dc2010-12-01 01:32:02 +0000859 bits<4> Rdn;
860 bits<4> Rm;
861 let Inst{7} = Rdn{3};
862 let Inst{6-3} = Rm;
863 let Inst{2-0} = Rdn{2-0};
Bill Wendlinga09cc2b2010-11-20 01:18:47 +0000864}
Evan Chenga8e29892007-01-19 07:51:42 +0000865
Bill Wendlinga09cc2b2010-11-20 01:18:47 +0000866// AND register
Evan Cheng446c4282009-07-11 06:43:01 +0000867let isCommutable = 1 in
Bill Wendlinga5a42d92010-12-01 00:48:44 +0000868def tAND : // A8.6.12
869 T1sItDPEncode<0b0000, (outs tGPR:$Rdn), (ins tGPR:$Rn, tGPR:$Rm),
870 IIC_iBITr,
871 "and", "\t$Rdn, $Rm",
872 [(set tGPR:$Rdn, (and tGPR:$Rn, tGPR:$Rm))]>;
Evan Chenga8e29892007-01-19 07:51:42 +0000873
David Goodwinc9ee1182009-06-25 22:49:55 +0000874// ASR immediate
Bill Wendling76f4e102010-12-01 01:20:15 +0000875def tASRri : // A8.6.14
Owen Anderson6d746312011-08-08 20:42:17 +0000876 T1sIGenEncodeImm<{0,1,0,?,?}, (outs tGPR:$Rd), (ins tGPR:$Rm, imm_sr:$imm5),
Bill Wendling76f4e102010-12-01 01:20:15 +0000877 IIC_iMOVsi,
878 "asr", "\t$Rd, $Rm, $imm5",
Owen Anderson6d746312011-08-08 20:42:17 +0000879 [(set tGPR:$Rd, (sra tGPR:$Rm, (i32 imm_sr:$imm5)))]> {
Bill Wendlinga09cc2b2010-11-20 01:18:47 +0000880 bits<5> imm5;
881 let Inst{10-6} = imm5;
Bill Wendlinga09cc2b2010-11-20 01:18:47 +0000882}
Evan Chenga8e29892007-01-19 07:51:42 +0000883
David Goodwinc9ee1182009-06-25 22:49:55 +0000884// ASR register
Bill Wendlinga5a42d92010-12-01 00:48:44 +0000885def tASRrr : // A8.6.15
886 T1sItDPEncode<0b0100, (outs tGPR:$Rdn), (ins tGPR:$Rn, tGPR:$Rm),
887 IIC_iMOVsr,
888 "asr", "\t$Rdn, $Rm",
889 [(set tGPR:$Rdn, (sra tGPR:$Rn, tGPR:$Rm))]>;
Evan Chenga8e29892007-01-19 07:51:42 +0000890
David Goodwinc9ee1182009-06-25 22:49:55 +0000891// BIC register
Bill Wendlinga5a42d92010-12-01 00:48:44 +0000892def tBIC : // A8.6.20
893 T1sItDPEncode<0b1110, (outs tGPR:$Rdn), (ins tGPR:$Rn, tGPR:$Rm),
894 IIC_iBITr,
895 "bic", "\t$Rdn, $Rm",
896 [(set tGPR:$Rdn, (and tGPR:$Rn, (not tGPR:$Rm)))]>;
Evan Chenga8e29892007-01-19 07:51:42 +0000897
David Goodwinc9ee1182009-06-25 22:49:55 +0000898// CMN register
Gabor Greiff7d10f52010-09-14 22:00:50 +0000899let isCompare = 1, Defs = [CPSR] in {
Jim Grosbachd5d2bae2010-01-22 00:08:13 +0000900//FIXME: Disable CMN, as CCodes are backwards from compare expectations
901// Compare-to-zero still works out, just not the relationals
Bill Wendling0480e282010-12-01 02:36:55 +0000902//def tCMN : // A8.6.33
903// T1pIDPEncode<0b1011, (outs), (ins tGPR:$lhs, tGPR:$rhs),
904// IIC_iCMPr,
905// "cmn", "\t$lhs, $rhs",
906// [(ARMcmp tGPR:$lhs, (ineg tGPR:$rhs))]>;
Bill Wendling1d045ee2010-12-01 02:28:08 +0000907
908def tCMNz : // A8.6.33
909 T1pIDPEncode<0b1011, (outs), (ins tGPR:$Rn, tGPR:$Rm),
910 IIC_iCMPr,
911 "cmn", "\t$Rn, $Rm",
912 [(ARMcmpZ tGPR:$Rn, (ineg tGPR:$Rm))]>;
913
914} // isCompare = 1, Defs = [CPSR]
Lauro Ramos Venancio99966632007-04-02 01:30:03 +0000915
David Goodwinc9ee1182009-06-25 22:49:55 +0000916// CMP immediate
Gabor Greiff7d10f52010-09-14 22:00:50 +0000917let isCompare = 1, Defs = [CPSR] in {
Jim Grosbach0d1511c2011-08-18 18:08:29 +0000918def tCMPi8 : T1pI<(outs), (ins tGPR:$Rn, imm0_255:$imm8), IIC_iCMPi,
Bill Wendling5cc88a22010-11-20 22:52:33 +0000919 "cmp", "\t$Rn, $imm8",
920 [(ARMcmp tGPR:$Rn, imm0_255:$imm8)]>,
921 T1General<{1,0,1,?,?}> {
922 // A8.6.35
923 bits<3> Rn;
924 bits<8> imm8;
925 let Inst{10-8} = Rn;
926 let Inst{7-0} = imm8;
927}
928
David Goodwinc9ee1182009-06-25 22:49:55 +0000929// CMP register
Bill Wendling1d045ee2010-12-01 02:28:08 +0000930def tCMPr : // A8.6.36 T1
931 T1pIDPEncode<0b1010, (outs), (ins tGPR:$Rn, tGPR:$Rm),
932 IIC_iCMPr,
933 "cmp", "\t$Rn, $Rm",
934 [(ARMcmp tGPR:$Rn, tGPR:$Rm)]>;
935
Bill Wendling849f2e32010-11-29 00:18:15 +0000936def tCMPhir : T1pI<(outs), (ins GPR:$Rn, GPR:$Rm), IIC_iCMPr,
937 "cmp", "\t$Rn, $Rm", []>,
938 T1Special<{0,1,?,?}> {
939 // A8.6.36 T2
940 bits<4> Rm;
941 bits<4> Rn;
942 let Inst{7} = Rn{3};
943 let Inst{6-3} = Rm;
944 let Inst{2-0} = Rn{2-0};
945}
Bill Wendling5cc88a22010-11-20 22:52:33 +0000946} // isCompare = 1, Defs = [CPSR]
Lauro Ramos Venancio99966632007-04-02 01:30:03 +0000947
Evan Chenga8e29892007-01-19 07:51:42 +0000948
David Goodwinc9ee1182009-06-25 22:49:55 +0000949// XOR register
Evan Cheng446c4282009-07-11 06:43:01 +0000950let isCommutable = 1 in
Bill Wendlinga5a42d92010-12-01 00:48:44 +0000951def tEOR : // A8.6.45
952 T1sItDPEncode<0b0001, (outs tGPR:$Rdn), (ins tGPR:$Rn, tGPR:$Rm),
953 IIC_iBITr,
954 "eor", "\t$Rdn, $Rm",
955 [(set tGPR:$Rdn, (xor tGPR:$Rn, tGPR:$Rm))]>;
Evan Chenga8e29892007-01-19 07:51:42 +0000956
David Goodwinc9ee1182009-06-25 22:49:55 +0000957// LSL immediate
Bill Wendling76f4e102010-12-01 01:20:15 +0000958def tLSLri : // A8.6.88
959 T1sIGenEncodeImm<{0,0,0,?,?}, (outs tGPR:$Rd), (ins tGPR:$Rm, i32imm:$imm5),
960 IIC_iMOVsi,
961 "lsl", "\t$Rd, $Rm, $imm5",
962 [(set tGPR:$Rd, (shl tGPR:$Rm, (i32 imm:$imm5)))]> {
Bill Wendlingdcf0a472010-11-21 11:49:36 +0000963 bits<5> imm5;
964 let Inst{10-6} = imm5;
Bill Wendlingdcf0a472010-11-21 11:49:36 +0000965}
Evan Chenga8e29892007-01-19 07:51:42 +0000966
David Goodwinc9ee1182009-06-25 22:49:55 +0000967// LSL register
Bill Wendlinga5a42d92010-12-01 00:48:44 +0000968def tLSLrr : // A8.6.89
969 T1sItDPEncode<0b0010, (outs tGPR:$Rdn), (ins tGPR:$Rn, tGPR:$Rm),
970 IIC_iMOVsr,
971 "lsl", "\t$Rdn, $Rm",
972 [(set tGPR:$Rdn, (shl tGPR:$Rn, tGPR:$Rm))]>;
Evan Chenga8e29892007-01-19 07:51:42 +0000973
David Goodwinc9ee1182009-06-25 22:49:55 +0000974// LSR immediate
Bill Wendling76f4e102010-12-01 01:20:15 +0000975def tLSRri : // A8.6.90
Owen Anderson6d746312011-08-08 20:42:17 +0000976 T1sIGenEncodeImm<{0,0,1,?,?}, (outs tGPR:$Rd), (ins tGPR:$Rm, imm_sr:$imm5),
Bill Wendling76f4e102010-12-01 01:20:15 +0000977 IIC_iMOVsi,
978 "lsr", "\t$Rd, $Rm, $imm5",
Owen Anderson6d746312011-08-08 20:42:17 +0000979 [(set tGPR:$Rd, (srl tGPR:$Rm, (i32 imm_sr:$imm5)))]> {
Bill Wendlingdcf0a472010-11-21 11:49:36 +0000980 bits<5> imm5;
981 let Inst{10-6} = imm5;
Bill Wendlingdcf0a472010-11-21 11:49:36 +0000982}
Evan Chenga8e29892007-01-19 07:51:42 +0000983
David Goodwinc9ee1182009-06-25 22:49:55 +0000984// LSR register
Bill Wendlinga5a42d92010-12-01 00:48:44 +0000985def tLSRrr : // A8.6.91
986 T1sItDPEncode<0b0011, (outs tGPR:$Rdn), (ins tGPR:$Rn, tGPR:$Rm),
987 IIC_iMOVsr,
988 "lsr", "\t$Rdn, $Rm",
989 [(set tGPR:$Rdn, (srl tGPR:$Rn, tGPR:$Rm))]>;
Evan Chenga8e29892007-01-19 07:51:42 +0000990
Bill Wendlingdcf0a472010-11-21 11:49:36 +0000991// Move register
Evan Chengc4af4632010-11-17 20:13:28 +0000992let isMoveImm = 1 in
Jim Grosbach6b8f1e32011-06-27 23:54:06 +0000993def tMOVi8 : T1sI<(outs tGPR:$Rd), (ins imm0_255:$imm8), IIC_iMOVi,
Bill Wendlingdcf0a472010-11-21 11:49:36 +0000994 "mov", "\t$Rd, $imm8",
995 [(set tGPR:$Rd, imm0_255:$imm8)]>,
996 T1General<{1,0,0,?,?}> {
997 // A8.6.96
998 bits<3> Rd;
999 bits<8> imm8;
1000 let Inst{10-8} = Rd;
1001 let Inst{7-0} = imm8;
1002}
Evan Chenga8e29892007-01-19 07:51:42 +00001003
Jim Grosbachefeedce2011-07-01 17:14:11 +00001004// A7-73: MOV(2) - mov setting flag.
Evan Chenga8e29892007-01-19 07:51:42 +00001005
Evan Chengcd799b92009-06-12 20:46:18 +00001006let neverHasSideEffects = 1 in {
Jim Grosbach2a7b41b2011-06-30 23:38:17 +00001007def tMOVr : Thumb1pI<(outs GPR:$Rd), (ins GPR:$Rm), AddrModeNone,
Owen Anderson16884412011-07-13 23:22:26 +00001008 2, IIC_iMOVr,
Jim Grosbach63b46fa2011-06-30 22:10:46 +00001009 "mov", "\t$Rd, $Rm", "", []>,
Jim Grosbach2a7b41b2011-06-30 23:38:17 +00001010 T1Special<{1,0,?,?}> {
Bill Wendling534a5e42010-12-03 01:55:47 +00001011 // A8.6.97
1012 bits<4> Rd;
1013 bits<4> Rm;
Jim Grosbach2a7b41b2011-06-30 23:38:17 +00001014 let Inst{7} = Rd{3};
1015 let Inst{6-3} = Rm;
Bill Wendling534a5e42010-12-03 01:55:47 +00001016 let Inst{2-0} = Rd{2-0};
1017}
Evan Cheng446c4282009-07-11 06:43:01 +00001018let Defs = [CPSR] in
Bill Wendling534a5e42010-12-03 01:55:47 +00001019def tMOVSr : T1I<(outs tGPR:$Rd), (ins tGPR:$Rm), IIC_iMOVr,
1020 "movs\t$Rd, $Rm", []>, Encoding16 {
1021 // A8.6.97
1022 bits<3> Rd;
1023 bits<3> Rm;
Johnny Chend68e1192009-12-15 17:24:14 +00001024 let Inst{15-6} = 0b0000000000;
Bill Wendling534a5e42010-12-03 01:55:47 +00001025 let Inst{5-3} = Rm;
1026 let Inst{2-0} = Rd;
Johnny Chend68e1192009-12-15 17:24:14 +00001027}
Evan Chengcd799b92009-06-12 20:46:18 +00001028} // neverHasSideEffects
Evan Chenga8e29892007-01-19 07:51:42 +00001029
Bill Wendling0480e282010-12-01 02:36:55 +00001030// Multiply register
Evan Cheng446c4282009-07-11 06:43:01 +00001031let isCommutable = 1 in
Bill Wendlinga5a42d92010-12-01 00:48:44 +00001032def tMUL : // A8.6.105 T1
1033 T1sItDPEncode<0b1101, (outs tGPR:$Rdn), (ins tGPR:$Rn, tGPR:$Rm),
1034 IIC_iMUL32,
1035 "mul", "\t$Rdn, $Rm, $Rdn",
1036 [(set tGPR:$Rdn, (mul tGPR:$Rn, tGPR:$Rm))]>;
Evan Chenga8e29892007-01-19 07:51:42 +00001037
Bill Wendling76f4e102010-12-01 01:20:15 +00001038// Move inverse register
1039def tMVN : // A8.6.107
1040 T1sIDPEncode<0b1111, (outs tGPR:$Rd), (ins tGPR:$Rn), IIC_iMVNr,
1041 "mvn", "\t$Rd, $Rn",
1042 [(set tGPR:$Rd, (not tGPR:$Rn))]>;
Evan Chenga8e29892007-01-19 07:51:42 +00001043
Bill Wendlingdcf0a472010-11-21 11:49:36 +00001044// Bitwise or register
Evan Cheng446c4282009-07-11 06:43:01 +00001045let isCommutable = 1 in
Bill Wendlinga5a42d92010-12-01 00:48:44 +00001046def tORR : // A8.6.114
1047 T1sItDPEncode<0b1100, (outs tGPR:$Rdn), (ins tGPR:$Rn, tGPR:$Rm),
1048 IIC_iBITr,
1049 "orr", "\t$Rdn, $Rm",
1050 [(set tGPR:$Rdn, (or tGPR:$Rn, tGPR:$Rm))]>;
Evan Chenga8e29892007-01-19 07:51:42 +00001051
Bill Wendlingdcf0a472010-11-21 11:49:36 +00001052// Swaps
Bill Wendling1d045ee2010-12-01 02:28:08 +00001053def tREV : // A8.6.134
1054 T1pIMiscEncode<{1,0,1,0,0,0,?}, (outs tGPR:$Rd), (ins tGPR:$Rm),
1055 IIC_iUNAr,
1056 "rev", "\t$Rd, $Rm",
1057 [(set tGPR:$Rd, (bswap tGPR:$Rm))]>,
1058 Requires<[IsThumb, IsThumb1Only, HasV6]>;
Evan Chenga8e29892007-01-19 07:51:42 +00001059
Bill Wendling1d045ee2010-12-01 02:28:08 +00001060def tREV16 : // A8.6.135
1061 T1pIMiscEncode<{1,0,1,0,0,1,?}, (outs tGPR:$Rd), (ins tGPR:$Rm),
1062 IIC_iUNAr,
1063 "rev16", "\t$Rd, $Rm",
Evan Cheng9568e5c2011-06-21 06:01:08 +00001064 [(set tGPR:$Rd, (rotr (bswap tGPR:$Rm), (i32 16)))]>,
Bill Wendling1d045ee2010-12-01 02:28:08 +00001065 Requires<[IsThumb, IsThumb1Only, HasV6]>;
Evan Chenga8e29892007-01-19 07:51:42 +00001066
Bill Wendling1d045ee2010-12-01 02:28:08 +00001067def tREVSH : // A8.6.136
1068 T1pIMiscEncode<{1,0,1,0,1,1,?}, (outs tGPR:$Rd), (ins tGPR:$Rm),
1069 IIC_iUNAr,
1070 "revsh", "\t$Rd, $Rm",
Evan Cheng9568e5c2011-06-21 06:01:08 +00001071 [(set tGPR:$Rd, (sra (bswap tGPR:$Rm), (i32 16)))]>,
Bill Wendling1d045ee2010-12-01 02:28:08 +00001072 Requires<[IsThumb, IsThumb1Only, HasV6]>;
Evan Cheng446c4282009-07-11 06:43:01 +00001073
Bill Wendlinga5a42d92010-12-01 00:48:44 +00001074// Rotate right register
1075def tROR : // A8.6.139
1076 T1sItDPEncode<0b0111, (outs tGPR:$Rdn), (ins tGPR:$Rn, tGPR:$Rm),
1077 IIC_iMOVsr,
1078 "ror", "\t$Rdn, $Rm",
1079 [(set tGPR:$Rdn, (rotr tGPR:$Rn, tGPR:$Rm))]>;
Evan Cheng446c4282009-07-11 06:43:01 +00001080
Bill Wendlinga5a42d92010-12-01 00:48:44 +00001081// Negate register
Bill Wendling76f4e102010-12-01 01:20:15 +00001082def tRSB : // A8.6.141
1083 T1sIDPEncode<0b1001, (outs tGPR:$Rd), (ins tGPR:$Rn),
1084 IIC_iALUi,
1085 "rsb", "\t$Rd, $Rn, #0",
1086 [(set tGPR:$Rd, (ineg tGPR:$Rn))]>;
Evan Chenga8e29892007-01-19 07:51:42 +00001087
David Goodwinc9ee1182009-06-25 22:49:55 +00001088// Subtract with carry register
Evan Cheng446c4282009-07-11 06:43:01 +00001089let Uses = [CPSR] in
Bill Wendlinga5a42d92010-12-01 00:48:44 +00001090def tSBC : // A8.6.151
1091 T1sItDPEncode<0b0110, (outs tGPR:$Rdn), (ins tGPR:$Rn, tGPR:$Rm),
1092 IIC_iALUr,
1093 "sbc", "\t$Rdn, $Rm",
1094 [(set tGPR:$Rdn, (sube tGPR:$Rn, tGPR:$Rm))]>;
Evan Chenga8e29892007-01-19 07:51:42 +00001095
David Goodwinc9ee1182009-06-25 22:49:55 +00001096// Subtract immediate
Bill Wendling76f4e102010-12-01 01:20:15 +00001097def tSUBi3 : // A8.6.210 T1
1098 T1sIGenEncodeImm<0b01111, (outs tGPR:$Rd), (ins tGPR:$Rm, i32imm:$imm3),
1099 IIC_iALUi,
1100 "sub", "\t$Rd, $Rm, $imm3",
1101 [(set tGPR:$Rd, (add tGPR:$Rm, imm0_7_neg:$imm3))]> {
Bill Wendling5cbbf682010-11-29 01:00:43 +00001102 bits<3> imm3;
Bill Wendling5cbbf682010-11-29 01:00:43 +00001103 let Inst{8-6} = imm3;
Bill Wendling5cbbf682010-11-29 01:00:43 +00001104}
Jim Grosbach0ede14f2009-03-27 23:06:27 +00001105
Bill Wendlinga5a42d92010-12-01 00:48:44 +00001106def tSUBi8 : // A8.6.210 T2
1107 T1sItGenEncodeImm<{1,1,1,?,?}, (outs tGPR:$Rdn), (ins tGPR:$Rn, i32imm:$imm8),
1108 IIC_iALUi,
1109 "sub", "\t$Rdn, $imm8",
1110 [(set tGPR:$Rdn, (add tGPR:$Rn, imm8_255_neg:$imm8))]>;
Jim Grosbach0ede14f2009-03-27 23:06:27 +00001111
Bill Wendling76f4e102010-12-01 01:20:15 +00001112// Subtract register
1113def tSUBrr : // A8.6.212
1114 T1sIGenEncode<0b01101, (outs tGPR:$Rd), (ins tGPR:$Rn, tGPR:$Rm),
1115 IIC_iALUr,
1116 "sub", "\t$Rd, $Rn, $Rm",
1117 [(set tGPR:$Rd, (sub tGPR:$Rn, tGPR:$Rm))]>;
David Goodwinc9ee1182009-06-25 22:49:55 +00001118
1119// TODO: A7-96: STMIA - store multiple.
Evan Chenga8e29892007-01-19 07:51:42 +00001120
Bill Wendling76f4e102010-12-01 01:20:15 +00001121// Sign-extend byte
Bill Wendling1d045ee2010-12-01 02:28:08 +00001122def tSXTB : // A8.6.222
1123 T1pIMiscEncode<{0,0,1,0,0,1,?}, (outs tGPR:$Rd), (ins tGPR:$Rm),
1124 IIC_iUNAr,
1125 "sxtb", "\t$Rd, $Rm",
1126 [(set tGPR:$Rd, (sext_inreg tGPR:$Rm, i8))]>,
1127 Requires<[IsThumb, IsThumb1Only, HasV6]>;
David Goodwinc9ee1182009-06-25 22:49:55 +00001128
Bill Wendling1d045ee2010-12-01 02:28:08 +00001129// Sign-extend short
1130def tSXTH : // A8.6.224
1131 T1pIMiscEncode<{0,0,1,0,0,0,?}, (outs tGPR:$Rd), (ins tGPR:$Rm),
1132 IIC_iUNAr,
1133 "sxth", "\t$Rd, $Rm",
1134 [(set tGPR:$Rd, (sext_inreg tGPR:$Rm, i16))]>,
1135 Requires<[IsThumb, IsThumb1Only, HasV6]>;
Evan Chenga8e29892007-01-19 07:51:42 +00001136
Bill Wendling1d045ee2010-12-01 02:28:08 +00001137// Test
Gabor Greif007248b2010-09-14 20:47:43 +00001138let isCompare = 1, isCommutable = 1, Defs = [CPSR] in
Bill Wendling1d045ee2010-12-01 02:28:08 +00001139def tTST : // A8.6.230
1140 T1pIDPEncode<0b1000, (outs), (ins tGPR:$Rn, tGPR:$Rm), IIC_iTSTr,
1141 "tst", "\t$Rn, $Rm",
1142 [(ARMcmpZ (and_su tGPR:$Rn, tGPR:$Rm), 0)]>;
Evan Chenga8e29892007-01-19 07:51:42 +00001143
Bill Wendling1d045ee2010-12-01 02:28:08 +00001144// Zero-extend byte
1145def tUXTB : // A8.6.262
1146 T1pIMiscEncode<{0,0,1,0,1,1,?}, (outs tGPR:$Rd), (ins tGPR:$Rm),
1147 IIC_iUNAr,
1148 "uxtb", "\t$Rd, $Rm",
1149 [(set tGPR:$Rd, (and tGPR:$Rm, 0xFF))]>,
1150 Requires<[IsThumb, IsThumb1Only, HasV6]>;
David Goodwinc9ee1182009-06-25 22:49:55 +00001151
Bill Wendling1d045ee2010-12-01 02:28:08 +00001152// Zero-extend short
1153def tUXTH : // A8.6.264
1154 T1pIMiscEncode<{0,0,1,0,1,0,?}, (outs tGPR:$Rd), (ins tGPR:$Rm),
1155 IIC_iUNAr,
1156 "uxth", "\t$Rd, $Rm",
1157 [(set tGPR:$Rd, (and tGPR:$Rm, 0xFFFF))]>,
1158 Requires<[IsThumb, IsThumb1Only, HasV6]>;
Evan Chenga8e29892007-01-19 07:51:42 +00001159
Jim Grosbach80dc1162010-02-16 21:23:02 +00001160// Conditional move tMOVCCr - Used to implement the Thumb SELECT_CC operation.
Dan Gohman533297b2009-10-29 18:10:34 +00001161// Expanded after instruction selection into a branch sequence.
1162let usesCustomInserter = 1 in // Expanded after instruction selection.
Evan Cheng007ea272009-08-12 05:17:19 +00001163 def tMOVCCr_pseudo :
Evan Chengc9721652009-08-12 02:03:03 +00001164 PseudoInst<(outs tGPR:$dst), (ins tGPR:$false, tGPR:$true, pred:$cc),
Jim Grosbach99594eb2010-11-18 01:38:26 +00001165 NoItinerary,
Evan Chengc9721652009-08-12 02:03:03 +00001166 [/*(set tGPR:$dst, (ARMcmov tGPR:$false, tGPR:$true, imm:$cc))*/]>;
Evan Chenga8e29892007-01-19 07:51:42 +00001167
1168// tLEApcrel - Load a pc-relative address into a register without offending the
1169// assembler.
Jim Grosbachd40963c2010-12-14 22:28:03 +00001170
1171def tADR : T1I<(outs tGPR:$Rd), (ins t_adrlabel:$addr, pred:$p),
Jim Grosbach5a1cd042011-08-17 20:37:40 +00001172 IIC_iALUi, "adr{$p}\t$Rd, $addr", []>,
Jim Grosbachd40963c2010-12-14 22:28:03 +00001173 T1Encoding<{1,0,1,0,0,?}> {
Bill Wendling67077412010-11-30 00:18:30 +00001174 bits<3> Rd;
Jim Grosbachd40963c2010-12-14 22:28:03 +00001175 bits<8> addr;
Bill Wendling67077412010-11-30 00:18:30 +00001176 let Inst{10-8} = Rd;
Jim Grosbachd40963c2010-12-14 22:28:03 +00001177 let Inst{7-0} = addr;
Owen Anderson8d7d2e12011-08-09 20:55:18 +00001178 let DecoderMethod = "DecodeThumbAddSpecialReg";
Bill Wendling67077412010-11-30 00:18:30 +00001179}
Evan Chenga8e29892007-01-19 07:51:42 +00001180
Jim Grosbachd40963c2010-12-14 22:28:03 +00001181let neverHasSideEffects = 1, isReMaterializable = 1 in
1182def tLEApcrel : tPseudoInst<(outs tGPR:$Rd), (ins i32imm:$label, pred:$p),
Owen Anderson16884412011-07-13 23:22:26 +00001183 2, IIC_iALUi, []>;
Jim Grosbachd40963c2010-12-14 22:28:03 +00001184
1185def tLEApcrelJT : tPseudoInst<(outs tGPR:$Rd),
1186 (ins i32imm:$label, nohash_imm:$id, pred:$p),
Owen Anderson16884412011-07-13 23:22:26 +00001187 2, IIC_iALUi, []>;
Evan Chengd85ac4d2007-01-27 02:29:45 +00001188
Evan Chenga8e29892007-01-19 07:51:42 +00001189//===----------------------------------------------------------------------===//
Lauro Ramos Venancio64f4fa52007-04-27 13:54:47 +00001190// TLS Instructions
1191//
1192
1193// __aeabi_read_tp preserves the registers r1-r3.
Jim Grosbachff97eb02011-06-30 19:38:01 +00001194// This is a pseudo inst so that we can get the encoding right,
1195// complete with fixup for the aeabi_read_tp function.
1196let isCall = 1, Defs = [R0, R12, LR, CPSR], Uses = [SP] in
Owen Anderson16884412011-07-13 23:22:26 +00001197def tTPsoft : tPseudoInst<(outs), (ins), 4, IIC_Br,
Jim Grosbachff97eb02011-06-30 19:38:01 +00001198 [(set R0, ARMthread_pointer)]>;
Lauro Ramos Venancio64f4fa52007-04-27 13:54:47 +00001199
Bill Wendling0480e282010-12-01 02:36:55 +00001200//===----------------------------------------------------------------------===//
Jim Grosbachd1228742009-12-01 18:10:36 +00001201// SJLJ Exception handling intrinsics
Owen Anderson18901d62011-05-11 17:00:48 +00001202//
Bill Wendling0480e282010-12-01 02:36:55 +00001203
1204// eh_sjlj_setjmp() is an instruction sequence to store the return address and
1205// save #0 in R0 for the non-longjmp case. Since by its nature we may be coming
1206// from some other function to get here, and we're using the stack frame for the
1207// containing function to save/restore registers, we can't keep anything live in
1208// regs across the eh_sjlj_setjmp(), else it will almost certainly have been
Chris Lattner7a2bdde2011-04-15 05:18:47 +00001209// tromped upon when we get here from a longjmp(). We force everything out of
Bill Wendling0480e282010-12-01 02:36:55 +00001210// registers except for our own input by listing the relevant registers in
1211// Defs. By doing so, we also cause the prologue/epilogue code to actively
1212// preserve all of the callee-saved resgisters, which is exactly what we want.
1213// $val is a scratch register for our use.
Andrew Tricka1099f12011-06-07 00:08:49 +00001214let Defs = [ R0, R1, R2, R3, R4, R5, R6, R7, R12, CPSR ],
Bill Wendling0e45a5a2010-11-30 00:50:22 +00001215 hasSideEffects = 1, isBarrier = 1, isCodeGenOnly = 1 in
1216def tInt_eh_sjlj_setjmp : ThumbXI<(outs),(ins tGPR:$src, tGPR:$val),
Owen Anderson16884412011-07-13 23:22:26 +00001217 AddrModeNone, 0, NoItinerary, "","",
Bill Wendling0e45a5a2010-11-30 00:50:22 +00001218 [(set R0, (ARMeh_sjlj_setjmp tGPR:$src, tGPR:$val))]>;
Jim Grosbach5eb19512010-05-22 01:06:18 +00001219
1220// FIXME: Non-Darwin version(s)
Chris Lattnera4a3a5e2010-10-31 19:15:18 +00001221let isBarrier = 1, hasSideEffects = 1, isTerminator = 1, isCodeGenOnly = 1,
Bill Wendling0e45a5a2010-11-30 00:50:22 +00001222 Defs = [ R7, LR, SP ] in
Jim Grosbach5eb19512010-05-22 01:06:18 +00001223def tInt_eh_sjlj_longjmp : XI<(outs), (ins GPR:$src, GPR:$scratch),
Owen Anderson16884412011-07-13 23:22:26 +00001224 AddrModeNone, 0, IndexModeNone,
Bill Wendling0e45a5a2010-11-30 00:50:22 +00001225 Pseudo, NoItinerary, "", "",
1226 [(ARMeh_sjlj_longjmp GPR:$src, GPR:$scratch)]>,
1227 Requires<[IsThumb, IsDarwin]>;
Jim Grosbach5eb19512010-05-22 01:06:18 +00001228
Lauro Ramos Venancio64f4fa52007-04-27 13:54:47 +00001229//===----------------------------------------------------------------------===//
Evan Chenga8e29892007-01-19 07:51:42 +00001230// Non-Instruction Patterns
1231//
1232
Jim Grosbach97a884d2010-12-07 20:41:06 +00001233// Comparisons
1234def : T1Pat<(ARMcmpZ tGPR:$Rn, imm0_255:$imm8),
1235 (tCMPi8 tGPR:$Rn, imm0_255:$imm8)>;
1236def : T1Pat<(ARMcmpZ tGPR:$Rn, tGPR:$Rm),
1237 (tCMPr tGPR:$Rn, tGPR:$Rm)>;
1238
Evan Cheng892837a2009-07-10 02:09:04 +00001239// Add with carry
David Goodwinc9d138f2009-07-27 19:59:26 +00001240def : T1Pat<(addc tGPR:$lhs, imm0_7:$rhs),
1241 (tADDi3 tGPR:$lhs, imm0_7:$rhs)>;
1242def : T1Pat<(addc tGPR:$lhs, imm8_255:$rhs),
Evan Cheng89d177f2009-08-20 17:01:04 +00001243 (tADDi8 tGPR:$lhs, imm8_255:$rhs)>;
David Goodwinc9d138f2009-07-27 19:59:26 +00001244def : T1Pat<(addc tGPR:$lhs, tGPR:$rhs),
1245 (tADDrr tGPR:$lhs, tGPR:$rhs)>;
Evan Cheng892837a2009-07-10 02:09:04 +00001246
1247// Subtract with carry
David Goodwinc9d138f2009-07-27 19:59:26 +00001248def : T1Pat<(addc tGPR:$lhs, imm0_7_neg:$rhs),
1249 (tSUBi3 tGPR:$lhs, imm0_7_neg:$rhs)>;
1250def : T1Pat<(addc tGPR:$lhs, imm8_255_neg:$rhs),
1251 (tSUBi8 tGPR:$lhs, imm8_255_neg:$rhs)>;
1252def : T1Pat<(subc tGPR:$lhs, tGPR:$rhs),
1253 (tSUBrr tGPR:$lhs, tGPR:$rhs)>;
Evan Cheng892837a2009-07-10 02:09:04 +00001254
Evan Chenga8e29892007-01-19 07:51:42 +00001255// ConstantPool, GlobalAddress
David Goodwinc9d138f2009-07-27 19:59:26 +00001256def : T1Pat<(ARMWrapper tglobaladdr :$dst), (tLEApcrel tglobaladdr :$dst)>;
1257def : T1Pat<(ARMWrapper tconstpool :$dst), (tLEApcrel tconstpool :$dst)>;
Evan Chenga8e29892007-01-19 07:51:42 +00001258
Evan Chengd85ac4d2007-01-27 02:29:45 +00001259// JumpTable
David Goodwinc9d138f2009-07-27 19:59:26 +00001260def : T1Pat<(ARMWrapperJT tjumptable:$dst, imm:$id),
1261 (tLEApcrelJT tjumptable:$dst, imm:$id)>;
Evan Chengd85ac4d2007-01-27 02:29:45 +00001262
Evan Chenga8e29892007-01-19 07:51:42 +00001263// Direct calls
Evan Cheng20a2a0a2009-07-29 21:26:42 +00001264def : T1Pat<(ARMtcall texternalsym:$func), (tBL texternalsym:$func)>,
Evan Chengb6207242009-08-01 00:16:10 +00001265 Requires<[IsThumb, IsNotDarwin]>;
Evan Cheng20a2a0a2009-07-29 21:26:42 +00001266def : T1Pat<(ARMtcall texternalsym:$func), (tBLr9 texternalsym:$func)>,
Evan Chengb6207242009-08-01 00:16:10 +00001267 Requires<[IsThumb, IsDarwin]>;
Evan Cheng20a2a0a2009-07-29 21:26:42 +00001268
1269def : Tv5Pat<(ARMcall texternalsym:$func), (tBLXi texternalsym:$func)>,
Evan Chengb6207242009-08-01 00:16:10 +00001270 Requires<[IsThumb, HasV5T, IsNotDarwin]>;
Evan Cheng20a2a0a2009-07-29 21:26:42 +00001271def : Tv5Pat<(ARMcall texternalsym:$func), (tBLXi_r9 texternalsym:$func)>,
Evan Chengb6207242009-08-01 00:16:10 +00001272 Requires<[IsThumb, HasV5T, IsDarwin]>;
Evan Chenga8e29892007-01-19 07:51:42 +00001273
1274// Indirect calls to ARM routines
Evan Chengb6207242009-08-01 00:16:10 +00001275def : Tv5Pat<(ARMcall GPR:$dst), (tBLXr GPR:$dst)>,
1276 Requires<[IsThumb, HasV5T, IsNotDarwin]>;
1277def : Tv5Pat<(ARMcall GPR:$dst), (tBLXr_r9 GPR:$dst)>,
1278 Requires<[IsThumb, HasV5T, IsDarwin]>;
Evan Chenga8e29892007-01-19 07:51:42 +00001279
1280// zextload i1 -> zextload i8
Bill Wendlingf4caf692010-12-14 03:36:38 +00001281def : T1Pat<(zextloadi1 t_addrmode_rrs1:$addr),
1282 (tLDRBr t_addrmode_rrs1:$addr)>;
1283def : T1Pat<(zextloadi1 t_addrmode_is1:$addr),
1284 (tLDRBi t_addrmode_is1:$addr)>;
Jim Grosbach0ede14f2009-03-27 23:06:27 +00001285
Evan Chengb60c02e2007-01-26 19:13:16 +00001286// extload -> zextload
Bill Wendlingf4caf692010-12-14 03:36:38 +00001287def : T1Pat<(extloadi1 t_addrmode_rrs1:$addr), (tLDRBr t_addrmode_rrs1:$addr)>;
1288def : T1Pat<(extloadi1 t_addrmode_is1:$addr), (tLDRBi t_addrmode_is1:$addr)>;
1289def : T1Pat<(extloadi8 t_addrmode_rrs1:$addr), (tLDRBr t_addrmode_rrs1:$addr)>;
1290def : T1Pat<(extloadi8 t_addrmode_is1:$addr), (tLDRBi t_addrmode_is1:$addr)>;
1291def : T1Pat<(extloadi16 t_addrmode_rrs2:$addr), (tLDRHr t_addrmode_rrs2:$addr)>;
1292def : T1Pat<(extloadi16 t_addrmode_is2:$addr), (tLDRHi t_addrmode_is2:$addr)>;
Evan Chengb60c02e2007-01-26 19:13:16 +00001293
Evan Cheng0e87e232009-08-28 00:31:43 +00001294// If it's impossible to use [r,r] address mode for sextload, select to
Evan Cheng2f297df2009-07-11 07:08:13 +00001295// ldr{b|h} + sxt{b|h} instead.
Bill Wendling415af342010-12-15 00:58:57 +00001296def : T1Pat<(sextloadi8 t_addrmode_is1:$addr),
1297 (tSXTB (tLDRBi t_addrmode_is1:$addr))>,
1298 Requires<[IsThumb, IsThumb1Only, HasV6]>;
Bill Wendlingf4caf692010-12-14 03:36:38 +00001299def : T1Pat<(sextloadi8 t_addrmode_rrs1:$addr),
1300 (tSXTB (tLDRBr t_addrmode_rrs1:$addr))>,
Jim Grosbach6797f892010-11-01 17:08:58 +00001301 Requires<[IsThumb, IsThumb1Only, HasV6]>;
Bill Wendling415af342010-12-15 00:58:57 +00001302def : T1Pat<(sextloadi16 t_addrmode_is2:$addr),
1303 (tSXTH (tLDRHi t_addrmode_is2:$addr))>,
1304 Requires<[IsThumb, IsThumb1Only, HasV6]>;
Bill Wendlingf4caf692010-12-14 03:36:38 +00001305def : T1Pat<(sextloadi16 t_addrmode_rrs2:$addr),
1306 (tSXTH (tLDRHr t_addrmode_rrs2:$addr))>,
Jim Grosbach6797f892010-11-01 17:08:58 +00001307 Requires<[IsThumb, IsThumb1Only, HasV6]>;
Evan Cheng2f297df2009-07-11 07:08:13 +00001308
Bill Wendlingf4caf692010-12-14 03:36:38 +00001309def : T1Pat<(sextloadi8 t_addrmode_rrs1:$addr),
1310 (tASRri (tLSLri (tLDRBr t_addrmode_rrs1:$addr), 24), 24)>;
Bill Wendling415af342010-12-15 00:58:57 +00001311def : T1Pat<(sextloadi8 t_addrmode_is1:$addr),
1312 (tASRri (tLSLri (tLDRBi t_addrmode_is1:$addr), 24), 24)>;
1313def : T1Pat<(sextloadi16 t_addrmode_rrs2:$addr),
1314 (tASRri (tLSLri (tLDRHr t_addrmode_rrs2:$addr), 16), 16)>;
1315def : T1Pat<(sextloadi16 t_addrmode_is2:$addr),
1316 (tASRri (tLSLri (tLDRHi t_addrmode_is2:$addr), 16), 16)>;
Evan Cheng2f297df2009-07-11 07:08:13 +00001317
Evan Chenga8e29892007-01-19 07:51:42 +00001318// Large immediate handling.
1319
1320// Two piece imms.
Evan Cheng9cb9e672009-06-27 02:26:13 +00001321def : T1Pat<(i32 thumb_immshifted:$src),
1322 (tLSLri (tMOVi8 (thumb_immshifted_val imm:$src)),
1323 (thumb_immshifted_shamt imm:$src))>;
Evan Chenga8e29892007-01-19 07:51:42 +00001324
Evan Cheng9cb9e672009-06-27 02:26:13 +00001325def : T1Pat<(i32 imm0_255_comp:$src),
1326 (tMVN (tMOVi8 (imm_comp_XFORM imm:$src)))>;
Evan Chengb9803a82009-11-06 23:52:48 +00001327
1328// Pseudo instruction that combines ldr from constpool and add pc. This should
1329// be expanded into two instructions late to allow if-conversion and
1330// scheduling.
1331let isReMaterializable = 1 in
1332def tLDRpci_pic : PseudoInst<(outs GPR:$dst), (ins i32imm:$addr, pclabel:$cp),
Bill Wendling0480e282010-12-01 02:36:55 +00001333 NoItinerary,
Evan Chengb9803a82009-11-06 23:52:48 +00001334 [(set GPR:$dst, (ARMpic_add (load (ARMWrapper tconstpool:$addr)),
1335 imm:$cp))]>,
Jim Grosbach6797f892010-11-01 17:08:58 +00001336 Requires<[IsThumb, IsThumb1Only]>;
Jim Grosbach53e3fc42011-07-08 17:40:42 +00001337
1338// Pseudo-instruction for merged POP and return.
1339// FIXME: remove when we have a way to marking a MI with these properties.
1340let isReturn = 1, isTerminator = 1, isBarrier = 1, mayLoad = 1,
1341 hasExtraDefRegAllocReq = 1 in
1342def tPOP_RET : tPseudoExpand<(outs), (ins pred:$p, reglist:$regs, variable_ops),
Owen Anderson16884412011-07-13 23:22:26 +00001343 2, IIC_iPop_Br, [],
Jim Grosbach53e3fc42011-07-08 17:40:42 +00001344 (tPOP pred:$p, reglist:$regs)>;
1345
Jim Grosbachaa8d1b82011-07-08 22:25:23 +00001346// Indirect branch using "mov pc, $Rm"
1347let isBranch = 1, isTerminator = 1, isBarrier = 1, isIndirectBranch = 1 in {
Jim Grosbach7e61a312011-07-08 22:33:49 +00001348 def tBRIND : tPseudoExpand<(outs), (ins GPR:$Rm, pred:$p),
Owen Anderson16884412011-07-13 23:22:26 +00001349 2, IIC_Br, [(brind GPR:$Rm)],
Jim Grosbach7e61a312011-07-08 22:33:49 +00001350 (tMOVr PC, GPR:$Rm, pred:$p)>;
Jim Grosbachaa8d1b82011-07-08 22:25:23 +00001351}