blob: 9019e8cd803c23ade13f1e158e68c47513aec4d4 [file] [log] [blame]
Jia Liu31d157a2012-02-18 12:03:15 +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.
Jim Grosbach72f39f82011-08-24 21:22:15 +000081def t_imm0_1020s4_asmoperand: AsmOperandClass { let Name = "Imm0_1020s4"; }
82def t_imm0_1020s4 : Operand<i32> {
Evan Cheng2ef9c8a2009-11-19 06:57:41 +000083 let PrintMethod = "printThumbS4ImmOperand";
Jim Grosbach72f39f82011-08-24 21:22:15 +000084 let ParserMatchClass = t_imm0_1020s4_asmoperand;
85 let OperandType = "OPERAND_IMMEDIATE";
86}
87
88def t_imm0_508s4_asmoperand: AsmOperandClass { let Name = "Imm0_508s4"; }
89def t_imm0_508s4 : Operand<i32> {
90 let PrintMethod = "printThumbS4ImmOperand";
91 let ParserMatchClass = t_imm0_508s4_asmoperand;
Benjamin Kramer151bd172011-07-14 21:47:24 +000092 let OperandType = "OPERAND_IMMEDIATE";
Evan Cheng2ef9c8a2009-11-19 06:57:41 +000093}
94
Evan Chenga8e29892007-01-19 07:51:42 +000095// Define Thumb specific addressing modes.
96
Benjamin Kramer151bd172011-07-14 21:47:24 +000097let OperandType = "OPERAND_PCREL" in {
Jim Grosbache2467172010-12-10 18:21:33 +000098def t_brtarget : Operand<OtherVT> {
99 let EncoderMethod = "getThumbBRTargetOpValue";
Owen Anderson8d7d2e12011-08-09 20:55:18 +0000100 let DecoderMethod = "DecodeThumbBROperand";
Jim Grosbache2467172010-12-10 18:21:33 +0000101}
102
Jim Grosbach01086452010-12-10 17:13:40 +0000103def t_bcctarget : Operand<i32> {
104 let EncoderMethod = "getThumbBCCTargetOpValue";
Owen Anderson8d7d2e12011-08-09 20:55:18 +0000105 let DecoderMethod = "DecodeThumbBCCTargetOperand";
Jim Grosbach01086452010-12-10 17:13:40 +0000106}
107
Jim Grosbachcf6220a2010-12-09 19:01:46 +0000108def t_cbtarget : Operand<i32> {
Jim Grosbach027d6e82010-12-09 19:04:53 +0000109 let EncoderMethod = "getThumbCBTargetOpValue";
Owen Anderson8d7d2e12011-08-09 20:55:18 +0000110 let DecoderMethod = "DecodeThumbCmpBROperand";
Bill Wendlingdff2f712010-12-08 23:01:43 +0000111}
112
Jim Grosbach662a8162010-12-06 23:57:07 +0000113def t_bltarget : Operand<i32> {
114 let EncoderMethod = "getThumbBLTargetOpValue";
Owen Anderson648f9a72011-08-08 23:25:22 +0000115 let DecoderMethod = "DecodeThumbBLTargetOperand";
Jim Grosbach662a8162010-12-06 23:57:07 +0000116}
117
Bill Wendling09aa3f02010-12-09 00:39:08 +0000118def t_blxtarget : Operand<i32> {
119 let EncoderMethod = "getThumbBLXTargetOpValue";
Owen Anderson6d746312011-08-08 20:42:17 +0000120 let DecoderMethod = "DecodeThumbBLXOffset";
Bill Wendling09aa3f02010-12-09 00:39:08 +0000121}
Benjamin Kramer151bd172011-07-14 21:47:24 +0000122}
Bill Wendling09aa3f02010-12-09 00:39:08 +0000123
Evan Chenga8e29892007-01-19 07:51:42 +0000124// t_addrmode_rr := reg + reg
125//
Jim Grosbach7ce05792011-08-03 23:50:40 +0000126def t_addrmode_rr_asm_operand : AsmOperandClass { let Name = "MemThumbRR"; }
Evan Chenga8e29892007-01-19 07:51:42 +0000127def t_addrmode_rr : Operand<i32>,
128 ComplexPattern<i32, 2, "SelectThumbAddrModeRR", []> {
Bill Wendlingf4caf692010-12-14 03:36:38 +0000129 let EncoderMethod = "getThumbAddrModeRegRegOpValue";
Evan Chenga8e29892007-01-19 07:51:42 +0000130 let PrintMethod = "printThumbAddrModeRROperand";
Owen Anderson305e0462011-08-15 19:00:06 +0000131 let DecoderMethod = "DecodeThumbAddrModeRR";
Jim Grosbach05b01562011-08-19 19:17:58 +0000132 let ParserMatchClass = t_addrmode_rr_asm_operand;
Jim Grosbach30eae3c2009-04-07 20:34:09 +0000133 let MIOperandInfo = (ops tGPR:$base, tGPR:$offsreg);
Evan Chenga8e29892007-01-19 07:51:42 +0000134}
135
Bill Wendlingf4caf692010-12-14 03:36:38 +0000136// t_addrmode_rrs := reg + reg
Evan Chenga8e29892007-01-19 07:51:42 +0000137//
Jim Grosbachc6d7c652011-08-19 16:52:32 +0000138// We use separate scaled versions because the Select* functions need
139// to explicitly check for a matching constant and return false here so that
140// the reg+imm forms will match instead. This is a horrible way to do that,
141// as it forces tight coupling between the methods, but it's how selectiondag
142// currently works.
Bill Wendlingf4caf692010-12-14 03:36:38 +0000143def t_addrmode_rrs1 : Operand<i32>,
144 ComplexPattern<i32, 2, "SelectThumbAddrModeRI5S1", []> {
145 let EncoderMethod = "getThumbAddrModeRegRegOpValue";
146 let PrintMethod = "printThumbAddrModeRROperand";
Owen Anderson8d7d2e12011-08-09 20:55:18 +0000147 let DecoderMethod = "DecodeThumbAddrModeRR";
Jim Grosbach7ce05792011-08-03 23:50:40 +0000148 let ParserMatchClass = t_addrmode_rr_asm_operand;
Bill Wendlingf4caf692010-12-14 03:36:38 +0000149 let MIOperandInfo = (ops tGPR:$base, tGPR:$offsreg);
Evan Chenga8e29892007-01-19 07:51:42 +0000150}
Bill Wendlingf4caf692010-12-14 03:36:38 +0000151def t_addrmode_rrs2 : Operand<i32>,
152 ComplexPattern<i32, 2, "SelectThumbAddrModeRI5S2", []> {
153 let EncoderMethod = "getThumbAddrModeRegRegOpValue";
Owen Anderson8d7d2e12011-08-09 20:55:18 +0000154 let DecoderMethod = "DecodeThumbAddrModeRR";
Bill Wendlingf4caf692010-12-14 03:36:38 +0000155 let PrintMethod = "printThumbAddrModeRROperand";
Jim Grosbach7ce05792011-08-03 23:50:40 +0000156 let ParserMatchClass = t_addrmode_rr_asm_operand;
Bill Wendlingf4caf692010-12-14 03:36:38 +0000157 let MIOperandInfo = (ops tGPR:$base, tGPR:$offsreg);
Bill Wendlingf4caf692010-12-14 03:36:38 +0000158}
159def t_addrmode_rrs4 : Operand<i32>,
160 ComplexPattern<i32, 2, "SelectThumbAddrModeRI5S4", []> {
161 let EncoderMethod = "getThumbAddrModeRegRegOpValue";
Owen Anderson8d7d2e12011-08-09 20:55:18 +0000162 let DecoderMethod = "DecodeThumbAddrModeRR";
Bill Wendlingf4caf692010-12-14 03:36:38 +0000163 let PrintMethod = "printThumbAddrModeRROperand";
Jim Grosbach7ce05792011-08-03 23:50:40 +0000164 let ParserMatchClass = t_addrmode_rr_asm_operand;
Bill Wendlingf4caf692010-12-14 03:36:38 +0000165 let MIOperandInfo = (ops tGPR:$base, tGPR:$offsreg);
Evan Chenga8e29892007-01-19 07:51:42 +0000166}
Evan Chengc38f2bc2007-01-23 22:59:13 +0000167
Bill Wendlingf4caf692010-12-14 03:36:38 +0000168// t_addrmode_is4 := reg + imm5 * 4
Evan Chengc38f2bc2007-01-23 22:59:13 +0000169//
Jim Grosbach60f91a32011-08-19 17:55:24 +0000170def t_addrmode_is4_asm_operand : AsmOperandClass { let Name = "MemThumbRIs4"; }
Bill Wendlingf4caf692010-12-14 03:36:38 +0000171def t_addrmode_is4 : Operand<i32>,
172 ComplexPattern<i32, 2, "SelectThumbAddrModeImm5S4", []> {
173 let EncoderMethod = "getAddrModeISOpValue";
Owen Anderson8d7d2e12011-08-09 20:55:18 +0000174 let DecoderMethod = "DecodeThumbAddrModeIS";
Bill Wendlingf4caf692010-12-14 03:36:38 +0000175 let PrintMethod = "printThumbAddrModeImm5S4Operand";
Jim Grosbach60f91a32011-08-19 17:55:24 +0000176 let ParserMatchClass = t_addrmode_is4_asm_operand;
Bill Wendlingf4caf692010-12-14 03:36:38 +0000177 let MIOperandInfo = (ops tGPR:$base, i32imm:$offsimm);
Bill Wendlingf4caf692010-12-14 03:36:38 +0000178}
179
180// t_addrmode_is2 := reg + imm5 * 2
181//
Jim Grosbach38466302011-08-19 18:55:51 +0000182def t_addrmode_is2_asm_operand : AsmOperandClass { let Name = "MemThumbRIs2"; }
Bill Wendlingf4caf692010-12-14 03:36:38 +0000183def t_addrmode_is2 : Operand<i32>,
184 ComplexPattern<i32, 2, "SelectThumbAddrModeImm5S2", []> {
185 let EncoderMethod = "getAddrModeISOpValue";
Owen Anderson8d7d2e12011-08-09 20:55:18 +0000186 let DecoderMethod = "DecodeThumbAddrModeIS";
Bill Wendlingf4caf692010-12-14 03:36:38 +0000187 let PrintMethod = "printThumbAddrModeImm5S2Operand";
Jim Grosbach38466302011-08-19 18:55:51 +0000188 let ParserMatchClass = t_addrmode_is2_asm_operand;
Bill Wendlingf4caf692010-12-14 03:36:38 +0000189 let MIOperandInfo = (ops tGPR:$base, i32imm:$offsimm);
Bill Wendlingf4caf692010-12-14 03:36:38 +0000190}
191
192// t_addrmode_is1 := reg + imm5
193//
Jim Grosbach48ff5ff2011-08-19 18:49:59 +0000194def t_addrmode_is1_asm_operand : AsmOperandClass { let Name = "MemThumbRIs1"; }
Bill Wendlingf4caf692010-12-14 03:36:38 +0000195def t_addrmode_is1 : Operand<i32>,
196 ComplexPattern<i32, 2, "SelectThumbAddrModeImm5S1", []> {
197 let EncoderMethod = "getAddrModeISOpValue";
Owen Anderson8d7d2e12011-08-09 20:55:18 +0000198 let DecoderMethod = "DecodeThumbAddrModeIS";
Bill Wendlingf4caf692010-12-14 03:36:38 +0000199 let PrintMethod = "printThumbAddrModeImm5S1Operand";
Jim Grosbach48ff5ff2011-08-19 18:49:59 +0000200 let ParserMatchClass = t_addrmode_is1_asm_operand;
Bill Wendlingf4caf692010-12-14 03:36:38 +0000201 let MIOperandInfo = (ops tGPR:$base, i32imm:$offsimm);
Evan Chenga8e29892007-01-19 07:51:42 +0000202}
203
204// t_addrmode_sp := sp + imm8 * 4
205//
Jim Grosbach803b1aa2011-08-23 18:39:41 +0000206// FIXME: This really shouldn't have an explicit SP operand at all. It should
207// be implicit, just like in the instruction encoding itself.
Jim Grosbachecd85892011-08-19 18:13:48 +0000208def t_addrmode_sp_asm_operand : AsmOperandClass { let Name = "MemThumbSPI"; }
Evan Chenga8e29892007-01-19 07:51:42 +0000209def t_addrmode_sp : Operand<i32>,
210 ComplexPattern<i32, 2, "SelectThumbAddrModeSP", []> {
Jim Grosbachd967cd02010-12-07 21:50:47 +0000211 let EncoderMethod = "getAddrModeThumbSPOpValue";
Owen Anderson648f9a72011-08-08 23:25:22 +0000212 let DecoderMethod = "DecodeThumbAddrModeSP";
Evan Chenga8e29892007-01-19 07:51:42 +0000213 let PrintMethod = "printThumbAddrModeSPOperand";
Jim Grosbachecd85892011-08-19 18:13:48 +0000214 let ParserMatchClass = t_addrmode_sp_asm_operand;
Jakob Stoklund Olesenc5b7ef12010-01-13 00:43:06 +0000215 let MIOperandInfo = (ops GPR:$base, i32imm:$offsimm);
Evan Chenga8e29892007-01-19 07:51:42 +0000216}
217
Bill Wendlingb8958b02010-12-08 01:57:09 +0000218// t_addrmode_pc := <label> => pc + imm8 * 4
219//
220def t_addrmode_pc : Operand<i32> {
221 let EncoderMethod = "getAddrModePCOpValue";
Owen Anderson8d7d2e12011-08-09 20:55:18 +0000222 let DecoderMethod = "DecodeThumbAddrModePC";
Bill Wendlingb8958b02010-12-08 01:57:09 +0000223}
224
Evan Chenga8e29892007-01-19 07:51:42 +0000225//===----------------------------------------------------------------------===//
226// Miscellaneous Instructions.
227//
228
Jim Grosbach4642ad32010-02-22 23:10:38 +0000229// FIXME: Marking these as hasSideEffects is necessary to prevent machine DCE
230// from removing one half of the matched pairs. That breaks PEI, which assumes
231// these will always be in pairs, and asserts if it finds otherwise. Better way?
232let Defs = [SP], Uses = [SP], hasSideEffects = 1 in {
Evan Cheng44bec522007-05-15 01:29:07 +0000233def tADJCALLSTACKUP :
Bill Wendlinga8981662010-11-19 22:02:18 +0000234 PseudoInst<(outs), (ins i32imm:$amt1, i32imm:$amt2), NoItinerary,
235 [(ARMcallseq_end imm:$amt1, imm:$amt2)]>,
236 Requires<[IsThumb, IsThumb1Only]>;
Evan Cheng44bec522007-05-15 01:29:07 +0000237
Jim Grosbach0ede14f2009-03-27 23:06:27 +0000238def tADJCALLSTACKDOWN :
Bill Wendlinga8981662010-11-19 22:02:18 +0000239 PseudoInst<(outs), (ins i32imm:$amt), NoItinerary,
240 [(ARMcallseq_start imm:$amt)]>,
241 Requires<[IsThumb, IsThumb1Only]>;
Evan Cheng071a2792007-09-11 19:55:27 +0000242}
Evan Cheng44bec522007-05-15 01:29:07 +0000243
Jim Grosbach421993f2011-08-17 23:08:57 +0000244class T1SystemEncoding<bits<8> opc>
Bill Wendlinga46a4932010-11-29 22:15:03 +0000245 : T1Encoding<0b101111> {
Jim Grosbach421993f2011-08-17 23:08:57 +0000246 let Inst{9-8} = 0b11;
247 let Inst{7-0} = opc;
Bill Wendlinga46a4932010-11-29 22:15:03 +0000248}
249
Jim Grosbach421993f2011-08-17 23:08:57 +0000250def tNOP : T1pI<(outs), (ins), NoItinerary, "nop", "", []>,
Jim Grosbach0780b632011-08-19 23:24:36 +0000251 T1SystemEncoding<0x00>, // A8.6.110
252 Requires<[IsThumb2]>;
Johnny Chenbd2c6232010-02-25 03:28:51 +0000253
Jim Grosbach421993f2011-08-17 23:08:57 +0000254def tYIELD : T1pI<(outs), (ins), NoItinerary, "yield", "", []>,
255 T1SystemEncoding<0x10>; // A8.6.410
Johnny Chend86d2692010-02-25 17:51:03 +0000256
Jim Grosbach421993f2011-08-17 23:08:57 +0000257def tWFE : T1pI<(outs), (ins), NoItinerary, "wfe", "", []>,
258 T1SystemEncoding<0x20>; // A8.6.408
Johnny Chend86d2692010-02-25 17:51:03 +0000259
Jim Grosbach421993f2011-08-17 23:08:57 +0000260def tWFI : T1pI<(outs), (ins), NoItinerary, "wfi", "", []>,
261 T1SystemEncoding<0x30>; // A8.6.409
Johnny Chend86d2692010-02-25 17:51:03 +0000262
Jim Grosbach421993f2011-08-17 23:08:57 +0000263def tSEV : T1pI<(outs), (ins), NoItinerary, "sev", "", []>,
264 T1SystemEncoding<0x40>; // A8.6.157
Bill Wendlinga46a4932010-11-29 22:15:03 +0000265
Jim Grosbach421993f2011-08-17 23:08:57 +0000266// The imm operand $val can be used by a debugger to store more information
Bill Wendlinga46a4932010-11-29 22:15:03 +0000267// about the breakpoint.
Jim Grosbach421993f2011-08-17 23:08:57 +0000268def tBKPT : T1I<(outs), (ins imm0_255:$val), NoItinerary, "bkpt\t$val",
269 []>,
270 T1Encoding<0b101111> {
271 let Inst{9-8} = 0b10;
Bill Wendlinga46a4932010-11-29 22:15:03 +0000272 // A8.6.22
273 bits<8> val;
274 let Inst{7-0} = val;
275}
Johnny Chend86d2692010-02-25 17:51:03 +0000276
Jim Grosbach06322472011-07-22 17:52:23 +0000277def tSETEND : T1I<(outs), (ins setend_op:$end), NoItinerary, "setend\t$end",
278 []>, T1Encoding<0b101101> {
279 bits<1> end;
Bill Wendling7d0affd2010-11-21 10:55:23 +0000280 // A8.6.156
Johnny Chend86d2692010-02-25 17:51:03 +0000281 let Inst{9-5} = 0b10010;
Bill Wendlinga8981662010-11-19 22:02:18 +0000282 let Inst{4} = 1;
Jim Grosbach06322472011-07-22 17:52:23 +0000283 let Inst{3} = end;
Bill Wendlinga8981662010-11-19 22:02:18 +0000284 let Inst{2-0} = 0b000;
Johnny Chend86d2692010-02-25 17:51:03 +0000285}
286
Johnny Chen93042d12010-03-02 18:14:57 +0000287// Change Processor State is a system instruction -- for disassembly only.
Bruno Cardoso Lopesa2b6e412011-02-14 13:09:44 +0000288def tCPS : T1I<(outs), (ins imod_op:$imod, iflags_op:$iflags),
Jim Grosbach26215422011-09-20 00:00:06 +0000289 NoItinerary, "cps$imod $iflags", []>,
Bill Wendling849f2e32010-11-29 00:18:15 +0000290 T1Misc<0b0110011> {
291 // A8.6.38 & B6.1.1
Bruno Cardoso Lopesa2b6e412011-02-14 13:09:44 +0000292 bit imod;
293 bits<3> iflags;
294
295 let Inst{4} = imod;
296 let Inst{3} = 0;
297 let Inst{2-0} = iflags;
Owen Anderson8d7d2e12011-08-09 20:55:18 +0000298 let DecoderMethod = "DecodeThumbCPS";
Bill Wendling849f2e32010-11-29 00:18:15 +0000299}
Johnny Chen93042d12010-03-02 18:14:57 +0000300
Evan Cheng35d6c412009-08-04 23:47:55 +0000301// For both thumb1 and thumb2.
Chris Lattnera4a3a5e2010-10-31 19:15:18 +0000302let isNotDuplicable = 1, isCodeGenOnly = 1 in
Jim Grosbacha3fbadf2010-09-30 19:53:58 +0000303def tPICADD : TIt<(outs GPR:$dst), (ins GPR:$lhs, pclabel:$cp), IIC_iALUr, "",
Bill Wendling0ae28e42010-11-19 22:37:33 +0000304 [(set GPR:$dst, (ARMpic_add GPR:$lhs, imm:$cp))]>,
Johnny Chend68e1192009-12-15 17:24:14 +0000305 T1Special<{0,0,?,?}> {
Bill Wendling0e45a5a2010-11-30 00:50:22 +0000306 // A8.6.6
Bill Wendling0ae28e42010-11-19 22:37:33 +0000307 bits<3> dst;
Bill Wendling0e45a5a2010-11-30 00:50:22 +0000308 let Inst{6-3} = 0b1111; // Rm = pc
Bill Wendling0ae28e42010-11-19 22:37:33 +0000309 let Inst{2-0} = dst;
Johnny Chend68e1192009-12-15 17:24:14 +0000310}
Evan Chenga8e29892007-01-19 07:51:42 +0000311
Bill Wendling0ae28e42010-11-19 22:37:33 +0000312// ADD <Rd>, sp, #<imm8>
Jakob Stoklund Olesen53484962011-10-15 00:57:13 +0000313// FIXME: This should not be marked as having side effects, and it should be
314// rematerializable. Clearing the side effect bit causes miscompilations,
315// probably because the instruction can be moved around.
Jim Grosbach72f39f82011-08-24 21:22:15 +0000316def tADDrSPi : T1pI<(outs tGPR:$dst), (ins GPRsp:$sp, t_imm0_1020s4:$imm),
317 IIC_iALUi, "add", "\t$dst, $sp, $imm", []>,
Bill Wendling0ae28e42010-11-19 22:37:33 +0000318 T1Encoding<{1,0,1,0,1,?}> {
319 // A6.2 & A8.6.8
320 bits<3> dst;
Jim Grosbach72f39f82011-08-24 21:22:15 +0000321 bits<8> imm;
Bill Wendling0ae28e42010-11-19 22:37:33 +0000322 let Inst{10-8} = dst;
Jim Grosbach72f39f82011-08-24 21:22:15 +0000323 let Inst{7-0} = imm;
Owen Anderson8d7d2e12011-08-09 20:55:18 +0000324 let DecoderMethod = "DecodeThumbAddSpecialReg";
Bill Wendling0ae28e42010-11-19 22:37:33 +0000325}
326
327// ADD sp, sp, #<imm7>
Jim Grosbach72f39f82011-08-24 21:22:15 +0000328def tADDspi : T1pIt<(outs GPRsp:$Rdn), (ins GPRsp:$Rn, t_imm0_508s4:$imm),
329 IIC_iALUi, "add", "\t$Rdn, $imm", []>,
Bill Wendling0ae28e42010-11-19 22:37:33 +0000330 T1Misc<{0,0,0,0,0,?,?}> {
331 // A6.2.5 & A8.6.8
Jim Grosbach72f39f82011-08-24 21:22:15 +0000332 bits<7> imm;
333 let Inst{6-0} = imm;
Owen Anderson8d7d2e12011-08-09 20:55:18 +0000334 let DecoderMethod = "DecodeThumbAddSPImm";
Bill Wendling0ae28e42010-11-19 22:37:33 +0000335}
Evan Cheng7dcf4a82009-06-25 01:05:06 +0000336
Bill Wendling0ae28e42010-11-19 22:37:33 +0000337// SUB sp, sp, #<imm7>
338// FIXME: The encoding and the ASM string don't match up.
Jim Grosbach72f39f82011-08-24 21:22:15 +0000339def tSUBspi : T1pIt<(outs GPRsp:$Rdn), (ins GPRsp:$Rn, t_imm0_508s4:$imm),
340 IIC_iALUi, "sub", "\t$Rdn, $imm", []>,
Bill Wendling0ae28e42010-11-19 22:37:33 +0000341 T1Misc<{0,0,0,0,1,?,?}> {
342 // A6.2.5 & A8.6.214
Jim Grosbach72f39f82011-08-24 21:22:15 +0000343 bits<7> imm;
344 let Inst{6-0} = imm;
Owen Anderson8d7d2e12011-08-09 20:55:18 +0000345 let DecoderMethod = "DecodeThumbAddSPImm";
Bill Wendling0ae28e42010-11-19 22:37:33 +0000346}
Evan Cheng86198642009-08-07 00:34:42 +0000347
Jim Grosbachf69c8042011-08-24 21:42:27 +0000348// Can optionally specify SP as a three operand instruction.
349def : tInstAlias<"add${p} sp, sp, $imm",
350 (tADDspi SP, t_imm0_508s4:$imm, pred:$p)>;
351def : tInstAlias<"sub${p} sp, sp, $imm",
352 (tSUBspi SP, t_imm0_508s4:$imm, pred:$p)>;
353
Bill Wendling0ae28e42010-11-19 22:37:33 +0000354// ADD <Rm>, sp
Jim Grosbachc7e0bb22011-08-24 18:04:27 +0000355def tADDrSP : T1pIt<(outs GPR:$Rdn), (ins GPR:$Rn, GPRsp:$sp), IIC_iALUr,
356 "add", "\t$Rdn, $sp, $Rn", []>,
Johnny Chend68e1192009-12-15 17:24:14 +0000357 T1Special<{0,0,?,?}> {
Bill Wendling0ae28e42010-11-19 22:37:33 +0000358 // A8.6.9 Encoding T1
Jim Grosbach5b815842011-08-24 17:46:13 +0000359 bits<4> Rdn;
360 let Inst{7} = Rdn{3};
Bill Wendling0ae28e42010-11-19 22:37:33 +0000361 let Inst{6-3} = 0b1101;
Jim Grosbach5b815842011-08-24 17:46:13 +0000362 let Inst{2-0} = Rdn{2-0};
Owen Anderson8d7d2e12011-08-09 20:55:18 +0000363 let DecoderMethod = "DecodeThumbAddSPReg";
Johnny Chend68e1192009-12-15 17:24:14 +0000364}
Evan Cheng86198642009-08-07 00:34:42 +0000365
Bill Wendling0ae28e42010-11-19 22:37:33 +0000366// ADD sp, <Rm>
Jim Grosbach72f39f82011-08-24 21:22:15 +0000367def tADDspr : T1pIt<(outs GPRsp:$Rdn), (ins GPRsp:$Rn, GPR:$Rm), IIC_iALUr,
368 "add", "\t$Rdn, $Rm", []>,
Johnny Chend68e1192009-12-15 17:24:14 +0000369 T1Special<{0,0,?,?}> {
370 // A8.6.9 Encoding T2
Jim Grosbach72f39f82011-08-24 21:22:15 +0000371 bits<4> Rm;
Johnny Chend68e1192009-12-15 17:24:14 +0000372 let Inst{7} = 1;
Jim Grosbach72f39f82011-08-24 21:22:15 +0000373 let Inst{6-3} = Rm;
Johnny Chend68e1192009-12-15 17:24:14 +0000374 let Inst{2-0} = 0b101;
Owen Anderson8d7d2e12011-08-09 20:55:18 +0000375 let DecoderMethod = "DecodeThumbAddSPReg";
Johnny Chend68e1192009-12-15 17:24:14 +0000376}
Evan Cheng86198642009-08-07 00:34:42 +0000377
Evan Chenga8e29892007-01-19 07:51:42 +0000378//===----------------------------------------------------------------------===//
379// Control Flow Instructions.
380//
381
Bob Wilson8d4de5a2009-10-28 18:26:41 +0000382// Indirect branches
383let isBranch = 1, isTerminator = 1, isBarrier = 1, isIndirectBranch = 1 in {
Cameron Zwarich421b1062011-05-26 03:41:12 +0000384 def tBX : TI<(outs), (ins GPR:$Rm, pred:$p), IIC_Br, "bx${p}\t$Rm", []>,
385 T1Special<{1,1,0,?}> {
386 // A6.2.3 & A8.6.25
387 bits<4> Rm;
388 let Inst{6-3} = Rm;
389 let Inst{2-0} = 0b000;
James Molloy3015dfb2012-02-09 10:56:31 +0000390 let Unpredictable{2-0} = 0b111;
Cameron Zwarich421b1062011-05-26 03:41:12 +0000391 }
Bob Wilson8d4de5a2009-10-28 18:26:41 +0000392}
393
Jim Grosbachead77cd2011-07-08 21:04:05 +0000394let isReturn = 1, isTerminator = 1, isBarrier = 1 in {
Owen Anderson16884412011-07-13 23:22:26 +0000395 def tBX_RET : tPseudoExpand<(outs), (ins pred:$p), 2, IIC_Br,
Jim Grosbach25e6d482011-07-08 21:50:04 +0000396 [(ARMretflag)], (tBX LR, pred:$p)>;
Jim Grosbachead77cd2011-07-08 21:04:05 +0000397
398 // Alternative return instruction used by vararg functions.
Jim Grosbach25e6d482011-07-08 21:50:04 +0000399 def tBX_RET_vararg : tPseudoExpand<(outs), (ins tGPR:$Rm, pred:$p),
Owen Anderson16884412011-07-13 23:22:26 +0000400 2, IIC_Br, [],
Jim Grosbach25e6d482011-07-08 21:50:04 +0000401 (tBX GPR:$Rm, pred:$p)>;
Jim Grosbachead77cd2011-07-08 21:04:05 +0000402}
403
Bill Wendling0480e282010-12-01 02:36:55 +0000404// All calls clobber the non-callee saved registers. SP is marked as a use to
405// prevent stack-pointer assignments that appear immediately before calls from
406// potentially appearing dead.
Jim Grosbach0ede14f2009-03-27 23:06:27 +0000407let isCall = 1,
Evan Chengafff9412011-12-20 18:26:50 +0000408 // On non-IOS platforms R9 is callee-saved.
Jakob Stoklund Olesenece8b732012-01-13 22:55:42 +0000409 Defs = [R0, R1, R2, R3, R12, LR,
410 Q0, Q1, Q2, Q3, Q8, Q9, Q10, Q11, Q12, Q13, Q14, Q15,
411 CPSR, FPSCR],
Evan Cheng1e0eab12010-11-29 22:43:27 +0000412 Uses = [SP] in {
Evan Chengb6207242009-08-01 00:16:10 +0000413 // Also used for Thumb2
Johnny Chend68e1192009-12-15 17:24:14 +0000414 def tBL : TIx2<0b11110, 0b11, 1,
Owen Anderson0af0dc82011-07-18 18:50:52 +0000415 (outs), (ins pred:$p, t_bltarget:$func, variable_ops), IIC_Br,
416 "bl${p}\t$func",
Johnny Chend68e1192009-12-15 17:24:14 +0000417 [(ARMtcall tglobaladdr:$func)]>,
Evan Chengafff9412011-12-20 18:26:50 +0000418 Requires<[IsThumb, IsNotIOS]> {
Owen Anderson648f9a72011-08-08 23:25:22 +0000419 bits<22> func;
420 let Inst{26} = func{21};
Jim Grosbach662a8162010-12-06 23:57:07 +0000421 let Inst{25-16} = func{20-11};
Jim Grosbach4fa102b2010-12-03 22:33:42 +0000422 let Inst{13} = 1;
423 let Inst{11} = 1;
Jim Grosbach662a8162010-12-06 23:57:07 +0000424 let Inst{10-0} = func{10-0};
Bill Wendling534a5e42010-12-03 01:55:47 +0000425 }
Evan Cheng20a2a0a2009-07-29 21:26:42 +0000426
Evan Chengb6207242009-08-01 00:16:10 +0000427 // ARMv5T and above, also used for Thumb2
Johnny Chend68e1192009-12-15 17:24:14 +0000428 def tBLXi : TIx2<0b11110, 0b11, 0,
Jim Grosbach5f687de2011-08-18 16:50:45 +0000429 (outs), (ins pred:$p, t_blxtarget:$func, variable_ops), IIC_Br,
Owen Anderson0af0dc82011-07-18 18:50:52 +0000430 "blx${p}\t$func",
Johnny Chend68e1192009-12-15 17:24:14 +0000431 [(ARMcall tglobaladdr:$func)]>,
Evan Chengafff9412011-12-20 18:26:50 +0000432 Requires<[IsThumb, HasV5T, IsNotIOS]> {
Jim Grosbach662a8162010-12-06 23:57:07 +0000433 bits<21> func;
434 let Inst{25-16} = func{20-11};
Jim Grosbach4fa102b2010-12-03 22:33:42 +0000435 let Inst{13} = 1;
436 let Inst{11} = 1;
Jim Grosbach662a8162010-12-06 23:57:07 +0000437 let Inst{10-1} = func{10-1};
438 let Inst{0} = 0; // func{0} is assumed zero
Jim Grosbach4fa102b2010-12-03 22:33:42 +0000439 }
Evan Cheng20a2a0a2009-07-29 21:26:42 +0000440
Evan Chengb6207242009-08-01 00:16:10 +0000441 // Also used for Thumb2
Owen Anderson0af0dc82011-07-18 18:50:52 +0000442 def tBLXr : TI<(outs), (ins pred:$p, GPR:$func, variable_ops), IIC_Br,
443 "blx${p}\t$func",
Evan Chengb6207242009-08-01 00:16:10 +0000444 [(ARMtcall GPR:$func)]>,
Evan Chengafff9412011-12-20 18:26:50 +0000445 Requires<[IsThumb, HasV5T, IsNotIOS]>,
Owen Anderson18901d62011-05-11 17:00:48 +0000446 T1Special<{1,1,1,?}> { // A6.2.3 & A8.6.24;
447 bits<4> func;
448 let Inst{6-3} = func;
449 let Inst{2-0} = 0b000;
450 }
Evan Cheng20a2a0a2009-07-29 21:26:42 +0000451
Lauro Ramos Venanciob8a93a42007-03-27 16:19:21 +0000452 // ARMv4T
Cameron Zwarichad70f6d2011-05-25 21:53:50 +0000453 def tBX_CALL : tPseudoInst<(outs), (ins tGPR:$func, variable_ops),
Owen Anderson16884412011-07-13 23:22:26 +0000454 4, IIC_Br,
Evan Cheng20a2a0a2009-07-29 21:26:42 +0000455 [(ARMcall_nolink tGPR:$func)]>,
Evan Chengafff9412011-12-20 18:26:50 +0000456 Requires<[IsThumb, IsThumb1Only, IsNotIOS]>;
Evan Cheng20a2a0a2009-07-29 21:26:42 +0000457}
458
Evan Cheng20a2a0a2009-07-29 21:26:42 +0000459let isCall = 1,
Evan Chengafff9412011-12-20 18:26:50 +0000460 // On IOS R9 is call-clobbered.
Evan Cheng1e0eab12010-11-29 22:43:27 +0000461 // R7 is marked as a use to prevent frame-pointer assignments from being
462 // moved above / below calls.
Jakob Stoklund Olesenece8b732012-01-13 22:55:42 +0000463 Defs = [R0, R1, R2, R3, R9, R12, LR,
464 Q0, Q1, Q2, Q3, Q8, Q9, Q10, Q11, Q12, Q13, Q14, Q15,
465 CPSR, FPSCR],
Evan Cheng1e0eab12010-11-29 22:43:27 +0000466 Uses = [R7, SP] in {
Evan Chengb6207242009-08-01 00:16:10 +0000467 // Also used for Thumb2
Owen Anderson0af0dc82011-07-18 18:50:52 +0000468 def tBLr9 : tPseudoExpand<(outs), (ins pred:$p, t_bltarget:$func, variable_ops),
469 4, IIC_Br, [(ARMtcall tglobaladdr:$func)],
470 (tBL pred:$p, t_bltarget:$func)>,
Evan Chengafff9412011-12-20 18:26:50 +0000471 Requires<[IsThumb, IsIOS]>;
Evan Cheng20a2a0a2009-07-29 21:26:42 +0000472
Evan Chengb6207242009-08-01 00:16:10 +0000473 // ARMv5T and above, also used for Thumb2
Owen Anderson0af0dc82011-07-18 18:50:52 +0000474 def tBLXi_r9 : tPseudoExpand<(outs), (ins pred:$p, t_blxtarget:$func, variable_ops),
475 4, IIC_Br, [(ARMcall tglobaladdr:$func)],
476 (tBLXi pred:$p, t_blxtarget:$func)>,
Evan Chengafff9412011-12-20 18:26:50 +0000477 Requires<[IsThumb, HasV5T, IsIOS]>;
Evan Cheng20a2a0a2009-07-29 21:26:42 +0000478
Evan Chengb6207242009-08-01 00:16:10 +0000479 // Also used for Thumb2
Owen Anderson0af0dc82011-07-18 18:50:52 +0000480 def tBLXr_r9 : tPseudoExpand<(outs), (ins pred:$p, GPR:$func, variable_ops),
481 2, IIC_Br, [(ARMtcall GPR:$func)],
482 (tBLXr pred:$p, GPR:$func)>,
Evan Chengafff9412011-12-20 18:26:50 +0000483 Requires<[IsThumb, HasV5T, IsIOS]>;
Evan Cheng20a2a0a2009-07-29 21:26:42 +0000484
485 // ARMv4T
Cameron Zwarichad70f6d2011-05-25 21:53:50 +0000486 def tBXr9_CALL : tPseudoInst<(outs), (ins tGPR:$func, variable_ops),
Owen Anderson16884412011-07-13 23:22:26 +0000487 4, IIC_Br,
Johnny Chend68e1192009-12-15 17:24:14 +0000488 [(ARMcall_nolink tGPR:$func)]>,
Evan Chengafff9412011-12-20 18:26:50 +0000489 Requires<[IsThumb, IsThumb1Only, IsIOS]>;
Evan Chenga8e29892007-01-19 07:51:42 +0000490}
491
Bill Wendling0480e282010-12-01 02:36:55 +0000492let isBranch = 1, isTerminator = 1, isBarrier = 1 in {
493 let isPredicable = 1 in
Owen Anderson51f6a7a2011-09-09 21:48:23 +0000494 def tB : T1pI<(outs), (ins t_brtarget:$target), IIC_Br,
495 "b", "\t$target", [(br bb:$target)]>,
Jim Grosbache2467172010-12-10 18:21:33 +0000496 T1Encoding<{1,1,1,0,0,?}> {
497 bits<11> target;
498 let Inst{10-0} = target;
499 }
Evan Chenga8e29892007-01-19 07:51:42 +0000500
Evan Cheng225dfe92007-01-30 01:13:37 +0000501 // Far jump
Jim Grosbach3efad8f2010-12-16 19:11:16 +0000502 // Just a pseudo for a tBL instruction. Needed to let regalloc know about
503 // the clobber of LR.
Evan Cheng53c67c02009-08-07 05:45:07 +0000504 let Defs = [LR] in
Owen Anderson0af0dc82011-07-18 18:50:52 +0000505 def tBfar : tPseudoExpand<(outs), (ins t_bltarget:$target, pred:$p),
506 4, IIC_Br, [], (tBL pred:$p, t_bltarget:$target)>;
Evan Cheng225dfe92007-01-30 01:13:37 +0000507
Jim Grosbachf1aa47d2010-11-29 19:32:47 +0000508 def tBR_JTr : tPseudoInst<(outs),
509 (ins tGPR:$target, i32imm:$jt, i32imm:$id),
Owen Anderson16884412011-07-13 23:22:26 +0000510 0, IIC_Br,
Jim Grosbachf1aa47d2010-11-29 19:32:47 +0000511 [(ARMbrjt tGPR:$target, tjumptable:$jt, imm:$id)]> {
512 list<Predicate> Predicates = [IsThumb, IsThumb1Only];
Johnny Chenbbc71b22009-12-16 02:32:54 +0000513 }
Evan Chengd85ac4d2007-01-27 02:29:45 +0000514}
515
Evan Chengc85e8322007-07-05 07:13:32 +0000516// FIXME: should be able to write a pattern for ARMBrcond, but can't use
Jim Grosbach0ede14f2009-03-27 23:06:27 +0000517// a two-value operand where a dag node expects two operands. :(
Evan Chengffbacca2007-07-21 00:34:19 +0000518let isBranch = 1, isTerminator = 1 in
Jim Grosbach01086452010-12-10 17:13:40 +0000519 def tBcc : T1I<(outs), (ins t_bcctarget:$target, pred:$p), IIC_Br,
Jim Grosbachceab5012010-12-04 00:20:40 +0000520 "b${p}\t$target",
Johnny Chend68e1192009-12-15 17:24:14 +0000521 [/*(ARMbrcond bb:$target, imm:$cc)*/]>,
Eric Christopher33281b22011-05-27 03:50:53 +0000522 T1BranchCond<{1,1,0,1}> {
Jim Grosbachceab5012010-12-04 00:20:40 +0000523 bits<4> p;
Jim Grosbach01086452010-12-10 17:13:40 +0000524 bits<8> target;
Jim Grosbachceab5012010-12-04 00:20:40 +0000525 let Inst{11-8} = p;
Jim Grosbach01086452010-12-10 17:13:40 +0000526 let Inst{7-0} = target;
Jim Grosbachceab5012010-12-04 00:20:40 +0000527}
Evan Chenga8e29892007-01-19 07:51:42 +0000528
Jim Grosbache36e21e2011-07-08 20:13:35 +0000529// Tail calls
530let isCall = 1, isTerminator = 1, isReturn = 1, isBarrier = 1 in {
Evan Chengafff9412011-12-20 18:26:50 +0000531 // IOS versions.
Jakob Stoklund Olesenece8b732012-01-13 22:55:42 +0000532 let Defs = [R0, R1, R2, R3, R9, R12,
533 Q0, Q1, Q2, Q3, Q8, Q9, Q10, Q11, Q12, Q13, Q14, Q15, PC],
Jim Grosbache36e21e2011-07-08 20:13:35 +0000534 Uses = [SP] in {
Evan Chengafff9412011-12-20 18:26:50 +0000535 // tTAILJMPd: IOS version uses a Thumb2 branch (no Thumb1 tail calls
536 // on IOS), so it's in ARMInstrThumb2.td.
Jim Grosbach0b44aea2011-07-08 20:39:19 +0000537 def tTAILJMPr : tPseudoExpand<(outs), (ins tcGPR:$dst, variable_ops),
Owen Anderson16884412011-07-13 23:22:26 +0000538 4, IIC_Br, [],
Jim Grosbach0b44aea2011-07-08 20:39:19 +0000539 (tBX GPR:$dst, (ops 14, zero_reg))>,
Evan Chengafff9412011-12-20 18:26:50 +0000540 Requires<[IsThumb, IsIOS]>;
Jim Grosbache36e21e2011-07-08 20:13:35 +0000541 }
Evan Chengafff9412011-12-20 18:26:50 +0000542 // Non-IOS versions (the difference is R9).
Jakob Stoklund Olesenece8b732012-01-13 22:55:42 +0000543 let Defs = [R0, R1, R2, R3, R12,
544 Q0, Q1, Q2, Q3, Q8, Q9, Q10, Q11, Q12, Q13, Q14, Q15, PC],
Jim Grosbache36e21e2011-07-08 20:13:35 +0000545 Uses = [SP] in {
Owen Anderson51f6a7a2011-09-09 21:48:23 +0000546 def tTAILJMPdND : tPseudoExpand<(outs),
547 (ins t_brtarget:$dst, pred:$p, variable_ops),
Owen Anderson16884412011-07-13 23:22:26 +0000548 4, IIC_Br, [],
Owen Anderson51f6a7a2011-09-09 21:48:23 +0000549 (tB t_brtarget:$dst, pred:$p)>,
Evan Chengafff9412011-12-20 18:26:50 +0000550 Requires<[IsThumb, IsNotIOS]>;
Jim Grosbach0b44aea2011-07-08 20:39:19 +0000551 def tTAILJMPrND : tPseudoExpand<(outs), (ins tcGPR:$dst, variable_ops),
Owen Anderson16884412011-07-13 23:22:26 +0000552 4, IIC_Br, [],
Jim Grosbach0b44aea2011-07-08 20:39:19 +0000553 (tBX GPR:$dst, (ops 14, zero_reg))>,
Evan Chengafff9412011-12-20 18:26:50 +0000554 Requires<[IsThumb, IsNotIOS]>;
Jim Grosbache36e21e2011-07-08 20:13:35 +0000555 }
556}
557
558
Jim Grosbachec8b8662011-08-23 19:49:10 +0000559// A8.6.218 Supervisor Call (Software Interrupt)
Johnny Chen4c61cdd2010-02-25 02:21:11 +0000560// A8.6.16 B: Encoding T1
561// If Inst{11-8} == 0b1111 then SEE SVC
Evan Cheng1e0eab12010-11-29 22:43:27 +0000562let isCall = 1, Uses = [SP] in
Jim Grosbached838482011-07-26 16:24:27 +0000563def tSVC : T1pI<(outs), (ins imm0_255:$imm), IIC_Br,
Bill Wendling6179c312010-11-20 00:53:35 +0000564 "svc", "\t$imm", []>, Encoding16 {
565 bits<8> imm;
Johnny Chen4c61cdd2010-02-25 02:21:11 +0000566 let Inst{15-12} = 0b1101;
Bill Wendling6179c312010-11-20 00:53:35 +0000567 let Inst{11-8} = 0b1111;
568 let Inst{7-0} = imm;
Johnny Chen4c61cdd2010-02-25 02:21:11 +0000569}
570
Bill Wendlingef4a68b2010-11-30 07:44:32 +0000571// The assembler uses 0xDEFE for a trap instruction.
Evan Chengfb3611d2010-05-11 07:26:32 +0000572let isBarrier = 1, isTerminator = 1 in
Owen Anderson18901d62011-05-11 17:00:48 +0000573def tTRAP : TI<(outs), (ins), IIC_Br,
Jim Grosbach2e6ae132010-09-23 18:05:37 +0000574 "trap", [(trap)]>, Encoding16 {
Bill Wendling7d0affd2010-11-21 10:55:23 +0000575 let Inst = 0xdefe;
Johnny Chen4c61cdd2010-02-25 02:21:11 +0000576}
577
Evan Chenga8e29892007-01-19 07:51:42 +0000578//===----------------------------------------------------------------------===//
579// Load Store Instructions.
580//
581
Bill Wendlingb6faf652010-12-14 22:10:49 +0000582// Loads: reg/reg and reg/imm5
Dan Gohmanbc9d98b2010-02-27 23:47:46 +0000583let canFoldAsLoad = 1, isReMaterializable = 1 in
Bill Wendlingb6faf652010-12-14 22:10:49 +0000584multiclass thumb_ld_rr_ri_enc<bits<3> reg_opc, bits<4> imm_opc,
585 Operand AddrMode_r, Operand AddrMode_i,
586 AddrMode am, InstrItinClass itin_r,
587 InstrItinClass itin_i, string asm,
588 PatFrag opnode> {
Bill Wendling345cdb62010-12-14 23:42:48 +0000589 def r : // reg/reg
Bill Wendlingb6faf652010-12-14 22:10:49 +0000590 T1pILdStEncode<reg_opc,
591 (outs tGPR:$Rt), (ins AddrMode_r:$addr),
592 am, itin_r, asm, "\t$Rt, $addr",
593 [(set tGPR:$Rt, (opnode AddrMode_r:$addr))]>;
Bill Wendling345cdb62010-12-14 23:42:48 +0000594 def i : // reg/imm5
Bill Wendlingb6faf652010-12-14 22:10:49 +0000595 T1pILdStEncodeImm<imm_opc, 1 /* Load */,
596 (outs tGPR:$Rt), (ins AddrMode_i:$addr),
597 am, itin_i, asm, "\t$Rt, $addr",
598 [(set tGPR:$Rt, (opnode AddrMode_i:$addr))]>;
599}
600// Stores: reg/reg and reg/imm5
601multiclass thumb_st_rr_ri_enc<bits<3> reg_opc, bits<4> imm_opc,
602 Operand AddrMode_r, Operand AddrMode_i,
603 AddrMode am, InstrItinClass itin_r,
604 InstrItinClass itin_i, string asm,
605 PatFrag opnode> {
Bill Wendling345cdb62010-12-14 23:42:48 +0000606 def r : // reg/reg
Bill Wendlingb6faf652010-12-14 22:10:49 +0000607 T1pILdStEncode<reg_opc,
608 (outs), (ins tGPR:$Rt, AddrMode_r:$addr),
609 am, itin_r, asm, "\t$Rt, $addr",
610 [(opnode tGPR:$Rt, AddrMode_r:$addr)]>;
Bill Wendling345cdb62010-12-14 23:42:48 +0000611 def i : // reg/imm5
Bill Wendlingb6faf652010-12-14 22:10:49 +0000612 T1pILdStEncodeImm<imm_opc, 0 /* Store */,
613 (outs), (ins tGPR:$Rt, AddrMode_i:$addr),
614 am, itin_i, asm, "\t$Rt, $addr",
615 [(opnode tGPR:$Rt, AddrMode_i:$addr)]>;
616}
Bill Wendling6179c312010-11-20 00:53:35 +0000617
Bill Wendlingb6faf652010-12-14 22:10:49 +0000618// A8.6.57 & A8.6.60
619defm tLDR : thumb_ld_rr_ri_enc<0b100, 0b0110, t_addrmode_rrs4,
620 t_addrmode_is4, AddrModeT1_4,
621 IIC_iLoad_r, IIC_iLoad_i, "ldr",
622 UnOpFrag<(load node:$Src)>>;
Evan Chenga8e29892007-01-19 07:51:42 +0000623
Bill Wendlingb6faf652010-12-14 22:10:49 +0000624// A8.6.64 & A8.6.61
625defm tLDRB : thumb_ld_rr_ri_enc<0b110, 0b0111, t_addrmode_rrs1,
626 t_addrmode_is1, AddrModeT1_1,
627 IIC_iLoad_bh_r, IIC_iLoad_bh_i, "ldrb",
628 UnOpFrag<(zextloadi8 node:$Src)>>;
Bill Wendling1fd374e2010-11-30 22:57:21 +0000629
Bill Wendlingb6faf652010-12-14 22:10:49 +0000630// A8.6.76 & A8.6.73
631defm tLDRH : thumb_ld_rr_ri_enc<0b101, 0b1000, t_addrmode_rrs2,
632 t_addrmode_is2, AddrModeT1_2,
633 IIC_iLoad_bh_r, IIC_iLoad_bh_i, "ldrh",
634 UnOpFrag<(zextloadi16 node:$Src)>>;
Evan Chengc38f2bc2007-01-23 22:59:13 +0000635
Evan Cheng2f297df2009-07-11 07:08:13 +0000636let AddedComplexity = 10 in
Bill Wendling1fd374e2010-11-30 22:57:21 +0000637def tLDRSB : // A8.6.80
Owen Anderson305e0462011-08-15 19:00:06 +0000638 T1pILdStEncode<0b011, (outs tGPR:$Rt), (ins t_addrmode_rr:$addr),
Bill Wendling40062fb2010-12-01 01:38:08 +0000639 AddrModeT1_1, IIC_iLoad_bh_r,
Owen Anderson305e0462011-08-15 19:00:06 +0000640 "ldrsb", "\t$Rt, $addr",
641 [(set tGPR:$Rt, (sextloadi8 t_addrmode_rr:$addr))]>;
Evan Chengc38f2bc2007-01-23 22:59:13 +0000642
Evan Cheng2f297df2009-07-11 07:08:13 +0000643let AddedComplexity = 10 in
Bill Wendling1fd374e2010-11-30 22:57:21 +0000644def tLDRSH : // A8.6.84
Owen Anderson305e0462011-08-15 19:00:06 +0000645 T1pILdStEncode<0b111, (outs tGPR:$Rt), (ins t_addrmode_rr:$addr),
Bill Wendling40062fb2010-12-01 01:38:08 +0000646 AddrModeT1_2, IIC_iLoad_bh_r,
Owen Anderson305e0462011-08-15 19:00:06 +0000647 "ldrsh", "\t$Rt, $addr",
648 [(set tGPR:$Rt, (sextloadi16 t_addrmode_rr:$addr))]>;
Evan Chengc38f2bc2007-01-23 22:59:13 +0000649
Dan Gohman15511cf2008-12-03 18:15:48 +0000650let canFoldAsLoad = 1 in
Jim Grosbachd967cd02010-12-07 21:50:47 +0000651def tLDRspi : T1pIs<(outs tGPR:$Rt), (ins t_addrmode_sp:$addr), IIC_iLoad_i,
Bill Wendlingdc381372010-12-15 23:31:24 +0000652 "ldr", "\t$Rt, $addr",
653 [(set tGPR:$Rt, (load t_addrmode_sp:$addr))]>,
Jim Grosbachd967cd02010-12-07 21:50:47 +0000654 T1LdStSP<{1,?,?}> {
655 bits<3> Rt;
656 bits<8> addr;
657 let Inst{10-8} = Rt;
658 let Inst{7-0} = addr;
659}
Evan Cheng012f2d92007-01-24 08:53:17 +0000660
661// Load tconstpool
Evan Chengafff9412011-12-20 18:26:50 +0000662// FIXME: Use ldr.n to work around a darwin assembler bug.
Owen Anderson91614ae2011-07-18 22:14:02 +0000663let canFoldAsLoad = 1, isReMaterializable = 1, isCodeGenOnly = 1 in
Bill Wendlingb8958b02010-12-08 01:57:09 +0000664def tLDRpci : T1pIs<(outs tGPR:$Rt), (ins t_addrmode_pc:$addr), IIC_iLoad_i,
Bill Wendling3f8c1102010-11-30 23:54:45 +0000665 "ldr", ".n\t$Rt, $addr",
666 [(set tGPR:$Rt, (load (ARMWrapper tconstpool:$addr)))]>,
667 T1Encoding<{0,1,0,0,1,?}> {
668 // A6.2 & A8.6.59
669 bits<3> Rt;
Bill Wendlingb8958b02010-12-08 01:57:09 +0000670 bits<8> addr;
Bill Wendling3f8c1102010-11-30 23:54:45 +0000671 let Inst{10-8} = Rt;
Bill Wendlingb8958b02010-12-08 01:57:09 +0000672 let Inst{7-0} = addr;
Bill Wendling3f8c1102010-11-30 23:54:45 +0000673}
Evan Chengfa775d02007-03-19 07:20:03 +0000674
Johnny Chen597fa652011-04-22 19:12:43 +0000675// FIXME: Remove this entry when the above ldr.n workaround is fixed.
Jim Grosbacha2ee0fa2012-01-18 21:54:09 +0000676// For assembly/disassembly use only.
677def tLDRpciASM : T1pIs<(outs tGPR:$Rt), (ins t_addrmode_pc:$addr), IIC_iLoad_i,
678 "ldr", "\t$Rt, $addr", []>,
Johnny Chen597fa652011-04-22 19:12:43 +0000679 T1Encoding<{0,1,0,0,1,?}> {
680 // A6.2 & A8.6.59
681 bits<3> Rt;
682 bits<8> addr;
683 let Inst{10-8} = Rt;
684 let Inst{7-0} = addr;
685}
686
Bill Wendlingb6faf652010-12-14 22:10:49 +0000687// A8.6.194 & A8.6.192
688defm tSTR : thumb_st_rr_ri_enc<0b000, 0b0110, t_addrmode_rrs4,
689 t_addrmode_is4, AddrModeT1_4,
690 IIC_iStore_r, IIC_iStore_i, "str",
691 BinOpFrag<(store node:$LHS, node:$RHS)>>;
Evan Chenga8e29892007-01-19 07:51:42 +0000692
Bill Wendlingb6faf652010-12-14 22:10:49 +0000693// A8.6.197 & A8.6.195
694defm tSTRB : thumb_st_rr_ri_enc<0b010, 0b0111, t_addrmode_rrs1,
695 t_addrmode_is1, AddrModeT1_1,
696 IIC_iStore_bh_r, IIC_iStore_bh_i, "strb",
697 BinOpFrag<(truncstorei8 node:$LHS, node:$RHS)>>;
Evan Chengc38f2bc2007-01-23 22:59:13 +0000698
Bill Wendlingb6faf652010-12-14 22:10:49 +0000699// A8.6.207 & A8.6.205
700defm tSTRH : thumb_st_rr_ri_enc<0b001, 0b1000, t_addrmode_rrs2,
Jim Grosbachf921c0fe2011-06-13 22:54:22 +0000701 t_addrmode_is2, AddrModeT1_2,
702 IIC_iStore_bh_r, IIC_iStore_bh_i, "strh",
703 BinOpFrag<(truncstorei16 node:$LHS, node:$RHS)>>;
Bill Wendling1fd374e2010-11-30 22:57:21 +0000704
Evan Chenga8e29892007-01-19 07:51:42 +0000705
Jim Grosbachd967cd02010-12-07 21:50:47 +0000706def tSTRspi : T1pIs<(outs), (ins tGPR:$Rt, t_addrmode_sp:$addr), IIC_iStore_i,
Bill Wendlingf4caf692010-12-14 03:36:38 +0000707 "str", "\t$Rt, $addr",
708 [(store tGPR:$Rt, t_addrmode_sp:$addr)]>,
Jim Grosbachd967cd02010-12-07 21:50:47 +0000709 T1LdStSP<{0,?,?}> {
710 bits<3> Rt;
711 bits<8> addr;
712 let Inst{10-8} = Rt;
713 let Inst{7-0} = addr;
714}
Evan Cheng8e59ea92007-02-07 00:06:56 +0000715
Evan Chenga8e29892007-01-19 07:51:42 +0000716//===----------------------------------------------------------------------===//
717// Load / store multiple Instructions.
718//
719
Bill Wendling73fe34a2010-11-16 01:16:36 +0000720// These require base address to be written back or one of the loaded regs.
Bill Wendlingddc918b2010-11-13 10:57:02 +0000721let neverHasSideEffects = 1 in {
722
723let mayLoad = 1, hasExtraDefRegAllocReq = 1 in
Jim Grosbachcefe4c92011-08-23 17:41:15 +0000724def tLDMIA : T1I<(outs), (ins tGPR:$Rn, pred:$p, reglist:$regs, variable_ops),
725 IIC_iLoad_m, "ldm${p}\t$Rn, $regs", []>, T1Encoding<{1,1,0,0,1,?}> {
726 bits<3> Rn;
727 bits<8> regs;
728 let Inst{10-8} = Rn;
729 let Inst{7-0} = regs;
730}
Bill Wendlingddc918b2010-11-13 10:57:02 +0000731
Jim Grosbachcefe4c92011-08-23 17:41:15 +0000732// Writeback version is just a pseudo, as there's no encoding difference.
733// Writeback happens iff the base register is not in the destination register
734// list.
735def tLDMIA_UPD :
736 InstTemplate<AddrModeNone, 0, IndexModeNone, Pseudo, GenericDomain,
737 "$Rn = $wb", IIC_iLoad_mu>,
738 PseudoInstExpansion<(tLDMIA tGPR:$Rn, pred:$p, reglist:$regs)> {
739 let Size = 2;
740 let OutOperandList = (outs GPR:$wb);
741 let InOperandList = (ins GPR:$Rn, pred:$p, reglist:$regs, variable_ops);
742 let Pattern = [];
743 let isCodeGenOnly = 1;
744 let isPseudo = 1;
745 list<Predicate> Predicates = [IsThumb];
746}
747
748// There is no non-writeback version of STM for Thumb.
Bill Wendlingddc918b2010-11-13 10:57:02 +0000749let mayStore = 1, hasExtraSrcRegAllocReq = 1 in
Jim Grosbachf95aaf92011-08-24 18:19:42 +0000750def tSTMIA_UPD : Thumb1I<(outs GPR:$wb),
751 (ins tGPR:$Rn, pred:$p, reglist:$regs, variable_ops),
752 AddrModeNone, 2, IIC_iStore_mu,
753 "stm${p}\t$Rn!, $regs", "$Rn = $wb", []>,
Jim Grosbachcefe4c92011-08-23 17:41:15 +0000754 T1Encoding<{1,1,0,0,0,?}> {
755 bits<3> Rn;
756 bits<8> regs;
757 let Inst{10-8} = Rn;
758 let Inst{7-0} = regs;
759}
Owen Anderson18901d62011-05-11 17:00:48 +0000760
Bill Wendlingddc918b2010-11-13 10:57:02 +0000761} // neverHasSideEffects
Evan Cheng4b322e52009-08-11 21:11:32 +0000762
Jim Grosbach93b3eff2011-08-18 21:50:53 +0000763def : InstAlias<"ldm${p} $Rn!, $regs",
764 (tLDMIA tGPR:$Rn, pred:$p, reglist:$regs)>,
765 Requires<[IsThumb, IsThumb1Only]>;
766
Evan Cheng0d92f5f2009-10-01 08:22:27 +0000767let mayLoad = 1, Uses = [SP], Defs = [SP], hasExtraDefRegAllocReq = 1 in
Bill Wendling602890d2010-11-19 01:33:10 +0000768def tPOP : T1I<(outs), (ins pred:$p, reglist:$regs, variable_ops),
Evan Chenga0792de2010-10-06 06:27:31 +0000769 IIC_iPop,
Bill Wendling602890d2010-11-19 01:33:10 +0000770 "pop${p}\t$regs", []>,
771 T1Misc<{1,1,0,?,?,?,?}> {
772 bits<16> regs;
Bill Wendling602890d2010-11-19 01:33:10 +0000773 let Inst{8} = regs{15};
774 let Inst{7-0} = regs{7-0};
775}
Evan Cheng4b322e52009-08-11 21:11:32 +0000776
Evan Cheng0d92f5f2009-10-01 08:22:27 +0000777let mayStore = 1, Uses = [SP], Defs = [SP], hasExtraSrcRegAllocReq = 1 in
Bill Wendling6179c312010-11-20 00:53:35 +0000778def tPUSH : T1I<(outs), (ins pred:$p, reglist:$regs, variable_ops),
Evan Chenga0792de2010-10-06 06:27:31 +0000779 IIC_iStore_m,
Bill Wendling6179c312010-11-20 00:53:35 +0000780 "push${p}\t$regs", []>,
781 T1Misc<{0,1,0,?,?,?,?}> {
782 bits<16> regs;
783 let Inst{8} = regs{14};
784 let Inst{7-0} = regs{7-0};
785}
Evan Chenga8e29892007-01-19 07:51:42 +0000786
787//===----------------------------------------------------------------------===//
788// Arithmetic Instructions.
789//
790
Bill Wendling1d045ee2010-12-01 02:28:08 +0000791// Helper classes for encoding T1pI patterns:
792class T1pIDPEncode<bits<4> opA, dag oops, dag iops, InstrItinClass itin,
793 string opc, string asm, list<dag> pattern>
794 : T1pI<oops, iops, itin, opc, asm, pattern>,
795 T1DataProcessing<opA> {
796 bits<3> Rm;
797 bits<3> Rn;
798 let Inst{5-3} = Rm;
799 let Inst{2-0} = Rn;
800}
801class T1pIMiscEncode<bits<7> opA, dag oops, dag iops, InstrItinClass itin,
802 string opc, string asm, list<dag> pattern>
803 : T1pI<oops, iops, itin, opc, asm, pattern>,
804 T1Misc<opA> {
805 bits<3> Rm;
806 bits<3> Rd;
807 let Inst{5-3} = Rm;
808 let Inst{2-0} = Rd;
809}
810
Bill Wendling76f4e102010-12-01 01:20:15 +0000811// Helper classes for encoding T1sI patterns:
812class T1sIDPEncode<bits<4> opA, dag oops, dag iops, InstrItinClass itin,
813 string opc, string asm, list<dag> pattern>
814 : T1sI<oops, iops, itin, opc, asm, pattern>,
815 T1DataProcessing<opA> {
816 bits<3> Rd;
817 bits<3> Rn;
818 let Inst{5-3} = Rn;
819 let Inst{2-0} = Rd;
820}
821class T1sIGenEncode<bits<5> opA, dag oops, dag iops, InstrItinClass itin,
822 string opc, string asm, list<dag> pattern>
823 : T1sI<oops, iops, itin, opc, asm, pattern>,
824 T1General<opA> {
825 bits<3> Rm;
826 bits<3> Rn;
827 bits<3> Rd;
828 let Inst{8-6} = Rm;
829 let Inst{5-3} = Rn;
830 let Inst{2-0} = Rd;
831}
832class T1sIGenEncodeImm<bits<5> opA, dag oops, dag iops, InstrItinClass itin,
833 string opc, string asm, list<dag> pattern>
834 : T1sI<oops, iops, itin, opc, asm, pattern>,
835 T1General<opA> {
836 bits<3> Rd;
837 bits<3> Rm;
838 let Inst{5-3} = Rm;
839 let Inst{2-0} = Rd;
840}
841
842// Helper classes for encoding T1sIt patterns:
Bill Wendlinga5a42d92010-12-01 00:48:44 +0000843class T1sItDPEncode<bits<4> opA, dag oops, dag iops, InstrItinClass itin,
844 string opc, string asm, list<dag> pattern>
845 : T1sIt<oops, iops, itin, opc, asm, pattern>,
846 T1DataProcessing<opA> {
Bill Wendling3f8c1102010-11-30 23:54:45 +0000847 bits<3> Rdn;
848 bits<3> Rm;
Bill Wendlinga5a42d92010-12-01 00:48:44 +0000849 let Inst{5-3} = Rm;
850 let Inst{2-0} = Rdn;
Bill Wendling95a6d172010-11-20 01:00:29 +0000851}
Bill Wendlinga5a42d92010-12-01 00:48:44 +0000852class T1sItGenEncodeImm<bits<5> opA, dag oops, dag iops, InstrItinClass itin,
853 string opc, string asm, list<dag> pattern>
854 : T1sIt<oops, iops, itin, opc, asm, pattern>,
855 T1General<opA> {
856 bits<3> Rdn;
857 bits<8> imm8;
858 let Inst{10-8} = Rdn;
859 let Inst{7-0} = imm8;
860}
861
862// Add with carry register
863let isCommutable = 1, Uses = [CPSR] in
864def tADC : // A8.6.2
865 T1sItDPEncode<0b0101, (outs tGPR:$Rdn), (ins tGPR:$Rn, tGPR:$Rm), IIC_iALUr,
866 "adc", "\t$Rdn, $Rm",
867 [(set tGPR:$Rdn, (adde tGPR:$Rn, tGPR:$Rm))]>;
Evan Cheng53d7dba2007-01-27 00:07:15 +0000868
David Goodwinc9ee1182009-06-25 22:49:55 +0000869// Add immediate
Bill Wendling76f4e102010-12-01 01:20:15 +0000870def tADDi3 : // A8.6.4 T1
Jim Grosbach89e2aa62011-08-16 23:57:34 +0000871 T1sIGenEncodeImm<0b01110, (outs tGPR:$Rd), (ins tGPR:$Rm, imm0_7:$imm3),
Jim Grosbachf921c0fe2011-06-13 22:54:22 +0000872 IIC_iALUi,
Bill Wendling76f4e102010-12-01 01:20:15 +0000873 "add", "\t$Rd, $Rm, $imm3",
874 [(set tGPR:$Rd, (add tGPR:$Rm, imm0_7:$imm3))]> {
Bill Wendling95a6d172010-11-20 01:00:29 +0000875 bits<3> imm3;
876 let Inst{8-6} = imm3;
Bill Wendling95a6d172010-11-20 01:00:29 +0000877}
Evan Chenga8e29892007-01-19 07:51:42 +0000878
Bill Wendlinga5a42d92010-12-01 00:48:44 +0000879def tADDi8 : // A8.6.4 T2
Jim Grosbach89e2aa62011-08-16 23:57:34 +0000880 T1sItGenEncodeImm<{1,1,0,?,?}, (outs tGPR:$Rdn),
881 (ins tGPR:$Rn, imm0_255:$imm8), IIC_iALUi,
Bill Wendlinga5a42d92010-12-01 00:48:44 +0000882 "add", "\t$Rdn, $imm8",
883 [(set tGPR:$Rdn, (add tGPR:$Rn, imm8_255:$imm8))]>;
Evan Chenga8e29892007-01-19 07:51:42 +0000884
David Goodwinc9ee1182009-06-25 22:49:55 +0000885// Add register
Evan Cheng446c4282009-07-11 06:43:01 +0000886let isCommutable = 1 in
Bill Wendling76f4e102010-12-01 01:20:15 +0000887def tADDrr : // A8.6.6 T1
888 T1sIGenEncode<0b01100, (outs tGPR:$Rd), (ins tGPR:$Rn, tGPR:$Rm),
889 IIC_iALUr,
890 "add", "\t$Rd, $Rn, $Rm",
891 [(set tGPR:$Rd, (add tGPR:$Rn, tGPR:$Rm))]>;
Evan Chenga8e29892007-01-19 07:51:42 +0000892
Evan Chengcd799b92009-06-12 20:46:18 +0000893let neverHasSideEffects = 1 in
Bill Wendling0b424dc2010-12-01 01:32:02 +0000894def tADDhirr : T1pIt<(outs GPR:$Rdn), (ins GPR:$Rn, GPR:$Rm), IIC_iALUr,
895 "add", "\t$Rdn, $Rm", []>,
Bill Wendlinga09cc2b2010-11-20 01:18:47 +0000896 T1Special<{0,0,?,?}> {
897 // A8.6.6 T2
Bill Wendling0b424dc2010-12-01 01:32:02 +0000898 bits<4> Rdn;
899 bits<4> Rm;
900 let Inst{7} = Rdn{3};
901 let Inst{6-3} = Rm;
902 let Inst{2-0} = Rdn{2-0};
Bill Wendlinga09cc2b2010-11-20 01:18:47 +0000903}
Evan Chenga8e29892007-01-19 07:51:42 +0000904
Bill Wendlinga09cc2b2010-11-20 01:18:47 +0000905// AND register
Evan Cheng446c4282009-07-11 06:43:01 +0000906let isCommutable = 1 in
Bill Wendlinga5a42d92010-12-01 00:48:44 +0000907def tAND : // A8.6.12
908 T1sItDPEncode<0b0000, (outs tGPR:$Rdn), (ins tGPR:$Rn, tGPR:$Rm),
909 IIC_iBITr,
910 "and", "\t$Rdn, $Rm",
911 [(set tGPR:$Rdn, (and tGPR:$Rn, tGPR:$Rm))]>;
Evan Chenga8e29892007-01-19 07:51:42 +0000912
David Goodwinc9ee1182009-06-25 22:49:55 +0000913// ASR immediate
Bill Wendling76f4e102010-12-01 01:20:15 +0000914def tASRri : // A8.6.14
Owen Anderson6d746312011-08-08 20:42:17 +0000915 T1sIGenEncodeImm<{0,1,0,?,?}, (outs tGPR:$Rd), (ins tGPR:$Rm, imm_sr:$imm5),
Bill Wendling76f4e102010-12-01 01:20:15 +0000916 IIC_iMOVsi,
917 "asr", "\t$Rd, $Rm, $imm5",
Owen Anderson6d746312011-08-08 20:42:17 +0000918 [(set tGPR:$Rd, (sra tGPR:$Rm, (i32 imm_sr:$imm5)))]> {
Bill Wendlinga09cc2b2010-11-20 01:18:47 +0000919 bits<5> imm5;
920 let Inst{10-6} = imm5;
Bill Wendlinga09cc2b2010-11-20 01:18:47 +0000921}
Evan Chenga8e29892007-01-19 07:51:42 +0000922
David Goodwinc9ee1182009-06-25 22:49:55 +0000923// ASR register
Bill Wendlinga5a42d92010-12-01 00:48:44 +0000924def tASRrr : // A8.6.15
925 T1sItDPEncode<0b0100, (outs tGPR:$Rdn), (ins tGPR:$Rn, tGPR:$Rm),
926 IIC_iMOVsr,
927 "asr", "\t$Rdn, $Rm",
928 [(set tGPR:$Rdn, (sra tGPR:$Rn, tGPR:$Rm))]>;
Evan Chenga8e29892007-01-19 07:51:42 +0000929
David Goodwinc9ee1182009-06-25 22:49:55 +0000930// BIC register
Bill Wendlinga5a42d92010-12-01 00:48:44 +0000931def tBIC : // A8.6.20
932 T1sItDPEncode<0b1110, (outs tGPR:$Rdn), (ins tGPR:$Rn, tGPR:$Rm),
933 IIC_iBITr,
934 "bic", "\t$Rdn, $Rm",
935 [(set tGPR:$Rdn, (and tGPR:$Rn, (not tGPR:$Rm)))]>;
Evan Chenga8e29892007-01-19 07:51:42 +0000936
David Goodwinc9ee1182009-06-25 22:49:55 +0000937// CMN register
Gabor Greiff7d10f52010-09-14 22:00:50 +0000938let isCompare = 1, Defs = [CPSR] in {
Jim Grosbachd5d2bae2010-01-22 00:08:13 +0000939//FIXME: Disable CMN, as CCodes are backwards from compare expectations
940// Compare-to-zero still works out, just not the relationals
Bill Wendling0480e282010-12-01 02:36:55 +0000941//def tCMN : // A8.6.33
942// T1pIDPEncode<0b1011, (outs), (ins tGPR:$lhs, tGPR:$rhs),
943// IIC_iCMPr,
944// "cmn", "\t$lhs, $rhs",
945// [(ARMcmp tGPR:$lhs, (ineg tGPR:$rhs))]>;
Bill Wendling1d045ee2010-12-01 02:28:08 +0000946
947def tCMNz : // A8.6.33
948 T1pIDPEncode<0b1011, (outs), (ins tGPR:$Rn, tGPR:$Rm),
949 IIC_iCMPr,
950 "cmn", "\t$Rn, $Rm",
951 [(ARMcmpZ tGPR:$Rn, (ineg tGPR:$Rm))]>;
952
953} // isCompare = 1, Defs = [CPSR]
Lauro Ramos Venancio99966632007-04-02 01:30:03 +0000954
David Goodwinc9ee1182009-06-25 22:49:55 +0000955// CMP immediate
Gabor Greiff7d10f52010-09-14 22:00:50 +0000956let isCompare = 1, Defs = [CPSR] in {
Jim Grosbach0d1511c2011-08-18 18:08:29 +0000957def tCMPi8 : T1pI<(outs), (ins tGPR:$Rn, imm0_255:$imm8), IIC_iCMPi,
Bill Wendling5cc88a22010-11-20 22:52:33 +0000958 "cmp", "\t$Rn, $imm8",
959 [(ARMcmp tGPR:$Rn, imm0_255:$imm8)]>,
960 T1General<{1,0,1,?,?}> {
961 // A8.6.35
962 bits<3> Rn;
963 bits<8> imm8;
964 let Inst{10-8} = Rn;
965 let Inst{7-0} = imm8;
966}
967
David Goodwinc9ee1182009-06-25 22:49:55 +0000968// CMP register
Bill Wendling1d045ee2010-12-01 02:28:08 +0000969def tCMPr : // A8.6.36 T1
970 T1pIDPEncode<0b1010, (outs), (ins tGPR:$Rn, tGPR:$Rm),
971 IIC_iCMPr,
972 "cmp", "\t$Rn, $Rm",
973 [(ARMcmp tGPR:$Rn, tGPR:$Rm)]>;
974
Bill Wendling849f2e32010-11-29 00:18:15 +0000975def tCMPhir : T1pI<(outs), (ins GPR:$Rn, GPR:$Rm), IIC_iCMPr,
976 "cmp", "\t$Rn, $Rm", []>,
977 T1Special<{0,1,?,?}> {
978 // A8.6.36 T2
979 bits<4> Rm;
980 bits<4> Rn;
981 let Inst{7} = Rn{3};
982 let Inst{6-3} = Rm;
983 let Inst{2-0} = Rn{2-0};
984}
Bill Wendling5cc88a22010-11-20 22:52:33 +0000985} // isCompare = 1, Defs = [CPSR]
Lauro Ramos Venancio99966632007-04-02 01:30:03 +0000986
Evan Chenga8e29892007-01-19 07:51:42 +0000987
David Goodwinc9ee1182009-06-25 22:49:55 +0000988// XOR register
Evan Cheng446c4282009-07-11 06:43:01 +0000989let isCommutable = 1 in
Bill Wendlinga5a42d92010-12-01 00:48:44 +0000990def tEOR : // A8.6.45
991 T1sItDPEncode<0b0001, (outs tGPR:$Rdn), (ins tGPR:$Rn, tGPR:$Rm),
992 IIC_iBITr,
993 "eor", "\t$Rdn, $Rm",
994 [(set tGPR:$Rdn, (xor tGPR:$Rn, tGPR:$Rm))]>;
Evan Chenga8e29892007-01-19 07:51:42 +0000995
David Goodwinc9ee1182009-06-25 22:49:55 +0000996// LSL immediate
Bill Wendling76f4e102010-12-01 01:20:15 +0000997def tLSLri : // A8.6.88
Jim Grosbach1b7b68f2011-08-19 19:29:25 +0000998 T1sIGenEncodeImm<{0,0,0,?,?}, (outs tGPR:$Rd), (ins tGPR:$Rm, imm0_31:$imm5),
Bill Wendling76f4e102010-12-01 01:20:15 +0000999 IIC_iMOVsi,
1000 "lsl", "\t$Rd, $Rm, $imm5",
1001 [(set tGPR:$Rd, (shl tGPR:$Rm, (i32 imm:$imm5)))]> {
Bill Wendlingdcf0a472010-11-21 11:49:36 +00001002 bits<5> imm5;
1003 let Inst{10-6} = imm5;
Bill Wendlingdcf0a472010-11-21 11:49:36 +00001004}
Evan Chenga8e29892007-01-19 07:51:42 +00001005
David Goodwinc9ee1182009-06-25 22:49:55 +00001006// LSL register
Bill Wendlinga5a42d92010-12-01 00:48:44 +00001007def tLSLrr : // A8.6.89
1008 T1sItDPEncode<0b0010, (outs tGPR:$Rdn), (ins tGPR:$Rn, tGPR:$Rm),
1009 IIC_iMOVsr,
1010 "lsl", "\t$Rdn, $Rm",
1011 [(set tGPR:$Rdn, (shl tGPR:$Rn, tGPR:$Rm))]>;
Evan Chenga8e29892007-01-19 07:51:42 +00001012
David Goodwinc9ee1182009-06-25 22:49:55 +00001013// LSR immediate
Bill Wendling76f4e102010-12-01 01:20:15 +00001014def tLSRri : // A8.6.90
Owen Anderson6d746312011-08-08 20:42:17 +00001015 T1sIGenEncodeImm<{0,0,1,?,?}, (outs tGPR:$Rd), (ins tGPR:$Rm, imm_sr:$imm5),
Bill Wendling76f4e102010-12-01 01:20:15 +00001016 IIC_iMOVsi,
1017 "lsr", "\t$Rd, $Rm, $imm5",
Owen Anderson6d746312011-08-08 20:42:17 +00001018 [(set tGPR:$Rd, (srl tGPR:$Rm, (i32 imm_sr:$imm5)))]> {
Bill Wendlingdcf0a472010-11-21 11:49:36 +00001019 bits<5> imm5;
1020 let Inst{10-6} = imm5;
Bill Wendlingdcf0a472010-11-21 11:49:36 +00001021}
Evan Chenga8e29892007-01-19 07:51:42 +00001022
David Goodwinc9ee1182009-06-25 22:49:55 +00001023// LSR register
Bill Wendlinga5a42d92010-12-01 00:48:44 +00001024def tLSRrr : // A8.6.91
1025 T1sItDPEncode<0b0011, (outs tGPR:$Rdn), (ins tGPR:$Rn, tGPR:$Rm),
1026 IIC_iMOVsr,
1027 "lsr", "\t$Rdn, $Rm",
1028 [(set tGPR:$Rdn, (srl tGPR:$Rn, tGPR:$Rm))]>;
Evan Chenga8e29892007-01-19 07:51:42 +00001029
Bill Wendlingdcf0a472010-11-21 11:49:36 +00001030// Move register
Evan Chengc4af4632010-11-17 20:13:28 +00001031let isMoveImm = 1 in
Jim Grosbach6b8f1e32011-06-27 23:54:06 +00001032def tMOVi8 : T1sI<(outs tGPR:$Rd), (ins imm0_255:$imm8), IIC_iMOVi,
Bill Wendlingdcf0a472010-11-21 11:49:36 +00001033 "mov", "\t$Rd, $imm8",
1034 [(set tGPR:$Rd, imm0_255:$imm8)]>,
1035 T1General<{1,0,0,?,?}> {
1036 // A8.6.96
1037 bits<3> Rd;
1038 bits<8> imm8;
1039 let Inst{10-8} = Rd;
1040 let Inst{7-0} = imm8;
1041}
Jim Grosbach4ec6e882011-08-19 20:46:54 +00001042// Because we have an explicit tMOVSr below, we need an alias to handle
1043// the immediate "movs" form here. Blech.
Jim Grosbacha33b31b2011-08-22 18:04:24 +00001044def : tInstAlias <"movs $Rdn, $imm",
1045 (tMOVi8 tGPR:$Rdn, CPSR, imm0_255:$imm, 14, 0)>;
Evan Chenga8e29892007-01-19 07:51:42 +00001046
Jim Grosbachefeedce2011-07-01 17:14:11 +00001047// A7-73: MOV(2) - mov setting flag.
Evan Chenga8e29892007-01-19 07:51:42 +00001048
Evan Chengcd799b92009-06-12 20:46:18 +00001049let neverHasSideEffects = 1 in {
Jim Grosbach2a7b41b2011-06-30 23:38:17 +00001050def tMOVr : Thumb1pI<(outs GPR:$Rd), (ins GPR:$Rm), AddrModeNone,
Owen Anderson16884412011-07-13 23:22:26 +00001051 2, IIC_iMOVr,
Jim Grosbach63b46fa2011-06-30 22:10:46 +00001052 "mov", "\t$Rd, $Rm", "", []>,
Jim Grosbach2a7b41b2011-06-30 23:38:17 +00001053 T1Special<{1,0,?,?}> {
Bill Wendling534a5e42010-12-03 01:55:47 +00001054 // A8.6.97
1055 bits<4> Rd;
1056 bits<4> Rm;
Jim Grosbach2a7b41b2011-06-30 23:38:17 +00001057 let Inst{7} = Rd{3};
1058 let Inst{6-3} = Rm;
Bill Wendling534a5e42010-12-03 01:55:47 +00001059 let Inst{2-0} = Rd{2-0};
1060}
Evan Cheng446c4282009-07-11 06:43:01 +00001061let Defs = [CPSR] in
Bill Wendling534a5e42010-12-03 01:55:47 +00001062def tMOVSr : T1I<(outs tGPR:$Rd), (ins tGPR:$Rm), IIC_iMOVr,
1063 "movs\t$Rd, $Rm", []>, Encoding16 {
1064 // A8.6.97
1065 bits<3> Rd;
1066 bits<3> Rm;
Johnny Chend68e1192009-12-15 17:24:14 +00001067 let Inst{15-6} = 0b0000000000;
Bill Wendling534a5e42010-12-03 01:55:47 +00001068 let Inst{5-3} = Rm;
1069 let Inst{2-0} = Rd;
Johnny Chend68e1192009-12-15 17:24:14 +00001070}
Evan Chengcd799b92009-06-12 20:46:18 +00001071} // neverHasSideEffects
Evan Chenga8e29892007-01-19 07:51:42 +00001072
Bill Wendling0480e282010-12-01 02:36:55 +00001073// Multiply register
Jim Grosbach86b5d2b2011-08-22 23:25:48 +00001074let isCommutable = 1 in
Bill Wendlinga5a42d92010-12-01 00:48:44 +00001075def tMUL : // A8.6.105 T1
Jim Grosbach88ae2bc2011-08-19 22:07:46 +00001076 Thumb1sI<(outs tGPR:$Rd), (ins tGPR:$Rn, tGPR:$Rm), AddrModeNone, 2,
1077 IIC_iMUL32, "mul", "\t$Rd, $Rn, $Rm", "$Rm = $Rd",
1078 [(set tGPR:$Rd, (mul tGPR:$Rn, tGPR:$Rm))]>,
1079 T1DataProcessing<0b1101> {
1080 bits<3> Rd;
1081 bits<3> Rn;
1082 let Inst{5-3} = Rn;
1083 let Inst{2-0} = Rd;
1084 let AsmMatchConverter = "cvtThumbMultiply";
1085}
1086
Jim Grosbacha33b31b2011-08-22 18:04:24 +00001087def :tInstAlias<"mul${s}${p} $Rdm, $Rn", (tMUL tGPR:$Rdm, s_cc_out:$s, tGPR:$Rn,
1088 pred:$p)>;
Evan Chenga8e29892007-01-19 07:51:42 +00001089
Bill Wendling76f4e102010-12-01 01:20:15 +00001090// Move inverse register
1091def tMVN : // A8.6.107
1092 T1sIDPEncode<0b1111, (outs tGPR:$Rd), (ins tGPR:$Rn), IIC_iMVNr,
1093 "mvn", "\t$Rd, $Rn",
1094 [(set tGPR:$Rd, (not tGPR:$Rn))]>;
Evan Chenga8e29892007-01-19 07:51:42 +00001095
Bill Wendlingdcf0a472010-11-21 11:49:36 +00001096// Bitwise or register
Evan Cheng446c4282009-07-11 06:43:01 +00001097let isCommutable = 1 in
Bill Wendlinga5a42d92010-12-01 00:48:44 +00001098def tORR : // A8.6.114
1099 T1sItDPEncode<0b1100, (outs tGPR:$Rdn), (ins tGPR:$Rn, tGPR:$Rm),
1100 IIC_iBITr,
1101 "orr", "\t$Rdn, $Rm",
1102 [(set tGPR:$Rdn, (or tGPR:$Rn, tGPR:$Rm))]>;
Evan Chenga8e29892007-01-19 07:51:42 +00001103
Bill Wendlingdcf0a472010-11-21 11:49:36 +00001104// Swaps
Bill Wendling1d045ee2010-12-01 02:28:08 +00001105def tREV : // A8.6.134
1106 T1pIMiscEncode<{1,0,1,0,0,0,?}, (outs tGPR:$Rd), (ins tGPR:$Rm),
1107 IIC_iUNAr,
1108 "rev", "\t$Rd, $Rm",
1109 [(set tGPR:$Rd, (bswap tGPR:$Rm))]>,
1110 Requires<[IsThumb, IsThumb1Only, HasV6]>;
Evan Chenga8e29892007-01-19 07:51:42 +00001111
Bill Wendling1d045ee2010-12-01 02:28:08 +00001112def tREV16 : // A8.6.135
1113 T1pIMiscEncode<{1,0,1,0,0,1,?}, (outs tGPR:$Rd), (ins tGPR:$Rm),
1114 IIC_iUNAr,
1115 "rev16", "\t$Rd, $Rm",
Evan Cheng9568e5c2011-06-21 06:01:08 +00001116 [(set tGPR:$Rd, (rotr (bswap tGPR:$Rm), (i32 16)))]>,
Bill Wendling1d045ee2010-12-01 02:28:08 +00001117 Requires<[IsThumb, IsThumb1Only, HasV6]>;
Evan Chenga8e29892007-01-19 07:51:42 +00001118
Bill Wendling1d045ee2010-12-01 02:28:08 +00001119def tREVSH : // A8.6.136
1120 T1pIMiscEncode<{1,0,1,0,1,1,?}, (outs tGPR:$Rd), (ins tGPR:$Rm),
1121 IIC_iUNAr,
1122 "revsh", "\t$Rd, $Rm",
Evan Cheng9568e5c2011-06-21 06:01:08 +00001123 [(set tGPR:$Rd, (sra (bswap tGPR:$Rm), (i32 16)))]>,
Bill Wendling1d045ee2010-12-01 02:28:08 +00001124 Requires<[IsThumb, IsThumb1Only, HasV6]>;
Evan Cheng446c4282009-07-11 06:43:01 +00001125
Bill Wendlinga5a42d92010-12-01 00:48:44 +00001126// Rotate right register
1127def tROR : // A8.6.139
1128 T1sItDPEncode<0b0111, (outs tGPR:$Rdn), (ins tGPR:$Rn, tGPR:$Rm),
1129 IIC_iMOVsr,
1130 "ror", "\t$Rdn, $Rm",
1131 [(set tGPR:$Rdn, (rotr tGPR:$Rn, tGPR:$Rm))]>;
Evan Cheng446c4282009-07-11 06:43:01 +00001132
Bill Wendlinga5a42d92010-12-01 00:48:44 +00001133// Negate register
Bill Wendling76f4e102010-12-01 01:20:15 +00001134def tRSB : // A8.6.141
1135 T1sIDPEncode<0b1001, (outs tGPR:$Rd), (ins tGPR:$Rn),
1136 IIC_iALUi,
1137 "rsb", "\t$Rd, $Rn, #0",
1138 [(set tGPR:$Rd, (ineg tGPR:$Rn))]>;
Evan Chenga8e29892007-01-19 07:51:42 +00001139
David Goodwinc9ee1182009-06-25 22:49:55 +00001140// Subtract with carry register
Evan Cheng446c4282009-07-11 06:43:01 +00001141let Uses = [CPSR] in
Bill Wendlinga5a42d92010-12-01 00:48:44 +00001142def tSBC : // A8.6.151
1143 T1sItDPEncode<0b0110, (outs tGPR:$Rdn), (ins tGPR:$Rn, tGPR:$Rm),
1144 IIC_iALUr,
1145 "sbc", "\t$Rdn, $Rm",
1146 [(set tGPR:$Rdn, (sube tGPR:$Rn, tGPR:$Rm))]>;
Evan Chenga8e29892007-01-19 07:51:42 +00001147
David Goodwinc9ee1182009-06-25 22:49:55 +00001148// Subtract immediate
Bill Wendling76f4e102010-12-01 01:20:15 +00001149def tSUBi3 : // A8.6.210 T1
Jim Grosbachf67e8552011-09-16 22:58:42 +00001150 T1sIGenEncodeImm<0b01111, (outs tGPR:$Rd), (ins tGPR:$Rm, imm0_7:$imm3),
Bill Wendling76f4e102010-12-01 01:20:15 +00001151 IIC_iALUi,
1152 "sub", "\t$Rd, $Rm, $imm3",
1153 [(set tGPR:$Rd, (add tGPR:$Rm, imm0_7_neg:$imm3))]> {
Bill Wendling5cbbf682010-11-29 01:00:43 +00001154 bits<3> imm3;
Bill Wendling5cbbf682010-11-29 01:00:43 +00001155 let Inst{8-6} = imm3;
Bill Wendling5cbbf682010-11-29 01:00:43 +00001156}
Jim Grosbach0ede14f2009-03-27 23:06:27 +00001157
Bill Wendlinga5a42d92010-12-01 00:48:44 +00001158def tSUBi8 : // A8.6.210 T2
Jim Grosbachf67e8552011-09-16 22:58:42 +00001159 T1sItGenEncodeImm<{1,1,1,?,?}, (outs tGPR:$Rdn),
1160 (ins tGPR:$Rn, imm0_255:$imm8), IIC_iALUi,
Bill Wendlinga5a42d92010-12-01 00:48:44 +00001161 "sub", "\t$Rdn, $imm8",
1162 [(set tGPR:$Rdn, (add tGPR:$Rn, imm8_255_neg:$imm8))]>;
Jim Grosbach0ede14f2009-03-27 23:06:27 +00001163
Bill Wendling76f4e102010-12-01 01:20:15 +00001164// Subtract register
1165def tSUBrr : // A8.6.212
1166 T1sIGenEncode<0b01101, (outs tGPR:$Rd), (ins tGPR:$Rn, tGPR:$Rm),
1167 IIC_iALUr,
1168 "sub", "\t$Rd, $Rn, $Rm",
1169 [(set tGPR:$Rd, (sub tGPR:$Rn, tGPR:$Rm))]>;
David Goodwinc9ee1182009-06-25 22:49:55 +00001170
Bill Wendling76f4e102010-12-01 01:20:15 +00001171// Sign-extend byte
Bill Wendling1d045ee2010-12-01 02:28:08 +00001172def tSXTB : // A8.6.222
1173 T1pIMiscEncode<{0,0,1,0,0,1,?}, (outs tGPR:$Rd), (ins tGPR:$Rm),
1174 IIC_iUNAr,
1175 "sxtb", "\t$Rd, $Rm",
1176 [(set tGPR:$Rd, (sext_inreg tGPR:$Rm, i8))]>,
1177 Requires<[IsThumb, IsThumb1Only, HasV6]>;
David Goodwinc9ee1182009-06-25 22:49:55 +00001178
Bill Wendling1d045ee2010-12-01 02:28:08 +00001179// Sign-extend short
1180def tSXTH : // A8.6.224
1181 T1pIMiscEncode<{0,0,1,0,0,0,?}, (outs tGPR:$Rd), (ins tGPR:$Rm),
1182 IIC_iUNAr,
1183 "sxth", "\t$Rd, $Rm",
1184 [(set tGPR:$Rd, (sext_inreg tGPR:$Rm, i16))]>,
1185 Requires<[IsThumb, IsThumb1Only, HasV6]>;
Evan Chenga8e29892007-01-19 07:51:42 +00001186
Bill Wendling1d045ee2010-12-01 02:28:08 +00001187// Test
Gabor Greif007248b2010-09-14 20:47:43 +00001188let isCompare = 1, isCommutable = 1, Defs = [CPSR] in
Bill Wendling1d045ee2010-12-01 02:28:08 +00001189def tTST : // A8.6.230
1190 T1pIDPEncode<0b1000, (outs), (ins tGPR:$Rn, tGPR:$Rm), IIC_iTSTr,
1191 "tst", "\t$Rn, $Rm",
1192 [(ARMcmpZ (and_su tGPR:$Rn, tGPR:$Rm), 0)]>;
Evan Chenga8e29892007-01-19 07:51:42 +00001193
Bill Wendling1d045ee2010-12-01 02:28:08 +00001194// Zero-extend byte
1195def tUXTB : // A8.6.262
1196 T1pIMiscEncode<{0,0,1,0,1,1,?}, (outs tGPR:$Rd), (ins tGPR:$Rm),
1197 IIC_iUNAr,
1198 "uxtb", "\t$Rd, $Rm",
1199 [(set tGPR:$Rd, (and tGPR:$Rm, 0xFF))]>,
1200 Requires<[IsThumb, IsThumb1Only, HasV6]>;
David Goodwinc9ee1182009-06-25 22:49:55 +00001201
Bill Wendling1d045ee2010-12-01 02:28:08 +00001202// Zero-extend short
1203def tUXTH : // A8.6.264
1204 T1pIMiscEncode<{0,0,1,0,1,0,?}, (outs tGPR:$Rd), (ins tGPR:$Rm),
1205 IIC_iUNAr,
1206 "uxth", "\t$Rd, $Rm",
1207 [(set tGPR:$Rd, (and tGPR:$Rm, 0xFFFF))]>,
1208 Requires<[IsThumb, IsThumb1Only, HasV6]>;
Evan Chenga8e29892007-01-19 07:51:42 +00001209
Jim Grosbach80dc1162010-02-16 21:23:02 +00001210// Conditional move tMOVCCr - Used to implement the Thumb SELECT_CC operation.
Dan Gohman533297b2009-10-29 18:10:34 +00001211// Expanded after instruction selection into a branch sequence.
1212let usesCustomInserter = 1 in // Expanded after instruction selection.
Evan Cheng007ea272009-08-12 05:17:19 +00001213 def tMOVCCr_pseudo :
Evan Chengc9721652009-08-12 02:03:03 +00001214 PseudoInst<(outs tGPR:$dst), (ins tGPR:$false, tGPR:$true, pred:$cc),
Jim Grosbach99594eb2010-11-18 01:38:26 +00001215 NoItinerary,
Evan Chengc9721652009-08-12 02:03:03 +00001216 [/*(set tGPR:$dst, (ARMcmov tGPR:$false, tGPR:$true, imm:$cc))*/]>;
Evan Chenga8e29892007-01-19 07:51:42 +00001217
1218// tLEApcrel - Load a pc-relative address into a register without offending the
1219// assembler.
Jim Grosbachd40963c2010-12-14 22:28:03 +00001220
1221def tADR : T1I<(outs tGPR:$Rd), (ins t_adrlabel:$addr, pred:$p),
Jim Grosbach5a1cd042011-08-17 20:37:40 +00001222 IIC_iALUi, "adr{$p}\t$Rd, $addr", []>,
Jim Grosbachd40963c2010-12-14 22:28:03 +00001223 T1Encoding<{1,0,1,0,0,?}> {
Bill Wendling67077412010-11-30 00:18:30 +00001224 bits<3> Rd;
Jim Grosbachd40963c2010-12-14 22:28:03 +00001225 bits<8> addr;
Bill Wendling67077412010-11-30 00:18:30 +00001226 let Inst{10-8} = Rd;
Jim Grosbachd40963c2010-12-14 22:28:03 +00001227 let Inst{7-0} = addr;
Owen Anderson8d7d2e12011-08-09 20:55:18 +00001228 let DecoderMethod = "DecodeThumbAddSpecialReg";
Bill Wendling67077412010-11-30 00:18:30 +00001229}
Evan Chenga8e29892007-01-19 07:51:42 +00001230
Jim Grosbachd40963c2010-12-14 22:28:03 +00001231let neverHasSideEffects = 1, isReMaterializable = 1 in
1232def tLEApcrel : tPseudoInst<(outs tGPR:$Rd), (ins i32imm:$label, pred:$p),
Owen Anderson16884412011-07-13 23:22:26 +00001233 2, IIC_iALUi, []>;
Jim Grosbachd40963c2010-12-14 22:28:03 +00001234
1235def tLEApcrelJT : tPseudoInst<(outs tGPR:$Rd),
1236 (ins i32imm:$label, nohash_imm:$id, pred:$p),
Owen Anderson16884412011-07-13 23:22:26 +00001237 2, IIC_iALUi, []>;
Evan Chengd85ac4d2007-01-27 02:29:45 +00001238
Evan Chenga8e29892007-01-19 07:51:42 +00001239//===----------------------------------------------------------------------===//
Lauro Ramos Venancio64f4fa52007-04-27 13:54:47 +00001240// TLS Instructions
1241//
1242
1243// __aeabi_read_tp preserves the registers r1-r3.
Jim Grosbachff97eb02011-06-30 19:38:01 +00001244// This is a pseudo inst so that we can get the encoding right,
1245// complete with fixup for the aeabi_read_tp function.
1246let isCall = 1, Defs = [R0, R12, LR, CPSR], Uses = [SP] in
Owen Anderson16884412011-07-13 23:22:26 +00001247def tTPsoft : tPseudoInst<(outs), (ins), 4, IIC_Br,
Jim Grosbachff97eb02011-06-30 19:38:01 +00001248 [(set R0, ARMthread_pointer)]>;
Lauro Ramos Venancio64f4fa52007-04-27 13:54:47 +00001249
Bill Wendling0480e282010-12-01 02:36:55 +00001250//===----------------------------------------------------------------------===//
Jim Grosbachd1228742009-12-01 18:10:36 +00001251// SJLJ Exception handling intrinsics
Owen Anderson18901d62011-05-11 17:00:48 +00001252//
Bill Wendling0480e282010-12-01 02:36:55 +00001253
1254// eh_sjlj_setjmp() is an instruction sequence to store the return address and
1255// save #0 in R0 for the non-longjmp case. Since by its nature we may be coming
1256// from some other function to get here, and we're using the stack frame for the
1257// containing function to save/restore registers, we can't keep anything live in
1258// regs across the eh_sjlj_setjmp(), else it will almost certainly have been
Chris Lattner7a2bdde2011-04-15 05:18:47 +00001259// tromped upon when we get here from a longjmp(). We force everything out of
Bill Wendling0480e282010-12-01 02:36:55 +00001260// registers except for our own input by listing the relevant registers in
1261// Defs. By doing so, we also cause the prologue/epilogue code to actively
1262// preserve all of the callee-saved resgisters, which is exactly what we want.
1263// $val is a scratch register for our use.
Andrew Tricka1099f12011-06-07 00:08:49 +00001264let Defs = [ R0, R1, R2, R3, R4, R5, R6, R7, R12, CPSR ],
Bill Wendling13a71212011-10-17 22:26:23 +00001265 hasSideEffects = 1, isBarrier = 1, isCodeGenOnly = 1,
1266 usesCustomInserter = 1 in
Bill Wendling0e45a5a2010-11-30 00:50:22 +00001267def tInt_eh_sjlj_setjmp : ThumbXI<(outs),(ins tGPR:$src, tGPR:$val),
Owen Anderson16884412011-07-13 23:22:26 +00001268 AddrModeNone, 0, NoItinerary, "","",
Bill Wendling0e45a5a2010-11-30 00:50:22 +00001269 [(set R0, (ARMeh_sjlj_setjmp tGPR:$src, tGPR:$val))]>;
Jim Grosbach5eb19512010-05-22 01:06:18 +00001270
Evan Chengafff9412011-12-20 18:26:50 +00001271// FIXME: Non-IOS version(s)
Chris Lattnera4a3a5e2010-10-31 19:15:18 +00001272let isBarrier = 1, hasSideEffects = 1, isTerminator = 1, isCodeGenOnly = 1,
Bill Wendling0e45a5a2010-11-30 00:50:22 +00001273 Defs = [ R7, LR, SP ] in
Jim Grosbach5eb19512010-05-22 01:06:18 +00001274def tInt_eh_sjlj_longjmp : XI<(outs), (ins GPR:$src, GPR:$scratch),
Owen Anderson16884412011-07-13 23:22:26 +00001275 AddrModeNone, 0, IndexModeNone,
Bill Wendling0e45a5a2010-11-30 00:50:22 +00001276 Pseudo, NoItinerary, "", "",
1277 [(ARMeh_sjlj_longjmp GPR:$src, GPR:$scratch)]>,
Evan Chengafff9412011-12-20 18:26:50 +00001278 Requires<[IsThumb, IsIOS]>;
Jim Grosbach5eb19512010-05-22 01:06:18 +00001279
Bob Wilsonf4aea8f2011-12-22 23:39:48 +00001280let Defs = [ R0, R1, R2, R3, R4, R5, R6, R7, R12, CPSR ],
1281 isBarrier = 1 in
1282def tInt_eh_sjlj_dispatchsetup : PseudoInst<(outs), (ins), NoItinerary, []>;
1283
Lauro Ramos Venancio64f4fa52007-04-27 13:54:47 +00001284//===----------------------------------------------------------------------===//
Evan Chenga8e29892007-01-19 07:51:42 +00001285// Non-Instruction Patterns
1286//
1287
Jim Grosbach97a884d2010-12-07 20:41:06 +00001288// Comparisons
1289def : T1Pat<(ARMcmpZ tGPR:$Rn, imm0_255:$imm8),
1290 (tCMPi8 tGPR:$Rn, imm0_255:$imm8)>;
1291def : T1Pat<(ARMcmpZ tGPR:$Rn, tGPR:$Rm),
1292 (tCMPr tGPR:$Rn, tGPR:$Rm)>;
1293
Evan Cheng892837a2009-07-10 02:09:04 +00001294// Add with carry
David Goodwinc9d138f2009-07-27 19:59:26 +00001295def : T1Pat<(addc tGPR:$lhs, imm0_7:$rhs),
1296 (tADDi3 tGPR:$lhs, imm0_7:$rhs)>;
1297def : T1Pat<(addc tGPR:$lhs, imm8_255:$rhs),
Evan Cheng89d177f2009-08-20 17:01:04 +00001298 (tADDi8 tGPR:$lhs, imm8_255:$rhs)>;
David Goodwinc9d138f2009-07-27 19:59:26 +00001299def : T1Pat<(addc tGPR:$lhs, tGPR:$rhs),
1300 (tADDrr tGPR:$lhs, tGPR:$rhs)>;
Evan Cheng892837a2009-07-10 02:09:04 +00001301
1302// Subtract with carry
David Goodwinc9d138f2009-07-27 19:59:26 +00001303def : T1Pat<(addc tGPR:$lhs, imm0_7_neg:$rhs),
1304 (tSUBi3 tGPR:$lhs, imm0_7_neg:$rhs)>;
1305def : T1Pat<(addc tGPR:$lhs, imm8_255_neg:$rhs),
1306 (tSUBi8 tGPR:$lhs, imm8_255_neg:$rhs)>;
1307def : T1Pat<(subc tGPR:$lhs, tGPR:$rhs),
1308 (tSUBrr tGPR:$lhs, tGPR:$rhs)>;
Evan Cheng892837a2009-07-10 02:09:04 +00001309
Evan Chenga8e29892007-01-19 07:51:42 +00001310// ConstantPool, GlobalAddress
David Goodwinc9d138f2009-07-27 19:59:26 +00001311def : T1Pat<(ARMWrapper tglobaladdr :$dst), (tLEApcrel tglobaladdr :$dst)>;
1312def : T1Pat<(ARMWrapper tconstpool :$dst), (tLEApcrel tconstpool :$dst)>;
Evan Chenga8e29892007-01-19 07:51:42 +00001313
Evan Chengd85ac4d2007-01-27 02:29:45 +00001314// JumpTable
David Goodwinc9d138f2009-07-27 19:59:26 +00001315def : T1Pat<(ARMWrapperJT tjumptable:$dst, imm:$id),
1316 (tLEApcrelJT tjumptable:$dst, imm:$id)>;
Evan Chengd85ac4d2007-01-27 02:29:45 +00001317
Evan Chenga8e29892007-01-19 07:51:42 +00001318// Direct calls
Evan Cheng20a2a0a2009-07-29 21:26:42 +00001319def : T1Pat<(ARMtcall texternalsym:$func), (tBL texternalsym:$func)>,
Evan Chengafff9412011-12-20 18:26:50 +00001320 Requires<[IsThumb, IsNotIOS]>;
Evan Cheng20a2a0a2009-07-29 21:26:42 +00001321def : T1Pat<(ARMtcall texternalsym:$func), (tBLr9 texternalsym:$func)>,
Evan Chengafff9412011-12-20 18:26:50 +00001322 Requires<[IsThumb, IsIOS]>;
Evan Cheng20a2a0a2009-07-29 21:26:42 +00001323
1324def : Tv5Pat<(ARMcall texternalsym:$func), (tBLXi texternalsym:$func)>,
Evan Chengafff9412011-12-20 18:26:50 +00001325 Requires<[IsThumb, HasV5T, IsNotIOS]>;
Evan Cheng20a2a0a2009-07-29 21:26:42 +00001326def : Tv5Pat<(ARMcall texternalsym:$func), (tBLXi_r9 texternalsym:$func)>,
Evan Chengafff9412011-12-20 18:26:50 +00001327 Requires<[IsThumb, HasV5T, IsIOS]>;
Evan Chenga8e29892007-01-19 07:51:42 +00001328
1329// Indirect calls to ARM routines
Evan Chengb6207242009-08-01 00:16:10 +00001330def : Tv5Pat<(ARMcall GPR:$dst), (tBLXr GPR:$dst)>,
Evan Chengafff9412011-12-20 18:26:50 +00001331 Requires<[IsThumb, HasV5T, IsNotIOS]>;
Evan Chengb6207242009-08-01 00:16:10 +00001332def : Tv5Pat<(ARMcall GPR:$dst), (tBLXr_r9 GPR:$dst)>,
Evan Chengafff9412011-12-20 18:26:50 +00001333 Requires<[IsThumb, HasV5T, IsIOS]>;
Evan Chenga8e29892007-01-19 07:51:42 +00001334
1335// zextload i1 -> zextload i8
Bill Wendlingf4caf692010-12-14 03:36:38 +00001336def : T1Pat<(zextloadi1 t_addrmode_rrs1:$addr),
1337 (tLDRBr t_addrmode_rrs1:$addr)>;
1338def : T1Pat<(zextloadi1 t_addrmode_is1:$addr),
1339 (tLDRBi t_addrmode_is1:$addr)>;
Jim Grosbach0ede14f2009-03-27 23:06:27 +00001340
Evan Chengb60c02e2007-01-26 19:13:16 +00001341// extload -> zextload
Bill Wendlingf4caf692010-12-14 03:36:38 +00001342def : T1Pat<(extloadi1 t_addrmode_rrs1:$addr), (tLDRBr t_addrmode_rrs1:$addr)>;
1343def : T1Pat<(extloadi1 t_addrmode_is1:$addr), (tLDRBi t_addrmode_is1:$addr)>;
1344def : T1Pat<(extloadi8 t_addrmode_rrs1:$addr), (tLDRBr t_addrmode_rrs1:$addr)>;
1345def : T1Pat<(extloadi8 t_addrmode_is1:$addr), (tLDRBi t_addrmode_is1:$addr)>;
1346def : T1Pat<(extloadi16 t_addrmode_rrs2:$addr), (tLDRHr t_addrmode_rrs2:$addr)>;
1347def : T1Pat<(extloadi16 t_addrmode_is2:$addr), (tLDRHi t_addrmode_is2:$addr)>;
Evan Chengb60c02e2007-01-26 19:13:16 +00001348
Evan Cheng0e87e232009-08-28 00:31:43 +00001349// If it's impossible to use [r,r] address mode for sextload, select to
Evan Cheng2f297df2009-07-11 07:08:13 +00001350// ldr{b|h} + sxt{b|h} instead.
Bill Wendling415af342010-12-15 00:58:57 +00001351def : T1Pat<(sextloadi8 t_addrmode_is1:$addr),
1352 (tSXTB (tLDRBi t_addrmode_is1:$addr))>,
1353 Requires<[IsThumb, IsThumb1Only, HasV6]>;
Bill Wendlingf4caf692010-12-14 03:36:38 +00001354def : T1Pat<(sextloadi8 t_addrmode_rrs1:$addr),
1355 (tSXTB (tLDRBr t_addrmode_rrs1:$addr))>,
Jim Grosbach6797f892010-11-01 17:08:58 +00001356 Requires<[IsThumb, IsThumb1Only, HasV6]>;
Bill Wendling415af342010-12-15 00:58:57 +00001357def : T1Pat<(sextloadi16 t_addrmode_is2:$addr),
1358 (tSXTH (tLDRHi t_addrmode_is2:$addr))>,
1359 Requires<[IsThumb, IsThumb1Only, HasV6]>;
Bill Wendlingf4caf692010-12-14 03:36:38 +00001360def : T1Pat<(sextloadi16 t_addrmode_rrs2:$addr),
1361 (tSXTH (tLDRHr t_addrmode_rrs2:$addr))>,
Jim Grosbach6797f892010-11-01 17:08:58 +00001362 Requires<[IsThumb, IsThumb1Only, HasV6]>;
Evan Cheng2f297df2009-07-11 07:08:13 +00001363
Bill Wendlingf4caf692010-12-14 03:36:38 +00001364def : T1Pat<(sextloadi8 t_addrmode_rrs1:$addr),
1365 (tASRri (tLSLri (tLDRBr t_addrmode_rrs1:$addr), 24), 24)>;
Bill Wendling415af342010-12-15 00:58:57 +00001366def : T1Pat<(sextloadi8 t_addrmode_is1:$addr),
1367 (tASRri (tLSLri (tLDRBi t_addrmode_is1:$addr), 24), 24)>;
1368def : T1Pat<(sextloadi16 t_addrmode_rrs2:$addr),
1369 (tASRri (tLSLri (tLDRHr t_addrmode_rrs2:$addr), 16), 16)>;
1370def : T1Pat<(sextloadi16 t_addrmode_is2:$addr),
1371 (tASRri (tLSLri (tLDRHi t_addrmode_is2:$addr), 16), 16)>;
Evan Cheng2f297df2009-07-11 07:08:13 +00001372
Eli Friedman7cc15662011-09-15 22:18:49 +00001373def : T1Pat<(atomic_load_8 t_addrmode_is1:$src),
1374 (tLDRBi t_addrmode_is1:$src)>;
1375def : T1Pat<(atomic_load_8 t_addrmode_rrs1:$src),
1376 (tLDRBr t_addrmode_rrs1:$src)>;
1377def : T1Pat<(atomic_load_16 t_addrmode_is2:$src),
1378 (tLDRHi t_addrmode_is2:$src)>;
1379def : T1Pat<(atomic_load_16 t_addrmode_rrs2:$src),
1380 (tLDRHr t_addrmode_rrs2:$src)>;
1381def : T1Pat<(atomic_load_32 t_addrmode_is4:$src),
1382 (tLDRi t_addrmode_is4:$src)>;
1383def : T1Pat<(atomic_load_32 t_addrmode_rrs4:$src),
1384 (tLDRr t_addrmode_rrs4:$src)>;
1385def : T1Pat<(atomic_store_8 t_addrmode_is1:$ptr, tGPR:$val),
1386 (tSTRBi tGPR:$val, t_addrmode_is1:$ptr)>;
1387def : T1Pat<(atomic_store_8 t_addrmode_rrs1:$ptr, tGPR:$val),
1388 (tSTRBr tGPR:$val, t_addrmode_rrs1:$ptr)>;
1389def : T1Pat<(atomic_store_16 t_addrmode_is2:$ptr, tGPR:$val),
1390 (tSTRHi tGPR:$val, t_addrmode_is2:$ptr)>;
1391def : T1Pat<(atomic_store_16 t_addrmode_rrs2:$ptr, tGPR:$val),
1392 (tSTRHr tGPR:$val, t_addrmode_rrs2:$ptr)>;
1393def : T1Pat<(atomic_store_32 t_addrmode_is4:$ptr, tGPR:$val),
1394 (tSTRi tGPR:$val, t_addrmode_is4:$ptr)>;
1395def : T1Pat<(atomic_store_32 t_addrmode_rrs4:$ptr, tGPR:$val),
1396 (tSTRr tGPR:$val, t_addrmode_rrs4:$ptr)>;
1397
Evan Chenga8e29892007-01-19 07:51:42 +00001398// Large immediate handling.
1399
1400// Two piece imms.
Evan Cheng9cb9e672009-06-27 02:26:13 +00001401def : T1Pat<(i32 thumb_immshifted:$src),
1402 (tLSLri (tMOVi8 (thumb_immshifted_val imm:$src)),
1403 (thumb_immshifted_shamt imm:$src))>;
Evan Chenga8e29892007-01-19 07:51:42 +00001404
Evan Cheng9cb9e672009-06-27 02:26:13 +00001405def : T1Pat<(i32 imm0_255_comp:$src),
1406 (tMVN (tMOVi8 (imm_comp_XFORM imm:$src)))>;
Evan Chengb9803a82009-11-06 23:52:48 +00001407
1408// Pseudo instruction that combines ldr from constpool and add pc. This should
1409// be expanded into two instructions late to allow if-conversion and
1410// scheduling.
1411let isReMaterializable = 1 in
1412def tLDRpci_pic : PseudoInst<(outs GPR:$dst), (ins i32imm:$addr, pclabel:$cp),
Bill Wendling0480e282010-12-01 02:36:55 +00001413 NoItinerary,
Evan Chengb9803a82009-11-06 23:52:48 +00001414 [(set GPR:$dst, (ARMpic_add (load (ARMWrapper tconstpool:$addr)),
1415 imm:$cp))]>,
Jim Grosbach6797f892010-11-01 17:08:58 +00001416 Requires<[IsThumb, IsThumb1Only]>;
Jim Grosbach53e3fc42011-07-08 17:40:42 +00001417
1418// Pseudo-instruction for merged POP and return.
1419// FIXME: remove when we have a way to marking a MI with these properties.
1420let isReturn = 1, isTerminator = 1, isBarrier = 1, mayLoad = 1,
1421 hasExtraDefRegAllocReq = 1 in
1422def tPOP_RET : tPseudoExpand<(outs), (ins pred:$p, reglist:$regs, variable_ops),
Owen Anderson16884412011-07-13 23:22:26 +00001423 2, IIC_iPop_Br, [],
Jim Grosbach53e3fc42011-07-08 17:40:42 +00001424 (tPOP pred:$p, reglist:$regs)>;
1425
Jim Grosbachaa8d1b82011-07-08 22:25:23 +00001426// Indirect branch using "mov pc, $Rm"
1427let isBranch = 1, isTerminator = 1, isBarrier = 1, isIndirectBranch = 1 in {
Jim Grosbach7e61a312011-07-08 22:33:49 +00001428 def tBRIND : tPseudoExpand<(outs), (ins GPR:$Rm, pred:$p),
Owen Anderson16884412011-07-13 23:22:26 +00001429 2, IIC_Br, [(brind GPR:$Rm)],
Jim Grosbach7e61a312011-07-08 22:33:49 +00001430 (tMOVr PC, GPR:$Rm, pred:$p)>;
Jim Grosbachaa8d1b82011-07-08 22:25:23 +00001431}
Jim Grosbach0780b632011-08-19 23:24:36 +00001432
1433
1434// In Thumb1, "nop" is encoded as a "mov r8, r8". Technically, the bf00
1435// encoding is available on ARMv6K, but we don't differentiate that finely.
1436def : InstAlias<"nop", (tMOVr R8, R8, 14, 0)>,Requires<[IsThumb, IsThumb1Only]>;
Jim Grosbachabb8aac2011-09-20 00:10:37 +00001437
1438
1439// For round-trip assembly/disassembly, we have to handle a CPS instruction
1440// without any iflags. That's not, strictly speaking, valid syntax, but it's
1441// a useful extention and assembles to defined behaviour (the insn does
1442// nothing).
1443def : tInstAlias<"cps$imod", (tCPS imod_op:$imod, 0)>;
1444def : tInstAlias<"cps$imod", (tCPS imod_op:$imod, 0)>;
Jim Grosbache91e7bc2011-12-13 20:23:22 +00001445
1446// "neg" is and alias for "rsb rd, rn, #0"
1447def : tInstAlias<"neg${s}${p} $Rd, $Rm",
1448 (tRSB tGPR:$Rd, s_cc_out:$s, tGPR:$Rm, pred:$p)>;
1449