blob: edc4660034f615cb45bed94ae685c8a61b902b60 [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//
Jim Grosbachc6d7c652011-08-19 16:52:32 +0000128// We use separate scaled versions because the Select* functions need
129// to explicitly check for a matching constant and return false here so that
130// the reg+imm forms will match instead. This is a horrible way to do that,
131// as it forces tight coupling between the methods, but it's how selectiondag
132// currently works.
Bill Wendlingf4caf692010-12-14 03:36:38 +0000133def t_addrmode_rrs1 : Operand<i32>,
134 ComplexPattern<i32, 2, "SelectThumbAddrModeRI5S1", []> {
135 let EncoderMethod = "getThumbAddrModeRegRegOpValue";
136 let PrintMethod = "printThumbAddrModeRROperand";
Owen Anderson8d7d2e12011-08-09 20:55:18 +0000137 let DecoderMethod = "DecodeThumbAddrModeRR";
Jim Grosbach7ce05792011-08-03 23:50:40 +0000138 let ParserMatchClass = t_addrmode_rr_asm_operand;
Bill Wendlingf4caf692010-12-14 03:36:38 +0000139 let MIOperandInfo = (ops tGPR:$base, tGPR:$offsreg);
Evan Chenga8e29892007-01-19 07:51:42 +0000140}
Bill Wendlingf4caf692010-12-14 03:36:38 +0000141def t_addrmode_rrs2 : Operand<i32>,
142 ComplexPattern<i32, 2, "SelectThumbAddrModeRI5S2", []> {
143 let EncoderMethod = "getThumbAddrModeRegRegOpValue";
Owen Anderson8d7d2e12011-08-09 20:55:18 +0000144 let DecoderMethod = "DecodeThumbAddrModeRR";
Bill Wendlingf4caf692010-12-14 03:36:38 +0000145 let PrintMethod = "printThumbAddrModeRROperand";
Jim Grosbach7ce05792011-08-03 23:50:40 +0000146 let ParserMatchClass = t_addrmode_rr_asm_operand;
Bill Wendlingf4caf692010-12-14 03:36:38 +0000147 let MIOperandInfo = (ops tGPR:$base, tGPR:$offsreg);
Bill Wendlingf4caf692010-12-14 03:36:38 +0000148}
149def t_addrmode_rrs4 : Operand<i32>,
150 ComplexPattern<i32, 2, "SelectThumbAddrModeRI5S4", []> {
151 let EncoderMethod = "getThumbAddrModeRegRegOpValue";
Owen Anderson8d7d2e12011-08-09 20:55:18 +0000152 let DecoderMethod = "DecodeThumbAddrModeRR";
Bill Wendlingf4caf692010-12-14 03:36:38 +0000153 let PrintMethod = "printThumbAddrModeRROperand";
Jim Grosbach7ce05792011-08-03 23:50:40 +0000154 let ParserMatchClass = t_addrmode_rr_asm_operand;
Bill Wendlingf4caf692010-12-14 03:36:38 +0000155 let MIOperandInfo = (ops tGPR:$base, tGPR:$offsreg);
Evan Chenga8e29892007-01-19 07:51:42 +0000156}
Evan Chengc38f2bc2007-01-23 22:59:13 +0000157
Bill Wendlingf4caf692010-12-14 03:36:38 +0000158// t_addrmode_is4 := reg + imm5 * 4
Evan Chengc38f2bc2007-01-23 22:59:13 +0000159//
Jim Grosbach60f91a32011-08-19 17:55:24 +0000160def t_addrmode_is4_asm_operand : AsmOperandClass { let Name = "MemThumbRIs4"; }
Bill Wendlingf4caf692010-12-14 03:36:38 +0000161def t_addrmode_is4 : Operand<i32>,
162 ComplexPattern<i32, 2, "SelectThumbAddrModeImm5S4", []> {
163 let EncoderMethod = "getAddrModeISOpValue";
Owen Anderson8d7d2e12011-08-09 20:55:18 +0000164 let DecoderMethod = "DecodeThumbAddrModeIS";
Bill Wendlingf4caf692010-12-14 03:36:38 +0000165 let PrintMethod = "printThumbAddrModeImm5S4Operand";
Jim Grosbach60f91a32011-08-19 17:55:24 +0000166 let ParserMatchClass = t_addrmode_is4_asm_operand;
Bill Wendlingf4caf692010-12-14 03:36:38 +0000167 let MIOperandInfo = (ops tGPR:$base, i32imm:$offsimm);
Bill Wendlingf4caf692010-12-14 03:36:38 +0000168}
169
170// t_addrmode_is2 := reg + imm5 * 2
171//
Jim Grosbach38466302011-08-19 18:55:51 +0000172def t_addrmode_is2_asm_operand : AsmOperandClass { let Name = "MemThumbRIs2"; }
Bill Wendlingf4caf692010-12-14 03:36:38 +0000173def t_addrmode_is2 : Operand<i32>,
174 ComplexPattern<i32, 2, "SelectThumbAddrModeImm5S2", []> {
175 let EncoderMethod = "getAddrModeISOpValue";
Owen Anderson8d7d2e12011-08-09 20:55:18 +0000176 let DecoderMethod = "DecodeThumbAddrModeIS";
Bill Wendlingf4caf692010-12-14 03:36:38 +0000177 let PrintMethod = "printThumbAddrModeImm5S2Operand";
Jim Grosbach38466302011-08-19 18:55:51 +0000178 let ParserMatchClass = t_addrmode_is2_asm_operand;
Bill Wendlingf4caf692010-12-14 03:36:38 +0000179 let MIOperandInfo = (ops tGPR:$base, i32imm:$offsimm);
Bill Wendlingf4caf692010-12-14 03:36:38 +0000180}
181
182// t_addrmode_is1 := reg + imm5
183//
Jim Grosbach48ff5ff2011-08-19 18:49:59 +0000184def t_addrmode_is1_asm_operand : AsmOperandClass { let Name = "MemThumbRIs1"; }
Bill Wendlingf4caf692010-12-14 03:36:38 +0000185def t_addrmode_is1 : Operand<i32>,
186 ComplexPattern<i32, 2, "SelectThumbAddrModeImm5S1", []> {
187 let EncoderMethod = "getAddrModeISOpValue";
Owen Anderson8d7d2e12011-08-09 20:55:18 +0000188 let DecoderMethod = "DecodeThumbAddrModeIS";
Bill Wendlingf4caf692010-12-14 03:36:38 +0000189 let PrintMethod = "printThumbAddrModeImm5S1Operand";
Jim Grosbach48ff5ff2011-08-19 18:49:59 +0000190 let ParserMatchClass = t_addrmode_is1_asm_operand;
Bill Wendlingf4caf692010-12-14 03:36:38 +0000191 let MIOperandInfo = (ops tGPR:$base, i32imm:$offsimm);
Evan Chenga8e29892007-01-19 07:51:42 +0000192}
193
194// t_addrmode_sp := sp + imm8 * 4
195//
Jim Grosbachecd85892011-08-19 18:13:48 +0000196def t_addrmode_sp_asm_operand : AsmOperandClass { let Name = "MemThumbSPI"; }
Evan Chenga8e29892007-01-19 07:51:42 +0000197def t_addrmode_sp : Operand<i32>,
198 ComplexPattern<i32, 2, "SelectThumbAddrModeSP", []> {
Jim Grosbachd967cd02010-12-07 21:50:47 +0000199 let EncoderMethod = "getAddrModeThumbSPOpValue";
Owen Anderson648f9a72011-08-08 23:25:22 +0000200 let DecoderMethod = "DecodeThumbAddrModeSP";
Evan Chenga8e29892007-01-19 07:51:42 +0000201 let PrintMethod = "printThumbAddrModeSPOperand";
Jim Grosbachecd85892011-08-19 18:13:48 +0000202 let ParserMatchClass = t_addrmode_sp_asm_operand;
Jakob Stoklund Olesenc5b7ef12010-01-13 00:43:06 +0000203 let MIOperandInfo = (ops GPR:$base, i32imm:$offsimm);
Evan Chenga8e29892007-01-19 07:51:42 +0000204}
205
Bill Wendlingb8958b02010-12-08 01:57:09 +0000206// t_addrmode_pc := <label> => pc + imm8 * 4
207//
208def t_addrmode_pc : Operand<i32> {
209 let EncoderMethod = "getAddrModePCOpValue";
Owen Anderson8d7d2e12011-08-09 20:55:18 +0000210 let DecoderMethod = "DecodeThumbAddrModePC";
Bill Wendlingb8958b02010-12-08 01:57:09 +0000211}
212
Evan Chenga8e29892007-01-19 07:51:42 +0000213//===----------------------------------------------------------------------===//
214// Miscellaneous Instructions.
215//
216
Jim Grosbach4642ad32010-02-22 23:10:38 +0000217// FIXME: Marking these as hasSideEffects is necessary to prevent machine DCE
218// from removing one half of the matched pairs. That breaks PEI, which assumes
219// these will always be in pairs, and asserts if it finds otherwise. Better way?
220let Defs = [SP], Uses = [SP], hasSideEffects = 1 in {
Evan Cheng44bec522007-05-15 01:29:07 +0000221def tADJCALLSTACKUP :
Bill Wendlinga8981662010-11-19 22:02:18 +0000222 PseudoInst<(outs), (ins i32imm:$amt1, i32imm:$amt2), NoItinerary,
223 [(ARMcallseq_end imm:$amt1, imm:$amt2)]>,
224 Requires<[IsThumb, IsThumb1Only]>;
Evan Cheng44bec522007-05-15 01:29:07 +0000225
Jim Grosbach0ede14f2009-03-27 23:06:27 +0000226def tADJCALLSTACKDOWN :
Bill Wendlinga8981662010-11-19 22:02:18 +0000227 PseudoInst<(outs), (ins i32imm:$amt), NoItinerary,
228 [(ARMcallseq_start imm:$amt)]>,
229 Requires<[IsThumb, IsThumb1Only]>;
Evan Cheng071a2792007-09-11 19:55:27 +0000230}
Evan Cheng44bec522007-05-15 01:29:07 +0000231
Jim Grosbach421993f2011-08-17 23:08:57 +0000232class T1SystemEncoding<bits<8> opc>
Bill Wendlinga46a4932010-11-29 22:15:03 +0000233 : T1Encoding<0b101111> {
Jim Grosbach421993f2011-08-17 23:08:57 +0000234 let Inst{9-8} = 0b11;
235 let Inst{7-0} = opc;
Bill Wendlinga46a4932010-11-29 22:15:03 +0000236}
237
Jim Grosbach421993f2011-08-17 23:08:57 +0000238def tNOP : T1pI<(outs), (ins), NoItinerary, "nop", "", []>,
239 T1SystemEncoding<0x00>; // A8.6.110
Johnny Chenbd2c6232010-02-25 03:28:51 +0000240
Jim Grosbach421993f2011-08-17 23:08:57 +0000241def tYIELD : T1pI<(outs), (ins), NoItinerary, "yield", "", []>,
242 T1SystemEncoding<0x10>; // A8.6.410
Johnny Chend86d2692010-02-25 17:51:03 +0000243
Jim Grosbach421993f2011-08-17 23:08:57 +0000244def tWFE : T1pI<(outs), (ins), NoItinerary, "wfe", "", []>,
245 T1SystemEncoding<0x20>; // A8.6.408
Johnny Chend86d2692010-02-25 17:51:03 +0000246
Jim Grosbach421993f2011-08-17 23:08:57 +0000247def tWFI : T1pI<(outs), (ins), NoItinerary, "wfi", "", []>,
248 T1SystemEncoding<0x30>; // A8.6.409
Johnny Chend86d2692010-02-25 17:51:03 +0000249
Jim Grosbach421993f2011-08-17 23:08:57 +0000250def tSEV : T1pI<(outs), (ins), NoItinerary, "sev", "", []>,
251 T1SystemEncoding<0x40>; // A8.6.157
Bill Wendlinga46a4932010-11-29 22:15:03 +0000252
Jim Grosbach421993f2011-08-17 23:08:57 +0000253// The imm operand $val can be used by a debugger to store more information
Bill Wendlinga46a4932010-11-29 22:15:03 +0000254// about the breakpoint.
Jim Grosbach421993f2011-08-17 23:08:57 +0000255def tBKPT : T1I<(outs), (ins imm0_255:$val), NoItinerary, "bkpt\t$val",
256 []>,
257 T1Encoding<0b101111> {
258 let Inst{9-8} = 0b10;
Bill Wendlinga46a4932010-11-29 22:15:03 +0000259 // A8.6.22
260 bits<8> val;
261 let Inst{7-0} = val;
262}
Johnny Chend86d2692010-02-25 17:51:03 +0000263
Jim Grosbach06322472011-07-22 17:52:23 +0000264def tSETEND : T1I<(outs), (ins setend_op:$end), NoItinerary, "setend\t$end",
265 []>, T1Encoding<0b101101> {
266 bits<1> end;
Bill Wendling7d0affd2010-11-21 10:55:23 +0000267 // A8.6.156
Johnny Chend86d2692010-02-25 17:51:03 +0000268 let Inst{9-5} = 0b10010;
Bill Wendlinga8981662010-11-19 22:02:18 +0000269 let Inst{4} = 1;
Jim Grosbach06322472011-07-22 17:52:23 +0000270 let Inst{3} = end;
Bill Wendlinga8981662010-11-19 22:02:18 +0000271 let Inst{2-0} = 0b000;
Johnny Chend86d2692010-02-25 17:51:03 +0000272}
273
Johnny Chen93042d12010-03-02 18:14:57 +0000274// Change Processor State is a system instruction -- for disassembly only.
Bruno Cardoso Lopesa2b6e412011-02-14 13:09:44 +0000275def tCPS : T1I<(outs), (ins imod_op:$imod, iflags_op:$iflags),
276 NoItinerary, "cps$imod $iflags",
277 [/* For disassembly only; pattern left blank */]>,
Bill Wendling849f2e32010-11-29 00:18:15 +0000278 T1Misc<0b0110011> {
279 // A8.6.38 & B6.1.1
Bruno Cardoso Lopesa2b6e412011-02-14 13:09:44 +0000280 bit imod;
281 bits<3> iflags;
282
283 let Inst{4} = imod;
284 let Inst{3} = 0;
285 let Inst{2-0} = iflags;
Owen Anderson8d7d2e12011-08-09 20:55:18 +0000286 let DecoderMethod = "DecodeThumbCPS";
Bill Wendling849f2e32010-11-29 00:18:15 +0000287}
Johnny Chen93042d12010-03-02 18:14:57 +0000288
Evan Cheng35d6c412009-08-04 23:47:55 +0000289// For both thumb1 and thumb2.
Chris Lattnera4a3a5e2010-10-31 19:15:18 +0000290let isNotDuplicable = 1, isCodeGenOnly = 1 in
Jim Grosbacha3fbadf2010-09-30 19:53:58 +0000291def tPICADD : TIt<(outs GPR:$dst), (ins GPR:$lhs, pclabel:$cp), IIC_iALUr, "",
Bill Wendling0ae28e42010-11-19 22:37:33 +0000292 [(set GPR:$dst, (ARMpic_add GPR:$lhs, imm:$cp))]>,
Johnny Chend68e1192009-12-15 17:24:14 +0000293 T1Special<{0,0,?,?}> {
Bill Wendling0e45a5a2010-11-30 00:50:22 +0000294 // A8.6.6
Bill Wendling0ae28e42010-11-19 22:37:33 +0000295 bits<3> dst;
Bill Wendling0e45a5a2010-11-30 00:50:22 +0000296 let Inst{6-3} = 0b1111; // Rm = pc
Bill Wendling0ae28e42010-11-19 22:37:33 +0000297 let Inst{2-0} = dst;
Johnny Chend68e1192009-12-15 17:24:14 +0000298}
Evan Chenga8e29892007-01-19 07:51:42 +0000299
Bill Wendling0ae28e42010-11-19 22:37:33 +0000300// ADD <Rd>, sp, #<imm8>
301// This is rematerializable, which is particularly useful for taking the
302// address of locals.
303let isReMaterializable = 1 in
304def tADDrSPi : T1I<(outs tGPR:$dst), (ins GPR:$sp, t_imm_s4:$rhs), IIC_iALUi,
305 "add\t$dst, $sp, $rhs", []>,
306 T1Encoding<{1,0,1,0,1,?}> {
307 // A6.2 & A8.6.8
308 bits<3> dst;
309 bits<8> rhs;
310 let Inst{10-8} = dst;
311 let Inst{7-0} = rhs;
Owen Anderson8d7d2e12011-08-09 20:55:18 +0000312 let DecoderMethod = "DecodeThumbAddSpecialReg";
Bill Wendling0ae28e42010-11-19 22:37:33 +0000313}
314
315// ADD sp, sp, #<imm7>
Evan Cheng2ef9c8a2009-11-19 06:57:41 +0000316def tADDspi : TIt<(outs GPR:$dst), (ins GPR:$lhs, t_imm_s4:$rhs), IIC_iALUi,
Johnny Chend68e1192009-12-15 17:24:14 +0000317 "add\t$dst, $rhs", []>,
Bill Wendling0ae28e42010-11-19 22:37:33 +0000318 T1Misc<{0,0,0,0,0,?,?}> {
319 // A6.2.5 & A8.6.8
320 bits<7> rhs;
321 let Inst{6-0} = rhs;
Owen Anderson8d7d2e12011-08-09 20:55:18 +0000322 let DecoderMethod = "DecodeThumbAddSPImm";
Bill Wendling0ae28e42010-11-19 22:37:33 +0000323}
Evan Cheng7dcf4a82009-06-25 01:05:06 +0000324
Bill Wendling0ae28e42010-11-19 22:37:33 +0000325// SUB sp, sp, #<imm7>
326// FIXME: The encoding and the ASM string don't match up.
Evan Cheng2ef9c8a2009-11-19 06:57:41 +0000327def tSUBspi : TIt<(outs GPR:$dst), (ins GPR:$lhs, t_imm_s4:$rhs), IIC_iALUi,
Johnny Chend68e1192009-12-15 17:24:14 +0000328 "sub\t$dst, $rhs", []>,
Bill Wendling0ae28e42010-11-19 22:37:33 +0000329 T1Misc<{0,0,0,0,1,?,?}> {
330 // A6.2.5 & A8.6.214
331 bits<7> rhs;
332 let Inst{6-0} = rhs;
Owen Anderson8d7d2e12011-08-09 20:55:18 +0000333 let DecoderMethod = "DecodeThumbAddSPImm";
Bill Wendling0ae28e42010-11-19 22:37:33 +0000334}
Evan Cheng86198642009-08-07 00:34:42 +0000335
Bill Wendling0ae28e42010-11-19 22:37:33 +0000336// ADD <Rm>, sp
David Goodwin5d598aa2009-08-19 18:00:44 +0000337def tADDrSP : TIt<(outs GPR:$dst), (ins GPR:$lhs, GPR:$rhs), IIC_iALUr,
Johnny Chend68e1192009-12-15 17:24:14 +0000338 "add\t$dst, $rhs", []>,
339 T1Special<{0,0,?,?}> {
Bill Wendling0ae28e42010-11-19 22:37:33 +0000340 // A8.6.9 Encoding T1
341 bits<4> dst;
342 let Inst{7} = dst{3};
343 let Inst{6-3} = 0b1101;
344 let Inst{2-0} = dst{2-0};
Owen Anderson8d7d2e12011-08-09 20:55:18 +0000345 let DecoderMethod = "DecodeThumbAddSPReg";
Johnny Chend68e1192009-12-15 17:24:14 +0000346}
Evan Cheng86198642009-08-07 00:34:42 +0000347
Bill Wendling0ae28e42010-11-19 22:37:33 +0000348// ADD sp, <Rm>
David Goodwin5d598aa2009-08-19 18:00:44 +0000349def tADDspr : TIt<(outs GPR:$dst), (ins GPR:$lhs, GPR:$rhs), IIC_iALUr,
Johnny Chend68e1192009-12-15 17:24:14 +0000350 "add\t$dst, $rhs", []>,
351 T1Special<{0,0,?,?}> {
352 // A8.6.9 Encoding T2
Bill Wendling0ae28e42010-11-19 22:37:33 +0000353 bits<4> dst;
Johnny Chend68e1192009-12-15 17:24:14 +0000354 let Inst{7} = 1;
Bill Wendling0ae28e42010-11-19 22:37:33 +0000355 let Inst{6-3} = dst;
Johnny Chend68e1192009-12-15 17:24:14 +0000356 let Inst{2-0} = 0b101;
Owen Anderson8d7d2e12011-08-09 20:55:18 +0000357 let DecoderMethod = "DecodeThumbAddSPReg";
Johnny Chend68e1192009-12-15 17:24:14 +0000358}
Evan Cheng86198642009-08-07 00:34:42 +0000359
Evan Chenga8e29892007-01-19 07:51:42 +0000360//===----------------------------------------------------------------------===//
361// Control Flow Instructions.
362//
363
Bob Wilson8d4de5a2009-10-28 18:26:41 +0000364// Indirect branches
365let isBranch = 1, isTerminator = 1, isBarrier = 1, isIndirectBranch = 1 in {
Cameron Zwarich421b1062011-05-26 03:41:12 +0000366 def tBX : TI<(outs), (ins GPR:$Rm, pred:$p), IIC_Br, "bx${p}\t$Rm", []>,
367 T1Special<{1,1,0,?}> {
368 // A6.2.3 & A8.6.25
369 bits<4> Rm;
370 let Inst{6-3} = Rm;
371 let Inst{2-0} = 0b000;
372 }
Bob Wilson8d4de5a2009-10-28 18:26:41 +0000373}
374
Jim Grosbachead77cd2011-07-08 21:04:05 +0000375let isReturn = 1, isTerminator = 1, isBarrier = 1 in {
Owen Anderson16884412011-07-13 23:22:26 +0000376 def tBX_RET : tPseudoExpand<(outs), (ins pred:$p), 2, IIC_Br,
Jim Grosbach25e6d482011-07-08 21:50:04 +0000377 [(ARMretflag)], (tBX LR, pred:$p)>;
Jim Grosbachead77cd2011-07-08 21:04:05 +0000378
379 // Alternative return instruction used by vararg functions.
Jim Grosbach25e6d482011-07-08 21:50:04 +0000380 def tBX_RET_vararg : tPseudoExpand<(outs), (ins tGPR:$Rm, pred:$p),
Owen Anderson16884412011-07-13 23:22:26 +0000381 2, IIC_Br, [],
Jim Grosbach25e6d482011-07-08 21:50:04 +0000382 (tBX GPR:$Rm, pred:$p)>;
Jim Grosbachead77cd2011-07-08 21:04:05 +0000383}
384
Bill Wendling0480e282010-12-01 02:36:55 +0000385// All calls clobber the non-callee saved registers. SP is marked as a use to
386// prevent stack-pointer assignments that appear immediately before calls from
387// potentially appearing dead.
Jim Grosbach0ede14f2009-03-27 23:06:27 +0000388let isCall = 1,
Evan Cheng1e0eab12010-11-29 22:43:27 +0000389 // On non-Darwin platforms R9 is callee-saved.
Jakob Stoklund Olesen2944b4f2011-05-03 22:31:24 +0000390 Defs = [R0, R1, R2, R3, R12, LR, QQQQ0, QQQQ2, QQQQ3, CPSR, FPSCR],
Evan Cheng1e0eab12010-11-29 22:43:27 +0000391 Uses = [SP] in {
Evan Chengb6207242009-08-01 00:16:10 +0000392 // Also used for Thumb2
Johnny Chend68e1192009-12-15 17:24:14 +0000393 def tBL : TIx2<0b11110, 0b11, 1,
Owen Anderson0af0dc82011-07-18 18:50:52 +0000394 (outs), (ins pred:$p, t_bltarget:$func, variable_ops), IIC_Br,
395 "bl${p}\t$func",
Johnny Chend68e1192009-12-15 17:24:14 +0000396 [(ARMtcall tglobaladdr:$func)]>,
Bill Wendling534a5e42010-12-03 01:55:47 +0000397 Requires<[IsThumb, IsNotDarwin]> {
Owen Anderson648f9a72011-08-08 23:25:22 +0000398 bits<22> func;
399 let Inst{26} = func{21};
Jim Grosbach662a8162010-12-06 23:57:07 +0000400 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-0} = func{10-0};
Bill Wendling534a5e42010-12-03 01:55:47 +0000404 }
Evan Cheng20a2a0a2009-07-29 21:26:42 +0000405
Evan Chengb6207242009-08-01 00:16:10 +0000406 // ARMv5T and above, also used for Thumb2
Johnny Chend68e1192009-12-15 17:24:14 +0000407 def tBLXi : TIx2<0b11110, 0b11, 0,
Jim Grosbach5f687de2011-08-18 16:50:45 +0000408 (outs), (ins pred:$p, t_blxtarget:$func, variable_ops), IIC_Br,
Owen Anderson0af0dc82011-07-18 18:50:52 +0000409 "blx${p}\t$func",
Johnny Chend68e1192009-12-15 17:24:14 +0000410 [(ARMcall tglobaladdr:$func)]>,
Jim Grosbach4fa102b2010-12-03 22:33:42 +0000411 Requires<[IsThumb, HasV5T, IsNotDarwin]> {
Jim Grosbach662a8162010-12-06 23:57:07 +0000412 bits<21> func;
413 let Inst{25-16} = func{20-11};
Jim Grosbach4fa102b2010-12-03 22:33:42 +0000414 let Inst{13} = 1;
415 let Inst{11} = 1;
Jim Grosbach662a8162010-12-06 23:57:07 +0000416 let Inst{10-1} = func{10-1};
417 let Inst{0} = 0; // func{0} is assumed zero
Jim Grosbach4fa102b2010-12-03 22:33:42 +0000418 }
Evan Cheng20a2a0a2009-07-29 21:26:42 +0000419
Evan Chengb6207242009-08-01 00:16:10 +0000420 // Also used for Thumb2
Owen Anderson0af0dc82011-07-18 18:50:52 +0000421 def tBLXr : TI<(outs), (ins pred:$p, GPR:$func, variable_ops), IIC_Br,
422 "blx${p}\t$func",
Evan Chengb6207242009-08-01 00:16:10 +0000423 [(ARMtcall GPR:$func)]>,
Johnny Chend68e1192009-12-15 17:24:14 +0000424 Requires<[IsThumb, HasV5T, IsNotDarwin]>,
Owen Anderson18901d62011-05-11 17:00:48 +0000425 T1Special<{1,1,1,?}> { // A6.2.3 & A8.6.24;
426 bits<4> func;
427 let Inst{6-3} = func;
428 let Inst{2-0} = 0b000;
429 }
Evan Cheng20a2a0a2009-07-29 21:26:42 +0000430
Lauro Ramos Venanciob8a93a42007-03-27 16:19:21 +0000431 // ARMv4T
Cameron Zwarichad70f6d2011-05-25 21:53:50 +0000432 def tBX_CALL : tPseudoInst<(outs), (ins tGPR:$func, variable_ops),
Owen Anderson16884412011-07-13 23:22:26 +0000433 4, IIC_Br,
Evan Cheng20a2a0a2009-07-29 21:26:42 +0000434 [(ARMcall_nolink tGPR:$func)]>,
Jim Grosbach6797f892010-11-01 17:08:58 +0000435 Requires<[IsThumb, IsThumb1Only, IsNotDarwin]>;
Evan Cheng20a2a0a2009-07-29 21:26:42 +0000436}
437
Evan Cheng20a2a0a2009-07-29 21:26:42 +0000438let isCall = 1,
Evan Cheng1e0eab12010-11-29 22:43:27 +0000439 // On Darwin R9 is call-clobbered.
440 // R7 is marked as a use to prevent frame-pointer assignments from being
441 // moved above / below calls.
Jakob Stoklund Olesen2944b4f2011-05-03 22:31:24 +0000442 Defs = [R0, R1, R2, R3, R9, R12, LR, QQQQ0, QQQQ2, QQQQ3, CPSR, FPSCR],
Evan Cheng1e0eab12010-11-29 22:43:27 +0000443 Uses = [R7, SP] in {
Evan Chengb6207242009-08-01 00:16:10 +0000444 // Also used for Thumb2
Owen Anderson0af0dc82011-07-18 18:50:52 +0000445 def tBLr9 : tPseudoExpand<(outs), (ins pred:$p, t_bltarget:$func, variable_ops),
446 4, IIC_Br, [(ARMtcall tglobaladdr:$func)],
447 (tBL pred:$p, t_bltarget:$func)>,
448 Requires<[IsThumb, IsDarwin]>;
Evan Cheng20a2a0a2009-07-29 21:26:42 +0000449
Evan Chengb6207242009-08-01 00:16:10 +0000450 // ARMv5T and above, also used for Thumb2
Owen Anderson0af0dc82011-07-18 18:50:52 +0000451 def tBLXi_r9 : tPseudoExpand<(outs), (ins pred:$p, t_blxtarget:$func, variable_ops),
452 4, IIC_Br, [(ARMcall tglobaladdr:$func)],
453 (tBLXi pred:$p, t_blxtarget:$func)>,
454 Requires<[IsThumb, HasV5T, IsDarwin]>;
Evan Cheng20a2a0a2009-07-29 21:26:42 +0000455
Evan Chengb6207242009-08-01 00:16:10 +0000456 // Also used for Thumb2
Owen Anderson0af0dc82011-07-18 18:50:52 +0000457 def tBLXr_r9 : tPseudoExpand<(outs), (ins pred:$p, GPR:$func, variable_ops),
458 2, IIC_Br, [(ARMtcall GPR:$func)],
459 (tBLXr pred:$p, GPR:$func)>,
460 Requires<[IsThumb, HasV5T, IsDarwin]>;
Evan Cheng20a2a0a2009-07-29 21:26:42 +0000461
462 // ARMv4T
Cameron Zwarichad70f6d2011-05-25 21:53:50 +0000463 def tBXr9_CALL : tPseudoInst<(outs), (ins tGPR:$func, variable_ops),
Owen Anderson16884412011-07-13 23:22:26 +0000464 4, IIC_Br,
Johnny Chend68e1192009-12-15 17:24:14 +0000465 [(ARMcall_nolink tGPR:$func)]>,
Jim Grosbach6797f892010-11-01 17:08:58 +0000466 Requires<[IsThumb, IsThumb1Only, IsDarwin]>;
Evan Chenga8e29892007-01-19 07:51:42 +0000467}
468
Bill Wendling0480e282010-12-01 02:36:55 +0000469let isBranch = 1, isTerminator = 1, isBarrier = 1 in {
470 let isPredicable = 1 in
Jim Grosbache2467172010-12-10 18:21:33 +0000471 def tB : T1I<(outs), (ins t_brtarget:$target), IIC_Br,
Bill Wendling0480e282010-12-01 02:36:55 +0000472 "b\t$target", [(br bb:$target)]>,
Jim Grosbache2467172010-12-10 18:21:33 +0000473 T1Encoding<{1,1,1,0,0,?}> {
474 bits<11> target;
475 let Inst{10-0} = target;
476 }
Evan Chenga8e29892007-01-19 07:51:42 +0000477
Evan Cheng225dfe92007-01-30 01:13:37 +0000478 // Far jump
Jim Grosbach3efad8f2010-12-16 19:11:16 +0000479 // Just a pseudo for a tBL instruction. Needed to let regalloc know about
480 // the clobber of LR.
Evan Cheng53c67c02009-08-07 05:45:07 +0000481 let Defs = [LR] in
Owen Anderson0af0dc82011-07-18 18:50:52 +0000482 def tBfar : tPseudoExpand<(outs), (ins t_bltarget:$target, pred:$p),
483 4, IIC_Br, [], (tBL pred:$p, t_bltarget:$target)>;
Evan Cheng225dfe92007-01-30 01:13:37 +0000484
Jim Grosbachf1aa47d2010-11-29 19:32:47 +0000485 def tBR_JTr : tPseudoInst<(outs),
486 (ins tGPR:$target, i32imm:$jt, i32imm:$id),
Owen Anderson16884412011-07-13 23:22:26 +0000487 0, IIC_Br,
Jim Grosbachf1aa47d2010-11-29 19:32:47 +0000488 [(ARMbrjt tGPR:$target, tjumptable:$jt, imm:$id)]> {
489 list<Predicate> Predicates = [IsThumb, IsThumb1Only];
Johnny Chenbbc71b22009-12-16 02:32:54 +0000490 }
Evan Chengd85ac4d2007-01-27 02:29:45 +0000491}
492
Evan Chengc85e8322007-07-05 07:13:32 +0000493// FIXME: should be able to write a pattern for ARMBrcond, but can't use
Jim Grosbach0ede14f2009-03-27 23:06:27 +0000494// a two-value operand where a dag node expects two operands. :(
Evan Chengffbacca2007-07-21 00:34:19 +0000495let isBranch = 1, isTerminator = 1 in
Jim Grosbach01086452010-12-10 17:13:40 +0000496 def tBcc : T1I<(outs), (ins t_bcctarget:$target, pred:$p), IIC_Br,
Jim Grosbachceab5012010-12-04 00:20:40 +0000497 "b${p}\t$target",
Johnny Chend68e1192009-12-15 17:24:14 +0000498 [/*(ARMbrcond bb:$target, imm:$cc)*/]>,
Eric Christopher33281b22011-05-27 03:50:53 +0000499 T1BranchCond<{1,1,0,1}> {
Jim Grosbachceab5012010-12-04 00:20:40 +0000500 bits<4> p;
Jim Grosbach01086452010-12-10 17:13:40 +0000501 bits<8> target;
Jim Grosbachceab5012010-12-04 00:20:40 +0000502 let Inst{11-8} = p;
Jim Grosbach01086452010-12-10 17:13:40 +0000503 let Inst{7-0} = target;
Jim Grosbachceab5012010-12-04 00:20:40 +0000504}
Evan Chenga8e29892007-01-19 07:51:42 +0000505
Jim Grosbache36e21e2011-07-08 20:13:35 +0000506// Tail calls
507let isCall = 1, isTerminator = 1, isReturn = 1, isBarrier = 1 in {
508 // Darwin versions.
509 let Defs = [R0, R1, R2, R3, R9, R12, QQQQ0, QQQQ2, QQQQ3, PC],
510 Uses = [SP] in {
Jim Grosbachaf7f2d62011-07-08 20:32:21 +0000511 // tTAILJMPd: Darwin version uses a Thumb2 branch (no Thumb1 tail calls
512 // on Darwin), so it's in ARMInstrThumb2.td.
Jim Grosbach0b44aea2011-07-08 20:39:19 +0000513 def tTAILJMPr : tPseudoExpand<(outs), (ins tcGPR:$dst, variable_ops),
Owen Anderson16884412011-07-13 23:22:26 +0000514 4, IIC_Br, [],
Jim Grosbach0b44aea2011-07-08 20:39:19 +0000515 (tBX GPR:$dst, (ops 14, zero_reg))>,
516 Requires<[IsThumb, IsDarwin]>;
Jim Grosbache36e21e2011-07-08 20:13:35 +0000517 }
518 // Non-Darwin versions (the difference is R9).
519 let Defs = [R0, R1, R2, R3, R12, QQQQ0, QQQQ2, QQQQ3, PC],
520 Uses = [SP] in {
Jim Grosbachaf7f2d62011-07-08 20:32:21 +0000521 def tTAILJMPdND : tPseudoExpand<(outs), (ins t_brtarget:$dst, variable_ops),
Owen Anderson16884412011-07-13 23:22:26 +0000522 4, IIC_Br, [],
Jim Grosbachaf7f2d62011-07-08 20:32:21 +0000523 (tB t_brtarget:$dst)>,
524 Requires<[IsThumb, IsNotDarwin]>;
Jim Grosbach0b44aea2011-07-08 20:39:19 +0000525 def tTAILJMPrND : tPseudoExpand<(outs), (ins tcGPR:$dst, variable_ops),
Owen Anderson16884412011-07-13 23:22:26 +0000526 4, IIC_Br, [],
Jim Grosbach0b44aea2011-07-08 20:39:19 +0000527 (tBX GPR:$dst, (ops 14, zero_reg))>,
528 Requires<[IsThumb, IsNotDarwin]>;
Jim Grosbache36e21e2011-07-08 20:13:35 +0000529 }
530}
531
532
Johnny Chen4c61cdd2010-02-25 02:21:11 +0000533// A8.6.218 Supervisor Call (Software Interrupt) -- for disassembly only
534// A8.6.16 B: Encoding T1
535// If Inst{11-8} == 0b1111 then SEE SVC
Evan Cheng1e0eab12010-11-29 22:43:27 +0000536let isCall = 1, Uses = [SP] in
Jim Grosbached838482011-07-26 16:24:27 +0000537def tSVC : T1pI<(outs), (ins imm0_255:$imm), IIC_Br,
Bill Wendling6179c312010-11-20 00:53:35 +0000538 "svc", "\t$imm", []>, Encoding16 {
539 bits<8> imm;
Johnny Chen4c61cdd2010-02-25 02:21:11 +0000540 let Inst{15-12} = 0b1101;
Bill Wendling6179c312010-11-20 00:53:35 +0000541 let Inst{11-8} = 0b1111;
542 let Inst{7-0} = imm;
Johnny Chen4c61cdd2010-02-25 02:21:11 +0000543}
544
Bill Wendlingef4a68b2010-11-30 07:44:32 +0000545// The assembler uses 0xDEFE for a trap instruction.
Evan Chengfb3611d2010-05-11 07:26:32 +0000546let isBarrier = 1, isTerminator = 1 in
Owen Anderson18901d62011-05-11 17:00:48 +0000547def tTRAP : TI<(outs), (ins), IIC_Br,
Jim Grosbach2e6ae132010-09-23 18:05:37 +0000548 "trap", [(trap)]>, Encoding16 {
Bill Wendling7d0affd2010-11-21 10:55:23 +0000549 let Inst = 0xdefe;
Johnny Chen4c61cdd2010-02-25 02:21:11 +0000550}
551
Evan Chenga8e29892007-01-19 07:51:42 +0000552//===----------------------------------------------------------------------===//
553// Load Store Instructions.
554//
555
Bill Wendlingb6faf652010-12-14 22:10:49 +0000556// Loads: reg/reg and reg/imm5
Dan Gohmanbc9d98b2010-02-27 23:47:46 +0000557let canFoldAsLoad = 1, isReMaterializable = 1 in
Bill Wendlingb6faf652010-12-14 22:10:49 +0000558multiclass thumb_ld_rr_ri_enc<bits<3> reg_opc, bits<4> imm_opc,
559 Operand AddrMode_r, Operand AddrMode_i,
560 AddrMode am, InstrItinClass itin_r,
561 InstrItinClass itin_i, string asm,
562 PatFrag opnode> {
Bill Wendling345cdb62010-12-14 23:42:48 +0000563 def r : // reg/reg
Bill Wendlingb6faf652010-12-14 22:10:49 +0000564 T1pILdStEncode<reg_opc,
565 (outs tGPR:$Rt), (ins AddrMode_r:$addr),
566 am, itin_r, asm, "\t$Rt, $addr",
567 [(set tGPR:$Rt, (opnode AddrMode_r:$addr))]>;
Bill Wendling345cdb62010-12-14 23:42:48 +0000568 def i : // reg/imm5
Bill Wendlingb6faf652010-12-14 22:10:49 +0000569 T1pILdStEncodeImm<imm_opc, 1 /* Load */,
570 (outs tGPR:$Rt), (ins AddrMode_i:$addr),
571 am, itin_i, asm, "\t$Rt, $addr",
572 [(set tGPR:$Rt, (opnode AddrMode_i:$addr))]>;
573}
574// Stores: reg/reg and reg/imm5
575multiclass thumb_st_rr_ri_enc<bits<3> reg_opc, bits<4> imm_opc,
576 Operand AddrMode_r, Operand AddrMode_i,
577 AddrMode am, InstrItinClass itin_r,
578 InstrItinClass itin_i, string asm,
579 PatFrag opnode> {
Bill Wendling345cdb62010-12-14 23:42:48 +0000580 def r : // reg/reg
Bill Wendlingb6faf652010-12-14 22:10:49 +0000581 T1pILdStEncode<reg_opc,
582 (outs), (ins tGPR:$Rt, AddrMode_r:$addr),
583 am, itin_r, asm, "\t$Rt, $addr",
584 [(opnode tGPR:$Rt, AddrMode_r:$addr)]>;
Bill Wendling345cdb62010-12-14 23:42:48 +0000585 def i : // reg/imm5
Bill Wendlingb6faf652010-12-14 22:10:49 +0000586 T1pILdStEncodeImm<imm_opc, 0 /* Store */,
587 (outs), (ins tGPR:$Rt, AddrMode_i:$addr),
588 am, itin_i, asm, "\t$Rt, $addr",
589 [(opnode tGPR:$Rt, AddrMode_i:$addr)]>;
590}
Bill Wendling6179c312010-11-20 00:53:35 +0000591
Bill Wendlingb6faf652010-12-14 22:10:49 +0000592// A8.6.57 & A8.6.60
593defm tLDR : thumb_ld_rr_ri_enc<0b100, 0b0110, t_addrmode_rrs4,
594 t_addrmode_is4, AddrModeT1_4,
595 IIC_iLoad_r, IIC_iLoad_i, "ldr",
596 UnOpFrag<(load node:$Src)>>;
Evan Chenga8e29892007-01-19 07:51:42 +0000597
Bill Wendlingb6faf652010-12-14 22:10:49 +0000598// A8.6.64 & A8.6.61
599defm tLDRB : thumb_ld_rr_ri_enc<0b110, 0b0111, t_addrmode_rrs1,
600 t_addrmode_is1, AddrModeT1_1,
601 IIC_iLoad_bh_r, IIC_iLoad_bh_i, "ldrb",
602 UnOpFrag<(zextloadi8 node:$Src)>>;
Bill Wendling1fd374e2010-11-30 22:57:21 +0000603
Bill Wendlingb6faf652010-12-14 22:10:49 +0000604// A8.6.76 & A8.6.73
605defm tLDRH : thumb_ld_rr_ri_enc<0b101, 0b1000, t_addrmode_rrs2,
606 t_addrmode_is2, AddrModeT1_2,
607 IIC_iLoad_bh_r, IIC_iLoad_bh_i, "ldrh",
608 UnOpFrag<(zextloadi16 node:$Src)>>;
Evan Chengc38f2bc2007-01-23 22:59:13 +0000609
Evan Cheng2f297df2009-07-11 07:08:13 +0000610let AddedComplexity = 10 in
Bill Wendling1fd374e2010-11-30 22:57:21 +0000611def tLDRSB : // A8.6.80
Owen Anderson305e0462011-08-15 19:00:06 +0000612 T1pILdStEncode<0b011, (outs tGPR:$Rt), (ins t_addrmode_rr:$addr),
Bill Wendling40062fb2010-12-01 01:38:08 +0000613 AddrModeT1_1, IIC_iLoad_bh_r,
Owen Anderson305e0462011-08-15 19:00:06 +0000614 "ldrsb", "\t$Rt, $addr",
615 [(set tGPR:$Rt, (sextloadi8 t_addrmode_rr:$addr))]>;
Evan Chengc38f2bc2007-01-23 22:59:13 +0000616
Evan Cheng2f297df2009-07-11 07:08:13 +0000617let AddedComplexity = 10 in
Bill Wendling1fd374e2010-11-30 22:57:21 +0000618def tLDRSH : // A8.6.84
Owen Anderson305e0462011-08-15 19:00:06 +0000619 T1pILdStEncode<0b111, (outs tGPR:$Rt), (ins t_addrmode_rr:$addr),
Bill Wendling40062fb2010-12-01 01:38:08 +0000620 AddrModeT1_2, IIC_iLoad_bh_r,
Owen Anderson305e0462011-08-15 19:00:06 +0000621 "ldrsh", "\t$Rt, $addr",
622 [(set tGPR:$Rt, (sextloadi16 t_addrmode_rr:$addr))]>;
Evan Chengc38f2bc2007-01-23 22:59:13 +0000623
Dan Gohman15511cf2008-12-03 18:15:48 +0000624let canFoldAsLoad = 1 in
Jim Grosbachd967cd02010-12-07 21:50:47 +0000625def tLDRspi : T1pIs<(outs tGPR:$Rt), (ins t_addrmode_sp:$addr), IIC_iLoad_i,
Bill Wendlingdc381372010-12-15 23:31:24 +0000626 "ldr", "\t$Rt, $addr",
627 [(set tGPR:$Rt, (load t_addrmode_sp:$addr))]>,
Jim Grosbachd967cd02010-12-07 21:50:47 +0000628 T1LdStSP<{1,?,?}> {
629 bits<3> Rt;
630 bits<8> addr;
631 let Inst{10-8} = Rt;
632 let Inst{7-0} = addr;
633}
Evan Cheng012f2d92007-01-24 08:53:17 +0000634
635// Load tconstpool
Evan Cheng7883fa92009-11-04 00:00:39 +0000636// FIXME: Use ldr.n to work around a Darwin assembler bug.
Owen Anderson91614ae2011-07-18 22:14:02 +0000637let canFoldAsLoad = 1, isReMaterializable = 1, isCodeGenOnly = 1 in
Bill Wendlingb8958b02010-12-08 01:57:09 +0000638def tLDRpci : T1pIs<(outs tGPR:$Rt), (ins t_addrmode_pc:$addr), IIC_iLoad_i,
Bill Wendling3f8c1102010-11-30 23:54:45 +0000639 "ldr", ".n\t$Rt, $addr",
640 [(set tGPR:$Rt, (load (ARMWrapper tconstpool:$addr)))]>,
641 T1Encoding<{0,1,0,0,1,?}> {
642 // A6.2 & A8.6.59
643 bits<3> Rt;
Bill Wendlingb8958b02010-12-08 01:57:09 +0000644 bits<8> addr;
Bill Wendling3f8c1102010-11-30 23:54:45 +0000645 let Inst{10-8} = Rt;
Bill Wendlingb8958b02010-12-08 01:57:09 +0000646 let Inst{7-0} = addr;
Bill Wendling3f8c1102010-11-30 23:54:45 +0000647}
Evan Chengfa775d02007-03-19 07:20:03 +0000648
Johnny Chen597fa652011-04-22 19:12:43 +0000649// FIXME: Remove this entry when the above ldr.n workaround is fixed.
650// For disassembly use only.
651def tLDRpciDIS : T1pIs<(outs tGPR:$Rt), (ins t_addrmode_pc:$addr), IIC_iLoad_i,
652 "ldr", "\t$Rt, $addr",
653 [/* disassembly only */]>,
654 T1Encoding<{0,1,0,0,1,?}> {
655 // A6.2 & A8.6.59
656 bits<3> Rt;
657 bits<8> addr;
658 let Inst{10-8} = Rt;
659 let Inst{7-0} = addr;
660}
661
Bill Wendlingb6faf652010-12-14 22:10:49 +0000662// A8.6.194 & A8.6.192
663defm tSTR : thumb_st_rr_ri_enc<0b000, 0b0110, t_addrmode_rrs4,
664 t_addrmode_is4, AddrModeT1_4,
665 IIC_iStore_r, IIC_iStore_i, "str",
666 BinOpFrag<(store node:$LHS, node:$RHS)>>;
Evan Chenga8e29892007-01-19 07:51:42 +0000667
Bill Wendlingb6faf652010-12-14 22:10:49 +0000668// A8.6.197 & A8.6.195
669defm tSTRB : thumb_st_rr_ri_enc<0b010, 0b0111, t_addrmode_rrs1,
670 t_addrmode_is1, AddrModeT1_1,
671 IIC_iStore_bh_r, IIC_iStore_bh_i, "strb",
672 BinOpFrag<(truncstorei8 node:$LHS, node:$RHS)>>;
Evan Chengc38f2bc2007-01-23 22:59:13 +0000673
Bill Wendlingb6faf652010-12-14 22:10:49 +0000674// A8.6.207 & A8.6.205
675defm tSTRH : thumb_st_rr_ri_enc<0b001, 0b1000, t_addrmode_rrs2,
Jim Grosbachf921c0fe2011-06-13 22:54:22 +0000676 t_addrmode_is2, AddrModeT1_2,
677 IIC_iStore_bh_r, IIC_iStore_bh_i, "strh",
678 BinOpFrag<(truncstorei16 node:$LHS, node:$RHS)>>;
Bill Wendling1fd374e2010-11-30 22:57:21 +0000679
Evan Chenga8e29892007-01-19 07:51:42 +0000680
Jim Grosbachd967cd02010-12-07 21:50:47 +0000681def tSTRspi : T1pIs<(outs), (ins tGPR:$Rt, t_addrmode_sp:$addr), IIC_iStore_i,
Bill Wendlingf4caf692010-12-14 03:36:38 +0000682 "str", "\t$Rt, $addr",
683 [(store tGPR:$Rt, t_addrmode_sp:$addr)]>,
Jim Grosbachd967cd02010-12-07 21:50:47 +0000684 T1LdStSP<{0,?,?}> {
685 bits<3> Rt;
686 bits<8> addr;
687 let Inst{10-8} = Rt;
688 let Inst{7-0} = addr;
689}
Evan Cheng8e59ea92007-02-07 00:06:56 +0000690
Evan Chenga8e29892007-01-19 07:51:42 +0000691//===----------------------------------------------------------------------===//
692// Load / store multiple Instructions.
693//
694
Bill Wendling6c470b82010-11-13 09:09:38 +0000695multiclass thumb_ldst_mult<string asm, InstrItinClass itin,
696 InstrItinClass itin_upd, bits<6> T1Enc,
Owen Anderson565a0362011-07-18 23:25:34 +0000697 bit L_bit, string baseOpc> {
Bill Wendling73fe34a2010-11-16 01:16:36 +0000698 def IA :
Jim Grosbach93b3eff2011-08-18 21:50:53 +0000699 T1I<(outs), (ins tGPR:$Rn, pred:$p, reglist:$regs, variable_ops),
700 itin, !strconcat(asm, "${p}\t$Rn, $regs"), []>,
Bill Wendling6179c312010-11-20 00:53:35 +0000701 T1Encoding<T1Enc> {
702 bits<3> Rn;
703 bits<8> regs;
704 let Inst{10-8} = Rn;
705 let Inst{7-0} = regs;
706 }
Owen Anderson565a0362011-07-18 23:25:34 +0000707
Bill Wendling73fe34a2010-11-16 01:16:36 +0000708 def IA_UPD :
Owen Anderson565a0362011-07-18 23:25:34 +0000709 InstTemplate<AddrModeNone, 0, IndexModeNone, Pseudo, GenericDomain,
710 "$Rn = $wb", itin_upd>,
711 PseudoInstExpansion<(!cast<Instruction>(!strconcat(baseOpc, "IA"))
Jim Grosbach93b3eff2011-08-18 21:50:53 +0000712 tGPR:$Rn, pred:$p, reglist:$regs)> {
Owen Anderson565a0362011-07-18 23:25:34 +0000713 let Size = 2;
714 let OutOperandList = (outs GPR:$wb);
715 let InOperandList = (ins GPR:$Rn, pred:$p, reglist:$regs, variable_ops);
716 let Pattern = [];
717 let isCodeGenOnly = 1;
718 let isPseudo = 1;
719 list<Predicate> Predicates = [IsThumb];
Bill Wendling6179c312010-11-20 00:53:35 +0000720 }
Bill Wendling6c470b82010-11-13 09:09:38 +0000721}
722
Bill Wendling73fe34a2010-11-16 01:16:36 +0000723// These require base address to be written back or one of the loaded regs.
Bill Wendlingddc918b2010-11-13 10:57:02 +0000724let neverHasSideEffects = 1 in {
725
726let mayLoad = 1, hasExtraDefRegAllocReq = 1 in
727defm tLDM : thumb_ldst_mult<"ldm", IIC_iLoad_m, IIC_iLoad_mu,
Owen Anderson565a0362011-07-18 23:25:34 +0000728 {1,1,0,0,1,?}, 1, "tLDM">;
Bill Wendlingddc918b2010-11-13 10:57:02 +0000729
730let mayStore = 1, hasExtraSrcRegAllocReq = 1 in
731defm tSTM : thumb_ldst_mult<"stm", IIC_iStore_m, IIC_iStore_mu,
Owen Anderson565a0362011-07-18 23:25:34 +0000732 {1,1,0,0,0,?}, 0, "tSTM">;
Owen Anderson18901d62011-05-11 17:00:48 +0000733
Bill Wendlingddc918b2010-11-13 10:57:02 +0000734} // neverHasSideEffects
Evan Cheng4b322e52009-08-11 21:11:32 +0000735
Jim Grosbach93b3eff2011-08-18 21:50:53 +0000736def : InstAlias<"ldm${p} $Rn!, $regs",
737 (tLDMIA tGPR:$Rn, pred:$p, reglist:$regs)>,
738 Requires<[IsThumb, IsThumb1Only]>;
739
740
Evan Cheng0d92f5f2009-10-01 08:22:27 +0000741let mayLoad = 1, Uses = [SP], Defs = [SP], hasExtraDefRegAllocReq = 1 in
Bill Wendling602890d2010-11-19 01:33:10 +0000742def tPOP : T1I<(outs), (ins pred:$p, reglist:$regs, variable_ops),
Evan Chenga0792de2010-10-06 06:27:31 +0000743 IIC_iPop,
Bill Wendling602890d2010-11-19 01:33:10 +0000744 "pop${p}\t$regs", []>,
745 T1Misc<{1,1,0,?,?,?,?}> {
746 bits<16> regs;
Bill Wendling602890d2010-11-19 01:33:10 +0000747 let Inst{8} = regs{15};
748 let Inst{7-0} = regs{7-0};
749}
Evan Cheng4b322e52009-08-11 21:11:32 +0000750
Evan Cheng0d92f5f2009-10-01 08:22:27 +0000751let mayStore = 1, Uses = [SP], Defs = [SP], hasExtraSrcRegAllocReq = 1 in
Bill Wendling6179c312010-11-20 00:53:35 +0000752def tPUSH : T1I<(outs), (ins pred:$p, reglist:$regs, variable_ops),
Evan Chenga0792de2010-10-06 06:27:31 +0000753 IIC_iStore_m,
Bill Wendling6179c312010-11-20 00:53:35 +0000754 "push${p}\t$regs", []>,
755 T1Misc<{0,1,0,?,?,?,?}> {
756 bits<16> regs;
757 let Inst{8} = regs{14};
758 let Inst{7-0} = regs{7-0};
759}
Evan Chenga8e29892007-01-19 07:51:42 +0000760
761//===----------------------------------------------------------------------===//
762// Arithmetic Instructions.
763//
764
Bill Wendling1d045ee2010-12-01 02:28:08 +0000765// Helper classes for encoding T1pI patterns:
766class T1pIDPEncode<bits<4> opA, dag oops, dag iops, InstrItinClass itin,
767 string opc, string asm, list<dag> pattern>
768 : T1pI<oops, iops, itin, opc, asm, pattern>,
769 T1DataProcessing<opA> {
770 bits<3> Rm;
771 bits<3> Rn;
772 let Inst{5-3} = Rm;
773 let Inst{2-0} = Rn;
774}
775class T1pIMiscEncode<bits<7> opA, dag oops, dag iops, InstrItinClass itin,
776 string opc, string asm, list<dag> pattern>
777 : T1pI<oops, iops, itin, opc, asm, pattern>,
778 T1Misc<opA> {
779 bits<3> Rm;
780 bits<3> Rd;
781 let Inst{5-3} = Rm;
782 let Inst{2-0} = Rd;
783}
784
Bill Wendling76f4e102010-12-01 01:20:15 +0000785// Helper classes for encoding T1sI patterns:
786class T1sIDPEncode<bits<4> opA, dag oops, dag iops, InstrItinClass itin,
787 string opc, string asm, list<dag> pattern>
788 : T1sI<oops, iops, itin, opc, asm, pattern>,
789 T1DataProcessing<opA> {
790 bits<3> Rd;
791 bits<3> Rn;
792 let Inst{5-3} = Rn;
793 let Inst{2-0} = Rd;
794}
795class T1sIGenEncode<bits<5> opA, dag oops, dag iops, InstrItinClass itin,
796 string opc, string asm, list<dag> pattern>
797 : T1sI<oops, iops, itin, opc, asm, pattern>,
798 T1General<opA> {
799 bits<3> Rm;
800 bits<3> Rn;
801 bits<3> Rd;
802 let Inst{8-6} = Rm;
803 let Inst{5-3} = Rn;
804 let Inst{2-0} = Rd;
805}
806class T1sIGenEncodeImm<bits<5> opA, dag oops, dag iops, InstrItinClass itin,
807 string opc, string asm, list<dag> pattern>
808 : T1sI<oops, iops, itin, opc, asm, pattern>,
809 T1General<opA> {
810 bits<3> Rd;
811 bits<3> Rm;
812 let Inst{5-3} = Rm;
813 let Inst{2-0} = Rd;
814}
815
816// Helper classes for encoding T1sIt patterns:
Bill Wendlinga5a42d92010-12-01 00:48:44 +0000817class T1sItDPEncode<bits<4> opA, dag oops, dag iops, InstrItinClass itin,
818 string opc, string asm, list<dag> pattern>
819 : T1sIt<oops, iops, itin, opc, asm, pattern>,
820 T1DataProcessing<opA> {
Bill Wendling3f8c1102010-11-30 23:54:45 +0000821 bits<3> Rdn;
822 bits<3> Rm;
Bill Wendlinga5a42d92010-12-01 00:48:44 +0000823 let Inst{5-3} = Rm;
824 let Inst{2-0} = Rdn;
Bill Wendling95a6d172010-11-20 01:00:29 +0000825}
Bill Wendlinga5a42d92010-12-01 00:48:44 +0000826class T1sItGenEncodeImm<bits<5> opA, dag oops, dag iops, InstrItinClass itin,
827 string opc, string asm, list<dag> pattern>
828 : T1sIt<oops, iops, itin, opc, asm, pattern>,
829 T1General<opA> {
830 bits<3> Rdn;
831 bits<8> imm8;
832 let Inst{10-8} = Rdn;
833 let Inst{7-0} = imm8;
834}
835
836// Add with carry register
837let isCommutable = 1, Uses = [CPSR] in
838def tADC : // A8.6.2
839 T1sItDPEncode<0b0101, (outs tGPR:$Rdn), (ins tGPR:$Rn, tGPR:$Rm), IIC_iALUr,
840 "adc", "\t$Rdn, $Rm",
841 [(set tGPR:$Rdn, (adde tGPR:$Rn, tGPR:$Rm))]>;
Evan Cheng53d7dba2007-01-27 00:07:15 +0000842
David Goodwinc9ee1182009-06-25 22:49:55 +0000843// Add immediate
Bill Wendling76f4e102010-12-01 01:20:15 +0000844def tADDi3 : // A8.6.4 T1
Jim Grosbach89e2aa62011-08-16 23:57:34 +0000845 T1sIGenEncodeImm<0b01110, (outs tGPR:$Rd), (ins tGPR:$Rm, imm0_7:$imm3),
Jim Grosbachf921c0fe2011-06-13 22:54:22 +0000846 IIC_iALUi,
Bill Wendling76f4e102010-12-01 01:20:15 +0000847 "add", "\t$Rd, $Rm, $imm3",
848 [(set tGPR:$Rd, (add tGPR:$Rm, imm0_7:$imm3))]> {
Bill Wendling95a6d172010-11-20 01:00:29 +0000849 bits<3> imm3;
850 let Inst{8-6} = imm3;
Bill Wendling95a6d172010-11-20 01:00:29 +0000851}
Evan Chenga8e29892007-01-19 07:51:42 +0000852
Bill Wendlinga5a42d92010-12-01 00:48:44 +0000853def tADDi8 : // A8.6.4 T2
Jim Grosbach89e2aa62011-08-16 23:57:34 +0000854 T1sItGenEncodeImm<{1,1,0,?,?}, (outs tGPR:$Rdn),
855 (ins tGPR:$Rn, imm0_255:$imm8), IIC_iALUi,
Bill Wendlinga5a42d92010-12-01 00:48:44 +0000856 "add", "\t$Rdn, $imm8",
857 [(set tGPR:$Rdn, (add tGPR:$Rn, imm8_255:$imm8))]>;
Evan Chenga8e29892007-01-19 07:51:42 +0000858
David Goodwinc9ee1182009-06-25 22:49:55 +0000859// Add register
Evan Cheng446c4282009-07-11 06:43:01 +0000860let isCommutable = 1 in
Bill Wendling76f4e102010-12-01 01:20:15 +0000861def tADDrr : // A8.6.6 T1
862 T1sIGenEncode<0b01100, (outs tGPR:$Rd), (ins tGPR:$Rn, tGPR:$Rm),
863 IIC_iALUr,
864 "add", "\t$Rd, $Rn, $Rm",
865 [(set tGPR:$Rd, (add tGPR:$Rn, tGPR:$Rm))]>;
Evan Chenga8e29892007-01-19 07:51:42 +0000866
Evan Chengcd799b92009-06-12 20:46:18 +0000867let neverHasSideEffects = 1 in
Bill Wendling0b424dc2010-12-01 01:32:02 +0000868def tADDhirr : T1pIt<(outs GPR:$Rdn), (ins GPR:$Rn, GPR:$Rm), IIC_iALUr,
869 "add", "\t$Rdn, $Rm", []>,
Bill Wendlinga09cc2b2010-11-20 01:18:47 +0000870 T1Special<{0,0,?,?}> {
871 // A8.6.6 T2
Bill Wendling0b424dc2010-12-01 01:32:02 +0000872 bits<4> Rdn;
873 bits<4> Rm;
874 let Inst{7} = Rdn{3};
875 let Inst{6-3} = Rm;
876 let Inst{2-0} = Rdn{2-0};
Bill Wendlinga09cc2b2010-11-20 01:18:47 +0000877}
Evan Chenga8e29892007-01-19 07:51:42 +0000878
Bill Wendlinga09cc2b2010-11-20 01:18:47 +0000879// AND register
Evan Cheng446c4282009-07-11 06:43:01 +0000880let isCommutable = 1 in
Bill Wendlinga5a42d92010-12-01 00:48:44 +0000881def tAND : // A8.6.12
882 T1sItDPEncode<0b0000, (outs tGPR:$Rdn), (ins tGPR:$Rn, tGPR:$Rm),
883 IIC_iBITr,
884 "and", "\t$Rdn, $Rm",
885 [(set tGPR:$Rdn, (and tGPR:$Rn, tGPR:$Rm))]>;
Evan Chenga8e29892007-01-19 07:51:42 +0000886
David Goodwinc9ee1182009-06-25 22:49:55 +0000887// ASR immediate
Bill Wendling76f4e102010-12-01 01:20:15 +0000888def tASRri : // A8.6.14
Owen Anderson6d746312011-08-08 20:42:17 +0000889 T1sIGenEncodeImm<{0,1,0,?,?}, (outs tGPR:$Rd), (ins tGPR:$Rm, imm_sr:$imm5),
Bill Wendling76f4e102010-12-01 01:20:15 +0000890 IIC_iMOVsi,
891 "asr", "\t$Rd, $Rm, $imm5",
Owen Anderson6d746312011-08-08 20:42:17 +0000892 [(set tGPR:$Rd, (sra tGPR:$Rm, (i32 imm_sr:$imm5)))]> {
Bill Wendlinga09cc2b2010-11-20 01:18:47 +0000893 bits<5> imm5;
894 let Inst{10-6} = imm5;
Bill Wendlinga09cc2b2010-11-20 01:18:47 +0000895}
Evan Chenga8e29892007-01-19 07:51:42 +0000896
David Goodwinc9ee1182009-06-25 22:49:55 +0000897// ASR register
Bill Wendlinga5a42d92010-12-01 00:48:44 +0000898def tASRrr : // A8.6.15
899 T1sItDPEncode<0b0100, (outs tGPR:$Rdn), (ins tGPR:$Rn, tGPR:$Rm),
900 IIC_iMOVsr,
901 "asr", "\t$Rdn, $Rm",
902 [(set tGPR:$Rdn, (sra tGPR:$Rn, tGPR:$Rm))]>;
Evan Chenga8e29892007-01-19 07:51:42 +0000903
David Goodwinc9ee1182009-06-25 22:49:55 +0000904// BIC register
Bill Wendlinga5a42d92010-12-01 00:48:44 +0000905def tBIC : // A8.6.20
906 T1sItDPEncode<0b1110, (outs tGPR:$Rdn), (ins tGPR:$Rn, tGPR:$Rm),
907 IIC_iBITr,
908 "bic", "\t$Rdn, $Rm",
909 [(set tGPR:$Rdn, (and tGPR:$Rn, (not tGPR:$Rm)))]>;
Evan Chenga8e29892007-01-19 07:51:42 +0000910
David Goodwinc9ee1182009-06-25 22:49:55 +0000911// CMN register
Gabor Greiff7d10f52010-09-14 22:00:50 +0000912let isCompare = 1, Defs = [CPSR] in {
Jim Grosbachd5d2bae2010-01-22 00:08:13 +0000913//FIXME: Disable CMN, as CCodes are backwards from compare expectations
914// Compare-to-zero still works out, just not the relationals
Bill Wendling0480e282010-12-01 02:36:55 +0000915//def tCMN : // A8.6.33
916// T1pIDPEncode<0b1011, (outs), (ins tGPR:$lhs, tGPR:$rhs),
917// IIC_iCMPr,
918// "cmn", "\t$lhs, $rhs",
919// [(ARMcmp tGPR:$lhs, (ineg tGPR:$rhs))]>;
Bill Wendling1d045ee2010-12-01 02:28:08 +0000920
921def tCMNz : // A8.6.33
922 T1pIDPEncode<0b1011, (outs), (ins tGPR:$Rn, tGPR:$Rm),
923 IIC_iCMPr,
924 "cmn", "\t$Rn, $Rm",
925 [(ARMcmpZ tGPR:$Rn, (ineg tGPR:$Rm))]>;
926
927} // isCompare = 1, Defs = [CPSR]
Lauro Ramos Venancio99966632007-04-02 01:30:03 +0000928
David Goodwinc9ee1182009-06-25 22:49:55 +0000929// CMP immediate
Gabor Greiff7d10f52010-09-14 22:00:50 +0000930let isCompare = 1, Defs = [CPSR] in {
Jim Grosbach0d1511c2011-08-18 18:08:29 +0000931def tCMPi8 : T1pI<(outs), (ins tGPR:$Rn, imm0_255:$imm8), IIC_iCMPi,
Bill Wendling5cc88a22010-11-20 22:52:33 +0000932 "cmp", "\t$Rn, $imm8",
933 [(ARMcmp tGPR:$Rn, imm0_255:$imm8)]>,
934 T1General<{1,0,1,?,?}> {
935 // A8.6.35
936 bits<3> Rn;
937 bits<8> imm8;
938 let Inst{10-8} = Rn;
939 let Inst{7-0} = imm8;
940}
941
David Goodwinc9ee1182009-06-25 22:49:55 +0000942// CMP register
Bill Wendling1d045ee2010-12-01 02:28:08 +0000943def tCMPr : // A8.6.36 T1
944 T1pIDPEncode<0b1010, (outs), (ins tGPR:$Rn, tGPR:$Rm),
945 IIC_iCMPr,
946 "cmp", "\t$Rn, $Rm",
947 [(ARMcmp tGPR:$Rn, tGPR:$Rm)]>;
948
Bill Wendling849f2e32010-11-29 00:18:15 +0000949def tCMPhir : T1pI<(outs), (ins GPR:$Rn, GPR:$Rm), IIC_iCMPr,
950 "cmp", "\t$Rn, $Rm", []>,
951 T1Special<{0,1,?,?}> {
952 // A8.6.36 T2
953 bits<4> Rm;
954 bits<4> Rn;
955 let Inst{7} = Rn{3};
956 let Inst{6-3} = Rm;
957 let Inst{2-0} = Rn{2-0};
958}
Bill Wendling5cc88a22010-11-20 22:52:33 +0000959} // isCompare = 1, Defs = [CPSR]
Lauro Ramos Venancio99966632007-04-02 01:30:03 +0000960
Evan Chenga8e29892007-01-19 07:51:42 +0000961
David Goodwinc9ee1182009-06-25 22:49:55 +0000962// XOR register
Evan Cheng446c4282009-07-11 06:43:01 +0000963let isCommutable = 1 in
Bill Wendlinga5a42d92010-12-01 00:48:44 +0000964def tEOR : // A8.6.45
965 T1sItDPEncode<0b0001, (outs tGPR:$Rdn), (ins tGPR:$Rn, tGPR:$Rm),
966 IIC_iBITr,
967 "eor", "\t$Rdn, $Rm",
968 [(set tGPR:$Rdn, (xor tGPR:$Rn, tGPR:$Rm))]>;
Evan Chenga8e29892007-01-19 07:51:42 +0000969
David Goodwinc9ee1182009-06-25 22:49:55 +0000970// LSL immediate
Bill Wendling76f4e102010-12-01 01:20:15 +0000971def tLSLri : // A8.6.88
972 T1sIGenEncodeImm<{0,0,0,?,?}, (outs tGPR:$Rd), (ins tGPR:$Rm, i32imm:$imm5),
973 IIC_iMOVsi,
974 "lsl", "\t$Rd, $Rm, $imm5",
975 [(set tGPR:$Rd, (shl tGPR:$Rm, (i32 imm:$imm5)))]> {
Bill Wendlingdcf0a472010-11-21 11:49:36 +0000976 bits<5> imm5;
977 let Inst{10-6} = imm5;
Bill Wendlingdcf0a472010-11-21 11:49:36 +0000978}
Evan Chenga8e29892007-01-19 07:51:42 +0000979
David Goodwinc9ee1182009-06-25 22:49:55 +0000980// LSL register
Bill Wendlinga5a42d92010-12-01 00:48:44 +0000981def tLSLrr : // A8.6.89
982 T1sItDPEncode<0b0010, (outs tGPR:$Rdn), (ins tGPR:$Rn, tGPR:$Rm),
983 IIC_iMOVsr,
984 "lsl", "\t$Rdn, $Rm",
985 [(set tGPR:$Rdn, (shl tGPR:$Rn, tGPR:$Rm))]>;
Evan Chenga8e29892007-01-19 07:51:42 +0000986
David Goodwinc9ee1182009-06-25 22:49:55 +0000987// LSR immediate
Bill Wendling76f4e102010-12-01 01:20:15 +0000988def tLSRri : // A8.6.90
Owen Anderson6d746312011-08-08 20:42:17 +0000989 T1sIGenEncodeImm<{0,0,1,?,?}, (outs tGPR:$Rd), (ins tGPR:$Rm, imm_sr:$imm5),
Bill Wendling76f4e102010-12-01 01:20:15 +0000990 IIC_iMOVsi,
991 "lsr", "\t$Rd, $Rm, $imm5",
Owen Anderson6d746312011-08-08 20:42:17 +0000992 [(set tGPR:$Rd, (srl tGPR:$Rm, (i32 imm_sr:$imm5)))]> {
Bill Wendlingdcf0a472010-11-21 11:49:36 +0000993 bits<5> imm5;
994 let Inst{10-6} = imm5;
Bill Wendlingdcf0a472010-11-21 11:49:36 +0000995}
Evan Chenga8e29892007-01-19 07:51:42 +0000996
David Goodwinc9ee1182009-06-25 22:49:55 +0000997// LSR register
Bill Wendlinga5a42d92010-12-01 00:48:44 +0000998def tLSRrr : // A8.6.91
999 T1sItDPEncode<0b0011, (outs tGPR:$Rdn), (ins tGPR:$Rn, tGPR:$Rm),
1000 IIC_iMOVsr,
1001 "lsr", "\t$Rdn, $Rm",
1002 [(set tGPR:$Rdn, (srl tGPR:$Rn, tGPR:$Rm))]>;
Evan Chenga8e29892007-01-19 07:51:42 +00001003
Bill Wendlingdcf0a472010-11-21 11:49:36 +00001004// Move register
Evan Chengc4af4632010-11-17 20:13:28 +00001005let isMoveImm = 1 in
Jim Grosbach6b8f1e32011-06-27 23:54:06 +00001006def tMOVi8 : T1sI<(outs tGPR:$Rd), (ins imm0_255:$imm8), IIC_iMOVi,
Bill Wendlingdcf0a472010-11-21 11:49:36 +00001007 "mov", "\t$Rd, $imm8",
1008 [(set tGPR:$Rd, imm0_255:$imm8)]>,
1009 T1General<{1,0,0,?,?}> {
1010 // A8.6.96
1011 bits<3> Rd;
1012 bits<8> imm8;
1013 let Inst{10-8} = Rd;
1014 let Inst{7-0} = imm8;
1015}
Evan Chenga8e29892007-01-19 07:51:42 +00001016
Jim Grosbachefeedce2011-07-01 17:14:11 +00001017// A7-73: MOV(2) - mov setting flag.
Evan Chenga8e29892007-01-19 07:51:42 +00001018
Evan Chengcd799b92009-06-12 20:46:18 +00001019let neverHasSideEffects = 1 in {
Jim Grosbach2a7b41b2011-06-30 23:38:17 +00001020def tMOVr : Thumb1pI<(outs GPR:$Rd), (ins GPR:$Rm), AddrModeNone,
Owen Anderson16884412011-07-13 23:22:26 +00001021 2, IIC_iMOVr,
Jim Grosbach63b46fa2011-06-30 22:10:46 +00001022 "mov", "\t$Rd, $Rm", "", []>,
Jim Grosbach2a7b41b2011-06-30 23:38:17 +00001023 T1Special<{1,0,?,?}> {
Bill Wendling534a5e42010-12-03 01:55:47 +00001024 // A8.6.97
1025 bits<4> Rd;
1026 bits<4> Rm;
Jim Grosbach2a7b41b2011-06-30 23:38:17 +00001027 let Inst{7} = Rd{3};
1028 let Inst{6-3} = Rm;
Bill Wendling534a5e42010-12-03 01:55:47 +00001029 let Inst{2-0} = Rd{2-0};
1030}
Evan Cheng446c4282009-07-11 06:43:01 +00001031let Defs = [CPSR] in
Bill Wendling534a5e42010-12-03 01:55:47 +00001032def tMOVSr : T1I<(outs tGPR:$Rd), (ins tGPR:$Rm), IIC_iMOVr,
1033 "movs\t$Rd, $Rm", []>, Encoding16 {
1034 // A8.6.97
1035 bits<3> Rd;
1036 bits<3> Rm;
Johnny Chend68e1192009-12-15 17:24:14 +00001037 let Inst{15-6} = 0b0000000000;
Bill Wendling534a5e42010-12-03 01:55:47 +00001038 let Inst{5-3} = Rm;
1039 let Inst{2-0} = Rd;
Johnny Chend68e1192009-12-15 17:24:14 +00001040}
Evan Chengcd799b92009-06-12 20:46:18 +00001041} // neverHasSideEffects
Evan Chenga8e29892007-01-19 07:51:42 +00001042
Bill Wendling0480e282010-12-01 02:36:55 +00001043// Multiply register
Evan Cheng446c4282009-07-11 06:43:01 +00001044let isCommutable = 1 in
Bill Wendlinga5a42d92010-12-01 00:48:44 +00001045def tMUL : // A8.6.105 T1
1046 T1sItDPEncode<0b1101, (outs tGPR:$Rdn), (ins tGPR:$Rn, tGPR:$Rm),
1047 IIC_iMUL32,
1048 "mul", "\t$Rdn, $Rm, $Rdn",
1049 [(set tGPR:$Rdn, (mul tGPR:$Rn, tGPR:$Rm))]>;
Evan Chenga8e29892007-01-19 07:51:42 +00001050
Bill Wendling76f4e102010-12-01 01:20:15 +00001051// Move inverse register
1052def tMVN : // A8.6.107
1053 T1sIDPEncode<0b1111, (outs tGPR:$Rd), (ins tGPR:$Rn), IIC_iMVNr,
1054 "mvn", "\t$Rd, $Rn",
1055 [(set tGPR:$Rd, (not tGPR:$Rn))]>;
Evan Chenga8e29892007-01-19 07:51:42 +00001056
Bill Wendlingdcf0a472010-11-21 11:49:36 +00001057// Bitwise or register
Evan Cheng446c4282009-07-11 06:43:01 +00001058let isCommutable = 1 in
Bill Wendlinga5a42d92010-12-01 00:48:44 +00001059def tORR : // A8.6.114
1060 T1sItDPEncode<0b1100, (outs tGPR:$Rdn), (ins tGPR:$Rn, tGPR:$Rm),
1061 IIC_iBITr,
1062 "orr", "\t$Rdn, $Rm",
1063 [(set tGPR:$Rdn, (or tGPR:$Rn, tGPR:$Rm))]>;
Evan Chenga8e29892007-01-19 07:51:42 +00001064
Bill Wendlingdcf0a472010-11-21 11:49:36 +00001065// Swaps
Bill Wendling1d045ee2010-12-01 02:28:08 +00001066def tREV : // A8.6.134
1067 T1pIMiscEncode<{1,0,1,0,0,0,?}, (outs tGPR:$Rd), (ins tGPR:$Rm),
1068 IIC_iUNAr,
1069 "rev", "\t$Rd, $Rm",
1070 [(set tGPR:$Rd, (bswap tGPR:$Rm))]>,
1071 Requires<[IsThumb, IsThumb1Only, HasV6]>;
Evan Chenga8e29892007-01-19 07:51:42 +00001072
Bill Wendling1d045ee2010-12-01 02:28:08 +00001073def tREV16 : // A8.6.135
1074 T1pIMiscEncode<{1,0,1,0,0,1,?}, (outs tGPR:$Rd), (ins tGPR:$Rm),
1075 IIC_iUNAr,
1076 "rev16", "\t$Rd, $Rm",
Evan Cheng9568e5c2011-06-21 06:01:08 +00001077 [(set tGPR:$Rd, (rotr (bswap tGPR:$Rm), (i32 16)))]>,
Bill Wendling1d045ee2010-12-01 02:28:08 +00001078 Requires<[IsThumb, IsThumb1Only, HasV6]>;
Evan Chenga8e29892007-01-19 07:51:42 +00001079
Bill Wendling1d045ee2010-12-01 02:28:08 +00001080def tREVSH : // A8.6.136
1081 T1pIMiscEncode<{1,0,1,0,1,1,?}, (outs tGPR:$Rd), (ins tGPR:$Rm),
1082 IIC_iUNAr,
1083 "revsh", "\t$Rd, $Rm",
Evan Cheng9568e5c2011-06-21 06:01:08 +00001084 [(set tGPR:$Rd, (sra (bswap tGPR:$Rm), (i32 16)))]>,
Bill Wendling1d045ee2010-12-01 02:28:08 +00001085 Requires<[IsThumb, IsThumb1Only, HasV6]>;
Evan Cheng446c4282009-07-11 06:43:01 +00001086
Bill Wendlinga5a42d92010-12-01 00:48:44 +00001087// Rotate right register
1088def tROR : // A8.6.139
1089 T1sItDPEncode<0b0111, (outs tGPR:$Rdn), (ins tGPR:$Rn, tGPR:$Rm),
1090 IIC_iMOVsr,
1091 "ror", "\t$Rdn, $Rm",
1092 [(set tGPR:$Rdn, (rotr tGPR:$Rn, tGPR:$Rm))]>;
Evan Cheng446c4282009-07-11 06:43:01 +00001093
Bill Wendlinga5a42d92010-12-01 00:48:44 +00001094// Negate register
Bill Wendling76f4e102010-12-01 01:20:15 +00001095def tRSB : // A8.6.141
1096 T1sIDPEncode<0b1001, (outs tGPR:$Rd), (ins tGPR:$Rn),
1097 IIC_iALUi,
1098 "rsb", "\t$Rd, $Rn, #0",
1099 [(set tGPR:$Rd, (ineg tGPR:$Rn))]>;
Evan Chenga8e29892007-01-19 07:51:42 +00001100
David Goodwinc9ee1182009-06-25 22:49:55 +00001101// Subtract with carry register
Evan Cheng446c4282009-07-11 06:43:01 +00001102let Uses = [CPSR] in
Bill Wendlinga5a42d92010-12-01 00:48:44 +00001103def tSBC : // A8.6.151
1104 T1sItDPEncode<0b0110, (outs tGPR:$Rdn), (ins tGPR:$Rn, tGPR:$Rm),
1105 IIC_iALUr,
1106 "sbc", "\t$Rdn, $Rm",
1107 [(set tGPR:$Rdn, (sube tGPR:$Rn, tGPR:$Rm))]>;
Evan Chenga8e29892007-01-19 07:51:42 +00001108
David Goodwinc9ee1182009-06-25 22:49:55 +00001109// Subtract immediate
Bill Wendling76f4e102010-12-01 01:20:15 +00001110def tSUBi3 : // A8.6.210 T1
1111 T1sIGenEncodeImm<0b01111, (outs tGPR:$Rd), (ins tGPR:$Rm, i32imm:$imm3),
1112 IIC_iALUi,
1113 "sub", "\t$Rd, $Rm, $imm3",
1114 [(set tGPR:$Rd, (add tGPR:$Rm, imm0_7_neg:$imm3))]> {
Bill Wendling5cbbf682010-11-29 01:00:43 +00001115 bits<3> imm3;
Bill Wendling5cbbf682010-11-29 01:00:43 +00001116 let Inst{8-6} = imm3;
Bill Wendling5cbbf682010-11-29 01:00:43 +00001117}
Jim Grosbach0ede14f2009-03-27 23:06:27 +00001118
Bill Wendlinga5a42d92010-12-01 00:48:44 +00001119def tSUBi8 : // A8.6.210 T2
1120 T1sItGenEncodeImm<{1,1,1,?,?}, (outs tGPR:$Rdn), (ins tGPR:$Rn, i32imm:$imm8),
1121 IIC_iALUi,
1122 "sub", "\t$Rdn, $imm8",
1123 [(set tGPR:$Rdn, (add tGPR:$Rn, imm8_255_neg:$imm8))]>;
Jim Grosbach0ede14f2009-03-27 23:06:27 +00001124
Bill Wendling76f4e102010-12-01 01:20:15 +00001125// Subtract register
1126def tSUBrr : // A8.6.212
1127 T1sIGenEncode<0b01101, (outs tGPR:$Rd), (ins tGPR:$Rn, tGPR:$Rm),
1128 IIC_iALUr,
1129 "sub", "\t$Rd, $Rn, $Rm",
1130 [(set tGPR:$Rd, (sub tGPR:$Rn, tGPR:$Rm))]>;
David Goodwinc9ee1182009-06-25 22:49:55 +00001131
1132// TODO: A7-96: STMIA - store multiple.
Evan Chenga8e29892007-01-19 07:51:42 +00001133
Bill Wendling76f4e102010-12-01 01:20:15 +00001134// Sign-extend byte
Bill Wendling1d045ee2010-12-01 02:28:08 +00001135def tSXTB : // A8.6.222
1136 T1pIMiscEncode<{0,0,1,0,0,1,?}, (outs tGPR:$Rd), (ins tGPR:$Rm),
1137 IIC_iUNAr,
1138 "sxtb", "\t$Rd, $Rm",
1139 [(set tGPR:$Rd, (sext_inreg tGPR:$Rm, i8))]>,
1140 Requires<[IsThumb, IsThumb1Only, HasV6]>;
David Goodwinc9ee1182009-06-25 22:49:55 +00001141
Bill Wendling1d045ee2010-12-01 02:28:08 +00001142// Sign-extend short
1143def tSXTH : // A8.6.224
1144 T1pIMiscEncode<{0,0,1,0,0,0,?}, (outs tGPR:$Rd), (ins tGPR:$Rm),
1145 IIC_iUNAr,
1146 "sxth", "\t$Rd, $Rm",
1147 [(set tGPR:$Rd, (sext_inreg tGPR:$Rm, i16))]>,
1148 Requires<[IsThumb, IsThumb1Only, HasV6]>;
Evan Chenga8e29892007-01-19 07:51:42 +00001149
Bill Wendling1d045ee2010-12-01 02:28:08 +00001150// Test
Gabor Greif007248b2010-09-14 20:47:43 +00001151let isCompare = 1, isCommutable = 1, Defs = [CPSR] in
Bill Wendling1d045ee2010-12-01 02:28:08 +00001152def tTST : // A8.6.230
1153 T1pIDPEncode<0b1000, (outs), (ins tGPR:$Rn, tGPR:$Rm), IIC_iTSTr,
1154 "tst", "\t$Rn, $Rm",
1155 [(ARMcmpZ (and_su tGPR:$Rn, tGPR:$Rm), 0)]>;
Evan Chenga8e29892007-01-19 07:51:42 +00001156
Bill Wendling1d045ee2010-12-01 02:28:08 +00001157// Zero-extend byte
1158def tUXTB : // A8.6.262
1159 T1pIMiscEncode<{0,0,1,0,1,1,?}, (outs tGPR:$Rd), (ins tGPR:$Rm),
1160 IIC_iUNAr,
1161 "uxtb", "\t$Rd, $Rm",
1162 [(set tGPR:$Rd, (and tGPR:$Rm, 0xFF))]>,
1163 Requires<[IsThumb, IsThumb1Only, HasV6]>;
David Goodwinc9ee1182009-06-25 22:49:55 +00001164
Bill Wendling1d045ee2010-12-01 02:28:08 +00001165// Zero-extend short
1166def tUXTH : // A8.6.264
1167 T1pIMiscEncode<{0,0,1,0,1,0,?}, (outs tGPR:$Rd), (ins tGPR:$Rm),
1168 IIC_iUNAr,
1169 "uxth", "\t$Rd, $Rm",
1170 [(set tGPR:$Rd, (and tGPR:$Rm, 0xFFFF))]>,
1171 Requires<[IsThumb, IsThumb1Only, HasV6]>;
Evan Chenga8e29892007-01-19 07:51:42 +00001172
Jim Grosbach80dc1162010-02-16 21:23:02 +00001173// Conditional move tMOVCCr - Used to implement the Thumb SELECT_CC operation.
Dan Gohman533297b2009-10-29 18:10:34 +00001174// Expanded after instruction selection into a branch sequence.
1175let usesCustomInserter = 1 in // Expanded after instruction selection.
Evan Cheng007ea272009-08-12 05:17:19 +00001176 def tMOVCCr_pseudo :
Evan Chengc9721652009-08-12 02:03:03 +00001177 PseudoInst<(outs tGPR:$dst), (ins tGPR:$false, tGPR:$true, pred:$cc),
Jim Grosbach99594eb2010-11-18 01:38:26 +00001178 NoItinerary,
Evan Chengc9721652009-08-12 02:03:03 +00001179 [/*(set tGPR:$dst, (ARMcmov tGPR:$false, tGPR:$true, imm:$cc))*/]>;
Evan Chenga8e29892007-01-19 07:51:42 +00001180
1181// tLEApcrel - Load a pc-relative address into a register without offending the
1182// assembler.
Jim Grosbachd40963c2010-12-14 22:28:03 +00001183
1184def tADR : T1I<(outs tGPR:$Rd), (ins t_adrlabel:$addr, pred:$p),
Jim Grosbach5a1cd042011-08-17 20:37:40 +00001185 IIC_iALUi, "adr{$p}\t$Rd, $addr", []>,
Jim Grosbachd40963c2010-12-14 22:28:03 +00001186 T1Encoding<{1,0,1,0,0,?}> {
Bill Wendling67077412010-11-30 00:18:30 +00001187 bits<3> Rd;
Jim Grosbachd40963c2010-12-14 22:28:03 +00001188 bits<8> addr;
Bill Wendling67077412010-11-30 00:18:30 +00001189 let Inst{10-8} = Rd;
Jim Grosbachd40963c2010-12-14 22:28:03 +00001190 let Inst{7-0} = addr;
Owen Anderson8d7d2e12011-08-09 20:55:18 +00001191 let DecoderMethod = "DecodeThumbAddSpecialReg";
Bill Wendling67077412010-11-30 00:18:30 +00001192}
Evan Chenga8e29892007-01-19 07:51:42 +00001193
Jim Grosbachd40963c2010-12-14 22:28:03 +00001194let neverHasSideEffects = 1, isReMaterializable = 1 in
1195def tLEApcrel : tPseudoInst<(outs tGPR:$Rd), (ins i32imm:$label, pred:$p),
Owen Anderson16884412011-07-13 23:22:26 +00001196 2, IIC_iALUi, []>;
Jim Grosbachd40963c2010-12-14 22:28:03 +00001197
1198def tLEApcrelJT : tPseudoInst<(outs tGPR:$Rd),
1199 (ins i32imm:$label, nohash_imm:$id, pred:$p),
Owen Anderson16884412011-07-13 23:22:26 +00001200 2, IIC_iALUi, []>;
Evan Chengd85ac4d2007-01-27 02:29:45 +00001201
Evan Chenga8e29892007-01-19 07:51:42 +00001202//===----------------------------------------------------------------------===//
Lauro Ramos Venancio64f4fa52007-04-27 13:54:47 +00001203// TLS Instructions
1204//
1205
1206// __aeabi_read_tp preserves the registers r1-r3.
Jim Grosbachff97eb02011-06-30 19:38:01 +00001207// This is a pseudo inst so that we can get the encoding right,
1208// complete with fixup for the aeabi_read_tp function.
1209let isCall = 1, Defs = [R0, R12, LR, CPSR], Uses = [SP] in
Owen Anderson16884412011-07-13 23:22:26 +00001210def tTPsoft : tPseudoInst<(outs), (ins), 4, IIC_Br,
Jim Grosbachff97eb02011-06-30 19:38:01 +00001211 [(set R0, ARMthread_pointer)]>;
Lauro Ramos Venancio64f4fa52007-04-27 13:54:47 +00001212
Bill Wendling0480e282010-12-01 02:36:55 +00001213//===----------------------------------------------------------------------===//
Jim Grosbachd1228742009-12-01 18:10:36 +00001214// SJLJ Exception handling intrinsics
Owen Anderson18901d62011-05-11 17:00:48 +00001215//
Bill Wendling0480e282010-12-01 02:36:55 +00001216
1217// eh_sjlj_setjmp() is an instruction sequence to store the return address and
1218// save #0 in R0 for the non-longjmp case. Since by its nature we may be coming
1219// from some other function to get here, and we're using the stack frame for the
1220// containing function to save/restore registers, we can't keep anything live in
1221// regs across the eh_sjlj_setjmp(), else it will almost certainly have been
Chris Lattner7a2bdde2011-04-15 05:18:47 +00001222// tromped upon when we get here from a longjmp(). We force everything out of
Bill Wendling0480e282010-12-01 02:36:55 +00001223// registers except for our own input by listing the relevant registers in
1224// Defs. By doing so, we also cause the prologue/epilogue code to actively
1225// preserve all of the callee-saved resgisters, which is exactly what we want.
1226// $val is a scratch register for our use.
Andrew Tricka1099f12011-06-07 00:08:49 +00001227let Defs = [ R0, R1, R2, R3, R4, R5, R6, R7, R12, CPSR ],
Bill Wendling0e45a5a2010-11-30 00:50:22 +00001228 hasSideEffects = 1, isBarrier = 1, isCodeGenOnly = 1 in
1229def tInt_eh_sjlj_setjmp : ThumbXI<(outs),(ins tGPR:$src, tGPR:$val),
Owen Anderson16884412011-07-13 23:22:26 +00001230 AddrModeNone, 0, NoItinerary, "","",
Bill Wendling0e45a5a2010-11-30 00:50:22 +00001231 [(set R0, (ARMeh_sjlj_setjmp tGPR:$src, tGPR:$val))]>;
Jim Grosbach5eb19512010-05-22 01:06:18 +00001232
1233// FIXME: Non-Darwin version(s)
Chris Lattnera4a3a5e2010-10-31 19:15:18 +00001234let isBarrier = 1, hasSideEffects = 1, isTerminator = 1, isCodeGenOnly = 1,
Bill Wendling0e45a5a2010-11-30 00:50:22 +00001235 Defs = [ R7, LR, SP ] in
Jim Grosbach5eb19512010-05-22 01:06:18 +00001236def tInt_eh_sjlj_longjmp : XI<(outs), (ins GPR:$src, GPR:$scratch),
Owen Anderson16884412011-07-13 23:22:26 +00001237 AddrModeNone, 0, IndexModeNone,
Bill Wendling0e45a5a2010-11-30 00:50:22 +00001238 Pseudo, NoItinerary, "", "",
1239 [(ARMeh_sjlj_longjmp GPR:$src, GPR:$scratch)]>,
1240 Requires<[IsThumb, IsDarwin]>;
Jim Grosbach5eb19512010-05-22 01:06:18 +00001241
Lauro Ramos Venancio64f4fa52007-04-27 13:54:47 +00001242//===----------------------------------------------------------------------===//
Evan Chenga8e29892007-01-19 07:51:42 +00001243// Non-Instruction Patterns
1244//
1245
Jim Grosbach97a884d2010-12-07 20:41:06 +00001246// Comparisons
1247def : T1Pat<(ARMcmpZ tGPR:$Rn, imm0_255:$imm8),
1248 (tCMPi8 tGPR:$Rn, imm0_255:$imm8)>;
1249def : T1Pat<(ARMcmpZ tGPR:$Rn, tGPR:$Rm),
1250 (tCMPr tGPR:$Rn, tGPR:$Rm)>;
1251
Evan Cheng892837a2009-07-10 02:09:04 +00001252// Add with carry
David Goodwinc9d138f2009-07-27 19:59:26 +00001253def : T1Pat<(addc tGPR:$lhs, imm0_7:$rhs),
1254 (tADDi3 tGPR:$lhs, imm0_7:$rhs)>;
1255def : T1Pat<(addc tGPR:$lhs, imm8_255:$rhs),
Evan Cheng89d177f2009-08-20 17:01:04 +00001256 (tADDi8 tGPR:$lhs, imm8_255:$rhs)>;
David Goodwinc9d138f2009-07-27 19:59:26 +00001257def : T1Pat<(addc tGPR:$lhs, tGPR:$rhs),
1258 (tADDrr tGPR:$lhs, tGPR:$rhs)>;
Evan Cheng892837a2009-07-10 02:09:04 +00001259
1260// Subtract with carry
David Goodwinc9d138f2009-07-27 19:59:26 +00001261def : T1Pat<(addc tGPR:$lhs, imm0_7_neg:$rhs),
1262 (tSUBi3 tGPR:$lhs, imm0_7_neg:$rhs)>;
1263def : T1Pat<(addc tGPR:$lhs, imm8_255_neg:$rhs),
1264 (tSUBi8 tGPR:$lhs, imm8_255_neg:$rhs)>;
1265def : T1Pat<(subc tGPR:$lhs, tGPR:$rhs),
1266 (tSUBrr tGPR:$lhs, tGPR:$rhs)>;
Evan Cheng892837a2009-07-10 02:09:04 +00001267
Evan Chenga8e29892007-01-19 07:51:42 +00001268// ConstantPool, GlobalAddress
David Goodwinc9d138f2009-07-27 19:59:26 +00001269def : T1Pat<(ARMWrapper tglobaladdr :$dst), (tLEApcrel tglobaladdr :$dst)>;
1270def : T1Pat<(ARMWrapper tconstpool :$dst), (tLEApcrel tconstpool :$dst)>;
Evan Chenga8e29892007-01-19 07:51:42 +00001271
Evan Chengd85ac4d2007-01-27 02:29:45 +00001272// JumpTable
David Goodwinc9d138f2009-07-27 19:59:26 +00001273def : T1Pat<(ARMWrapperJT tjumptable:$dst, imm:$id),
1274 (tLEApcrelJT tjumptable:$dst, imm:$id)>;
Evan Chengd85ac4d2007-01-27 02:29:45 +00001275
Evan Chenga8e29892007-01-19 07:51:42 +00001276// Direct calls
Evan Cheng20a2a0a2009-07-29 21:26:42 +00001277def : T1Pat<(ARMtcall texternalsym:$func), (tBL texternalsym:$func)>,
Evan Chengb6207242009-08-01 00:16:10 +00001278 Requires<[IsThumb, IsNotDarwin]>;
Evan Cheng20a2a0a2009-07-29 21:26:42 +00001279def : T1Pat<(ARMtcall texternalsym:$func), (tBLr9 texternalsym:$func)>,
Evan Chengb6207242009-08-01 00:16:10 +00001280 Requires<[IsThumb, IsDarwin]>;
Evan Cheng20a2a0a2009-07-29 21:26:42 +00001281
1282def : Tv5Pat<(ARMcall texternalsym:$func), (tBLXi texternalsym:$func)>,
Evan Chengb6207242009-08-01 00:16:10 +00001283 Requires<[IsThumb, HasV5T, IsNotDarwin]>;
Evan Cheng20a2a0a2009-07-29 21:26:42 +00001284def : Tv5Pat<(ARMcall texternalsym:$func), (tBLXi_r9 texternalsym:$func)>,
Evan Chengb6207242009-08-01 00:16:10 +00001285 Requires<[IsThumb, HasV5T, IsDarwin]>;
Evan Chenga8e29892007-01-19 07:51:42 +00001286
1287// Indirect calls to ARM routines
Evan Chengb6207242009-08-01 00:16:10 +00001288def : Tv5Pat<(ARMcall GPR:$dst), (tBLXr GPR:$dst)>,
1289 Requires<[IsThumb, HasV5T, IsNotDarwin]>;
1290def : Tv5Pat<(ARMcall GPR:$dst), (tBLXr_r9 GPR:$dst)>,
1291 Requires<[IsThumb, HasV5T, IsDarwin]>;
Evan Chenga8e29892007-01-19 07:51:42 +00001292
1293// zextload i1 -> zextload i8
Bill Wendlingf4caf692010-12-14 03:36:38 +00001294def : T1Pat<(zextloadi1 t_addrmode_rrs1:$addr),
1295 (tLDRBr t_addrmode_rrs1:$addr)>;
1296def : T1Pat<(zextloadi1 t_addrmode_is1:$addr),
1297 (tLDRBi t_addrmode_is1:$addr)>;
Jim Grosbach0ede14f2009-03-27 23:06:27 +00001298
Evan Chengb60c02e2007-01-26 19:13:16 +00001299// extload -> zextload
Bill Wendlingf4caf692010-12-14 03:36:38 +00001300def : T1Pat<(extloadi1 t_addrmode_rrs1:$addr), (tLDRBr t_addrmode_rrs1:$addr)>;
1301def : T1Pat<(extloadi1 t_addrmode_is1:$addr), (tLDRBi t_addrmode_is1:$addr)>;
1302def : T1Pat<(extloadi8 t_addrmode_rrs1:$addr), (tLDRBr t_addrmode_rrs1:$addr)>;
1303def : T1Pat<(extloadi8 t_addrmode_is1:$addr), (tLDRBi t_addrmode_is1:$addr)>;
1304def : T1Pat<(extloadi16 t_addrmode_rrs2:$addr), (tLDRHr t_addrmode_rrs2:$addr)>;
1305def : T1Pat<(extloadi16 t_addrmode_is2:$addr), (tLDRHi t_addrmode_is2:$addr)>;
Evan Chengb60c02e2007-01-26 19:13:16 +00001306
Evan Cheng0e87e232009-08-28 00:31:43 +00001307// If it's impossible to use [r,r] address mode for sextload, select to
Evan Cheng2f297df2009-07-11 07:08:13 +00001308// ldr{b|h} + sxt{b|h} instead.
Bill Wendling415af342010-12-15 00:58:57 +00001309def : T1Pat<(sextloadi8 t_addrmode_is1:$addr),
1310 (tSXTB (tLDRBi t_addrmode_is1:$addr))>,
1311 Requires<[IsThumb, IsThumb1Only, HasV6]>;
Bill Wendlingf4caf692010-12-14 03:36:38 +00001312def : T1Pat<(sextloadi8 t_addrmode_rrs1:$addr),
1313 (tSXTB (tLDRBr t_addrmode_rrs1:$addr))>,
Jim Grosbach6797f892010-11-01 17:08:58 +00001314 Requires<[IsThumb, IsThumb1Only, HasV6]>;
Bill Wendling415af342010-12-15 00:58:57 +00001315def : T1Pat<(sextloadi16 t_addrmode_is2:$addr),
1316 (tSXTH (tLDRHi t_addrmode_is2:$addr))>,
1317 Requires<[IsThumb, IsThumb1Only, HasV6]>;
Bill Wendlingf4caf692010-12-14 03:36:38 +00001318def : T1Pat<(sextloadi16 t_addrmode_rrs2:$addr),
1319 (tSXTH (tLDRHr t_addrmode_rrs2:$addr))>,
Jim Grosbach6797f892010-11-01 17:08:58 +00001320 Requires<[IsThumb, IsThumb1Only, HasV6]>;
Evan Cheng2f297df2009-07-11 07:08:13 +00001321
Bill Wendlingf4caf692010-12-14 03:36:38 +00001322def : T1Pat<(sextloadi8 t_addrmode_rrs1:$addr),
1323 (tASRri (tLSLri (tLDRBr t_addrmode_rrs1:$addr), 24), 24)>;
Bill Wendling415af342010-12-15 00:58:57 +00001324def : T1Pat<(sextloadi8 t_addrmode_is1:$addr),
1325 (tASRri (tLSLri (tLDRBi t_addrmode_is1:$addr), 24), 24)>;
1326def : T1Pat<(sextloadi16 t_addrmode_rrs2:$addr),
1327 (tASRri (tLSLri (tLDRHr t_addrmode_rrs2:$addr), 16), 16)>;
1328def : T1Pat<(sextloadi16 t_addrmode_is2:$addr),
1329 (tASRri (tLSLri (tLDRHi t_addrmode_is2:$addr), 16), 16)>;
Evan Cheng2f297df2009-07-11 07:08:13 +00001330
Evan Chenga8e29892007-01-19 07:51:42 +00001331// Large immediate handling.
1332
1333// Two piece imms.
Evan Cheng9cb9e672009-06-27 02:26:13 +00001334def : T1Pat<(i32 thumb_immshifted:$src),
1335 (tLSLri (tMOVi8 (thumb_immshifted_val imm:$src)),
1336 (thumb_immshifted_shamt imm:$src))>;
Evan Chenga8e29892007-01-19 07:51:42 +00001337
Evan Cheng9cb9e672009-06-27 02:26:13 +00001338def : T1Pat<(i32 imm0_255_comp:$src),
1339 (tMVN (tMOVi8 (imm_comp_XFORM imm:$src)))>;
Evan Chengb9803a82009-11-06 23:52:48 +00001340
1341// Pseudo instruction that combines ldr from constpool and add pc. This should
1342// be expanded into two instructions late to allow if-conversion and
1343// scheduling.
1344let isReMaterializable = 1 in
1345def tLDRpci_pic : PseudoInst<(outs GPR:$dst), (ins i32imm:$addr, pclabel:$cp),
Bill Wendling0480e282010-12-01 02:36:55 +00001346 NoItinerary,
Evan Chengb9803a82009-11-06 23:52:48 +00001347 [(set GPR:$dst, (ARMpic_add (load (ARMWrapper tconstpool:$addr)),
1348 imm:$cp))]>,
Jim Grosbach6797f892010-11-01 17:08:58 +00001349 Requires<[IsThumb, IsThumb1Only]>;
Jim Grosbach53e3fc42011-07-08 17:40:42 +00001350
1351// Pseudo-instruction for merged POP and return.
1352// FIXME: remove when we have a way to marking a MI with these properties.
1353let isReturn = 1, isTerminator = 1, isBarrier = 1, mayLoad = 1,
1354 hasExtraDefRegAllocReq = 1 in
1355def tPOP_RET : tPseudoExpand<(outs), (ins pred:$p, reglist:$regs, variable_ops),
Owen Anderson16884412011-07-13 23:22:26 +00001356 2, IIC_iPop_Br, [],
Jim Grosbach53e3fc42011-07-08 17:40:42 +00001357 (tPOP pred:$p, reglist:$regs)>;
1358
Jim Grosbachaa8d1b82011-07-08 22:25:23 +00001359// Indirect branch using "mov pc, $Rm"
1360let isBranch = 1, isTerminator = 1, isBarrier = 1, isIndirectBranch = 1 in {
Jim Grosbach7e61a312011-07-08 22:33:49 +00001361 def tBRIND : tPseudoExpand<(outs), (ins GPR:$Rm, pred:$p),
Owen Anderson16884412011-07-13 23:22:26 +00001362 2, IIC_Br, [(brind GPR:$Rm)],
Jim Grosbach7e61a312011-07-08 22:33:49 +00001363 (tMOVr PC, GPR:$Rm, pred:$p)>;
Jim Grosbachaa8d1b82011-07-08 22:25:23 +00001364}