blob: 63d8b48734e6d504e688c5df89e4352b9858e14d [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 Grosbach05b01562011-08-19 19:17:58 +0000123 let ParserMatchClass = t_addrmode_rr_asm_operand;
Jim Grosbach30eae3c2009-04-07 20:34:09 +0000124 let MIOperandInfo = (ops tGPR:$base, tGPR:$offsreg);
Evan Chenga8e29892007-01-19 07:51:42 +0000125}
126
Bill Wendlingf4caf692010-12-14 03:36:38 +0000127// t_addrmode_rrs := reg + reg
Evan Chenga8e29892007-01-19 07:51:42 +0000128//
Jim Grosbachc6d7c652011-08-19 16:52:32 +0000129// We use separate scaled versions because the Select* functions need
130// to explicitly check for a matching constant and return false here so that
131// the reg+imm forms will match instead. This is a horrible way to do that,
132// as it forces tight coupling between the methods, but it's how selectiondag
133// currently works.
Bill Wendlingf4caf692010-12-14 03:36:38 +0000134def t_addrmode_rrs1 : Operand<i32>,
135 ComplexPattern<i32, 2, "SelectThumbAddrModeRI5S1", []> {
136 let EncoderMethod = "getThumbAddrModeRegRegOpValue";
137 let PrintMethod = "printThumbAddrModeRROperand";
Owen Anderson8d7d2e12011-08-09 20:55:18 +0000138 let DecoderMethod = "DecodeThumbAddrModeRR";
Jim Grosbach7ce05792011-08-03 23:50:40 +0000139 let ParserMatchClass = t_addrmode_rr_asm_operand;
Bill Wendlingf4caf692010-12-14 03:36:38 +0000140 let MIOperandInfo = (ops tGPR:$base, tGPR:$offsreg);
Evan Chenga8e29892007-01-19 07:51:42 +0000141}
Bill Wendlingf4caf692010-12-14 03:36:38 +0000142def t_addrmode_rrs2 : Operand<i32>,
143 ComplexPattern<i32, 2, "SelectThumbAddrModeRI5S2", []> {
144 let EncoderMethod = "getThumbAddrModeRegRegOpValue";
Owen Anderson8d7d2e12011-08-09 20:55:18 +0000145 let DecoderMethod = "DecodeThumbAddrModeRR";
Bill Wendlingf4caf692010-12-14 03:36:38 +0000146 let PrintMethod = "printThumbAddrModeRROperand";
Jim Grosbach7ce05792011-08-03 23:50:40 +0000147 let ParserMatchClass = t_addrmode_rr_asm_operand;
Bill Wendlingf4caf692010-12-14 03:36:38 +0000148 let MIOperandInfo = (ops tGPR:$base, tGPR:$offsreg);
Bill Wendlingf4caf692010-12-14 03:36:38 +0000149}
150def t_addrmode_rrs4 : Operand<i32>,
151 ComplexPattern<i32, 2, "SelectThumbAddrModeRI5S4", []> {
152 let EncoderMethod = "getThumbAddrModeRegRegOpValue";
Owen Anderson8d7d2e12011-08-09 20:55:18 +0000153 let DecoderMethod = "DecodeThumbAddrModeRR";
Bill Wendlingf4caf692010-12-14 03:36:38 +0000154 let PrintMethod = "printThumbAddrModeRROperand";
Jim Grosbach7ce05792011-08-03 23:50:40 +0000155 let ParserMatchClass = t_addrmode_rr_asm_operand;
Bill Wendlingf4caf692010-12-14 03:36:38 +0000156 let MIOperandInfo = (ops tGPR:$base, tGPR:$offsreg);
Evan Chenga8e29892007-01-19 07:51:42 +0000157}
Evan Chengc38f2bc2007-01-23 22:59:13 +0000158
Bill Wendlingf4caf692010-12-14 03:36:38 +0000159// t_addrmode_is4 := reg + imm5 * 4
Evan Chengc38f2bc2007-01-23 22:59:13 +0000160//
Jim Grosbach60f91a32011-08-19 17:55:24 +0000161def t_addrmode_is4_asm_operand : AsmOperandClass { let Name = "MemThumbRIs4"; }
Bill Wendlingf4caf692010-12-14 03:36:38 +0000162def t_addrmode_is4 : Operand<i32>,
163 ComplexPattern<i32, 2, "SelectThumbAddrModeImm5S4", []> {
164 let EncoderMethod = "getAddrModeISOpValue";
Owen Anderson8d7d2e12011-08-09 20:55:18 +0000165 let DecoderMethod = "DecodeThumbAddrModeIS";
Bill Wendlingf4caf692010-12-14 03:36:38 +0000166 let PrintMethod = "printThumbAddrModeImm5S4Operand";
Jim Grosbach60f91a32011-08-19 17:55:24 +0000167 let ParserMatchClass = t_addrmode_is4_asm_operand;
Bill Wendlingf4caf692010-12-14 03:36:38 +0000168 let MIOperandInfo = (ops tGPR:$base, i32imm:$offsimm);
Bill Wendlingf4caf692010-12-14 03:36:38 +0000169}
170
171// t_addrmode_is2 := reg + imm5 * 2
172//
Jim Grosbach38466302011-08-19 18:55:51 +0000173def t_addrmode_is2_asm_operand : AsmOperandClass { let Name = "MemThumbRIs2"; }
Bill Wendlingf4caf692010-12-14 03:36:38 +0000174def t_addrmode_is2 : Operand<i32>,
175 ComplexPattern<i32, 2, "SelectThumbAddrModeImm5S2", []> {
176 let EncoderMethod = "getAddrModeISOpValue";
Owen Anderson8d7d2e12011-08-09 20:55:18 +0000177 let DecoderMethod = "DecodeThumbAddrModeIS";
Bill Wendlingf4caf692010-12-14 03:36:38 +0000178 let PrintMethod = "printThumbAddrModeImm5S2Operand";
Jim Grosbach38466302011-08-19 18:55:51 +0000179 let ParserMatchClass = t_addrmode_is2_asm_operand;
Bill Wendlingf4caf692010-12-14 03:36:38 +0000180 let MIOperandInfo = (ops tGPR:$base, i32imm:$offsimm);
Bill Wendlingf4caf692010-12-14 03:36:38 +0000181}
182
183// t_addrmode_is1 := reg + imm5
184//
Jim Grosbach48ff5ff2011-08-19 18:49:59 +0000185def t_addrmode_is1_asm_operand : AsmOperandClass { let Name = "MemThumbRIs1"; }
Bill Wendlingf4caf692010-12-14 03:36:38 +0000186def t_addrmode_is1 : Operand<i32>,
187 ComplexPattern<i32, 2, "SelectThumbAddrModeImm5S1", []> {
188 let EncoderMethod = "getAddrModeISOpValue";
Owen Anderson8d7d2e12011-08-09 20:55:18 +0000189 let DecoderMethod = "DecodeThumbAddrModeIS";
Bill Wendlingf4caf692010-12-14 03:36:38 +0000190 let PrintMethod = "printThumbAddrModeImm5S1Operand";
Jim Grosbach48ff5ff2011-08-19 18:49:59 +0000191 let ParserMatchClass = t_addrmode_is1_asm_operand;
Bill Wendlingf4caf692010-12-14 03:36:38 +0000192 let MIOperandInfo = (ops tGPR:$base, i32imm:$offsimm);
Evan Chenga8e29892007-01-19 07:51:42 +0000193}
194
195// t_addrmode_sp := sp + imm8 * 4
196//
Jim Grosbachecd85892011-08-19 18:13:48 +0000197def t_addrmode_sp_asm_operand : AsmOperandClass { let Name = "MemThumbSPI"; }
Evan Chenga8e29892007-01-19 07:51:42 +0000198def t_addrmode_sp : Operand<i32>,
199 ComplexPattern<i32, 2, "SelectThumbAddrModeSP", []> {
Jim Grosbachd967cd02010-12-07 21:50:47 +0000200 let EncoderMethod = "getAddrModeThumbSPOpValue";
Owen Anderson648f9a72011-08-08 23:25:22 +0000201 let DecoderMethod = "DecodeThumbAddrModeSP";
Evan Chenga8e29892007-01-19 07:51:42 +0000202 let PrintMethod = "printThumbAddrModeSPOperand";
Jim Grosbachecd85892011-08-19 18:13:48 +0000203 let ParserMatchClass = t_addrmode_sp_asm_operand;
Jakob Stoklund Olesenc5b7ef12010-01-13 00:43:06 +0000204 let MIOperandInfo = (ops GPR:$base, i32imm:$offsimm);
Evan Chenga8e29892007-01-19 07:51:42 +0000205}
206
Bill Wendlingb8958b02010-12-08 01:57:09 +0000207// t_addrmode_pc := <label> => pc + imm8 * 4
208//
209def t_addrmode_pc : Operand<i32> {
210 let EncoderMethod = "getAddrModePCOpValue";
Owen Anderson8d7d2e12011-08-09 20:55:18 +0000211 let DecoderMethod = "DecodeThumbAddrModePC";
Bill Wendlingb8958b02010-12-08 01:57:09 +0000212}
213
Evan Chenga8e29892007-01-19 07:51:42 +0000214//===----------------------------------------------------------------------===//
215// Miscellaneous Instructions.
216//
217
Jim Grosbach4642ad32010-02-22 23:10:38 +0000218// FIXME: Marking these as hasSideEffects is necessary to prevent machine DCE
219// from removing one half of the matched pairs. That breaks PEI, which assumes
220// these will always be in pairs, and asserts if it finds otherwise. Better way?
221let Defs = [SP], Uses = [SP], hasSideEffects = 1 in {
Evan Cheng44bec522007-05-15 01:29:07 +0000222def tADJCALLSTACKUP :
Bill Wendlinga8981662010-11-19 22:02:18 +0000223 PseudoInst<(outs), (ins i32imm:$amt1, i32imm:$amt2), NoItinerary,
224 [(ARMcallseq_end imm:$amt1, imm:$amt2)]>,
225 Requires<[IsThumb, IsThumb1Only]>;
Evan Cheng44bec522007-05-15 01:29:07 +0000226
Jim Grosbach0ede14f2009-03-27 23:06:27 +0000227def tADJCALLSTACKDOWN :
Bill Wendlinga8981662010-11-19 22:02:18 +0000228 PseudoInst<(outs), (ins i32imm:$amt), NoItinerary,
229 [(ARMcallseq_start imm:$amt)]>,
230 Requires<[IsThumb, IsThumb1Only]>;
Evan Cheng071a2792007-09-11 19:55:27 +0000231}
Evan Cheng44bec522007-05-15 01:29:07 +0000232
Jim Grosbach421993f2011-08-17 23:08:57 +0000233class T1SystemEncoding<bits<8> opc>
Bill Wendlinga46a4932010-11-29 22:15:03 +0000234 : T1Encoding<0b101111> {
Jim Grosbach421993f2011-08-17 23:08:57 +0000235 let Inst{9-8} = 0b11;
236 let Inst{7-0} = opc;
Bill Wendlinga46a4932010-11-29 22:15:03 +0000237}
238
Jim Grosbach421993f2011-08-17 23:08:57 +0000239def tNOP : T1pI<(outs), (ins), NoItinerary, "nop", "", []>,
240 T1SystemEncoding<0x00>; // A8.6.110
Johnny Chenbd2c6232010-02-25 03:28:51 +0000241
Jim Grosbach421993f2011-08-17 23:08:57 +0000242def tYIELD : T1pI<(outs), (ins), NoItinerary, "yield", "", []>,
243 T1SystemEncoding<0x10>; // A8.6.410
Johnny Chend86d2692010-02-25 17:51:03 +0000244
Jim Grosbach421993f2011-08-17 23:08:57 +0000245def tWFE : T1pI<(outs), (ins), NoItinerary, "wfe", "", []>,
246 T1SystemEncoding<0x20>; // A8.6.408
Johnny Chend86d2692010-02-25 17:51:03 +0000247
Jim Grosbach421993f2011-08-17 23:08:57 +0000248def tWFI : T1pI<(outs), (ins), NoItinerary, "wfi", "", []>,
249 T1SystemEncoding<0x30>; // A8.6.409
Johnny Chend86d2692010-02-25 17:51:03 +0000250
Jim Grosbach421993f2011-08-17 23:08:57 +0000251def tSEV : T1pI<(outs), (ins), NoItinerary, "sev", "", []>,
252 T1SystemEncoding<0x40>; // A8.6.157
Bill Wendlinga46a4932010-11-29 22:15:03 +0000253
Jim Grosbach421993f2011-08-17 23:08:57 +0000254// The imm operand $val can be used by a debugger to store more information
Bill Wendlinga46a4932010-11-29 22:15:03 +0000255// about the breakpoint.
Jim Grosbach421993f2011-08-17 23:08:57 +0000256def tBKPT : T1I<(outs), (ins imm0_255:$val), NoItinerary, "bkpt\t$val",
257 []>,
258 T1Encoding<0b101111> {
259 let Inst{9-8} = 0b10;
Bill Wendlinga46a4932010-11-29 22:15:03 +0000260 // A8.6.22
261 bits<8> val;
262 let Inst{7-0} = val;
263}
Johnny Chend86d2692010-02-25 17:51:03 +0000264
Jim Grosbach06322472011-07-22 17:52:23 +0000265def tSETEND : T1I<(outs), (ins setend_op:$end), NoItinerary, "setend\t$end",
266 []>, T1Encoding<0b101101> {
267 bits<1> end;
Bill Wendling7d0affd2010-11-21 10:55:23 +0000268 // A8.6.156
Johnny Chend86d2692010-02-25 17:51:03 +0000269 let Inst{9-5} = 0b10010;
Bill Wendlinga8981662010-11-19 22:02:18 +0000270 let Inst{4} = 1;
Jim Grosbach06322472011-07-22 17:52:23 +0000271 let Inst{3} = end;
Bill Wendlinga8981662010-11-19 22:02:18 +0000272 let Inst{2-0} = 0b000;
Johnny Chend86d2692010-02-25 17:51:03 +0000273}
274
Johnny Chen93042d12010-03-02 18:14:57 +0000275// Change Processor State is a system instruction -- for disassembly only.
Bruno Cardoso Lopesa2b6e412011-02-14 13:09:44 +0000276def tCPS : T1I<(outs), (ins imod_op:$imod, iflags_op:$iflags),
277 NoItinerary, "cps$imod $iflags",
278 [/* For disassembly only; pattern left blank */]>,
Bill Wendling849f2e32010-11-29 00:18:15 +0000279 T1Misc<0b0110011> {
280 // A8.6.38 & B6.1.1
Bruno Cardoso Lopesa2b6e412011-02-14 13:09:44 +0000281 bit imod;
282 bits<3> iflags;
283
284 let Inst{4} = imod;
285 let Inst{3} = 0;
286 let Inst{2-0} = iflags;
Owen Anderson8d7d2e12011-08-09 20:55:18 +0000287 let DecoderMethod = "DecodeThumbCPS";
Bill Wendling849f2e32010-11-29 00:18:15 +0000288}
Johnny Chen93042d12010-03-02 18:14:57 +0000289
Evan Cheng35d6c412009-08-04 23:47:55 +0000290// For both thumb1 and thumb2.
Chris Lattnera4a3a5e2010-10-31 19:15:18 +0000291let isNotDuplicable = 1, isCodeGenOnly = 1 in
Jim Grosbacha3fbadf2010-09-30 19:53:58 +0000292def tPICADD : TIt<(outs GPR:$dst), (ins GPR:$lhs, pclabel:$cp), IIC_iALUr, "",
Bill Wendling0ae28e42010-11-19 22:37:33 +0000293 [(set GPR:$dst, (ARMpic_add GPR:$lhs, imm:$cp))]>,
Johnny Chend68e1192009-12-15 17:24:14 +0000294 T1Special<{0,0,?,?}> {
Bill Wendling0e45a5a2010-11-30 00:50:22 +0000295 // A8.6.6
Bill Wendling0ae28e42010-11-19 22:37:33 +0000296 bits<3> dst;
Bill Wendling0e45a5a2010-11-30 00:50:22 +0000297 let Inst{6-3} = 0b1111; // Rm = pc
Bill Wendling0ae28e42010-11-19 22:37:33 +0000298 let Inst{2-0} = dst;
Johnny Chend68e1192009-12-15 17:24:14 +0000299}
Evan Chenga8e29892007-01-19 07:51:42 +0000300
Bill Wendling0ae28e42010-11-19 22:37:33 +0000301// ADD <Rd>, sp, #<imm8>
302// This is rematerializable, which is particularly useful for taking the
303// address of locals.
304let isReMaterializable = 1 in
305def tADDrSPi : T1I<(outs tGPR:$dst), (ins GPR:$sp, t_imm_s4:$rhs), IIC_iALUi,
306 "add\t$dst, $sp, $rhs", []>,
307 T1Encoding<{1,0,1,0,1,?}> {
308 // A6.2 & A8.6.8
309 bits<3> dst;
310 bits<8> rhs;
311 let Inst{10-8} = dst;
312 let Inst{7-0} = rhs;
Owen Anderson8d7d2e12011-08-09 20:55:18 +0000313 let DecoderMethod = "DecodeThumbAddSpecialReg";
Bill Wendling0ae28e42010-11-19 22:37:33 +0000314}
315
316// ADD sp, sp, #<imm7>
Evan Cheng2ef9c8a2009-11-19 06:57:41 +0000317def tADDspi : TIt<(outs GPR:$dst), (ins GPR:$lhs, t_imm_s4:$rhs), IIC_iALUi,
Johnny Chend68e1192009-12-15 17:24:14 +0000318 "add\t$dst, $rhs", []>,
Bill Wendling0ae28e42010-11-19 22:37:33 +0000319 T1Misc<{0,0,0,0,0,?,?}> {
320 // A6.2.5 & A8.6.8
321 bits<7> rhs;
322 let Inst{6-0} = rhs;
Owen Anderson8d7d2e12011-08-09 20:55:18 +0000323 let DecoderMethod = "DecodeThumbAddSPImm";
Bill Wendling0ae28e42010-11-19 22:37:33 +0000324}
Evan Cheng7dcf4a82009-06-25 01:05:06 +0000325
Bill Wendling0ae28e42010-11-19 22:37:33 +0000326// SUB sp, sp, #<imm7>
327// FIXME: The encoding and the ASM string don't match up.
Evan Cheng2ef9c8a2009-11-19 06:57:41 +0000328def tSUBspi : TIt<(outs GPR:$dst), (ins GPR:$lhs, t_imm_s4:$rhs), IIC_iALUi,
Johnny Chend68e1192009-12-15 17:24:14 +0000329 "sub\t$dst, $rhs", []>,
Bill Wendling0ae28e42010-11-19 22:37:33 +0000330 T1Misc<{0,0,0,0,1,?,?}> {
331 // A6.2.5 & A8.6.214
332 bits<7> rhs;
333 let Inst{6-0} = rhs;
Owen Anderson8d7d2e12011-08-09 20:55:18 +0000334 let DecoderMethod = "DecodeThumbAddSPImm";
Bill Wendling0ae28e42010-11-19 22:37:33 +0000335}
Evan Cheng86198642009-08-07 00:34:42 +0000336
Bill Wendling0ae28e42010-11-19 22:37:33 +0000337// ADD <Rm>, sp
David Goodwin5d598aa2009-08-19 18:00:44 +0000338def tADDrSP : TIt<(outs GPR:$dst), (ins GPR:$lhs, GPR:$rhs), IIC_iALUr,
Johnny Chend68e1192009-12-15 17:24:14 +0000339 "add\t$dst, $rhs", []>,
340 T1Special<{0,0,?,?}> {
Bill Wendling0ae28e42010-11-19 22:37:33 +0000341 // A8.6.9 Encoding T1
342 bits<4> dst;
343 let Inst{7} = dst{3};
344 let Inst{6-3} = 0b1101;
345 let Inst{2-0} = dst{2-0};
Owen Anderson8d7d2e12011-08-09 20:55:18 +0000346 let DecoderMethod = "DecodeThumbAddSPReg";
Johnny Chend68e1192009-12-15 17:24:14 +0000347}
Evan Cheng86198642009-08-07 00:34:42 +0000348
Bill Wendling0ae28e42010-11-19 22:37:33 +0000349// ADD sp, <Rm>
David Goodwin5d598aa2009-08-19 18:00:44 +0000350def tADDspr : TIt<(outs GPR:$dst), (ins GPR:$lhs, GPR:$rhs), IIC_iALUr,
Johnny Chend68e1192009-12-15 17:24:14 +0000351 "add\t$dst, $rhs", []>,
352 T1Special<{0,0,?,?}> {
353 // A8.6.9 Encoding T2
Bill Wendling0ae28e42010-11-19 22:37:33 +0000354 bits<4> dst;
Johnny Chend68e1192009-12-15 17:24:14 +0000355 let Inst{7} = 1;
Bill Wendling0ae28e42010-11-19 22:37:33 +0000356 let Inst{6-3} = dst;
Johnny Chend68e1192009-12-15 17:24:14 +0000357 let Inst{2-0} = 0b101;
Owen Anderson8d7d2e12011-08-09 20:55:18 +0000358 let DecoderMethod = "DecodeThumbAddSPReg";
Johnny Chend68e1192009-12-15 17:24:14 +0000359}
Evan Cheng86198642009-08-07 00:34:42 +0000360
Evan Chenga8e29892007-01-19 07:51:42 +0000361//===----------------------------------------------------------------------===//
362// Control Flow Instructions.
363//
364
Bob Wilson8d4de5a2009-10-28 18:26:41 +0000365// Indirect branches
366let isBranch = 1, isTerminator = 1, isBarrier = 1, isIndirectBranch = 1 in {
Cameron Zwarich421b1062011-05-26 03:41:12 +0000367 def tBX : TI<(outs), (ins GPR:$Rm, pred:$p), IIC_Br, "bx${p}\t$Rm", []>,
368 T1Special<{1,1,0,?}> {
369 // A6.2.3 & A8.6.25
370 bits<4> Rm;
371 let Inst{6-3} = Rm;
372 let Inst{2-0} = 0b000;
373 }
Bob Wilson8d4de5a2009-10-28 18:26:41 +0000374}
375
Jim Grosbachead77cd2011-07-08 21:04:05 +0000376let isReturn = 1, isTerminator = 1, isBarrier = 1 in {
Owen Anderson16884412011-07-13 23:22:26 +0000377 def tBX_RET : tPseudoExpand<(outs), (ins pred:$p), 2, IIC_Br,
Jim Grosbach25e6d482011-07-08 21:50:04 +0000378 [(ARMretflag)], (tBX LR, pred:$p)>;
Jim Grosbachead77cd2011-07-08 21:04:05 +0000379
380 // Alternative return instruction used by vararg functions.
Jim Grosbach25e6d482011-07-08 21:50:04 +0000381 def tBX_RET_vararg : tPseudoExpand<(outs), (ins tGPR:$Rm, pred:$p),
Owen Anderson16884412011-07-13 23:22:26 +0000382 2, IIC_Br, [],
Jim Grosbach25e6d482011-07-08 21:50:04 +0000383 (tBX GPR:$Rm, pred:$p)>;
Jim Grosbachead77cd2011-07-08 21:04:05 +0000384}
385
Bill Wendling0480e282010-12-01 02:36:55 +0000386// All calls clobber the non-callee saved registers. SP is marked as a use to
387// prevent stack-pointer assignments that appear immediately before calls from
388// potentially appearing dead.
Jim Grosbach0ede14f2009-03-27 23:06:27 +0000389let isCall = 1,
Evan Cheng1e0eab12010-11-29 22:43:27 +0000390 // On non-Darwin platforms R9 is callee-saved.
Jakob Stoklund Olesen2944b4f2011-05-03 22:31:24 +0000391 Defs = [R0, R1, R2, R3, R12, LR, QQQQ0, QQQQ2, QQQQ3, CPSR, FPSCR],
Evan Cheng1e0eab12010-11-29 22:43:27 +0000392 Uses = [SP] in {
Evan Chengb6207242009-08-01 00:16:10 +0000393 // Also used for Thumb2
Johnny Chend68e1192009-12-15 17:24:14 +0000394 def tBL : TIx2<0b11110, 0b11, 1,
Owen Anderson0af0dc82011-07-18 18:50:52 +0000395 (outs), (ins pred:$p, t_bltarget:$func, variable_ops), IIC_Br,
396 "bl${p}\t$func",
Johnny Chend68e1192009-12-15 17:24:14 +0000397 [(ARMtcall tglobaladdr:$func)]>,
Bill Wendling534a5e42010-12-03 01:55:47 +0000398 Requires<[IsThumb, IsNotDarwin]> {
Owen Anderson648f9a72011-08-08 23:25:22 +0000399 bits<22> func;
400 let Inst{26} = func{21};
Jim Grosbach662a8162010-12-06 23:57:07 +0000401 let Inst{25-16} = func{20-11};
Jim Grosbach4fa102b2010-12-03 22:33:42 +0000402 let Inst{13} = 1;
403 let Inst{11} = 1;
Jim Grosbach662a8162010-12-06 23:57:07 +0000404 let Inst{10-0} = func{10-0};
Bill Wendling534a5e42010-12-03 01:55:47 +0000405 }
Evan Cheng20a2a0a2009-07-29 21:26:42 +0000406
Evan Chengb6207242009-08-01 00:16:10 +0000407 // ARMv5T and above, also used for Thumb2
Johnny Chend68e1192009-12-15 17:24:14 +0000408 def tBLXi : TIx2<0b11110, 0b11, 0,
Jim Grosbach5f687de2011-08-18 16:50:45 +0000409 (outs), (ins pred:$p, t_blxtarget:$func, variable_ops), IIC_Br,
Owen Anderson0af0dc82011-07-18 18:50:52 +0000410 "blx${p}\t$func",
Johnny Chend68e1192009-12-15 17:24:14 +0000411 [(ARMcall tglobaladdr:$func)]>,
Jim Grosbach4fa102b2010-12-03 22:33:42 +0000412 Requires<[IsThumb, HasV5T, IsNotDarwin]> {
Jim Grosbach662a8162010-12-06 23:57:07 +0000413 bits<21> func;
414 let Inst{25-16} = func{20-11};
Jim Grosbach4fa102b2010-12-03 22:33:42 +0000415 let Inst{13} = 1;
416 let Inst{11} = 1;
Jim Grosbach662a8162010-12-06 23:57:07 +0000417 let Inst{10-1} = func{10-1};
418 let Inst{0} = 0; // func{0} is assumed zero
Jim Grosbach4fa102b2010-12-03 22:33:42 +0000419 }
Evan Cheng20a2a0a2009-07-29 21:26:42 +0000420
Evan Chengb6207242009-08-01 00:16:10 +0000421 // Also used for Thumb2
Owen Anderson0af0dc82011-07-18 18:50:52 +0000422 def tBLXr : TI<(outs), (ins pred:$p, GPR:$func, variable_ops), IIC_Br,
423 "blx${p}\t$func",
Evan Chengb6207242009-08-01 00:16:10 +0000424 [(ARMtcall GPR:$func)]>,
Johnny Chend68e1192009-12-15 17:24:14 +0000425 Requires<[IsThumb, HasV5T, IsNotDarwin]>,
Owen Anderson18901d62011-05-11 17:00:48 +0000426 T1Special<{1,1,1,?}> { // A6.2.3 & A8.6.24;
427 bits<4> func;
428 let Inst{6-3} = func;
429 let Inst{2-0} = 0b000;
430 }
Evan Cheng20a2a0a2009-07-29 21:26:42 +0000431
Lauro Ramos Venanciob8a93a42007-03-27 16:19:21 +0000432 // ARMv4T
Cameron Zwarichad70f6d2011-05-25 21:53:50 +0000433 def tBX_CALL : tPseudoInst<(outs), (ins tGPR:$func, variable_ops),
Owen Anderson16884412011-07-13 23:22:26 +0000434 4, IIC_Br,
Evan Cheng20a2a0a2009-07-29 21:26:42 +0000435 [(ARMcall_nolink tGPR:$func)]>,
Jim Grosbach6797f892010-11-01 17:08:58 +0000436 Requires<[IsThumb, IsThumb1Only, IsNotDarwin]>;
Evan Cheng20a2a0a2009-07-29 21:26:42 +0000437}
438
Evan Cheng20a2a0a2009-07-29 21:26:42 +0000439let isCall = 1,
Evan Cheng1e0eab12010-11-29 22:43:27 +0000440 // On Darwin R9 is call-clobbered.
441 // R7 is marked as a use to prevent frame-pointer assignments from being
442 // moved above / below calls.
Jakob Stoklund Olesen2944b4f2011-05-03 22:31:24 +0000443 Defs = [R0, R1, R2, R3, R9, R12, LR, QQQQ0, QQQQ2, QQQQ3, CPSR, FPSCR],
Evan Cheng1e0eab12010-11-29 22:43:27 +0000444 Uses = [R7, SP] in {
Evan Chengb6207242009-08-01 00:16:10 +0000445 // Also used for Thumb2
Owen Anderson0af0dc82011-07-18 18:50:52 +0000446 def tBLr9 : tPseudoExpand<(outs), (ins pred:$p, t_bltarget:$func, variable_ops),
447 4, IIC_Br, [(ARMtcall tglobaladdr:$func)],
448 (tBL pred:$p, t_bltarget:$func)>,
449 Requires<[IsThumb, IsDarwin]>;
Evan Cheng20a2a0a2009-07-29 21:26:42 +0000450
Evan Chengb6207242009-08-01 00:16:10 +0000451 // ARMv5T and above, also used for Thumb2
Owen Anderson0af0dc82011-07-18 18:50:52 +0000452 def tBLXi_r9 : tPseudoExpand<(outs), (ins pred:$p, t_blxtarget:$func, variable_ops),
453 4, IIC_Br, [(ARMcall tglobaladdr:$func)],
454 (tBLXi pred:$p, t_blxtarget:$func)>,
455 Requires<[IsThumb, HasV5T, IsDarwin]>;
Evan Cheng20a2a0a2009-07-29 21:26:42 +0000456
Evan Chengb6207242009-08-01 00:16:10 +0000457 // Also used for Thumb2
Owen Anderson0af0dc82011-07-18 18:50:52 +0000458 def tBLXr_r9 : tPseudoExpand<(outs), (ins pred:$p, GPR:$func, variable_ops),
459 2, IIC_Br, [(ARMtcall GPR:$func)],
460 (tBLXr pred:$p, GPR:$func)>,
461 Requires<[IsThumb, HasV5T, IsDarwin]>;
Evan Cheng20a2a0a2009-07-29 21:26:42 +0000462
463 // ARMv4T
Cameron Zwarichad70f6d2011-05-25 21:53:50 +0000464 def tBXr9_CALL : tPseudoInst<(outs), (ins tGPR:$func, variable_ops),
Owen Anderson16884412011-07-13 23:22:26 +0000465 4, IIC_Br,
Johnny Chend68e1192009-12-15 17:24:14 +0000466 [(ARMcall_nolink tGPR:$func)]>,
Jim Grosbach6797f892010-11-01 17:08:58 +0000467 Requires<[IsThumb, IsThumb1Only, IsDarwin]>;
Evan Chenga8e29892007-01-19 07:51:42 +0000468}
469
Bill Wendling0480e282010-12-01 02:36:55 +0000470let isBranch = 1, isTerminator = 1, isBarrier = 1 in {
471 let isPredicable = 1 in
Jim Grosbache2467172010-12-10 18:21:33 +0000472 def tB : T1I<(outs), (ins t_brtarget:$target), IIC_Br,
Bill Wendling0480e282010-12-01 02:36:55 +0000473 "b\t$target", [(br bb:$target)]>,
Jim Grosbache2467172010-12-10 18:21:33 +0000474 T1Encoding<{1,1,1,0,0,?}> {
475 bits<11> target;
476 let Inst{10-0} = target;
477 }
Evan Chenga8e29892007-01-19 07:51:42 +0000478
Evan Cheng225dfe92007-01-30 01:13:37 +0000479 // Far jump
Jim Grosbach3efad8f2010-12-16 19:11:16 +0000480 // Just a pseudo for a tBL instruction. Needed to let regalloc know about
481 // the clobber of LR.
Evan Cheng53c67c02009-08-07 05:45:07 +0000482 let Defs = [LR] in
Owen Anderson0af0dc82011-07-18 18:50:52 +0000483 def tBfar : tPseudoExpand<(outs), (ins t_bltarget:$target, pred:$p),
484 4, IIC_Br, [], (tBL pred:$p, t_bltarget:$target)>;
Evan Cheng225dfe92007-01-30 01:13:37 +0000485
Jim Grosbachf1aa47d2010-11-29 19:32:47 +0000486 def tBR_JTr : tPseudoInst<(outs),
487 (ins tGPR:$target, i32imm:$jt, i32imm:$id),
Owen Anderson16884412011-07-13 23:22:26 +0000488 0, IIC_Br,
Jim Grosbachf1aa47d2010-11-29 19:32:47 +0000489 [(ARMbrjt tGPR:$target, tjumptable:$jt, imm:$id)]> {
490 list<Predicate> Predicates = [IsThumb, IsThumb1Only];
Johnny Chenbbc71b22009-12-16 02:32:54 +0000491 }
Evan Chengd85ac4d2007-01-27 02:29:45 +0000492}
493
Evan Chengc85e8322007-07-05 07:13:32 +0000494// FIXME: should be able to write a pattern for ARMBrcond, but can't use
Jim Grosbach0ede14f2009-03-27 23:06:27 +0000495// a two-value operand where a dag node expects two operands. :(
Evan Chengffbacca2007-07-21 00:34:19 +0000496let isBranch = 1, isTerminator = 1 in
Jim Grosbach01086452010-12-10 17:13:40 +0000497 def tBcc : T1I<(outs), (ins t_bcctarget:$target, pred:$p), IIC_Br,
Jim Grosbachceab5012010-12-04 00:20:40 +0000498 "b${p}\t$target",
Johnny Chend68e1192009-12-15 17:24:14 +0000499 [/*(ARMbrcond bb:$target, imm:$cc)*/]>,
Eric Christopher33281b22011-05-27 03:50:53 +0000500 T1BranchCond<{1,1,0,1}> {
Jim Grosbachceab5012010-12-04 00:20:40 +0000501 bits<4> p;
Jim Grosbach01086452010-12-10 17:13:40 +0000502 bits<8> target;
Jim Grosbachceab5012010-12-04 00:20:40 +0000503 let Inst{11-8} = p;
Jim Grosbach01086452010-12-10 17:13:40 +0000504 let Inst{7-0} = target;
Jim Grosbachceab5012010-12-04 00:20:40 +0000505}
Evan Chenga8e29892007-01-19 07:51:42 +0000506
Jim Grosbache36e21e2011-07-08 20:13:35 +0000507// Tail calls
508let isCall = 1, isTerminator = 1, isReturn = 1, isBarrier = 1 in {
509 // Darwin versions.
510 let Defs = [R0, R1, R2, R3, R9, R12, QQQQ0, QQQQ2, QQQQ3, PC],
511 Uses = [SP] in {
Jim Grosbachaf7f2d62011-07-08 20:32:21 +0000512 // tTAILJMPd: Darwin version uses a Thumb2 branch (no Thumb1 tail calls
513 // on Darwin), so it's in ARMInstrThumb2.td.
Jim Grosbach0b44aea2011-07-08 20:39:19 +0000514 def tTAILJMPr : tPseudoExpand<(outs), (ins tcGPR:$dst, variable_ops),
Owen Anderson16884412011-07-13 23:22:26 +0000515 4, IIC_Br, [],
Jim Grosbach0b44aea2011-07-08 20:39:19 +0000516 (tBX GPR:$dst, (ops 14, zero_reg))>,
517 Requires<[IsThumb, IsDarwin]>;
Jim Grosbache36e21e2011-07-08 20:13:35 +0000518 }
519 // Non-Darwin versions (the difference is R9).
520 let Defs = [R0, R1, R2, R3, R12, QQQQ0, QQQQ2, QQQQ3, PC],
521 Uses = [SP] in {
Jim Grosbachaf7f2d62011-07-08 20:32:21 +0000522 def tTAILJMPdND : tPseudoExpand<(outs), (ins t_brtarget:$dst, variable_ops),
Owen Anderson16884412011-07-13 23:22:26 +0000523 4, IIC_Br, [],
Jim Grosbachaf7f2d62011-07-08 20:32:21 +0000524 (tB t_brtarget:$dst)>,
525 Requires<[IsThumb, IsNotDarwin]>;
Jim Grosbach0b44aea2011-07-08 20:39:19 +0000526 def tTAILJMPrND : tPseudoExpand<(outs), (ins tcGPR:$dst, variable_ops),
Owen Anderson16884412011-07-13 23:22:26 +0000527 4, IIC_Br, [],
Jim Grosbach0b44aea2011-07-08 20:39:19 +0000528 (tBX GPR:$dst, (ops 14, zero_reg))>,
529 Requires<[IsThumb, IsNotDarwin]>;
Jim Grosbache36e21e2011-07-08 20:13:35 +0000530 }
531}
532
533
Johnny Chen4c61cdd2010-02-25 02:21:11 +0000534// A8.6.218 Supervisor Call (Software Interrupt) -- for disassembly only
535// A8.6.16 B: Encoding T1
536// If Inst{11-8} == 0b1111 then SEE SVC
Evan Cheng1e0eab12010-11-29 22:43:27 +0000537let isCall = 1, Uses = [SP] in
Jim Grosbached838482011-07-26 16:24:27 +0000538def tSVC : T1pI<(outs), (ins imm0_255:$imm), IIC_Br,
Bill Wendling6179c312010-11-20 00:53:35 +0000539 "svc", "\t$imm", []>, Encoding16 {
540 bits<8> imm;
Johnny Chen4c61cdd2010-02-25 02:21:11 +0000541 let Inst{15-12} = 0b1101;
Bill Wendling6179c312010-11-20 00:53:35 +0000542 let Inst{11-8} = 0b1111;
543 let Inst{7-0} = imm;
Johnny Chen4c61cdd2010-02-25 02:21:11 +0000544}
545
Bill Wendlingef4a68b2010-11-30 07:44:32 +0000546// The assembler uses 0xDEFE for a trap instruction.
Evan Chengfb3611d2010-05-11 07:26:32 +0000547let isBarrier = 1, isTerminator = 1 in
Owen Anderson18901d62011-05-11 17:00:48 +0000548def tTRAP : TI<(outs), (ins), IIC_Br,
Jim Grosbach2e6ae132010-09-23 18:05:37 +0000549 "trap", [(trap)]>, Encoding16 {
Bill Wendling7d0affd2010-11-21 10:55:23 +0000550 let Inst = 0xdefe;
Johnny Chen4c61cdd2010-02-25 02:21:11 +0000551}
552
Evan Chenga8e29892007-01-19 07:51:42 +0000553//===----------------------------------------------------------------------===//
554// Load Store Instructions.
555//
556
Bill Wendlingb6faf652010-12-14 22:10:49 +0000557// Loads: reg/reg and reg/imm5
Dan Gohmanbc9d98b2010-02-27 23:47:46 +0000558let canFoldAsLoad = 1, isReMaterializable = 1 in
Bill Wendlingb6faf652010-12-14 22:10:49 +0000559multiclass thumb_ld_rr_ri_enc<bits<3> reg_opc, bits<4> imm_opc,
560 Operand AddrMode_r, Operand AddrMode_i,
561 AddrMode am, InstrItinClass itin_r,
562 InstrItinClass itin_i, string asm,
563 PatFrag opnode> {
Bill Wendling345cdb62010-12-14 23:42:48 +0000564 def r : // reg/reg
Bill Wendlingb6faf652010-12-14 22:10:49 +0000565 T1pILdStEncode<reg_opc,
566 (outs tGPR:$Rt), (ins AddrMode_r:$addr),
567 am, itin_r, asm, "\t$Rt, $addr",
568 [(set tGPR:$Rt, (opnode AddrMode_r:$addr))]>;
Bill Wendling345cdb62010-12-14 23:42:48 +0000569 def i : // reg/imm5
Bill Wendlingb6faf652010-12-14 22:10:49 +0000570 T1pILdStEncodeImm<imm_opc, 1 /* Load */,
571 (outs tGPR:$Rt), (ins AddrMode_i:$addr),
572 am, itin_i, asm, "\t$Rt, $addr",
573 [(set tGPR:$Rt, (opnode AddrMode_i:$addr))]>;
574}
575// Stores: reg/reg and reg/imm5
576multiclass thumb_st_rr_ri_enc<bits<3> reg_opc, bits<4> imm_opc,
577 Operand AddrMode_r, Operand AddrMode_i,
578 AddrMode am, InstrItinClass itin_r,
579 InstrItinClass itin_i, string asm,
580 PatFrag opnode> {
Bill Wendling345cdb62010-12-14 23:42:48 +0000581 def r : // reg/reg
Bill Wendlingb6faf652010-12-14 22:10:49 +0000582 T1pILdStEncode<reg_opc,
583 (outs), (ins tGPR:$Rt, AddrMode_r:$addr),
584 am, itin_r, asm, "\t$Rt, $addr",
585 [(opnode tGPR:$Rt, AddrMode_r:$addr)]>;
Bill Wendling345cdb62010-12-14 23:42:48 +0000586 def i : // reg/imm5
Bill Wendlingb6faf652010-12-14 22:10:49 +0000587 T1pILdStEncodeImm<imm_opc, 0 /* Store */,
588 (outs), (ins tGPR:$Rt, AddrMode_i:$addr),
589 am, itin_i, asm, "\t$Rt, $addr",
590 [(opnode tGPR:$Rt, AddrMode_i:$addr)]>;
591}
Bill Wendling6179c312010-11-20 00:53:35 +0000592
Bill Wendlingb6faf652010-12-14 22:10:49 +0000593// A8.6.57 & A8.6.60
594defm tLDR : thumb_ld_rr_ri_enc<0b100, 0b0110, t_addrmode_rrs4,
595 t_addrmode_is4, AddrModeT1_4,
596 IIC_iLoad_r, IIC_iLoad_i, "ldr",
597 UnOpFrag<(load node:$Src)>>;
Evan Chenga8e29892007-01-19 07:51:42 +0000598
Bill Wendlingb6faf652010-12-14 22:10:49 +0000599// A8.6.64 & A8.6.61
600defm tLDRB : thumb_ld_rr_ri_enc<0b110, 0b0111, t_addrmode_rrs1,
601 t_addrmode_is1, AddrModeT1_1,
602 IIC_iLoad_bh_r, IIC_iLoad_bh_i, "ldrb",
603 UnOpFrag<(zextloadi8 node:$Src)>>;
Bill Wendling1fd374e2010-11-30 22:57:21 +0000604
Bill Wendlingb6faf652010-12-14 22:10:49 +0000605// A8.6.76 & A8.6.73
606defm tLDRH : thumb_ld_rr_ri_enc<0b101, 0b1000, t_addrmode_rrs2,
607 t_addrmode_is2, AddrModeT1_2,
608 IIC_iLoad_bh_r, IIC_iLoad_bh_i, "ldrh",
609 UnOpFrag<(zextloadi16 node:$Src)>>;
Evan Chengc38f2bc2007-01-23 22:59:13 +0000610
Evan Cheng2f297df2009-07-11 07:08:13 +0000611let AddedComplexity = 10 in
Bill Wendling1fd374e2010-11-30 22:57:21 +0000612def tLDRSB : // A8.6.80
Owen Anderson305e0462011-08-15 19:00:06 +0000613 T1pILdStEncode<0b011, (outs tGPR:$Rt), (ins t_addrmode_rr:$addr),
Bill Wendling40062fb2010-12-01 01:38:08 +0000614 AddrModeT1_1, IIC_iLoad_bh_r,
Owen Anderson305e0462011-08-15 19:00:06 +0000615 "ldrsb", "\t$Rt, $addr",
616 [(set tGPR:$Rt, (sextloadi8 t_addrmode_rr:$addr))]>;
Evan Chengc38f2bc2007-01-23 22:59:13 +0000617
Evan Cheng2f297df2009-07-11 07:08:13 +0000618let AddedComplexity = 10 in
Bill Wendling1fd374e2010-11-30 22:57:21 +0000619def tLDRSH : // A8.6.84
Owen Anderson305e0462011-08-15 19:00:06 +0000620 T1pILdStEncode<0b111, (outs tGPR:$Rt), (ins t_addrmode_rr:$addr),
Bill Wendling40062fb2010-12-01 01:38:08 +0000621 AddrModeT1_2, IIC_iLoad_bh_r,
Owen Anderson305e0462011-08-15 19:00:06 +0000622 "ldrsh", "\t$Rt, $addr",
623 [(set tGPR:$Rt, (sextloadi16 t_addrmode_rr:$addr))]>;
Evan Chengc38f2bc2007-01-23 22:59:13 +0000624
Dan Gohman15511cf2008-12-03 18:15:48 +0000625let canFoldAsLoad = 1 in
Jim Grosbachd967cd02010-12-07 21:50:47 +0000626def tLDRspi : T1pIs<(outs tGPR:$Rt), (ins t_addrmode_sp:$addr), IIC_iLoad_i,
Bill Wendlingdc381372010-12-15 23:31:24 +0000627 "ldr", "\t$Rt, $addr",
628 [(set tGPR:$Rt, (load t_addrmode_sp:$addr))]>,
Jim Grosbachd967cd02010-12-07 21:50:47 +0000629 T1LdStSP<{1,?,?}> {
630 bits<3> Rt;
631 bits<8> addr;
632 let Inst{10-8} = Rt;
633 let Inst{7-0} = addr;
634}
Evan Cheng012f2d92007-01-24 08:53:17 +0000635
636// Load tconstpool
Evan Cheng7883fa92009-11-04 00:00:39 +0000637// FIXME: Use ldr.n to work around a Darwin assembler bug.
Owen Anderson91614ae2011-07-18 22:14:02 +0000638let canFoldAsLoad = 1, isReMaterializable = 1, isCodeGenOnly = 1 in
Bill Wendlingb8958b02010-12-08 01:57:09 +0000639def tLDRpci : T1pIs<(outs tGPR:$Rt), (ins t_addrmode_pc:$addr), IIC_iLoad_i,
Bill Wendling3f8c1102010-11-30 23:54:45 +0000640 "ldr", ".n\t$Rt, $addr",
641 [(set tGPR:$Rt, (load (ARMWrapper tconstpool:$addr)))]>,
642 T1Encoding<{0,1,0,0,1,?}> {
643 // A6.2 & A8.6.59
644 bits<3> Rt;
Bill Wendlingb8958b02010-12-08 01:57:09 +0000645 bits<8> addr;
Bill Wendling3f8c1102010-11-30 23:54:45 +0000646 let Inst{10-8} = Rt;
Bill Wendlingb8958b02010-12-08 01:57:09 +0000647 let Inst{7-0} = addr;
Bill Wendling3f8c1102010-11-30 23:54:45 +0000648}
Evan Chengfa775d02007-03-19 07:20:03 +0000649
Johnny Chen597fa652011-04-22 19:12:43 +0000650// FIXME: Remove this entry when the above ldr.n workaround is fixed.
651// For disassembly use only.
652def tLDRpciDIS : T1pIs<(outs tGPR:$Rt), (ins t_addrmode_pc:$addr), IIC_iLoad_i,
653 "ldr", "\t$Rt, $addr",
654 [/* disassembly only */]>,
655 T1Encoding<{0,1,0,0,1,?}> {
656 // A6.2 & A8.6.59
657 bits<3> Rt;
658 bits<8> addr;
659 let Inst{10-8} = Rt;
660 let Inst{7-0} = addr;
661}
662
Bill Wendlingb6faf652010-12-14 22:10:49 +0000663// A8.6.194 & A8.6.192
664defm tSTR : thumb_st_rr_ri_enc<0b000, 0b0110, t_addrmode_rrs4,
665 t_addrmode_is4, AddrModeT1_4,
666 IIC_iStore_r, IIC_iStore_i, "str",
667 BinOpFrag<(store node:$LHS, node:$RHS)>>;
Evan Chenga8e29892007-01-19 07:51:42 +0000668
Bill Wendlingb6faf652010-12-14 22:10:49 +0000669// A8.6.197 & A8.6.195
670defm tSTRB : thumb_st_rr_ri_enc<0b010, 0b0111, t_addrmode_rrs1,
671 t_addrmode_is1, AddrModeT1_1,
672 IIC_iStore_bh_r, IIC_iStore_bh_i, "strb",
673 BinOpFrag<(truncstorei8 node:$LHS, node:$RHS)>>;
Evan Chengc38f2bc2007-01-23 22:59:13 +0000674
Bill Wendlingb6faf652010-12-14 22:10:49 +0000675// A8.6.207 & A8.6.205
676defm tSTRH : thumb_st_rr_ri_enc<0b001, 0b1000, t_addrmode_rrs2,
Jim Grosbachf921c0fe2011-06-13 22:54:22 +0000677 t_addrmode_is2, AddrModeT1_2,
678 IIC_iStore_bh_r, IIC_iStore_bh_i, "strh",
679 BinOpFrag<(truncstorei16 node:$LHS, node:$RHS)>>;
Bill Wendling1fd374e2010-11-30 22:57:21 +0000680
Evan Chenga8e29892007-01-19 07:51:42 +0000681
Jim Grosbachd967cd02010-12-07 21:50:47 +0000682def tSTRspi : T1pIs<(outs), (ins tGPR:$Rt, t_addrmode_sp:$addr), IIC_iStore_i,
Bill Wendlingf4caf692010-12-14 03:36:38 +0000683 "str", "\t$Rt, $addr",
684 [(store tGPR:$Rt, t_addrmode_sp:$addr)]>,
Jim Grosbachd967cd02010-12-07 21:50:47 +0000685 T1LdStSP<{0,?,?}> {
686 bits<3> Rt;
687 bits<8> addr;
688 let Inst{10-8} = Rt;
689 let Inst{7-0} = addr;
690}
Evan Cheng8e59ea92007-02-07 00:06:56 +0000691
Evan Chenga8e29892007-01-19 07:51:42 +0000692//===----------------------------------------------------------------------===//
693// Load / store multiple Instructions.
694//
695
Bill Wendling6c470b82010-11-13 09:09:38 +0000696multiclass thumb_ldst_mult<string asm, InstrItinClass itin,
697 InstrItinClass itin_upd, bits<6> T1Enc,
Owen Anderson565a0362011-07-18 23:25:34 +0000698 bit L_bit, string baseOpc> {
Bill Wendling73fe34a2010-11-16 01:16:36 +0000699 def IA :
Jim Grosbach93b3eff2011-08-18 21:50:53 +0000700 T1I<(outs), (ins tGPR:$Rn, pred:$p, reglist:$regs, variable_ops),
701 itin, !strconcat(asm, "${p}\t$Rn, $regs"), []>,
Bill Wendling6179c312010-11-20 00:53:35 +0000702 T1Encoding<T1Enc> {
703 bits<3> Rn;
704 bits<8> regs;
705 let Inst{10-8} = Rn;
706 let Inst{7-0} = regs;
707 }
Owen Anderson565a0362011-07-18 23:25:34 +0000708
Bill Wendling73fe34a2010-11-16 01:16:36 +0000709 def IA_UPD :
Owen Anderson565a0362011-07-18 23:25:34 +0000710 InstTemplate<AddrModeNone, 0, IndexModeNone, Pseudo, GenericDomain,
711 "$Rn = $wb", itin_upd>,
712 PseudoInstExpansion<(!cast<Instruction>(!strconcat(baseOpc, "IA"))
Jim Grosbach93b3eff2011-08-18 21:50:53 +0000713 tGPR:$Rn, pred:$p, reglist:$regs)> {
Owen Anderson565a0362011-07-18 23:25:34 +0000714 let Size = 2;
715 let OutOperandList = (outs GPR:$wb);
716 let InOperandList = (ins GPR:$Rn, pred:$p, reglist:$regs, variable_ops);
717 let Pattern = [];
718 let isCodeGenOnly = 1;
719 let isPseudo = 1;
720 list<Predicate> Predicates = [IsThumb];
Bill Wendling6179c312010-11-20 00:53:35 +0000721 }
Bill Wendling6c470b82010-11-13 09:09:38 +0000722}
723
Bill Wendling73fe34a2010-11-16 01:16:36 +0000724// These require base address to be written back or one of the loaded regs.
Bill Wendlingddc918b2010-11-13 10:57:02 +0000725let neverHasSideEffects = 1 in {
726
727let mayLoad = 1, hasExtraDefRegAllocReq = 1 in
728defm tLDM : thumb_ldst_mult<"ldm", IIC_iLoad_m, IIC_iLoad_mu,
Owen Anderson565a0362011-07-18 23:25:34 +0000729 {1,1,0,0,1,?}, 1, "tLDM">;
Bill Wendlingddc918b2010-11-13 10:57:02 +0000730
731let mayStore = 1, hasExtraSrcRegAllocReq = 1 in
732defm tSTM : thumb_ldst_mult<"stm", IIC_iStore_m, IIC_iStore_mu,
Owen Anderson565a0362011-07-18 23:25:34 +0000733 {1,1,0,0,0,?}, 0, "tSTM">;
Owen Anderson18901d62011-05-11 17:00:48 +0000734
Bill Wendlingddc918b2010-11-13 10:57:02 +0000735} // neverHasSideEffects
Evan Cheng4b322e52009-08-11 21:11:32 +0000736
Jim Grosbach93b3eff2011-08-18 21:50:53 +0000737def : InstAlias<"ldm${p} $Rn!, $regs",
738 (tLDMIA tGPR:$Rn, pred:$p, reglist:$regs)>,
739 Requires<[IsThumb, IsThumb1Only]>;
740
741
Evan Cheng0d92f5f2009-10-01 08:22:27 +0000742let mayLoad = 1, Uses = [SP], Defs = [SP], hasExtraDefRegAllocReq = 1 in
Bill Wendling602890d2010-11-19 01:33:10 +0000743def tPOP : T1I<(outs), (ins pred:$p, reglist:$regs, variable_ops),
Evan Chenga0792de2010-10-06 06:27:31 +0000744 IIC_iPop,
Bill Wendling602890d2010-11-19 01:33:10 +0000745 "pop${p}\t$regs", []>,
746 T1Misc<{1,1,0,?,?,?,?}> {
747 bits<16> regs;
Bill Wendling602890d2010-11-19 01:33:10 +0000748 let Inst{8} = regs{15};
749 let Inst{7-0} = regs{7-0};
750}
Evan Cheng4b322e52009-08-11 21:11:32 +0000751
Evan Cheng0d92f5f2009-10-01 08:22:27 +0000752let mayStore = 1, Uses = [SP], Defs = [SP], hasExtraSrcRegAllocReq = 1 in
Bill Wendling6179c312010-11-20 00:53:35 +0000753def tPUSH : T1I<(outs), (ins pred:$p, reglist:$regs, variable_ops),
Evan Chenga0792de2010-10-06 06:27:31 +0000754 IIC_iStore_m,
Bill Wendling6179c312010-11-20 00:53:35 +0000755 "push${p}\t$regs", []>,
756 T1Misc<{0,1,0,?,?,?,?}> {
757 bits<16> regs;
758 let Inst{8} = regs{14};
759 let Inst{7-0} = regs{7-0};
760}
Evan Chenga8e29892007-01-19 07:51:42 +0000761
762//===----------------------------------------------------------------------===//
763// Arithmetic Instructions.
764//
765
Bill Wendling1d045ee2010-12-01 02:28:08 +0000766// Helper classes for encoding T1pI patterns:
767class T1pIDPEncode<bits<4> opA, dag oops, dag iops, InstrItinClass itin,
768 string opc, string asm, list<dag> pattern>
769 : T1pI<oops, iops, itin, opc, asm, pattern>,
770 T1DataProcessing<opA> {
771 bits<3> Rm;
772 bits<3> Rn;
773 let Inst{5-3} = Rm;
774 let Inst{2-0} = Rn;
775}
776class T1pIMiscEncode<bits<7> opA, dag oops, dag iops, InstrItinClass itin,
777 string opc, string asm, list<dag> pattern>
778 : T1pI<oops, iops, itin, opc, asm, pattern>,
779 T1Misc<opA> {
780 bits<3> Rm;
781 bits<3> Rd;
782 let Inst{5-3} = Rm;
783 let Inst{2-0} = Rd;
784}
785
Bill Wendling76f4e102010-12-01 01:20:15 +0000786// Helper classes for encoding T1sI patterns:
787class T1sIDPEncode<bits<4> opA, dag oops, dag iops, InstrItinClass itin,
788 string opc, string asm, list<dag> pattern>
789 : T1sI<oops, iops, itin, opc, asm, pattern>,
790 T1DataProcessing<opA> {
791 bits<3> Rd;
792 bits<3> Rn;
793 let Inst{5-3} = Rn;
794 let Inst{2-0} = Rd;
795}
796class T1sIGenEncode<bits<5> opA, dag oops, dag iops, InstrItinClass itin,
797 string opc, string asm, list<dag> pattern>
798 : T1sI<oops, iops, itin, opc, asm, pattern>,
799 T1General<opA> {
800 bits<3> Rm;
801 bits<3> Rn;
802 bits<3> Rd;
803 let Inst{8-6} = Rm;
804 let Inst{5-3} = Rn;
805 let Inst{2-0} = Rd;
806}
807class T1sIGenEncodeImm<bits<5> opA, dag oops, dag iops, InstrItinClass itin,
808 string opc, string asm, list<dag> pattern>
809 : T1sI<oops, iops, itin, opc, asm, pattern>,
810 T1General<opA> {
811 bits<3> Rd;
812 bits<3> Rm;
813 let Inst{5-3} = Rm;
814 let Inst{2-0} = Rd;
815}
816
817// Helper classes for encoding T1sIt patterns:
Bill Wendlinga5a42d92010-12-01 00:48:44 +0000818class T1sItDPEncode<bits<4> opA, dag oops, dag iops, InstrItinClass itin,
819 string opc, string asm, list<dag> pattern>
820 : T1sIt<oops, iops, itin, opc, asm, pattern>,
821 T1DataProcessing<opA> {
Bill Wendling3f8c1102010-11-30 23:54:45 +0000822 bits<3> Rdn;
823 bits<3> Rm;
Bill Wendlinga5a42d92010-12-01 00:48:44 +0000824 let Inst{5-3} = Rm;
825 let Inst{2-0} = Rdn;
Bill Wendling95a6d172010-11-20 01:00:29 +0000826}
Bill Wendlinga5a42d92010-12-01 00:48:44 +0000827class T1sItGenEncodeImm<bits<5> opA, dag oops, dag iops, InstrItinClass itin,
828 string opc, string asm, list<dag> pattern>
829 : T1sIt<oops, iops, itin, opc, asm, pattern>,
830 T1General<opA> {
831 bits<3> Rdn;
832 bits<8> imm8;
833 let Inst{10-8} = Rdn;
834 let Inst{7-0} = imm8;
835}
836
837// Add with carry register
838let isCommutable = 1, Uses = [CPSR] in
839def tADC : // A8.6.2
840 T1sItDPEncode<0b0101, (outs tGPR:$Rdn), (ins tGPR:$Rn, tGPR:$Rm), IIC_iALUr,
841 "adc", "\t$Rdn, $Rm",
842 [(set tGPR:$Rdn, (adde tGPR:$Rn, tGPR:$Rm))]>;
Evan Cheng53d7dba2007-01-27 00:07:15 +0000843
David Goodwinc9ee1182009-06-25 22:49:55 +0000844// Add immediate
Bill Wendling76f4e102010-12-01 01:20:15 +0000845def tADDi3 : // A8.6.4 T1
Jim Grosbach89e2aa62011-08-16 23:57:34 +0000846 T1sIGenEncodeImm<0b01110, (outs tGPR:$Rd), (ins tGPR:$Rm, imm0_7:$imm3),
Jim Grosbachf921c0fe2011-06-13 22:54:22 +0000847 IIC_iALUi,
Bill Wendling76f4e102010-12-01 01:20:15 +0000848 "add", "\t$Rd, $Rm, $imm3",
849 [(set tGPR:$Rd, (add tGPR:$Rm, imm0_7:$imm3))]> {
Bill Wendling95a6d172010-11-20 01:00:29 +0000850 bits<3> imm3;
851 let Inst{8-6} = imm3;
Bill Wendling95a6d172010-11-20 01:00:29 +0000852}
Evan Chenga8e29892007-01-19 07:51:42 +0000853
Bill Wendlinga5a42d92010-12-01 00:48:44 +0000854def tADDi8 : // A8.6.4 T2
Jim Grosbach89e2aa62011-08-16 23:57:34 +0000855 T1sItGenEncodeImm<{1,1,0,?,?}, (outs tGPR:$Rdn),
856 (ins tGPR:$Rn, imm0_255:$imm8), IIC_iALUi,
Bill Wendlinga5a42d92010-12-01 00:48:44 +0000857 "add", "\t$Rdn, $imm8",
858 [(set tGPR:$Rdn, (add tGPR:$Rn, imm8_255:$imm8))]>;
Evan Chenga8e29892007-01-19 07:51:42 +0000859
David Goodwinc9ee1182009-06-25 22:49:55 +0000860// Add register
Evan Cheng446c4282009-07-11 06:43:01 +0000861let isCommutable = 1 in
Bill Wendling76f4e102010-12-01 01:20:15 +0000862def tADDrr : // A8.6.6 T1
863 T1sIGenEncode<0b01100, (outs tGPR:$Rd), (ins tGPR:$Rn, tGPR:$Rm),
864 IIC_iALUr,
865 "add", "\t$Rd, $Rn, $Rm",
866 [(set tGPR:$Rd, (add tGPR:$Rn, tGPR:$Rm))]>;
Evan Chenga8e29892007-01-19 07:51:42 +0000867
Evan Chengcd799b92009-06-12 20:46:18 +0000868let neverHasSideEffects = 1 in
Bill Wendling0b424dc2010-12-01 01:32:02 +0000869def tADDhirr : T1pIt<(outs GPR:$Rdn), (ins GPR:$Rn, GPR:$Rm), IIC_iALUr,
870 "add", "\t$Rdn, $Rm", []>,
Bill Wendlinga09cc2b2010-11-20 01:18:47 +0000871 T1Special<{0,0,?,?}> {
872 // A8.6.6 T2
Bill Wendling0b424dc2010-12-01 01:32:02 +0000873 bits<4> Rdn;
874 bits<4> Rm;
875 let Inst{7} = Rdn{3};
876 let Inst{6-3} = Rm;
877 let Inst{2-0} = Rdn{2-0};
Bill Wendlinga09cc2b2010-11-20 01:18:47 +0000878}
Evan Chenga8e29892007-01-19 07:51:42 +0000879
Bill Wendlinga09cc2b2010-11-20 01:18:47 +0000880// AND register
Evan Cheng446c4282009-07-11 06:43:01 +0000881let isCommutable = 1 in
Bill Wendlinga5a42d92010-12-01 00:48:44 +0000882def tAND : // A8.6.12
883 T1sItDPEncode<0b0000, (outs tGPR:$Rdn), (ins tGPR:$Rn, tGPR:$Rm),
884 IIC_iBITr,
885 "and", "\t$Rdn, $Rm",
886 [(set tGPR:$Rdn, (and tGPR:$Rn, tGPR:$Rm))]>;
Evan Chenga8e29892007-01-19 07:51:42 +0000887
David Goodwinc9ee1182009-06-25 22:49:55 +0000888// ASR immediate
Bill Wendling76f4e102010-12-01 01:20:15 +0000889def tASRri : // A8.6.14
Owen Anderson6d746312011-08-08 20:42:17 +0000890 T1sIGenEncodeImm<{0,1,0,?,?}, (outs tGPR:$Rd), (ins tGPR:$Rm, imm_sr:$imm5),
Bill Wendling76f4e102010-12-01 01:20:15 +0000891 IIC_iMOVsi,
892 "asr", "\t$Rd, $Rm, $imm5",
Owen Anderson6d746312011-08-08 20:42:17 +0000893 [(set tGPR:$Rd, (sra tGPR:$Rm, (i32 imm_sr:$imm5)))]> {
Bill Wendlinga09cc2b2010-11-20 01:18:47 +0000894 bits<5> imm5;
895 let Inst{10-6} = imm5;
Bill Wendlinga09cc2b2010-11-20 01:18:47 +0000896}
Evan Chenga8e29892007-01-19 07:51:42 +0000897
David Goodwinc9ee1182009-06-25 22:49:55 +0000898// ASR register
Bill Wendlinga5a42d92010-12-01 00:48:44 +0000899def tASRrr : // A8.6.15
900 T1sItDPEncode<0b0100, (outs tGPR:$Rdn), (ins tGPR:$Rn, tGPR:$Rm),
901 IIC_iMOVsr,
902 "asr", "\t$Rdn, $Rm",
903 [(set tGPR:$Rdn, (sra tGPR:$Rn, tGPR:$Rm))]>;
Evan Chenga8e29892007-01-19 07:51:42 +0000904
David Goodwinc9ee1182009-06-25 22:49:55 +0000905// BIC register
Bill Wendlinga5a42d92010-12-01 00:48:44 +0000906def tBIC : // A8.6.20
907 T1sItDPEncode<0b1110, (outs tGPR:$Rdn), (ins tGPR:$Rn, tGPR:$Rm),
908 IIC_iBITr,
909 "bic", "\t$Rdn, $Rm",
910 [(set tGPR:$Rdn, (and tGPR:$Rn, (not tGPR:$Rm)))]>;
Evan Chenga8e29892007-01-19 07:51:42 +0000911
David Goodwinc9ee1182009-06-25 22:49:55 +0000912// CMN register
Gabor Greiff7d10f52010-09-14 22:00:50 +0000913let isCompare = 1, Defs = [CPSR] in {
Jim Grosbachd5d2bae2010-01-22 00:08:13 +0000914//FIXME: Disable CMN, as CCodes are backwards from compare expectations
915// Compare-to-zero still works out, just not the relationals
Bill Wendling0480e282010-12-01 02:36:55 +0000916//def tCMN : // A8.6.33
917// T1pIDPEncode<0b1011, (outs), (ins tGPR:$lhs, tGPR:$rhs),
918// IIC_iCMPr,
919// "cmn", "\t$lhs, $rhs",
920// [(ARMcmp tGPR:$lhs, (ineg tGPR:$rhs))]>;
Bill Wendling1d045ee2010-12-01 02:28:08 +0000921
922def tCMNz : // A8.6.33
923 T1pIDPEncode<0b1011, (outs), (ins tGPR:$Rn, tGPR:$Rm),
924 IIC_iCMPr,
925 "cmn", "\t$Rn, $Rm",
926 [(ARMcmpZ tGPR:$Rn, (ineg tGPR:$Rm))]>;
927
928} // isCompare = 1, Defs = [CPSR]
Lauro Ramos Venancio99966632007-04-02 01:30:03 +0000929
David Goodwinc9ee1182009-06-25 22:49:55 +0000930// CMP immediate
Gabor Greiff7d10f52010-09-14 22:00:50 +0000931let isCompare = 1, Defs = [CPSR] in {
Jim Grosbach0d1511c2011-08-18 18:08:29 +0000932def tCMPi8 : T1pI<(outs), (ins tGPR:$Rn, imm0_255:$imm8), IIC_iCMPi,
Bill Wendling5cc88a22010-11-20 22:52:33 +0000933 "cmp", "\t$Rn, $imm8",
934 [(ARMcmp tGPR:$Rn, imm0_255:$imm8)]>,
935 T1General<{1,0,1,?,?}> {
936 // A8.6.35
937 bits<3> Rn;
938 bits<8> imm8;
939 let Inst{10-8} = Rn;
940 let Inst{7-0} = imm8;
941}
942
David Goodwinc9ee1182009-06-25 22:49:55 +0000943// CMP register
Bill Wendling1d045ee2010-12-01 02:28:08 +0000944def tCMPr : // A8.6.36 T1
945 T1pIDPEncode<0b1010, (outs), (ins tGPR:$Rn, tGPR:$Rm),
946 IIC_iCMPr,
947 "cmp", "\t$Rn, $Rm",
948 [(ARMcmp tGPR:$Rn, tGPR:$Rm)]>;
949
Bill Wendling849f2e32010-11-29 00:18:15 +0000950def tCMPhir : T1pI<(outs), (ins GPR:$Rn, GPR:$Rm), IIC_iCMPr,
951 "cmp", "\t$Rn, $Rm", []>,
952 T1Special<{0,1,?,?}> {
953 // A8.6.36 T2
954 bits<4> Rm;
955 bits<4> Rn;
956 let Inst{7} = Rn{3};
957 let Inst{6-3} = Rm;
958 let Inst{2-0} = Rn{2-0};
959}
Bill Wendling5cc88a22010-11-20 22:52:33 +0000960} // isCompare = 1, Defs = [CPSR]
Lauro Ramos Venancio99966632007-04-02 01:30:03 +0000961
Evan Chenga8e29892007-01-19 07:51:42 +0000962
David Goodwinc9ee1182009-06-25 22:49:55 +0000963// XOR register
Evan Cheng446c4282009-07-11 06:43:01 +0000964let isCommutable = 1 in
Bill Wendlinga5a42d92010-12-01 00:48:44 +0000965def tEOR : // A8.6.45
966 T1sItDPEncode<0b0001, (outs tGPR:$Rdn), (ins tGPR:$Rn, tGPR:$Rm),
967 IIC_iBITr,
968 "eor", "\t$Rdn, $Rm",
969 [(set tGPR:$Rdn, (xor tGPR:$Rn, tGPR:$Rm))]>;
Evan Chenga8e29892007-01-19 07:51:42 +0000970
David Goodwinc9ee1182009-06-25 22:49:55 +0000971// LSL immediate
Bill Wendling76f4e102010-12-01 01:20:15 +0000972def tLSLri : // A8.6.88
973 T1sIGenEncodeImm<{0,0,0,?,?}, (outs tGPR:$Rd), (ins tGPR:$Rm, i32imm:$imm5),
974 IIC_iMOVsi,
975 "lsl", "\t$Rd, $Rm, $imm5",
976 [(set tGPR:$Rd, (shl tGPR:$Rm, (i32 imm:$imm5)))]> {
Bill Wendlingdcf0a472010-11-21 11:49:36 +0000977 bits<5> imm5;
978 let Inst{10-6} = imm5;
Bill Wendlingdcf0a472010-11-21 11:49:36 +0000979}
Evan Chenga8e29892007-01-19 07:51:42 +0000980
David Goodwinc9ee1182009-06-25 22:49:55 +0000981// LSL register
Bill Wendlinga5a42d92010-12-01 00:48:44 +0000982def tLSLrr : // A8.6.89
983 T1sItDPEncode<0b0010, (outs tGPR:$Rdn), (ins tGPR:$Rn, tGPR:$Rm),
984 IIC_iMOVsr,
985 "lsl", "\t$Rdn, $Rm",
986 [(set tGPR:$Rdn, (shl tGPR:$Rn, tGPR:$Rm))]>;
Evan Chenga8e29892007-01-19 07:51:42 +0000987
David Goodwinc9ee1182009-06-25 22:49:55 +0000988// LSR immediate
Bill Wendling76f4e102010-12-01 01:20:15 +0000989def tLSRri : // A8.6.90
Owen Anderson6d746312011-08-08 20:42:17 +0000990 T1sIGenEncodeImm<{0,0,1,?,?}, (outs tGPR:$Rd), (ins tGPR:$Rm, imm_sr:$imm5),
Bill Wendling76f4e102010-12-01 01:20:15 +0000991 IIC_iMOVsi,
992 "lsr", "\t$Rd, $Rm, $imm5",
Owen Anderson6d746312011-08-08 20:42:17 +0000993 [(set tGPR:$Rd, (srl tGPR:$Rm, (i32 imm_sr:$imm5)))]> {
Bill Wendlingdcf0a472010-11-21 11:49:36 +0000994 bits<5> imm5;
995 let Inst{10-6} = imm5;
Bill Wendlingdcf0a472010-11-21 11:49:36 +0000996}
Evan Chenga8e29892007-01-19 07:51:42 +0000997
David Goodwinc9ee1182009-06-25 22:49:55 +0000998// LSR register
Bill Wendlinga5a42d92010-12-01 00:48:44 +0000999def tLSRrr : // A8.6.91
1000 T1sItDPEncode<0b0011, (outs tGPR:$Rdn), (ins tGPR:$Rn, tGPR:$Rm),
1001 IIC_iMOVsr,
1002 "lsr", "\t$Rdn, $Rm",
1003 [(set tGPR:$Rdn, (srl tGPR:$Rn, tGPR:$Rm))]>;
Evan Chenga8e29892007-01-19 07:51:42 +00001004
Bill Wendlingdcf0a472010-11-21 11:49:36 +00001005// Move register
Evan Chengc4af4632010-11-17 20:13:28 +00001006let isMoveImm = 1 in
Jim Grosbach6b8f1e32011-06-27 23:54:06 +00001007def tMOVi8 : T1sI<(outs tGPR:$Rd), (ins imm0_255:$imm8), IIC_iMOVi,
Bill Wendlingdcf0a472010-11-21 11:49:36 +00001008 "mov", "\t$Rd, $imm8",
1009 [(set tGPR:$Rd, imm0_255:$imm8)]>,
1010 T1General<{1,0,0,?,?}> {
1011 // A8.6.96
1012 bits<3> Rd;
1013 bits<8> imm8;
1014 let Inst{10-8} = Rd;
1015 let Inst{7-0} = imm8;
1016}
Evan Chenga8e29892007-01-19 07:51:42 +00001017
Jim Grosbachefeedce2011-07-01 17:14:11 +00001018// A7-73: MOV(2) - mov setting flag.
Evan Chenga8e29892007-01-19 07:51:42 +00001019
Evan Chengcd799b92009-06-12 20:46:18 +00001020let neverHasSideEffects = 1 in {
Jim Grosbach2a7b41b2011-06-30 23:38:17 +00001021def tMOVr : Thumb1pI<(outs GPR:$Rd), (ins GPR:$Rm), AddrModeNone,
Owen Anderson16884412011-07-13 23:22:26 +00001022 2, IIC_iMOVr,
Jim Grosbach63b46fa2011-06-30 22:10:46 +00001023 "mov", "\t$Rd, $Rm", "", []>,
Jim Grosbach2a7b41b2011-06-30 23:38:17 +00001024 T1Special<{1,0,?,?}> {
Bill Wendling534a5e42010-12-03 01:55:47 +00001025 // A8.6.97
1026 bits<4> Rd;
1027 bits<4> Rm;
Jim Grosbach2a7b41b2011-06-30 23:38:17 +00001028 let Inst{7} = Rd{3};
1029 let Inst{6-3} = Rm;
Bill Wendling534a5e42010-12-03 01:55:47 +00001030 let Inst{2-0} = Rd{2-0};
1031}
Evan Cheng446c4282009-07-11 06:43:01 +00001032let Defs = [CPSR] in
Bill Wendling534a5e42010-12-03 01:55:47 +00001033def tMOVSr : T1I<(outs tGPR:$Rd), (ins tGPR:$Rm), IIC_iMOVr,
1034 "movs\t$Rd, $Rm", []>, Encoding16 {
1035 // A8.6.97
1036 bits<3> Rd;
1037 bits<3> Rm;
Johnny Chend68e1192009-12-15 17:24:14 +00001038 let Inst{15-6} = 0b0000000000;
Bill Wendling534a5e42010-12-03 01:55:47 +00001039 let Inst{5-3} = Rm;
1040 let Inst{2-0} = Rd;
Johnny Chend68e1192009-12-15 17:24:14 +00001041}
Evan Chengcd799b92009-06-12 20:46:18 +00001042} // neverHasSideEffects
Evan Chenga8e29892007-01-19 07:51:42 +00001043
Bill Wendling0480e282010-12-01 02:36:55 +00001044// Multiply register
Evan Cheng446c4282009-07-11 06:43:01 +00001045let isCommutable = 1 in
Bill Wendlinga5a42d92010-12-01 00:48:44 +00001046def tMUL : // A8.6.105 T1
1047 T1sItDPEncode<0b1101, (outs tGPR:$Rdn), (ins tGPR:$Rn, tGPR:$Rm),
1048 IIC_iMUL32,
1049 "mul", "\t$Rdn, $Rm, $Rdn",
1050 [(set tGPR:$Rdn, (mul tGPR:$Rn, tGPR:$Rm))]>;
Evan Chenga8e29892007-01-19 07:51:42 +00001051
Bill Wendling76f4e102010-12-01 01:20:15 +00001052// Move inverse register
1053def tMVN : // A8.6.107
1054 T1sIDPEncode<0b1111, (outs tGPR:$Rd), (ins tGPR:$Rn), IIC_iMVNr,
1055 "mvn", "\t$Rd, $Rn",
1056 [(set tGPR:$Rd, (not tGPR:$Rn))]>;
Evan Chenga8e29892007-01-19 07:51:42 +00001057
Bill Wendlingdcf0a472010-11-21 11:49:36 +00001058// Bitwise or register
Evan Cheng446c4282009-07-11 06:43:01 +00001059let isCommutable = 1 in
Bill Wendlinga5a42d92010-12-01 00:48:44 +00001060def tORR : // A8.6.114
1061 T1sItDPEncode<0b1100, (outs tGPR:$Rdn), (ins tGPR:$Rn, tGPR:$Rm),
1062 IIC_iBITr,
1063 "orr", "\t$Rdn, $Rm",
1064 [(set tGPR:$Rdn, (or tGPR:$Rn, tGPR:$Rm))]>;
Evan Chenga8e29892007-01-19 07:51:42 +00001065
Bill Wendlingdcf0a472010-11-21 11:49:36 +00001066// Swaps
Bill Wendling1d045ee2010-12-01 02:28:08 +00001067def tREV : // A8.6.134
1068 T1pIMiscEncode<{1,0,1,0,0,0,?}, (outs tGPR:$Rd), (ins tGPR:$Rm),
1069 IIC_iUNAr,
1070 "rev", "\t$Rd, $Rm",
1071 [(set tGPR:$Rd, (bswap tGPR:$Rm))]>,
1072 Requires<[IsThumb, IsThumb1Only, HasV6]>;
Evan Chenga8e29892007-01-19 07:51:42 +00001073
Bill Wendling1d045ee2010-12-01 02:28:08 +00001074def tREV16 : // A8.6.135
1075 T1pIMiscEncode<{1,0,1,0,0,1,?}, (outs tGPR:$Rd), (ins tGPR:$Rm),
1076 IIC_iUNAr,
1077 "rev16", "\t$Rd, $Rm",
Evan Cheng9568e5c2011-06-21 06:01:08 +00001078 [(set tGPR:$Rd, (rotr (bswap tGPR:$Rm), (i32 16)))]>,
Bill Wendling1d045ee2010-12-01 02:28:08 +00001079 Requires<[IsThumb, IsThumb1Only, HasV6]>;
Evan Chenga8e29892007-01-19 07:51:42 +00001080
Bill Wendling1d045ee2010-12-01 02:28:08 +00001081def tREVSH : // A8.6.136
1082 T1pIMiscEncode<{1,0,1,0,1,1,?}, (outs tGPR:$Rd), (ins tGPR:$Rm),
1083 IIC_iUNAr,
1084 "revsh", "\t$Rd, $Rm",
Evan Cheng9568e5c2011-06-21 06:01:08 +00001085 [(set tGPR:$Rd, (sra (bswap tGPR:$Rm), (i32 16)))]>,
Bill Wendling1d045ee2010-12-01 02:28:08 +00001086 Requires<[IsThumb, IsThumb1Only, HasV6]>;
Evan Cheng446c4282009-07-11 06:43:01 +00001087
Bill Wendlinga5a42d92010-12-01 00:48:44 +00001088// Rotate right register
1089def tROR : // A8.6.139
1090 T1sItDPEncode<0b0111, (outs tGPR:$Rdn), (ins tGPR:$Rn, tGPR:$Rm),
1091 IIC_iMOVsr,
1092 "ror", "\t$Rdn, $Rm",
1093 [(set tGPR:$Rdn, (rotr tGPR:$Rn, tGPR:$Rm))]>;
Evan Cheng446c4282009-07-11 06:43:01 +00001094
Bill Wendlinga5a42d92010-12-01 00:48:44 +00001095// Negate register
Bill Wendling76f4e102010-12-01 01:20:15 +00001096def tRSB : // A8.6.141
1097 T1sIDPEncode<0b1001, (outs tGPR:$Rd), (ins tGPR:$Rn),
1098 IIC_iALUi,
1099 "rsb", "\t$Rd, $Rn, #0",
1100 [(set tGPR:$Rd, (ineg tGPR:$Rn))]>;
Evan Chenga8e29892007-01-19 07:51:42 +00001101
David Goodwinc9ee1182009-06-25 22:49:55 +00001102// Subtract with carry register
Evan Cheng446c4282009-07-11 06:43:01 +00001103let Uses = [CPSR] in
Bill Wendlinga5a42d92010-12-01 00:48:44 +00001104def tSBC : // A8.6.151
1105 T1sItDPEncode<0b0110, (outs tGPR:$Rdn), (ins tGPR:$Rn, tGPR:$Rm),
1106 IIC_iALUr,
1107 "sbc", "\t$Rdn, $Rm",
1108 [(set tGPR:$Rdn, (sube tGPR:$Rn, tGPR:$Rm))]>;
Evan Chenga8e29892007-01-19 07:51:42 +00001109
David Goodwinc9ee1182009-06-25 22:49:55 +00001110// Subtract immediate
Bill Wendling76f4e102010-12-01 01:20:15 +00001111def tSUBi3 : // A8.6.210 T1
1112 T1sIGenEncodeImm<0b01111, (outs tGPR:$Rd), (ins tGPR:$Rm, i32imm:$imm3),
1113 IIC_iALUi,
1114 "sub", "\t$Rd, $Rm, $imm3",
1115 [(set tGPR:$Rd, (add tGPR:$Rm, imm0_7_neg:$imm3))]> {
Bill Wendling5cbbf682010-11-29 01:00:43 +00001116 bits<3> imm3;
Bill Wendling5cbbf682010-11-29 01:00:43 +00001117 let Inst{8-6} = imm3;
Bill Wendling5cbbf682010-11-29 01:00:43 +00001118}
Jim Grosbach0ede14f2009-03-27 23:06:27 +00001119
Bill Wendlinga5a42d92010-12-01 00:48:44 +00001120def tSUBi8 : // A8.6.210 T2
1121 T1sItGenEncodeImm<{1,1,1,?,?}, (outs tGPR:$Rdn), (ins tGPR:$Rn, i32imm:$imm8),
1122 IIC_iALUi,
1123 "sub", "\t$Rdn, $imm8",
1124 [(set tGPR:$Rdn, (add tGPR:$Rn, imm8_255_neg:$imm8))]>;
Jim Grosbach0ede14f2009-03-27 23:06:27 +00001125
Bill Wendling76f4e102010-12-01 01:20:15 +00001126// Subtract register
1127def tSUBrr : // A8.6.212
1128 T1sIGenEncode<0b01101, (outs tGPR:$Rd), (ins tGPR:$Rn, tGPR:$Rm),
1129 IIC_iALUr,
1130 "sub", "\t$Rd, $Rn, $Rm",
1131 [(set tGPR:$Rd, (sub tGPR:$Rn, tGPR:$Rm))]>;
David Goodwinc9ee1182009-06-25 22:49:55 +00001132
1133// TODO: A7-96: STMIA - store multiple.
Evan Chenga8e29892007-01-19 07:51:42 +00001134
Bill Wendling76f4e102010-12-01 01:20:15 +00001135// Sign-extend byte
Bill Wendling1d045ee2010-12-01 02:28:08 +00001136def tSXTB : // A8.6.222
1137 T1pIMiscEncode<{0,0,1,0,0,1,?}, (outs tGPR:$Rd), (ins tGPR:$Rm),
1138 IIC_iUNAr,
1139 "sxtb", "\t$Rd, $Rm",
1140 [(set tGPR:$Rd, (sext_inreg tGPR:$Rm, i8))]>,
1141 Requires<[IsThumb, IsThumb1Only, HasV6]>;
David Goodwinc9ee1182009-06-25 22:49:55 +00001142
Bill Wendling1d045ee2010-12-01 02:28:08 +00001143// Sign-extend short
1144def tSXTH : // A8.6.224
1145 T1pIMiscEncode<{0,0,1,0,0,0,?}, (outs tGPR:$Rd), (ins tGPR:$Rm),
1146 IIC_iUNAr,
1147 "sxth", "\t$Rd, $Rm",
1148 [(set tGPR:$Rd, (sext_inreg tGPR:$Rm, i16))]>,
1149 Requires<[IsThumb, IsThumb1Only, HasV6]>;
Evan Chenga8e29892007-01-19 07:51:42 +00001150
Bill Wendling1d045ee2010-12-01 02:28:08 +00001151// Test
Gabor Greif007248b2010-09-14 20:47:43 +00001152let isCompare = 1, isCommutable = 1, Defs = [CPSR] in
Bill Wendling1d045ee2010-12-01 02:28:08 +00001153def tTST : // A8.6.230
1154 T1pIDPEncode<0b1000, (outs), (ins tGPR:$Rn, tGPR:$Rm), IIC_iTSTr,
1155 "tst", "\t$Rn, $Rm",
1156 [(ARMcmpZ (and_su tGPR:$Rn, tGPR:$Rm), 0)]>;
Evan Chenga8e29892007-01-19 07:51:42 +00001157
Bill Wendling1d045ee2010-12-01 02:28:08 +00001158// Zero-extend byte
1159def tUXTB : // A8.6.262
1160 T1pIMiscEncode<{0,0,1,0,1,1,?}, (outs tGPR:$Rd), (ins tGPR:$Rm),
1161 IIC_iUNAr,
1162 "uxtb", "\t$Rd, $Rm",
1163 [(set tGPR:$Rd, (and tGPR:$Rm, 0xFF))]>,
1164 Requires<[IsThumb, IsThumb1Only, HasV6]>;
David Goodwinc9ee1182009-06-25 22:49:55 +00001165
Bill Wendling1d045ee2010-12-01 02:28:08 +00001166// Zero-extend short
1167def tUXTH : // A8.6.264
1168 T1pIMiscEncode<{0,0,1,0,1,0,?}, (outs tGPR:$Rd), (ins tGPR:$Rm),
1169 IIC_iUNAr,
1170 "uxth", "\t$Rd, $Rm",
1171 [(set tGPR:$Rd, (and tGPR:$Rm, 0xFFFF))]>,
1172 Requires<[IsThumb, IsThumb1Only, HasV6]>;
Evan Chenga8e29892007-01-19 07:51:42 +00001173
Jim Grosbach80dc1162010-02-16 21:23:02 +00001174// Conditional move tMOVCCr - Used to implement the Thumb SELECT_CC operation.
Dan Gohman533297b2009-10-29 18:10:34 +00001175// Expanded after instruction selection into a branch sequence.
1176let usesCustomInserter = 1 in // Expanded after instruction selection.
Evan Cheng007ea272009-08-12 05:17:19 +00001177 def tMOVCCr_pseudo :
Evan Chengc9721652009-08-12 02:03:03 +00001178 PseudoInst<(outs tGPR:$dst), (ins tGPR:$false, tGPR:$true, pred:$cc),
Jim Grosbach99594eb2010-11-18 01:38:26 +00001179 NoItinerary,
Evan Chengc9721652009-08-12 02:03:03 +00001180 [/*(set tGPR:$dst, (ARMcmov tGPR:$false, tGPR:$true, imm:$cc))*/]>;
Evan Chenga8e29892007-01-19 07:51:42 +00001181
1182// tLEApcrel - Load a pc-relative address into a register without offending the
1183// assembler.
Jim Grosbachd40963c2010-12-14 22:28:03 +00001184
1185def tADR : T1I<(outs tGPR:$Rd), (ins t_adrlabel:$addr, pred:$p),
Jim Grosbach5a1cd042011-08-17 20:37:40 +00001186 IIC_iALUi, "adr{$p}\t$Rd, $addr", []>,
Jim Grosbachd40963c2010-12-14 22:28:03 +00001187 T1Encoding<{1,0,1,0,0,?}> {
Bill Wendling67077412010-11-30 00:18:30 +00001188 bits<3> Rd;
Jim Grosbachd40963c2010-12-14 22:28:03 +00001189 bits<8> addr;
Bill Wendling67077412010-11-30 00:18:30 +00001190 let Inst{10-8} = Rd;
Jim Grosbachd40963c2010-12-14 22:28:03 +00001191 let Inst{7-0} = addr;
Owen Anderson8d7d2e12011-08-09 20:55:18 +00001192 let DecoderMethod = "DecodeThumbAddSpecialReg";
Bill Wendling67077412010-11-30 00:18:30 +00001193}
Evan Chenga8e29892007-01-19 07:51:42 +00001194
Jim Grosbachd40963c2010-12-14 22:28:03 +00001195let neverHasSideEffects = 1, isReMaterializable = 1 in
1196def tLEApcrel : tPseudoInst<(outs tGPR:$Rd), (ins i32imm:$label, pred:$p),
Owen Anderson16884412011-07-13 23:22:26 +00001197 2, IIC_iALUi, []>;
Jim Grosbachd40963c2010-12-14 22:28:03 +00001198
1199def tLEApcrelJT : tPseudoInst<(outs tGPR:$Rd),
1200 (ins i32imm:$label, nohash_imm:$id, pred:$p),
Owen Anderson16884412011-07-13 23:22:26 +00001201 2, IIC_iALUi, []>;
Evan Chengd85ac4d2007-01-27 02:29:45 +00001202
Evan Chenga8e29892007-01-19 07:51:42 +00001203//===----------------------------------------------------------------------===//
Lauro Ramos Venancio64f4fa52007-04-27 13:54:47 +00001204// TLS Instructions
1205//
1206
1207// __aeabi_read_tp preserves the registers r1-r3.
Jim Grosbachff97eb02011-06-30 19:38:01 +00001208// This is a pseudo inst so that we can get the encoding right,
1209// complete with fixup for the aeabi_read_tp function.
1210let isCall = 1, Defs = [R0, R12, LR, CPSR], Uses = [SP] in
Owen Anderson16884412011-07-13 23:22:26 +00001211def tTPsoft : tPseudoInst<(outs), (ins), 4, IIC_Br,
Jim Grosbachff97eb02011-06-30 19:38:01 +00001212 [(set R0, ARMthread_pointer)]>;
Lauro Ramos Venancio64f4fa52007-04-27 13:54:47 +00001213
Bill Wendling0480e282010-12-01 02:36:55 +00001214//===----------------------------------------------------------------------===//
Jim Grosbachd1228742009-12-01 18:10:36 +00001215// SJLJ Exception handling intrinsics
Owen Anderson18901d62011-05-11 17:00:48 +00001216//
Bill Wendling0480e282010-12-01 02:36:55 +00001217
1218// eh_sjlj_setjmp() is an instruction sequence to store the return address and
1219// save #0 in R0 for the non-longjmp case. Since by its nature we may be coming
1220// from some other function to get here, and we're using the stack frame for the
1221// containing function to save/restore registers, we can't keep anything live in
1222// regs across the eh_sjlj_setjmp(), else it will almost certainly have been
Chris Lattner7a2bdde2011-04-15 05:18:47 +00001223// tromped upon when we get here from a longjmp(). We force everything out of
Bill Wendling0480e282010-12-01 02:36:55 +00001224// registers except for our own input by listing the relevant registers in
1225// Defs. By doing so, we also cause the prologue/epilogue code to actively
1226// preserve all of the callee-saved resgisters, which is exactly what we want.
1227// $val is a scratch register for our use.
Andrew Tricka1099f12011-06-07 00:08:49 +00001228let Defs = [ R0, R1, R2, R3, R4, R5, R6, R7, R12, CPSR ],
Bill Wendling0e45a5a2010-11-30 00:50:22 +00001229 hasSideEffects = 1, isBarrier = 1, isCodeGenOnly = 1 in
1230def tInt_eh_sjlj_setjmp : ThumbXI<(outs),(ins tGPR:$src, tGPR:$val),
Owen Anderson16884412011-07-13 23:22:26 +00001231 AddrModeNone, 0, NoItinerary, "","",
Bill Wendling0e45a5a2010-11-30 00:50:22 +00001232 [(set R0, (ARMeh_sjlj_setjmp tGPR:$src, tGPR:$val))]>;
Jim Grosbach5eb19512010-05-22 01:06:18 +00001233
1234// FIXME: Non-Darwin version(s)
Chris Lattnera4a3a5e2010-10-31 19:15:18 +00001235let isBarrier = 1, hasSideEffects = 1, isTerminator = 1, isCodeGenOnly = 1,
Bill Wendling0e45a5a2010-11-30 00:50:22 +00001236 Defs = [ R7, LR, SP ] in
Jim Grosbach5eb19512010-05-22 01:06:18 +00001237def tInt_eh_sjlj_longjmp : XI<(outs), (ins GPR:$src, GPR:$scratch),
Owen Anderson16884412011-07-13 23:22:26 +00001238 AddrModeNone, 0, IndexModeNone,
Bill Wendling0e45a5a2010-11-30 00:50:22 +00001239 Pseudo, NoItinerary, "", "",
1240 [(ARMeh_sjlj_longjmp GPR:$src, GPR:$scratch)]>,
1241 Requires<[IsThumb, IsDarwin]>;
Jim Grosbach5eb19512010-05-22 01:06:18 +00001242
Lauro Ramos Venancio64f4fa52007-04-27 13:54:47 +00001243//===----------------------------------------------------------------------===//
Evan Chenga8e29892007-01-19 07:51:42 +00001244// Non-Instruction Patterns
1245//
1246
Jim Grosbach97a884d2010-12-07 20:41:06 +00001247// Comparisons
1248def : T1Pat<(ARMcmpZ tGPR:$Rn, imm0_255:$imm8),
1249 (tCMPi8 tGPR:$Rn, imm0_255:$imm8)>;
1250def : T1Pat<(ARMcmpZ tGPR:$Rn, tGPR:$Rm),
1251 (tCMPr tGPR:$Rn, tGPR:$Rm)>;
1252
Evan Cheng892837a2009-07-10 02:09:04 +00001253// Add with carry
David Goodwinc9d138f2009-07-27 19:59:26 +00001254def : T1Pat<(addc tGPR:$lhs, imm0_7:$rhs),
1255 (tADDi3 tGPR:$lhs, imm0_7:$rhs)>;
1256def : T1Pat<(addc tGPR:$lhs, imm8_255:$rhs),
Evan Cheng89d177f2009-08-20 17:01:04 +00001257 (tADDi8 tGPR:$lhs, imm8_255:$rhs)>;
David Goodwinc9d138f2009-07-27 19:59:26 +00001258def : T1Pat<(addc tGPR:$lhs, tGPR:$rhs),
1259 (tADDrr tGPR:$lhs, tGPR:$rhs)>;
Evan Cheng892837a2009-07-10 02:09:04 +00001260
1261// Subtract with carry
David Goodwinc9d138f2009-07-27 19:59:26 +00001262def : T1Pat<(addc tGPR:$lhs, imm0_7_neg:$rhs),
1263 (tSUBi3 tGPR:$lhs, imm0_7_neg:$rhs)>;
1264def : T1Pat<(addc tGPR:$lhs, imm8_255_neg:$rhs),
1265 (tSUBi8 tGPR:$lhs, imm8_255_neg:$rhs)>;
1266def : T1Pat<(subc tGPR:$lhs, tGPR:$rhs),
1267 (tSUBrr tGPR:$lhs, tGPR:$rhs)>;
Evan Cheng892837a2009-07-10 02:09:04 +00001268
Evan Chenga8e29892007-01-19 07:51:42 +00001269// ConstantPool, GlobalAddress
David Goodwinc9d138f2009-07-27 19:59:26 +00001270def : T1Pat<(ARMWrapper tglobaladdr :$dst), (tLEApcrel tglobaladdr :$dst)>;
1271def : T1Pat<(ARMWrapper tconstpool :$dst), (tLEApcrel tconstpool :$dst)>;
Evan Chenga8e29892007-01-19 07:51:42 +00001272
Evan Chengd85ac4d2007-01-27 02:29:45 +00001273// JumpTable
David Goodwinc9d138f2009-07-27 19:59:26 +00001274def : T1Pat<(ARMWrapperJT tjumptable:$dst, imm:$id),
1275 (tLEApcrelJT tjumptable:$dst, imm:$id)>;
Evan Chengd85ac4d2007-01-27 02:29:45 +00001276
Evan Chenga8e29892007-01-19 07:51:42 +00001277// Direct calls
Evan Cheng20a2a0a2009-07-29 21:26:42 +00001278def : T1Pat<(ARMtcall texternalsym:$func), (tBL texternalsym:$func)>,
Evan Chengb6207242009-08-01 00:16:10 +00001279 Requires<[IsThumb, IsNotDarwin]>;
Evan Cheng20a2a0a2009-07-29 21:26:42 +00001280def : T1Pat<(ARMtcall texternalsym:$func), (tBLr9 texternalsym:$func)>,
Evan Chengb6207242009-08-01 00:16:10 +00001281 Requires<[IsThumb, IsDarwin]>;
Evan Cheng20a2a0a2009-07-29 21:26:42 +00001282
1283def : Tv5Pat<(ARMcall texternalsym:$func), (tBLXi texternalsym:$func)>,
Evan Chengb6207242009-08-01 00:16:10 +00001284 Requires<[IsThumb, HasV5T, IsNotDarwin]>;
Evan Cheng20a2a0a2009-07-29 21:26:42 +00001285def : Tv5Pat<(ARMcall texternalsym:$func), (tBLXi_r9 texternalsym:$func)>,
Evan Chengb6207242009-08-01 00:16:10 +00001286 Requires<[IsThumb, HasV5T, IsDarwin]>;
Evan Chenga8e29892007-01-19 07:51:42 +00001287
1288// Indirect calls to ARM routines
Evan Chengb6207242009-08-01 00:16:10 +00001289def : Tv5Pat<(ARMcall GPR:$dst), (tBLXr GPR:$dst)>,
1290 Requires<[IsThumb, HasV5T, IsNotDarwin]>;
1291def : Tv5Pat<(ARMcall GPR:$dst), (tBLXr_r9 GPR:$dst)>,
1292 Requires<[IsThumb, HasV5T, IsDarwin]>;
Evan Chenga8e29892007-01-19 07:51:42 +00001293
1294// zextload i1 -> zextload i8
Bill Wendlingf4caf692010-12-14 03:36:38 +00001295def : T1Pat<(zextloadi1 t_addrmode_rrs1:$addr),
1296 (tLDRBr t_addrmode_rrs1:$addr)>;
1297def : T1Pat<(zextloadi1 t_addrmode_is1:$addr),
1298 (tLDRBi t_addrmode_is1:$addr)>;
Jim Grosbach0ede14f2009-03-27 23:06:27 +00001299
Evan Chengb60c02e2007-01-26 19:13:16 +00001300// extload -> zextload
Bill Wendlingf4caf692010-12-14 03:36:38 +00001301def : T1Pat<(extloadi1 t_addrmode_rrs1:$addr), (tLDRBr t_addrmode_rrs1:$addr)>;
1302def : T1Pat<(extloadi1 t_addrmode_is1:$addr), (tLDRBi t_addrmode_is1:$addr)>;
1303def : T1Pat<(extloadi8 t_addrmode_rrs1:$addr), (tLDRBr t_addrmode_rrs1:$addr)>;
1304def : T1Pat<(extloadi8 t_addrmode_is1:$addr), (tLDRBi t_addrmode_is1:$addr)>;
1305def : T1Pat<(extloadi16 t_addrmode_rrs2:$addr), (tLDRHr t_addrmode_rrs2:$addr)>;
1306def : T1Pat<(extloadi16 t_addrmode_is2:$addr), (tLDRHi t_addrmode_is2:$addr)>;
Evan Chengb60c02e2007-01-26 19:13:16 +00001307
Evan Cheng0e87e232009-08-28 00:31:43 +00001308// If it's impossible to use [r,r] address mode for sextload, select to
Evan Cheng2f297df2009-07-11 07:08:13 +00001309// ldr{b|h} + sxt{b|h} instead.
Bill Wendling415af342010-12-15 00:58:57 +00001310def : T1Pat<(sextloadi8 t_addrmode_is1:$addr),
1311 (tSXTB (tLDRBi t_addrmode_is1:$addr))>,
1312 Requires<[IsThumb, IsThumb1Only, HasV6]>;
Bill Wendlingf4caf692010-12-14 03:36:38 +00001313def : T1Pat<(sextloadi8 t_addrmode_rrs1:$addr),
1314 (tSXTB (tLDRBr t_addrmode_rrs1:$addr))>,
Jim Grosbach6797f892010-11-01 17:08:58 +00001315 Requires<[IsThumb, IsThumb1Only, HasV6]>;
Bill Wendling415af342010-12-15 00:58:57 +00001316def : T1Pat<(sextloadi16 t_addrmode_is2:$addr),
1317 (tSXTH (tLDRHi t_addrmode_is2:$addr))>,
1318 Requires<[IsThumb, IsThumb1Only, HasV6]>;
Bill Wendlingf4caf692010-12-14 03:36:38 +00001319def : T1Pat<(sextloadi16 t_addrmode_rrs2:$addr),
1320 (tSXTH (tLDRHr t_addrmode_rrs2:$addr))>,
Jim Grosbach6797f892010-11-01 17:08:58 +00001321 Requires<[IsThumb, IsThumb1Only, HasV6]>;
Evan Cheng2f297df2009-07-11 07:08:13 +00001322
Bill Wendlingf4caf692010-12-14 03:36:38 +00001323def : T1Pat<(sextloadi8 t_addrmode_rrs1:$addr),
1324 (tASRri (tLSLri (tLDRBr t_addrmode_rrs1:$addr), 24), 24)>;
Bill Wendling415af342010-12-15 00:58:57 +00001325def : T1Pat<(sextloadi8 t_addrmode_is1:$addr),
1326 (tASRri (tLSLri (tLDRBi t_addrmode_is1:$addr), 24), 24)>;
1327def : T1Pat<(sextloadi16 t_addrmode_rrs2:$addr),
1328 (tASRri (tLSLri (tLDRHr t_addrmode_rrs2:$addr), 16), 16)>;
1329def : T1Pat<(sextloadi16 t_addrmode_is2:$addr),
1330 (tASRri (tLSLri (tLDRHi t_addrmode_is2:$addr), 16), 16)>;
Evan Cheng2f297df2009-07-11 07:08:13 +00001331
Evan Chenga8e29892007-01-19 07:51:42 +00001332// Large immediate handling.
1333
1334// Two piece imms.
Evan Cheng9cb9e672009-06-27 02:26:13 +00001335def : T1Pat<(i32 thumb_immshifted:$src),
1336 (tLSLri (tMOVi8 (thumb_immshifted_val imm:$src)),
1337 (thumb_immshifted_shamt imm:$src))>;
Evan Chenga8e29892007-01-19 07:51:42 +00001338
Evan Cheng9cb9e672009-06-27 02:26:13 +00001339def : T1Pat<(i32 imm0_255_comp:$src),
1340 (tMVN (tMOVi8 (imm_comp_XFORM imm:$src)))>;
Evan Chengb9803a82009-11-06 23:52:48 +00001341
1342// Pseudo instruction that combines ldr from constpool and add pc. This should
1343// be expanded into two instructions late to allow if-conversion and
1344// scheduling.
1345let isReMaterializable = 1 in
1346def tLDRpci_pic : PseudoInst<(outs GPR:$dst), (ins i32imm:$addr, pclabel:$cp),
Bill Wendling0480e282010-12-01 02:36:55 +00001347 NoItinerary,
Evan Chengb9803a82009-11-06 23:52:48 +00001348 [(set GPR:$dst, (ARMpic_add (load (ARMWrapper tconstpool:$addr)),
1349 imm:$cp))]>,
Jim Grosbach6797f892010-11-01 17:08:58 +00001350 Requires<[IsThumb, IsThumb1Only]>;
Jim Grosbach53e3fc42011-07-08 17:40:42 +00001351
1352// Pseudo-instruction for merged POP and return.
1353// FIXME: remove when we have a way to marking a MI with these properties.
1354let isReturn = 1, isTerminator = 1, isBarrier = 1, mayLoad = 1,
1355 hasExtraDefRegAllocReq = 1 in
1356def tPOP_RET : tPseudoExpand<(outs), (ins pred:$p, reglist:$regs, variable_ops),
Owen Anderson16884412011-07-13 23:22:26 +00001357 2, IIC_iPop_Br, [],
Jim Grosbach53e3fc42011-07-08 17:40:42 +00001358 (tPOP pred:$p, reglist:$regs)>;
1359
Jim Grosbachaa8d1b82011-07-08 22:25:23 +00001360// Indirect branch using "mov pc, $Rm"
1361let isBranch = 1, isTerminator = 1, isBarrier = 1, isIndirectBranch = 1 in {
Jim Grosbach7e61a312011-07-08 22:33:49 +00001362 def tBRIND : tPseudoExpand<(outs), (ins GPR:$Rm, pred:$p),
Owen Anderson16884412011-07-13 23:22:26 +00001363 2, IIC_Br, [(brind GPR:$Rm)],
Jim Grosbach7e61a312011-07-08 22:33:49 +00001364 (tMOVr PC, GPR:$Rm, pred:$p)>;
Jim Grosbachaa8d1b82011-07-08 22:25:23 +00001365}