blob: 6c45ccc5aebedad667eb906958ee71c6fc10a609 [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}
Jim Grosbach4e53fe82012-04-05 20:57:13 +000094// Alias use only, so no printer is necessary.
95def t_imm0_508s4_neg_asmoperand: AsmOperandClass { let Name = "Imm0_508s4Neg"; }
96def t_imm0_508s4_neg : Operand<i32> {
97 let ParserMatchClass = t_imm0_508s4_neg_asmoperand;
98 let OperandType = "OPERAND_IMMEDIATE";
99}
Evan Cheng2ef9c8a2009-11-19 06:57:41 +0000100
Evan Chenga8e29892007-01-19 07:51:42 +0000101// Define Thumb specific addressing modes.
102
Benjamin Kramer151bd172011-07-14 21:47:24 +0000103let OperandType = "OPERAND_PCREL" in {
Jim Grosbache2467172010-12-10 18:21:33 +0000104def t_brtarget : Operand<OtherVT> {
105 let EncoderMethod = "getThumbBRTargetOpValue";
Owen Anderson8d7d2e12011-08-09 20:55:18 +0000106 let DecoderMethod = "DecodeThumbBROperand";
Jim Grosbache2467172010-12-10 18:21:33 +0000107}
108
Jim Grosbach01086452010-12-10 17:13:40 +0000109def t_bcctarget : Operand<i32> {
110 let EncoderMethod = "getThumbBCCTargetOpValue";
Owen Anderson8d7d2e12011-08-09 20:55:18 +0000111 let DecoderMethod = "DecodeThumbBCCTargetOperand";
Jim Grosbach01086452010-12-10 17:13:40 +0000112}
113
Jim Grosbachcf6220a2010-12-09 19:01:46 +0000114def t_cbtarget : Operand<i32> {
Jim Grosbach027d6e82010-12-09 19:04:53 +0000115 let EncoderMethod = "getThumbCBTargetOpValue";
Owen Anderson8d7d2e12011-08-09 20:55:18 +0000116 let DecoderMethod = "DecodeThumbCmpBROperand";
Bill Wendlingdff2f712010-12-08 23:01:43 +0000117}
118
Jim Grosbach662a8162010-12-06 23:57:07 +0000119def t_bltarget : Operand<i32> {
120 let EncoderMethod = "getThumbBLTargetOpValue";
Owen Anderson648f9a72011-08-08 23:25:22 +0000121 let DecoderMethod = "DecodeThumbBLTargetOperand";
Jim Grosbach662a8162010-12-06 23:57:07 +0000122}
123
Bill Wendling09aa3f02010-12-09 00:39:08 +0000124def t_blxtarget : Operand<i32> {
125 let EncoderMethod = "getThumbBLXTargetOpValue";
Owen Anderson6d746312011-08-08 20:42:17 +0000126 let DecoderMethod = "DecodeThumbBLXOffset";
Bill Wendling09aa3f02010-12-09 00:39:08 +0000127}
Benjamin Kramer151bd172011-07-14 21:47:24 +0000128}
Bill Wendling09aa3f02010-12-09 00:39:08 +0000129
Evan Chenga8e29892007-01-19 07:51:42 +0000130// t_addrmode_rr := reg + reg
131//
Jim Grosbach7ce05792011-08-03 23:50:40 +0000132def t_addrmode_rr_asm_operand : AsmOperandClass { let Name = "MemThumbRR"; }
Evan Chenga8e29892007-01-19 07:51:42 +0000133def t_addrmode_rr : Operand<i32>,
134 ComplexPattern<i32, 2, "SelectThumbAddrModeRR", []> {
Bill Wendlingf4caf692010-12-14 03:36:38 +0000135 let EncoderMethod = "getThumbAddrModeRegRegOpValue";
Evan Chenga8e29892007-01-19 07:51:42 +0000136 let PrintMethod = "printThumbAddrModeRROperand";
Owen Anderson305e0462011-08-15 19:00:06 +0000137 let DecoderMethod = "DecodeThumbAddrModeRR";
Jim Grosbach05b01562011-08-19 19:17:58 +0000138 let ParserMatchClass = t_addrmode_rr_asm_operand;
Jim Grosbach30eae3c2009-04-07 20:34:09 +0000139 let MIOperandInfo = (ops tGPR:$base, tGPR:$offsreg);
Evan Chenga8e29892007-01-19 07:51:42 +0000140}
141
Bill Wendlingf4caf692010-12-14 03:36:38 +0000142// t_addrmode_rrs := reg + reg
Evan Chenga8e29892007-01-19 07:51:42 +0000143//
Jim Grosbachc6d7c652011-08-19 16:52:32 +0000144// We use separate scaled versions because the Select* functions need
145// to explicitly check for a matching constant and return false here so that
146// the reg+imm forms will match instead. This is a horrible way to do that,
147// as it forces tight coupling between the methods, but it's how selectiondag
148// currently works.
Bill Wendlingf4caf692010-12-14 03:36:38 +0000149def t_addrmode_rrs1 : Operand<i32>,
150 ComplexPattern<i32, 2, "SelectThumbAddrModeRI5S1", []> {
151 let EncoderMethod = "getThumbAddrModeRegRegOpValue";
152 let PrintMethod = "printThumbAddrModeRROperand";
Owen Anderson8d7d2e12011-08-09 20:55:18 +0000153 let DecoderMethod = "DecodeThumbAddrModeRR";
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}
Bill Wendlingf4caf692010-12-14 03:36:38 +0000157def t_addrmode_rrs2 : Operand<i32>,
158 ComplexPattern<i32, 2, "SelectThumbAddrModeRI5S2", []> {
159 let EncoderMethod = "getThumbAddrModeRegRegOpValue";
Owen Anderson8d7d2e12011-08-09 20:55:18 +0000160 let DecoderMethod = "DecodeThumbAddrModeRR";
Bill Wendlingf4caf692010-12-14 03:36:38 +0000161 let PrintMethod = "printThumbAddrModeRROperand";
Jim Grosbach7ce05792011-08-03 23:50:40 +0000162 let ParserMatchClass = t_addrmode_rr_asm_operand;
Bill Wendlingf4caf692010-12-14 03:36:38 +0000163 let MIOperandInfo = (ops tGPR:$base, tGPR:$offsreg);
Bill Wendlingf4caf692010-12-14 03:36:38 +0000164}
165def t_addrmode_rrs4 : Operand<i32>,
166 ComplexPattern<i32, 2, "SelectThumbAddrModeRI5S4", []> {
167 let EncoderMethod = "getThumbAddrModeRegRegOpValue";
Owen Anderson8d7d2e12011-08-09 20:55:18 +0000168 let DecoderMethod = "DecodeThumbAddrModeRR";
Bill Wendlingf4caf692010-12-14 03:36:38 +0000169 let PrintMethod = "printThumbAddrModeRROperand";
Jim Grosbach7ce05792011-08-03 23:50:40 +0000170 let ParserMatchClass = t_addrmode_rr_asm_operand;
Bill Wendlingf4caf692010-12-14 03:36:38 +0000171 let MIOperandInfo = (ops tGPR:$base, tGPR:$offsreg);
Evan Chenga8e29892007-01-19 07:51:42 +0000172}
Evan Chengc38f2bc2007-01-23 22:59:13 +0000173
Bill Wendlingf4caf692010-12-14 03:36:38 +0000174// t_addrmode_is4 := reg + imm5 * 4
Evan Chengc38f2bc2007-01-23 22:59:13 +0000175//
Jim Grosbach60f91a32011-08-19 17:55:24 +0000176def t_addrmode_is4_asm_operand : AsmOperandClass { let Name = "MemThumbRIs4"; }
Bill Wendlingf4caf692010-12-14 03:36:38 +0000177def t_addrmode_is4 : Operand<i32>,
178 ComplexPattern<i32, 2, "SelectThumbAddrModeImm5S4", []> {
179 let EncoderMethod = "getAddrModeISOpValue";
Owen Anderson8d7d2e12011-08-09 20:55:18 +0000180 let DecoderMethod = "DecodeThumbAddrModeIS";
Bill Wendlingf4caf692010-12-14 03:36:38 +0000181 let PrintMethod = "printThumbAddrModeImm5S4Operand";
Jim Grosbach60f91a32011-08-19 17:55:24 +0000182 let ParserMatchClass = t_addrmode_is4_asm_operand;
Bill Wendlingf4caf692010-12-14 03:36:38 +0000183 let MIOperandInfo = (ops tGPR:$base, i32imm:$offsimm);
Bill Wendlingf4caf692010-12-14 03:36:38 +0000184}
185
186// t_addrmode_is2 := reg + imm5 * 2
187//
Jim Grosbach38466302011-08-19 18:55:51 +0000188def t_addrmode_is2_asm_operand : AsmOperandClass { let Name = "MemThumbRIs2"; }
Bill Wendlingf4caf692010-12-14 03:36:38 +0000189def t_addrmode_is2 : Operand<i32>,
190 ComplexPattern<i32, 2, "SelectThumbAddrModeImm5S2", []> {
191 let EncoderMethod = "getAddrModeISOpValue";
Owen Anderson8d7d2e12011-08-09 20:55:18 +0000192 let DecoderMethod = "DecodeThumbAddrModeIS";
Bill Wendlingf4caf692010-12-14 03:36:38 +0000193 let PrintMethod = "printThumbAddrModeImm5S2Operand";
Jim Grosbach38466302011-08-19 18:55:51 +0000194 let ParserMatchClass = t_addrmode_is2_asm_operand;
Bill Wendlingf4caf692010-12-14 03:36:38 +0000195 let MIOperandInfo = (ops tGPR:$base, i32imm:$offsimm);
Bill Wendlingf4caf692010-12-14 03:36:38 +0000196}
197
198// t_addrmode_is1 := reg + imm5
199//
Jim Grosbach48ff5ff2011-08-19 18:49:59 +0000200def t_addrmode_is1_asm_operand : AsmOperandClass { let Name = "MemThumbRIs1"; }
Bill Wendlingf4caf692010-12-14 03:36:38 +0000201def t_addrmode_is1 : Operand<i32>,
202 ComplexPattern<i32, 2, "SelectThumbAddrModeImm5S1", []> {
203 let EncoderMethod = "getAddrModeISOpValue";
Owen Anderson8d7d2e12011-08-09 20:55:18 +0000204 let DecoderMethod = "DecodeThumbAddrModeIS";
Bill Wendlingf4caf692010-12-14 03:36:38 +0000205 let PrintMethod = "printThumbAddrModeImm5S1Operand";
Jim Grosbach48ff5ff2011-08-19 18:49:59 +0000206 let ParserMatchClass = t_addrmode_is1_asm_operand;
Bill Wendlingf4caf692010-12-14 03:36:38 +0000207 let MIOperandInfo = (ops tGPR:$base, i32imm:$offsimm);
Evan Chenga8e29892007-01-19 07:51:42 +0000208}
209
210// t_addrmode_sp := sp + imm8 * 4
211//
Jim Grosbach803b1aa2011-08-23 18:39:41 +0000212// FIXME: This really shouldn't have an explicit SP operand at all. It should
213// be implicit, just like in the instruction encoding itself.
Jim Grosbachecd85892011-08-19 18:13:48 +0000214def t_addrmode_sp_asm_operand : AsmOperandClass { let Name = "MemThumbSPI"; }
Evan Chenga8e29892007-01-19 07:51:42 +0000215def t_addrmode_sp : Operand<i32>,
216 ComplexPattern<i32, 2, "SelectThumbAddrModeSP", []> {
Jim Grosbachd967cd02010-12-07 21:50:47 +0000217 let EncoderMethod = "getAddrModeThumbSPOpValue";
Owen Anderson648f9a72011-08-08 23:25:22 +0000218 let DecoderMethod = "DecodeThumbAddrModeSP";
Evan Chenga8e29892007-01-19 07:51:42 +0000219 let PrintMethod = "printThumbAddrModeSPOperand";
Jim Grosbachecd85892011-08-19 18:13:48 +0000220 let ParserMatchClass = t_addrmode_sp_asm_operand;
Jakob Stoklund Olesenc5b7ef12010-01-13 00:43:06 +0000221 let MIOperandInfo = (ops GPR:$base, i32imm:$offsimm);
Evan Chenga8e29892007-01-19 07:51:42 +0000222}
223
Bill Wendlingb8958b02010-12-08 01:57:09 +0000224// t_addrmode_pc := <label> => pc + imm8 * 4
225//
226def t_addrmode_pc : Operand<i32> {
227 let EncoderMethod = "getAddrModePCOpValue";
Owen Anderson8d7d2e12011-08-09 20:55:18 +0000228 let DecoderMethod = "DecodeThumbAddrModePC";
Bill Wendlingb8958b02010-12-08 01:57:09 +0000229}
230
Evan Chenga8e29892007-01-19 07:51:42 +0000231//===----------------------------------------------------------------------===//
232// Miscellaneous Instructions.
233//
234
Jim Grosbach4642ad32010-02-22 23:10:38 +0000235// FIXME: Marking these as hasSideEffects is necessary to prevent machine DCE
236// from removing one half of the matched pairs. That breaks PEI, which assumes
237// these will always be in pairs, and asserts if it finds otherwise. Better way?
238let Defs = [SP], Uses = [SP], hasSideEffects = 1 in {
Evan Cheng44bec522007-05-15 01:29:07 +0000239def tADJCALLSTACKUP :
Bill Wendlinga8981662010-11-19 22:02:18 +0000240 PseudoInst<(outs), (ins i32imm:$amt1, i32imm:$amt2), NoItinerary,
241 [(ARMcallseq_end imm:$amt1, imm:$amt2)]>,
242 Requires<[IsThumb, IsThumb1Only]>;
Evan Cheng44bec522007-05-15 01:29:07 +0000243
Jim Grosbach0ede14f2009-03-27 23:06:27 +0000244def tADJCALLSTACKDOWN :
Bill Wendlinga8981662010-11-19 22:02:18 +0000245 PseudoInst<(outs), (ins i32imm:$amt), NoItinerary,
246 [(ARMcallseq_start imm:$amt)]>,
247 Requires<[IsThumb, IsThumb1Only]>;
Evan Cheng071a2792007-09-11 19:55:27 +0000248}
Evan Cheng44bec522007-05-15 01:29:07 +0000249
Jim Grosbach421993f2011-08-17 23:08:57 +0000250class T1SystemEncoding<bits<8> opc>
Bill Wendlinga46a4932010-11-29 22:15:03 +0000251 : T1Encoding<0b101111> {
Jim Grosbach421993f2011-08-17 23:08:57 +0000252 let Inst{9-8} = 0b11;
253 let Inst{7-0} = opc;
Bill Wendlinga46a4932010-11-29 22:15:03 +0000254}
255
Jim Grosbach421993f2011-08-17 23:08:57 +0000256def tNOP : T1pI<(outs), (ins), NoItinerary, "nop", "", []>,
Jim Grosbach0780b632011-08-19 23:24:36 +0000257 T1SystemEncoding<0x00>, // A8.6.110
258 Requires<[IsThumb2]>;
Johnny Chenbd2c6232010-02-25 03:28:51 +0000259
Jim Grosbach421993f2011-08-17 23:08:57 +0000260def tYIELD : T1pI<(outs), (ins), NoItinerary, "yield", "", []>,
261 T1SystemEncoding<0x10>; // A8.6.410
Johnny Chend86d2692010-02-25 17:51:03 +0000262
Jim Grosbach421993f2011-08-17 23:08:57 +0000263def tWFE : T1pI<(outs), (ins), NoItinerary, "wfe", "", []>,
264 T1SystemEncoding<0x20>; // A8.6.408
Johnny Chend86d2692010-02-25 17:51:03 +0000265
Jim Grosbach421993f2011-08-17 23:08:57 +0000266def tWFI : T1pI<(outs), (ins), NoItinerary, "wfi", "", []>,
267 T1SystemEncoding<0x30>; // A8.6.409
Johnny Chend86d2692010-02-25 17:51:03 +0000268
Jim Grosbach421993f2011-08-17 23:08:57 +0000269def tSEV : T1pI<(outs), (ins), NoItinerary, "sev", "", []>,
270 T1SystemEncoding<0x40>; // A8.6.157
Bill Wendlinga46a4932010-11-29 22:15:03 +0000271
Jim Grosbach421993f2011-08-17 23:08:57 +0000272// The imm operand $val can be used by a debugger to store more information
Bill Wendlinga46a4932010-11-29 22:15:03 +0000273// about the breakpoint.
Jim Grosbach421993f2011-08-17 23:08:57 +0000274def tBKPT : T1I<(outs), (ins imm0_255:$val), NoItinerary, "bkpt\t$val",
275 []>,
276 T1Encoding<0b101111> {
277 let Inst{9-8} = 0b10;
Bill Wendlinga46a4932010-11-29 22:15:03 +0000278 // A8.6.22
279 bits<8> val;
280 let Inst{7-0} = val;
281}
Johnny Chend86d2692010-02-25 17:51:03 +0000282
Jim Grosbach06322472011-07-22 17:52:23 +0000283def tSETEND : T1I<(outs), (ins setend_op:$end), NoItinerary, "setend\t$end",
284 []>, T1Encoding<0b101101> {
285 bits<1> end;
Bill Wendling7d0affd2010-11-21 10:55:23 +0000286 // A8.6.156
Johnny Chend86d2692010-02-25 17:51:03 +0000287 let Inst{9-5} = 0b10010;
Bill Wendlinga8981662010-11-19 22:02:18 +0000288 let Inst{4} = 1;
Jim Grosbach06322472011-07-22 17:52:23 +0000289 let Inst{3} = end;
Bill Wendlinga8981662010-11-19 22:02:18 +0000290 let Inst{2-0} = 0b000;
Johnny Chend86d2692010-02-25 17:51:03 +0000291}
292
Johnny Chen93042d12010-03-02 18:14:57 +0000293// Change Processor State is a system instruction -- for disassembly only.
Bruno Cardoso Lopesa2b6e412011-02-14 13:09:44 +0000294def tCPS : T1I<(outs), (ins imod_op:$imod, iflags_op:$iflags),
Jim Grosbach26215422011-09-20 00:00:06 +0000295 NoItinerary, "cps$imod $iflags", []>,
Bill Wendling849f2e32010-11-29 00:18:15 +0000296 T1Misc<0b0110011> {
297 // A8.6.38 & B6.1.1
Bruno Cardoso Lopesa2b6e412011-02-14 13:09:44 +0000298 bit imod;
299 bits<3> iflags;
300
301 let Inst{4} = imod;
302 let Inst{3} = 0;
303 let Inst{2-0} = iflags;
Owen Anderson8d7d2e12011-08-09 20:55:18 +0000304 let DecoderMethod = "DecodeThumbCPS";
Bill Wendling849f2e32010-11-29 00:18:15 +0000305}
Johnny Chen93042d12010-03-02 18:14:57 +0000306
Evan Cheng35d6c412009-08-04 23:47:55 +0000307// For both thumb1 and thumb2.
Chris Lattnera4a3a5e2010-10-31 19:15:18 +0000308let isNotDuplicable = 1, isCodeGenOnly = 1 in
Jim Grosbacha3fbadf2010-09-30 19:53:58 +0000309def tPICADD : TIt<(outs GPR:$dst), (ins GPR:$lhs, pclabel:$cp), IIC_iALUr, "",
Bill Wendling0ae28e42010-11-19 22:37:33 +0000310 [(set GPR:$dst, (ARMpic_add GPR:$lhs, imm:$cp))]>,
Johnny Chend68e1192009-12-15 17:24:14 +0000311 T1Special<{0,0,?,?}> {
Bill Wendling0e45a5a2010-11-30 00:50:22 +0000312 // A8.6.6
Bill Wendling0ae28e42010-11-19 22:37:33 +0000313 bits<3> dst;
Bill Wendling0e45a5a2010-11-30 00:50:22 +0000314 let Inst{6-3} = 0b1111; // Rm = pc
Bill Wendling0ae28e42010-11-19 22:37:33 +0000315 let Inst{2-0} = dst;
Johnny Chend68e1192009-12-15 17:24:14 +0000316}
Evan Chenga8e29892007-01-19 07:51:42 +0000317
Bill Wendling0ae28e42010-11-19 22:37:33 +0000318// ADD <Rd>, sp, #<imm8>
Jakob Stoklund Olesen53484962011-10-15 00:57:13 +0000319// FIXME: This should not be marked as having side effects, and it should be
320// rematerializable. Clearing the side effect bit causes miscompilations,
321// probably because the instruction can be moved around.
Jim Grosbach72f39f82011-08-24 21:22:15 +0000322def tADDrSPi : T1pI<(outs tGPR:$dst), (ins GPRsp:$sp, t_imm0_1020s4:$imm),
323 IIC_iALUi, "add", "\t$dst, $sp, $imm", []>,
Bill Wendling0ae28e42010-11-19 22:37:33 +0000324 T1Encoding<{1,0,1,0,1,?}> {
325 // A6.2 & A8.6.8
326 bits<3> dst;
Jim Grosbach72f39f82011-08-24 21:22:15 +0000327 bits<8> imm;
Bill Wendling0ae28e42010-11-19 22:37:33 +0000328 let Inst{10-8} = dst;
Jim Grosbach72f39f82011-08-24 21:22:15 +0000329 let Inst{7-0} = imm;
Owen Anderson8d7d2e12011-08-09 20:55:18 +0000330 let DecoderMethod = "DecodeThumbAddSpecialReg";
Bill Wendling0ae28e42010-11-19 22:37:33 +0000331}
332
333// ADD sp, sp, #<imm7>
Jim Grosbach72f39f82011-08-24 21:22:15 +0000334def tADDspi : T1pIt<(outs GPRsp:$Rdn), (ins GPRsp:$Rn, t_imm0_508s4:$imm),
335 IIC_iALUi, "add", "\t$Rdn, $imm", []>,
Bill Wendling0ae28e42010-11-19 22:37:33 +0000336 T1Misc<{0,0,0,0,0,?,?}> {
337 // A6.2.5 & A8.6.8
Jim Grosbach72f39f82011-08-24 21:22:15 +0000338 bits<7> imm;
339 let Inst{6-0} = imm;
Owen Anderson8d7d2e12011-08-09 20:55:18 +0000340 let DecoderMethod = "DecodeThumbAddSPImm";
Bill Wendling0ae28e42010-11-19 22:37:33 +0000341}
Evan Cheng7dcf4a82009-06-25 01:05:06 +0000342
Bill Wendling0ae28e42010-11-19 22:37:33 +0000343// SUB sp, sp, #<imm7>
344// FIXME: The encoding and the ASM string don't match up.
Jim Grosbach72f39f82011-08-24 21:22:15 +0000345def tSUBspi : T1pIt<(outs GPRsp:$Rdn), (ins GPRsp:$Rn, t_imm0_508s4:$imm),
346 IIC_iALUi, "sub", "\t$Rdn, $imm", []>,
Bill Wendling0ae28e42010-11-19 22:37:33 +0000347 T1Misc<{0,0,0,0,1,?,?}> {
348 // A6.2.5 & A8.6.214
Jim Grosbach72f39f82011-08-24 21:22:15 +0000349 bits<7> imm;
350 let Inst{6-0} = imm;
Owen Anderson8d7d2e12011-08-09 20:55:18 +0000351 let DecoderMethod = "DecodeThumbAddSPImm";
Bill Wendling0ae28e42010-11-19 22:37:33 +0000352}
Evan Cheng86198642009-08-07 00:34:42 +0000353
Jim Grosbach4e53fe82012-04-05 20:57:13 +0000354def : tInstAlias<"add${p} sp, $imm",
355 (tSUBspi SP, t_imm0_508s4_neg:$imm, pred:$p)>;
356def : tInstAlias<"add${p} sp, sp, $imm",
357 (tSUBspi SP, t_imm0_508s4_neg:$imm, pred:$p)>;
358
Jim Grosbachf69c8042011-08-24 21:42:27 +0000359// Can optionally specify SP as a three operand instruction.
360def : tInstAlias<"add${p} sp, sp, $imm",
361 (tADDspi SP, t_imm0_508s4:$imm, pred:$p)>;
362def : tInstAlias<"sub${p} sp, sp, $imm",
363 (tSUBspi SP, t_imm0_508s4:$imm, pred:$p)>;
364
Bill Wendling0ae28e42010-11-19 22:37:33 +0000365// ADD <Rm>, sp
Jim Grosbachc7e0bb22011-08-24 18:04:27 +0000366def tADDrSP : T1pIt<(outs GPR:$Rdn), (ins GPR:$Rn, GPRsp:$sp), IIC_iALUr,
367 "add", "\t$Rdn, $sp, $Rn", []>,
Johnny Chend68e1192009-12-15 17:24:14 +0000368 T1Special<{0,0,?,?}> {
Bill Wendling0ae28e42010-11-19 22:37:33 +0000369 // A8.6.9 Encoding T1
Jim Grosbach5b815842011-08-24 17:46:13 +0000370 bits<4> Rdn;
371 let Inst{7} = Rdn{3};
Bill Wendling0ae28e42010-11-19 22:37:33 +0000372 let Inst{6-3} = 0b1101;
Jim Grosbach5b815842011-08-24 17:46:13 +0000373 let Inst{2-0} = Rdn{2-0};
Owen Anderson8d7d2e12011-08-09 20:55:18 +0000374 let DecoderMethod = "DecodeThumbAddSPReg";
Johnny Chend68e1192009-12-15 17:24:14 +0000375}
Evan Cheng86198642009-08-07 00:34:42 +0000376
Bill Wendling0ae28e42010-11-19 22:37:33 +0000377// ADD sp, <Rm>
Jim Grosbach72f39f82011-08-24 21:22:15 +0000378def tADDspr : T1pIt<(outs GPRsp:$Rdn), (ins GPRsp:$Rn, GPR:$Rm), IIC_iALUr,
379 "add", "\t$Rdn, $Rm", []>,
Johnny Chend68e1192009-12-15 17:24:14 +0000380 T1Special<{0,0,?,?}> {
381 // A8.6.9 Encoding T2
Jim Grosbach72f39f82011-08-24 21:22:15 +0000382 bits<4> Rm;
Johnny Chend68e1192009-12-15 17:24:14 +0000383 let Inst{7} = 1;
Jim Grosbach72f39f82011-08-24 21:22:15 +0000384 let Inst{6-3} = Rm;
Johnny Chend68e1192009-12-15 17:24:14 +0000385 let Inst{2-0} = 0b101;
Owen Anderson8d7d2e12011-08-09 20:55:18 +0000386 let DecoderMethod = "DecodeThumbAddSPReg";
Johnny Chend68e1192009-12-15 17:24:14 +0000387}
Evan Cheng86198642009-08-07 00:34:42 +0000388
Evan Chenga8e29892007-01-19 07:51:42 +0000389//===----------------------------------------------------------------------===//
390// Control Flow Instructions.
391//
392
Bob Wilson8d4de5a2009-10-28 18:26:41 +0000393// Indirect branches
394let isBranch = 1, isTerminator = 1, isBarrier = 1, isIndirectBranch = 1 in {
Cameron Zwarich421b1062011-05-26 03:41:12 +0000395 def tBX : TI<(outs), (ins GPR:$Rm, pred:$p), IIC_Br, "bx${p}\t$Rm", []>,
396 T1Special<{1,1,0,?}> {
397 // A6.2.3 & A8.6.25
398 bits<4> Rm;
399 let Inst{6-3} = Rm;
400 let Inst{2-0} = 0b000;
James Molloy3015dfb2012-02-09 10:56:31 +0000401 let Unpredictable{2-0} = 0b111;
Cameron Zwarich421b1062011-05-26 03:41:12 +0000402 }
Bob Wilson8d4de5a2009-10-28 18:26:41 +0000403}
404
Jim Grosbachead77cd2011-07-08 21:04:05 +0000405let isReturn = 1, isTerminator = 1, isBarrier = 1 in {
Owen Anderson16884412011-07-13 23:22:26 +0000406 def tBX_RET : tPseudoExpand<(outs), (ins pred:$p), 2, IIC_Br,
Jim Grosbach25e6d482011-07-08 21:50:04 +0000407 [(ARMretflag)], (tBX LR, pred:$p)>;
Jim Grosbachead77cd2011-07-08 21:04:05 +0000408
409 // Alternative return instruction used by vararg functions.
Jim Grosbach25e6d482011-07-08 21:50:04 +0000410 def tBX_RET_vararg : tPseudoExpand<(outs), (ins tGPR:$Rm, pred:$p),
Owen Anderson16884412011-07-13 23:22:26 +0000411 2, IIC_Br, [],
Jim Grosbach25e6d482011-07-08 21:50:04 +0000412 (tBX GPR:$Rm, pred:$p)>;
Jim Grosbachead77cd2011-07-08 21:04:05 +0000413}
414
Bill Wendling0480e282010-12-01 02:36:55 +0000415// All calls clobber the non-callee saved registers. SP is marked as a use to
416// prevent stack-pointer assignments that appear immediately before calls from
417// potentially appearing dead.
Jim Grosbach0ede14f2009-03-27 23:06:27 +0000418let isCall = 1,
Jakob Stoklund Olesenc54f6342012-02-24 01:19:29 +0000419 Defs = [LR], Uses = [SP] in {
Evan Chengb6207242009-08-01 00:16:10 +0000420 // Also used for Thumb2
Johnny Chend68e1192009-12-15 17:24:14 +0000421 def tBL : TIx2<0b11110, 0b11, 1,
Owen Anderson0af0dc82011-07-18 18:50:52 +0000422 (outs), (ins pred:$p, t_bltarget:$func, variable_ops), IIC_Br,
423 "bl${p}\t$func",
Johnny Chend68e1192009-12-15 17:24:14 +0000424 [(ARMtcall tglobaladdr:$func)]>,
Jakob Stoklund Olesenf16936e2012-04-06 00:04:58 +0000425 Requires<[IsThumb]> {
Owen Anderson648f9a72011-08-08 23:25:22 +0000426 bits<22> func;
427 let Inst{26} = func{21};
Jim Grosbach662a8162010-12-06 23:57:07 +0000428 let Inst{25-16} = func{20-11};
Jim Grosbach4fa102b2010-12-03 22:33:42 +0000429 let Inst{13} = 1;
430 let Inst{11} = 1;
Jim Grosbach662a8162010-12-06 23:57:07 +0000431 let Inst{10-0} = func{10-0};
Bill Wendling534a5e42010-12-03 01:55:47 +0000432 }
Evan Cheng20a2a0a2009-07-29 21:26:42 +0000433
Evan Chengb6207242009-08-01 00:16:10 +0000434 // ARMv5T and above, also used for Thumb2
Johnny Chend68e1192009-12-15 17:24:14 +0000435 def tBLXi : TIx2<0b11110, 0b11, 0,
Jim Grosbach5f687de2011-08-18 16:50:45 +0000436 (outs), (ins pred:$p, t_blxtarget:$func, variable_ops), IIC_Br,
Owen Anderson0af0dc82011-07-18 18:50:52 +0000437 "blx${p}\t$func",
Johnny Chend68e1192009-12-15 17:24:14 +0000438 [(ARMcall tglobaladdr:$func)]>,
Jakob Stoklund Olesenf16936e2012-04-06 00:04:58 +0000439 Requires<[IsThumb, HasV5T]> {
Jim Grosbach662a8162010-12-06 23:57:07 +0000440 bits<21> func;
441 let Inst{25-16} = func{20-11};
Jim Grosbach4fa102b2010-12-03 22:33:42 +0000442 let Inst{13} = 1;
443 let Inst{11} = 1;
Jim Grosbach662a8162010-12-06 23:57:07 +0000444 let Inst{10-1} = func{10-1};
445 let Inst{0} = 0; // func{0} is assumed zero
Jim Grosbach4fa102b2010-12-03 22:33:42 +0000446 }
Evan Cheng20a2a0a2009-07-29 21:26:42 +0000447
Evan Chengb6207242009-08-01 00:16:10 +0000448 // Also used for Thumb2
Owen Anderson0af0dc82011-07-18 18:50:52 +0000449 def tBLXr : TI<(outs), (ins pred:$p, GPR:$func, variable_ops), IIC_Br,
450 "blx${p}\t$func",
Evan Chengb6207242009-08-01 00:16:10 +0000451 [(ARMtcall GPR:$func)]>,
Jakob Stoklund Olesenf16936e2012-04-06 00:04:58 +0000452 Requires<[IsThumb, HasV5T]>,
Owen Anderson18901d62011-05-11 17:00:48 +0000453 T1Special<{1,1,1,?}> { // A6.2.3 & A8.6.24;
454 bits<4> func;
455 let Inst{6-3} = func;
456 let Inst{2-0} = 0b000;
457 }
Evan Cheng20a2a0a2009-07-29 21:26:42 +0000458
Lauro Ramos Venanciob8a93a42007-03-27 16:19:21 +0000459 // ARMv4T
Cameron Zwarichad70f6d2011-05-25 21:53:50 +0000460 def tBX_CALL : tPseudoInst<(outs), (ins tGPR:$func, variable_ops),
Owen Anderson16884412011-07-13 23:22:26 +0000461 4, IIC_Br,
Evan Cheng20a2a0a2009-07-29 21:26:42 +0000462 [(ARMcall_nolink tGPR:$func)]>,
Jakob Stoklund Olesenf16936e2012-04-06 00:04:58 +0000463 Requires<[IsThumb, IsThumb1Only]>;
Evan Chenga8e29892007-01-19 07:51:42 +0000464}
465
Bill Wendling0480e282010-12-01 02:36:55 +0000466let isBranch = 1, isTerminator = 1, isBarrier = 1 in {
467 let isPredicable = 1 in
Owen Anderson51f6a7a2011-09-09 21:48:23 +0000468 def tB : T1pI<(outs), (ins t_brtarget:$target), IIC_Br,
469 "b", "\t$target", [(br bb:$target)]>,
Jim Grosbache2467172010-12-10 18:21:33 +0000470 T1Encoding<{1,1,1,0,0,?}> {
471 bits<11> target;
472 let Inst{10-0} = target;
473 }
Evan Chenga8e29892007-01-19 07:51:42 +0000474
Evan Cheng225dfe92007-01-30 01:13:37 +0000475 // Far jump
Jim Grosbach3efad8f2010-12-16 19:11:16 +0000476 // Just a pseudo for a tBL instruction. Needed to let regalloc know about
477 // the clobber of LR.
Evan Cheng53c67c02009-08-07 05:45:07 +0000478 let Defs = [LR] in
Owen Anderson0af0dc82011-07-18 18:50:52 +0000479 def tBfar : tPseudoExpand<(outs), (ins t_bltarget:$target, pred:$p),
480 4, IIC_Br, [], (tBL pred:$p, t_bltarget:$target)>;
Evan Cheng225dfe92007-01-30 01:13:37 +0000481
Jim Grosbachf1aa47d2010-11-29 19:32:47 +0000482 def tBR_JTr : tPseudoInst<(outs),
483 (ins tGPR:$target, i32imm:$jt, i32imm:$id),
Owen Anderson16884412011-07-13 23:22:26 +0000484 0, IIC_Br,
Jim Grosbachf1aa47d2010-11-29 19:32:47 +0000485 [(ARMbrjt tGPR:$target, tjumptable:$jt, imm:$id)]> {
486 list<Predicate> Predicates = [IsThumb, IsThumb1Only];
Johnny Chenbbc71b22009-12-16 02:32:54 +0000487 }
Evan Chengd85ac4d2007-01-27 02:29:45 +0000488}
489
Evan Chengc85e8322007-07-05 07:13:32 +0000490// FIXME: should be able to write a pattern for ARMBrcond, but can't use
Jim Grosbach0ede14f2009-03-27 23:06:27 +0000491// a two-value operand where a dag node expects two operands. :(
Evan Chengffbacca2007-07-21 00:34:19 +0000492let isBranch = 1, isTerminator = 1 in
Jim Grosbach01086452010-12-10 17:13:40 +0000493 def tBcc : T1I<(outs), (ins t_bcctarget:$target, pred:$p), IIC_Br,
Jim Grosbachceab5012010-12-04 00:20:40 +0000494 "b${p}\t$target",
Johnny Chend68e1192009-12-15 17:24:14 +0000495 [/*(ARMbrcond bb:$target, imm:$cc)*/]>,
Eric Christopher33281b22011-05-27 03:50:53 +0000496 T1BranchCond<{1,1,0,1}> {
Jim Grosbachceab5012010-12-04 00:20:40 +0000497 bits<4> p;
Jim Grosbach01086452010-12-10 17:13:40 +0000498 bits<8> target;
Jim Grosbachceab5012010-12-04 00:20:40 +0000499 let Inst{11-8} = p;
Jim Grosbach01086452010-12-10 17:13:40 +0000500 let Inst{7-0} = target;
Jim Grosbachceab5012010-12-04 00:20:40 +0000501}
Evan Chenga8e29892007-01-19 07:51:42 +0000502
Jim Grosbache36e21e2011-07-08 20:13:35 +0000503// Tail calls
504let isCall = 1, isTerminator = 1, isReturn = 1, isBarrier = 1 in {
Evan Chengafff9412011-12-20 18:26:50 +0000505 // IOS versions.
Jakob Stoklund Olesenc54f6342012-02-24 01:19:29 +0000506 let Uses = [SP] in {
Evan Chengafff9412011-12-20 18:26:50 +0000507 // tTAILJMPd: IOS version uses a Thumb2 branch (no Thumb1 tail calls
508 // on IOS), so it's in ARMInstrThumb2.td.
Jim Grosbach0b44aea2011-07-08 20:39:19 +0000509 def tTAILJMPr : tPseudoExpand<(outs), (ins tcGPR:$dst, variable_ops),
Owen Anderson16884412011-07-13 23:22:26 +0000510 4, IIC_Br, [],
Jim Grosbach0b44aea2011-07-08 20:39:19 +0000511 (tBX GPR:$dst, (ops 14, zero_reg))>,
Evan Chengafff9412011-12-20 18:26:50 +0000512 Requires<[IsThumb, IsIOS]>;
Jim Grosbache36e21e2011-07-08 20:13:35 +0000513 }
Evan Chengafff9412011-12-20 18:26:50 +0000514 // Non-IOS versions (the difference is R9).
Jakob Stoklund Olesenc54f6342012-02-24 01:19:29 +0000515 let Uses = [SP] in {
Owen Anderson51f6a7a2011-09-09 21:48:23 +0000516 def tTAILJMPdND : tPseudoExpand<(outs),
517 (ins t_brtarget:$dst, pred:$p, variable_ops),
Owen Anderson16884412011-07-13 23:22:26 +0000518 4, IIC_Br, [],
Owen Anderson51f6a7a2011-09-09 21:48:23 +0000519 (tB t_brtarget:$dst, pred:$p)>,
Evan Chengafff9412011-12-20 18:26:50 +0000520 Requires<[IsThumb, IsNotIOS]>;
Jim Grosbach0b44aea2011-07-08 20:39:19 +0000521 def tTAILJMPrND : tPseudoExpand<(outs), (ins tcGPR:$dst, variable_ops),
Owen Anderson16884412011-07-13 23:22:26 +0000522 4, IIC_Br, [],
Jim Grosbach0b44aea2011-07-08 20:39:19 +0000523 (tBX GPR:$dst, (ops 14, zero_reg))>,
Evan Chengafff9412011-12-20 18:26:50 +0000524 Requires<[IsThumb, IsNotIOS]>;
Jim Grosbache36e21e2011-07-08 20:13:35 +0000525 }
526}
527
528
Jim Grosbachec8b8662011-08-23 19:49:10 +0000529// A8.6.218 Supervisor Call (Software Interrupt)
Johnny Chen4c61cdd2010-02-25 02:21:11 +0000530// A8.6.16 B: Encoding T1
531// If Inst{11-8} == 0b1111 then SEE SVC
Evan Cheng1e0eab12010-11-29 22:43:27 +0000532let isCall = 1, Uses = [SP] in
Jim Grosbached838482011-07-26 16:24:27 +0000533def tSVC : T1pI<(outs), (ins imm0_255:$imm), IIC_Br,
Bill Wendling6179c312010-11-20 00:53:35 +0000534 "svc", "\t$imm", []>, Encoding16 {
535 bits<8> imm;
Johnny Chen4c61cdd2010-02-25 02:21:11 +0000536 let Inst{15-12} = 0b1101;
Bill Wendling6179c312010-11-20 00:53:35 +0000537 let Inst{11-8} = 0b1111;
538 let Inst{7-0} = imm;
Johnny Chen4c61cdd2010-02-25 02:21:11 +0000539}
540
Bill Wendlingef4a68b2010-11-30 07:44:32 +0000541// The assembler uses 0xDEFE for a trap instruction.
Evan Chengfb3611d2010-05-11 07:26:32 +0000542let isBarrier = 1, isTerminator = 1 in
Owen Anderson18901d62011-05-11 17:00:48 +0000543def tTRAP : TI<(outs), (ins), IIC_Br,
Jim Grosbach2e6ae132010-09-23 18:05:37 +0000544 "trap", [(trap)]>, Encoding16 {
Bill Wendling7d0affd2010-11-21 10:55:23 +0000545 let Inst = 0xdefe;
Johnny Chen4c61cdd2010-02-25 02:21:11 +0000546}
547
Evan Chenga8e29892007-01-19 07:51:42 +0000548//===----------------------------------------------------------------------===//
549// Load Store Instructions.
550//
551
Bill Wendlingb6faf652010-12-14 22:10:49 +0000552// Loads: reg/reg and reg/imm5
Dan Gohmanbc9d98b2010-02-27 23:47:46 +0000553let canFoldAsLoad = 1, isReMaterializable = 1 in
Bill Wendlingb6faf652010-12-14 22:10:49 +0000554multiclass thumb_ld_rr_ri_enc<bits<3> reg_opc, bits<4> imm_opc,
555 Operand AddrMode_r, Operand AddrMode_i,
556 AddrMode am, InstrItinClass itin_r,
557 InstrItinClass itin_i, string asm,
558 PatFrag opnode> {
Bill Wendling345cdb62010-12-14 23:42:48 +0000559 def r : // reg/reg
Bill Wendlingb6faf652010-12-14 22:10:49 +0000560 T1pILdStEncode<reg_opc,
561 (outs tGPR:$Rt), (ins AddrMode_r:$addr),
562 am, itin_r, asm, "\t$Rt, $addr",
563 [(set tGPR:$Rt, (opnode AddrMode_r:$addr))]>;
Bill Wendling345cdb62010-12-14 23:42:48 +0000564 def i : // reg/imm5
Bill Wendlingb6faf652010-12-14 22:10:49 +0000565 T1pILdStEncodeImm<imm_opc, 1 /* Load */,
566 (outs tGPR:$Rt), (ins AddrMode_i:$addr),
567 am, itin_i, asm, "\t$Rt, $addr",
568 [(set tGPR:$Rt, (opnode AddrMode_i:$addr))]>;
569}
570// Stores: reg/reg and reg/imm5
571multiclass thumb_st_rr_ri_enc<bits<3> reg_opc, bits<4> imm_opc,
572 Operand AddrMode_r, Operand AddrMode_i,
573 AddrMode am, InstrItinClass itin_r,
574 InstrItinClass itin_i, string asm,
575 PatFrag opnode> {
Bill Wendling345cdb62010-12-14 23:42:48 +0000576 def r : // reg/reg
Bill Wendlingb6faf652010-12-14 22:10:49 +0000577 T1pILdStEncode<reg_opc,
578 (outs), (ins tGPR:$Rt, AddrMode_r:$addr),
579 am, itin_r, asm, "\t$Rt, $addr",
580 [(opnode tGPR:$Rt, AddrMode_r:$addr)]>;
Bill Wendling345cdb62010-12-14 23:42:48 +0000581 def i : // reg/imm5
Bill Wendlingb6faf652010-12-14 22:10:49 +0000582 T1pILdStEncodeImm<imm_opc, 0 /* Store */,
583 (outs), (ins tGPR:$Rt, AddrMode_i:$addr),
584 am, itin_i, asm, "\t$Rt, $addr",
585 [(opnode tGPR:$Rt, AddrMode_i:$addr)]>;
586}
Bill Wendling6179c312010-11-20 00:53:35 +0000587
Bill Wendlingb6faf652010-12-14 22:10:49 +0000588// A8.6.57 & A8.6.60
589defm tLDR : thumb_ld_rr_ri_enc<0b100, 0b0110, t_addrmode_rrs4,
590 t_addrmode_is4, AddrModeT1_4,
591 IIC_iLoad_r, IIC_iLoad_i, "ldr",
592 UnOpFrag<(load node:$Src)>>;
Evan Chenga8e29892007-01-19 07:51:42 +0000593
Bill Wendlingb6faf652010-12-14 22:10:49 +0000594// A8.6.64 & A8.6.61
595defm tLDRB : thumb_ld_rr_ri_enc<0b110, 0b0111, t_addrmode_rrs1,
596 t_addrmode_is1, AddrModeT1_1,
597 IIC_iLoad_bh_r, IIC_iLoad_bh_i, "ldrb",
598 UnOpFrag<(zextloadi8 node:$Src)>>;
Bill Wendling1fd374e2010-11-30 22:57:21 +0000599
Bill Wendlingb6faf652010-12-14 22:10:49 +0000600// A8.6.76 & A8.6.73
601defm tLDRH : thumb_ld_rr_ri_enc<0b101, 0b1000, t_addrmode_rrs2,
602 t_addrmode_is2, AddrModeT1_2,
603 IIC_iLoad_bh_r, IIC_iLoad_bh_i, "ldrh",
604 UnOpFrag<(zextloadi16 node:$Src)>>;
Evan Chengc38f2bc2007-01-23 22:59:13 +0000605
Evan Cheng2f297df2009-07-11 07:08:13 +0000606let AddedComplexity = 10 in
Bill Wendling1fd374e2010-11-30 22:57:21 +0000607def tLDRSB : // A8.6.80
Owen Anderson305e0462011-08-15 19:00:06 +0000608 T1pILdStEncode<0b011, (outs tGPR:$Rt), (ins t_addrmode_rr:$addr),
Bill Wendling40062fb2010-12-01 01:38:08 +0000609 AddrModeT1_1, IIC_iLoad_bh_r,
Owen Anderson305e0462011-08-15 19:00:06 +0000610 "ldrsb", "\t$Rt, $addr",
611 [(set tGPR:$Rt, (sextloadi8 t_addrmode_rr:$addr))]>;
Evan Chengc38f2bc2007-01-23 22:59:13 +0000612
Evan Cheng2f297df2009-07-11 07:08:13 +0000613let AddedComplexity = 10 in
Bill Wendling1fd374e2010-11-30 22:57:21 +0000614def tLDRSH : // A8.6.84
Owen Anderson305e0462011-08-15 19:00:06 +0000615 T1pILdStEncode<0b111, (outs tGPR:$Rt), (ins t_addrmode_rr:$addr),
Bill Wendling40062fb2010-12-01 01:38:08 +0000616 AddrModeT1_2, IIC_iLoad_bh_r,
Owen Anderson305e0462011-08-15 19:00:06 +0000617 "ldrsh", "\t$Rt, $addr",
618 [(set tGPR:$Rt, (sextloadi16 t_addrmode_rr:$addr))]>;
Evan Chengc38f2bc2007-01-23 22:59:13 +0000619
Dan Gohman15511cf2008-12-03 18:15:48 +0000620let canFoldAsLoad = 1 in
Jim Grosbachd967cd02010-12-07 21:50:47 +0000621def tLDRspi : T1pIs<(outs tGPR:$Rt), (ins t_addrmode_sp:$addr), IIC_iLoad_i,
Bill Wendlingdc381372010-12-15 23:31:24 +0000622 "ldr", "\t$Rt, $addr",
623 [(set tGPR:$Rt, (load t_addrmode_sp:$addr))]>,
Jim Grosbachd967cd02010-12-07 21:50:47 +0000624 T1LdStSP<{1,?,?}> {
625 bits<3> Rt;
626 bits<8> addr;
627 let Inst{10-8} = Rt;
628 let Inst{7-0} = addr;
629}
Evan Cheng012f2d92007-01-24 08:53:17 +0000630
631// Load tconstpool
Evan Chengafff9412011-12-20 18:26:50 +0000632// FIXME: Use ldr.n to work around a darwin assembler bug.
Owen Anderson91614ae2011-07-18 22:14:02 +0000633let canFoldAsLoad = 1, isReMaterializable = 1, isCodeGenOnly = 1 in
Bill Wendlingb8958b02010-12-08 01:57:09 +0000634def tLDRpci : T1pIs<(outs tGPR:$Rt), (ins t_addrmode_pc:$addr), IIC_iLoad_i,
Bill Wendling3f8c1102010-11-30 23:54:45 +0000635 "ldr", ".n\t$Rt, $addr",
636 [(set tGPR:$Rt, (load (ARMWrapper tconstpool:$addr)))]>,
637 T1Encoding<{0,1,0,0,1,?}> {
638 // A6.2 & A8.6.59
639 bits<3> Rt;
Bill Wendlingb8958b02010-12-08 01:57:09 +0000640 bits<8> addr;
Bill Wendling3f8c1102010-11-30 23:54:45 +0000641 let Inst{10-8} = Rt;
Bill Wendlingb8958b02010-12-08 01:57:09 +0000642 let Inst{7-0} = addr;
Bill Wendling3f8c1102010-11-30 23:54:45 +0000643}
Evan Chengfa775d02007-03-19 07:20:03 +0000644
Johnny Chen597fa652011-04-22 19:12:43 +0000645// FIXME: Remove this entry when the above ldr.n workaround is fixed.
Jim Grosbacha2ee0fa2012-01-18 21:54:09 +0000646// For assembly/disassembly use only.
647def tLDRpciASM : T1pIs<(outs tGPR:$Rt), (ins t_addrmode_pc:$addr), IIC_iLoad_i,
648 "ldr", "\t$Rt, $addr", []>,
Johnny Chen597fa652011-04-22 19:12:43 +0000649 T1Encoding<{0,1,0,0,1,?}> {
650 // A6.2 & A8.6.59
651 bits<3> Rt;
652 bits<8> addr;
653 let Inst{10-8} = Rt;
654 let Inst{7-0} = addr;
655}
656
Bill Wendlingb6faf652010-12-14 22:10:49 +0000657// A8.6.194 & A8.6.192
658defm tSTR : thumb_st_rr_ri_enc<0b000, 0b0110, t_addrmode_rrs4,
659 t_addrmode_is4, AddrModeT1_4,
660 IIC_iStore_r, IIC_iStore_i, "str",
661 BinOpFrag<(store node:$LHS, node:$RHS)>>;
Evan Chenga8e29892007-01-19 07:51:42 +0000662
Bill Wendlingb6faf652010-12-14 22:10:49 +0000663// A8.6.197 & A8.6.195
664defm tSTRB : thumb_st_rr_ri_enc<0b010, 0b0111, t_addrmode_rrs1,
665 t_addrmode_is1, AddrModeT1_1,
666 IIC_iStore_bh_r, IIC_iStore_bh_i, "strb",
667 BinOpFrag<(truncstorei8 node:$LHS, node:$RHS)>>;
Evan Chengc38f2bc2007-01-23 22:59:13 +0000668
Bill Wendlingb6faf652010-12-14 22:10:49 +0000669// A8.6.207 & A8.6.205
670defm tSTRH : thumb_st_rr_ri_enc<0b001, 0b1000, t_addrmode_rrs2,
Jim Grosbachf921c0fe2011-06-13 22:54:22 +0000671 t_addrmode_is2, AddrModeT1_2,
672 IIC_iStore_bh_r, IIC_iStore_bh_i, "strh",
673 BinOpFrag<(truncstorei16 node:$LHS, node:$RHS)>>;
Bill Wendling1fd374e2010-11-30 22:57:21 +0000674
Evan Chenga8e29892007-01-19 07:51:42 +0000675
Jim Grosbachd967cd02010-12-07 21:50:47 +0000676def tSTRspi : T1pIs<(outs), (ins tGPR:$Rt, t_addrmode_sp:$addr), IIC_iStore_i,
Bill Wendlingf4caf692010-12-14 03:36:38 +0000677 "str", "\t$Rt, $addr",
678 [(store tGPR:$Rt, t_addrmode_sp:$addr)]>,
Jim Grosbachd967cd02010-12-07 21:50:47 +0000679 T1LdStSP<{0,?,?}> {
680 bits<3> Rt;
681 bits<8> addr;
682 let Inst{10-8} = Rt;
683 let Inst{7-0} = addr;
684}
Evan Cheng8e59ea92007-02-07 00:06:56 +0000685
Evan Chenga8e29892007-01-19 07:51:42 +0000686//===----------------------------------------------------------------------===//
687// Load / store multiple Instructions.
688//
689
Bill Wendling73fe34a2010-11-16 01:16:36 +0000690// These require base address to be written back or one of the loaded regs.
Bill Wendlingddc918b2010-11-13 10:57:02 +0000691let neverHasSideEffects = 1 in {
692
693let mayLoad = 1, hasExtraDefRegAllocReq = 1 in
Jim Grosbachcefe4c92011-08-23 17:41:15 +0000694def tLDMIA : T1I<(outs), (ins tGPR:$Rn, pred:$p, reglist:$regs, variable_ops),
695 IIC_iLoad_m, "ldm${p}\t$Rn, $regs", []>, T1Encoding<{1,1,0,0,1,?}> {
696 bits<3> Rn;
697 bits<8> regs;
698 let Inst{10-8} = Rn;
699 let Inst{7-0} = regs;
700}
Bill Wendlingddc918b2010-11-13 10:57:02 +0000701
Jim Grosbachcefe4c92011-08-23 17:41:15 +0000702// Writeback version is just a pseudo, as there's no encoding difference.
703// Writeback happens iff the base register is not in the destination register
704// list.
705def tLDMIA_UPD :
706 InstTemplate<AddrModeNone, 0, IndexModeNone, Pseudo, GenericDomain,
707 "$Rn = $wb", IIC_iLoad_mu>,
708 PseudoInstExpansion<(tLDMIA tGPR:$Rn, pred:$p, reglist:$regs)> {
709 let Size = 2;
710 let OutOperandList = (outs GPR:$wb);
711 let InOperandList = (ins GPR:$Rn, pred:$p, reglist:$regs, variable_ops);
712 let Pattern = [];
713 let isCodeGenOnly = 1;
714 let isPseudo = 1;
715 list<Predicate> Predicates = [IsThumb];
716}
717
718// There is no non-writeback version of STM for Thumb.
Bill Wendlingddc918b2010-11-13 10:57:02 +0000719let mayStore = 1, hasExtraSrcRegAllocReq = 1 in
Jim Grosbachf95aaf92011-08-24 18:19:42 +0000720def tSTMIA_UPD : Thumb1I<(outs GPR:$wb),
721 (ins tGPR:$Rn, pred:$p, reglist:$regs, variable_ops),
722 AddrModeNone, 2, IIC_iStore_mu,
723 "stm${p}\t$Rn!, $regs", "$Rn = $wb", []>,
Jim Grosbachcefe4c92011-08-23 17:41:15 +0000724 T1Encoding<{1,1,0,0,0,?}> {
725 bits<3> Rn;
726 bits<8> regs;
727 let Inst{10-8} = Rn;
728 let Inst{7-0} = regs;
729}
Owen Anderson18901d62011-05-11 17:00:48 +0000730
Bill Wendlingddc918b2010-11-13 10:57:02 +0000731} // neverHasSideEffects
Evan Cheng4b322e52009-08-11 21:11:32 +0000732
Jim Grosbach93b3eff2011-08-18 21:50:53 +0000733def : InstAlias<"ldm${p} $Rn!, $regs",
734 (tLDMIA tGPR:$Rn, pred:$p, reglist:$regs)>,
735 Requires<[IsThumb, IsThumb1Only]>;
736
Evan Cheng0d92f5f2009-10-01 08:22:27 +0000737let mayLoad = 1, Uses = [SP], Defs = [SP], hasExtraDefRegAllocReq = 1 in
Bill Wendling602890d2010-11-19 01:33:10 +0000738def tPOP : T1I<(outs), (ins pred:$p, reglist:$regs, variable_ops),
Evan Chenga0792de2010-10-06 06:27:31 +0000739 IIC_iPop,
Bill Wendling602890d2010-11-19 01:33:10 +0000740 "pop${p}\t$regs", []>,
741 T1Misc<{1,1,0,?,?,?,?}> {
742 bits<16> regs;
Bill Wendling602890d2010-11-19 01:33:10 +0000743 let Inst{8} = regs{15};
744 let Inst{7-0} = regs{7-0};
745}
Evan Cheng4b322e52009-08-11 21:11:32 +0000746
Evan Cheng0d92f5f2009-10-01 08:22:27 +0000747let mayStore = 1, Uses = [SP], Defs = [SP], hasExtraSrcRegAllocReq = 1 in
Bill Wendling6179c312010-11-20 00:53:35 +0000748def tPUSH : T1I<(outs), (ins pred:$p, reglist:$regs, variable_ops),
Evan Chenga0792de2010-10-06 06:27:31 +0000749 IIC_iStore_m,
Bill Wendling6179c312010-11-20 00:53:35 +0000750 "push${p}\t$regs", []>,
751 T1Misc<{0,1,0,?,?,?,?}> {
752 bits<16> regs;
753 let Inst{8} = regs{14};
754 let Inst{7-0} = regs{7-0};
755}
Evan Chenga8e29892007-01-19 07:51:42 +0000756
757//===----------------------------------------------------------------------===//
758// Arithmetic Instructions.
759//
760
Bill Wendling1d045ee2010-12-01 02:28:08 +0000761// Helper classes for encoding T1pI patterns:
762class T1pIDPEncode<bits<4> opA, dag oops, dag iops, InstrItinClass itin,
763 string opc, string asm, list<dag> pattern>
764 : T1pI<oops, iops, itin, opc, asm, pattern>,
765 T1DataProcessing<opA> {
766 bits<3> Rm;
767 bits<3> Rn;
768 let Inst{5-3} = Rm;
769 let Inst{2-0} = Rn;
770}
771class T1pIMiscEncode<bits<7> opA, dag oops, dag iops, InstrItinClass itin,
772 string opc, string asm, list<dag> pattern>
773 : T1pI<oops, iops, itin, opc, asm, pattern>,
774 T1Misc<opA> {
775 bits<3> Rm;
776 bits<3> Rd;
777 let Inst{5-3} = Rm;
778 let Inst{2-0} = Rd;
779}
780
Bill Wendling76f4e102010-12-01 01:20:15 +0000781// Helper classes for encoding T1sI patterns:
782class T1sIDPEncode<bits<4> opA, dag oops, dag iops, InstrItinClass itin,
783 string opc, string asm, list<dag> pattern>
784 : T1sI<oops, iops, itin, opc, asm, pattern>,
785 T1DataProcessing<opA> {
786 bits<3> Rd;
787 bits<3> Rn;
788 let Inst{5-3} = Rn;
789 let Inst{2-0} = Rd;
790}
791class T1sIGenEncode<bits<5> opA, dag oops, dag iops, InstrItinClass itin,
792 string opc, string asm, list<dag> pattern>
793 : T1sI<oops, iops, itin, opc, asm, pattern>,
794 T1General<opA> {
795 bits<3> Rm;
796 bits<3> Rn;
797 bits<3> Rd;
798 let Inst{8-6} = Rm;
799 let Inst{5-3} = Rn;
800 let Inst{2-0} = Rd;
801}
802class T1sIGenEncodeImm<bits<5> opA, dag oops, dag iops, InstrItinClass itin,
803 string opc, string asm, list<dag> pattern>
804 : T1sI<oops, iops, itin, opc, asm, pattern>,
805 T1General<opA> {
806 bits<3> Rd;
807 bits<3> Rm;
808 let Inst{5-3} = Rm;
809 let Inst{2-0} = Rd;
810}
811
812// Helper classes for encoding T1sIt patterns:
Bill Wendlinga5a42d92010-12-01 00:48:44 +0000813class T1sItDPEncode<bits<4> opA, dag oops, dag iops, InstrItinClass itin,
814 string opc, string asm, list<dag> pattern>
815 : T1sIt<oops, iops, itin, opc, asm, pattern>,
816 T1DataProcessing<opA> {
Bill Wendling3f8c1102010-11-30 23:54:45 +0000817 bits<3> Rdn;
818 bits<3> Rm;
Bill Wendlinga5a42d92010-12-01 00:48:44 +0000819 let Inst{5-3} = Rm;
820 let Inst{2-0} = Rdn;
Bill Wendling95a6d172010-11-20 01:00:29 +0000821}
Bill Wendlinga5a42d92010-12-01 00:48:44 +0000822class T1sItGenEncodeImm<bits<5> opA, dag oops, dag iops, InstrItinClass itin,
823 string opc, string asm, list<dag> pattern>
824 : T1sIt<oops, iops, itin, opc, asm, pattern>,
825 T1General<opA> {
826 bits<3> Rdn;
827 bits<8> imm8;
828 let Inst{10-8} = Rdn;
829 let Inst{7-0} = imm8;
830}
831
832// Add with carry register
833let isCommutable = 1, Uses = [CPSR] in
834def tADC : // A8.6.2
835 T1sItDPEncode<0b0101, (outs tGPR:$Rdn), (ins tGPR:$Rn, tGPR:$Rm), IIC_iALUr,
836 "adc", "\t$Rdn, $Rm",
837 [(set tGPR:$Rdn, (adde tGPR:$Rn, tGPR:$Rm))]>;
Evan Cheng53d7dba2007-01-27 00:07:15 +0000838
David Goodwinc9ee1182009-06-25 22:49:55 +0000839// Add immediate
Bill Wendling76f4e102010-12-01 01:20:15 +0000840def tADDi3 : // A8.6.4 T1
Jim Grosbach89e2aa62011-08-16 23:57:34 +0000841 T1sIGenEncodeImm<0b01110, (outs tGPR:$Rd), (ins tGPR:$Rm, imm0_7:$imm3),
Jim Grosbachf921c0fe2011-06-13 22:54:22 +0000842 IIC_iALUi,
Bill Wendling76f4e102010-12-01 01:20:15 +0000843 "add", "\t$Rd, $Rm, $imm3",
844 [(set tGPR:$Rd, (add tGPR:$Rm, imm0_7:$imm3))]> {
Bill Wendling95a6d172010-11-20 01:00:29 +0000845 bits<3> imm3;
846 let Inst{8-6} = imm3;
Bill Wendling95a6d172010-11-20 01:00:29 +0000847}
Evan Chenga8e29892007-01-19 07:51:42 +0000848
Bill Wendlinga5a42d92010-12-01 00:48:44 +0000849def tADDi8 : // A8.6.4 T2
Jim Grosbach89e2aa62011-08-16 23:57:34 +0000850 T1sItGenEncodeImm<{1,1,0,?,?}, (outs tGPR:$Rdn),
851 (ins tGPR:$Rn, imm0_255:$imm8), IIC_iALUi,
Bill Wendlinga5a42d92010-12-01 00:48:44 +0000852 "add", "\t$Rdn, $imm8",
853 [(set tGPR:$Rdn, (add tGPR:$Rn, imm8_255:$imm8))]>;
Evan Chenga8e29892007-01-19 07:51:42 +0000854
David Goodwinc9ee1182009-06-25 22:49:55 +0000855// Add register
Evan Cheng446c4282009-07-11 06:43:01 +0000856let isCommutable = 1 in
Bill Wendling76f4e102010-12-01 01:20:15 +0000857def tADDrr : // A8.6.6 T1
858 T1sIGenEncode<0b01100, (outs tGPR:$Rd), (ins tGPR:$Rn, tGPR:$Rm),
859 IIC_iALUr,
860 "add", "\t$Rd, $Rn, $Rm",
861 [(set tGPR:$Rd, (add tGPR:$Rn, tGPR:$Rm))]>;
Evan Chenga8e29892007-01-19 07:51:42 +0000862
Evan Chengcd799b92009-06-12 20:46:18 +0000863let neverHasSideEffects = 1 in
Bill Wendling0b424dc2010-12-01 01:32:02 +0000864def tADDhirr : T1pIt<(outs GPR:$Rdn), (ins GPR:$Rn, GPR:$Rm), IIC_iALUr,
865 "add", "\t$Rdn, $Rm", []>,
Bill Wendlinga09cc2b2010-11-20 01:18:47 +0000866 T1Special<{0,0,?,?}> {
867 // A8.6.6 T2
Bill Wendling0b424dc2010-12-01 01:32:02 +0000868 bits<4> Rdn;
869 bits<4> Rm;
870 let Inst{7} = Rdn{3};
871 let Inst{6-3} = Rm;
872 let Inst{2-0} = Rdn{2-0};
Bill Wendlinga09cc2b2010-11-20 01:18:47 +0000873}
Evan Chenga8e29892007-01-19 07:51:42 +0000874
Bill Wendlinga09cc2b2010-11-20 01:18:47 +0000875// AND register
Evan Cheng446c4282009-07-11 06:43:01 +0000876let isCommutable = 1 in
Bill Wendlinga5a42d92010-12-01 00:48:44 +0000877def tAND : // A8.6.12
878 T1sItDPEncode<0b0000, (outs tGPR:$Rdn), (ins tGPR:$Rn, tGPR:$Rm),
879 IIC_iBITr,
880 "and", "\t$Rdn, $Rm",
881 [(set tGPR:$Rdn, (and tGPR:$Rn, tGPR:$Rm))]>;
Evan Chenga8e29892007-01-19 07:51:42 +0000882
David Goodwinc9ee1182009-06-25 22:49:55 +0000883// ASR immediate
Bill Wendling76f4e102010-12-01 01:20:15 +0000884def tASRri : // A8.6.14
Owen Anderson6d746312011-08-08 20:42:17 +0000885 T1sIGenEncodeImm<{0,1,0,?,?}, (outs tGPR:$Rd), (ins tGPR:$Rm, imm_sr:$imm5),
Bill Wendling76f4e102010-12-01 01:20:15 +0000886 IIC_iMOVsi,
887 "asr", "\t$Rd, $Rm, $imm5",
Owen Anderson6d746312011-08-08 20:42:17 +0000888 [(set tGPR:$Rd, (sra tGPR:$Rm, (i32 imm_sr:$imm5)))]> {
Bill Wendlinga09cc2b2010-11-20 01:18:47 +0000889 bits<5> imm5;
890 let Inst{10-6} = imm5;
Bill Wendlinga09cc2b2010-11-20 01:18:47 +0000891}
Evan Chenga8e29892007-01-19 07:51:42 +0000892
David Goodwinc9ee1182009-06-25 22:49:55 +0000893// ASR register
Bill Wendlinga5a42d92010-12-01 00:48:44 +0000894def tASRrr : // A8.6.15
895 T1sItDPEncode<0b0100, (outs tGPR:$Rdn), (ins tGPR:$Rn, tGPR:$Rm),
896 IIC_iMOVsr,
897 "asr", "\t$Rdn, $Rm",
898 [(set tGPR:$Rdn, (sra tGPR:$Rn, tGPR:$Rm))]>;
Evan Chenga8e29892007-01-19 07:51:42 +0000899
David Goodwinc9ee1182009-06-25 22:49:55 +0000900// BIC register
Bill Wendlinga5a42d92010-12-01 00:48:44 +0000901def tBIC : // A8.6.20
902 T1sItDPEncode<0b1110, (outs tGPR:$Rdn), (ins tGPR:$Rn, tGPR:$Rm),
903 IIC_iBITr,
904 "bic", "\t$Rdn, $Rm",
905 [(set tGPR:$Rdn, (and tGPR:$Rn, (not tGPR:$Rm)))]>;
Evan Chenga8e29892007-01-19 07:51:42 +0000906
David Goodwinc9ee1182009-06-25 22:49:55 +0000907// CMN register
Gabor Greiff7d10f52010-09-14 22:00:50 +0000908let isCompare = 1, Defs = [CPSR] in {
Jim Grosbachd5d2bae2010-01-22 00:08:13 +0000909//FIXME: Disable CMN, as CCodes are backwards from compare expectations
910// Compare-to-zero still works out, just not the relationals
Bill Wendling0480e282010-12-01 02:36:55 +0000911//def tCMN : // A8.6.33
912// T1pIDPEncode<0b1011, (outs), (ins tGPR:$lhs, tGPR:$rhs),
913// IIC_iCMPr,
914// "cmn", "\t$lhs, $rhs",
915// [(ARMcmp tGPR:$lhs, (ineg tGPR:$rhs))]>;
Bill Wendling1d045ee2010-12-01 02:28:08 +0000916
917def tCMNz : // A8.6.33
918 T1pIDPEncode<0b1011, (outs), (ins tGPR:$Rn, tGPR:$Rm),
919 IIC_iCMPr,
920 "cmn", "\t$Rn, $Rm",
921 [(ARMcmpZ tGPR:$Rn, (ineg tGPR:$Rm))]>;
922
923} // isCompare = 1, Defs = [CPSR]
Lauro Ramos Venancio99966632007-04-02 01:30:03 +0000924
David Goodwinc9ee1182009-06-25 22:49:55 +0000925// CMP immediate
Gabor Greiff7d10f52010-09-14 22:00:50 +0000926let isCompare = 1, Defs = [CPSR] in {
Jim Grosbach0d1511c2011-08-18 18:08:29 +0000927def tCMPi8 : T1pI<(outs), (ins tGPR:$Rn, imm0_255:$imm8), IIC_iCMPi,
Bill Wendling5cc88a22010-11-20 22:52:33 +0000928 "cmp", "\t$Rn, $imm8",
929 [(ARMcmp tGPR:$Rn, imm0_255:$imm8)]>,
930 T1General<{1,0,1,?,?}> {
931 // A8.6.35
932 bits<3> Rn;
933 bits<8> imm8;
934 let Inst{10-8} = Rn;
935 let Inst{7-0} = imm8;
936}
937
David Goodwinc9ee1182009-06-25 22:49:55 +0000938// CMP register
Bill Wendling1d045ee2010-12-01 02:28:08 +0000939def tCMPr : // A8.6.36 T1
940 T1pIDPEncode<0b1010, (outs), (ins tGPR:$Rn, tGPR:$Rm),
941 IIC_iCMPr,
942 "cmp", "\t$Rn, $Rm",
943 [(ARMcmp tGPR:$Rn, tGPR:$Rm)]>;
944
Bill Wendling849f2e32010-11-29 00:18:15 +0000945def tCMPhir : T1pI<(outs), (ins GPR:$Rn, GPR:$Rm), IIC_iCMPr,
946 "cmp", "\t$Rn, $Rm", []>,
947 T1Special<{0,1,?,?}> {
948 // A8.6.36 T2
949 bits<4> Rm;
950 bits<4> Rn;
951 let Inst{7} = Rn{3};
952 let Inst{6-3} = Rm;
953 let Inst{2-0} = Rn{2-0};
954}
Bill Wendling5cc88a22010-11-20 22:52:33 +0000955} // isCompare = 1, Defs = [CPSR]
Lauro Ramos Venancio99966632007-04-02 01:30:03 +0000956
Evan Chenga8e29892007-01-19 07:51:42 +0000957
David Goodwinc9ee1182009-06-25 22:49:55 +0000958// XOR register
Evan Cheng446c4282009-07-11 06:43:01 +0000959let isCommutable = 1 in
Bill Wendlinga5a42d92010-12-01 00:48:44 +0000960def tEOR : // A8.6.45
961 T1sItDPEncode<0b0001, (outs tGPR:$Rdn), (ins tGPR:$Rn, tGPR:$Rm),
962 IIC_iBITr,
963 "eor", "\t$Rdn, $Rm",
964 [(set tGPR:$Rdn, (xor tGPR:$Rn, tGPR:$Rm))]>;
Evan Chenga8e29892007-01-19 07:51:42 +0000965
David Goodwinc9ee1182009-06-25 22:49:55 +0000966// LSL immediate
Bill Wendling76f4e102010-12-01 01:20:15 +0000967def tLSLri : // A8.6.88
Jim Grosbach1b7b68f2011-08-19 19:29:25 +0000968 T1sIGenEncodeImm<{0,0,0,?,?}, (outs tGPR:$Rd), (ins tGPR:$Rm, imm0_31:$imm5),
Bill Wendling76f4e102010-12-01 01:20:15 +0000969 IIC_iMOVsi,
970 "lsl", "\t$Rd, $Rm, $imm5",
971 [(set tGPR:$Rd, (shl tGPR:$Rm, (i32 imm:$imm5)))]> {
Bill Wendlingdcf0a472010-11-21 11:49:36 +0000972 bits<5> imm5;
973 let Inst{10-6} = imm5;
Bill Wendlingdcf0a472010-11-21 11:49:36 +0000974}
Evan Chenga8e29892007-01-19 07:51:42 +0000975
David Goodwinc9ee1182009-06-25 22:49:55 +0000976// LSL register
Bill Wendlinga5a42d92010-12-01 00:48:44 +0000977def tLSLrr : // A8.6.89
978 T1sItDPEncode<0b0010, (outs tGPR:$Rdn), (ins tGPR:$Rn, tGPR:$Rm),
979 IIC_iMOVsr,
980 "lsl", "\t$Rdn, $Rm",
981 [(set tGPR:$Rdn, (shl tGPR:$Rn, tGPR:$Rm))]>;
Evan Chenga8e29892007-01-19 07:51:42 +0000982
David Goodwinc9ee1182009-06-25 22:49:55 +0000983// LSR immediate
Bill Wendling76f4e102010-12-01 01:20:15 +0000984def tLSRri : // A8.6.90
Owen Anderson6d746312011-08-08 20:42:17 +0000985 T1sIGenEncodeImm<{0,0,1,?,?}, (outs tGPR:$Rd), (ins tGPR:$Rm, imm_sr:$imm5),
Bill Wendling76f4e102010-12-01 01:20:15 +0000986 IIC_iMOVsi,
987 "lsr", "\t$Rd, $Rm, $imm5",
Owen Anderson6d746312011-08-08 20:42:17 +0000988 [(set tGPR:$Rd, (srl tGPR:$Rm, (i32 imm_sr:$imm5)))]> {
Bill Wendlingdcf0a472010-11-21 11:49:36 +0000989 bits<5> imm5;
990 let Inst{10-6} = imm5;
Bill Wendlingdcf0a472010-11-21 11:49:36 +0000991}
Evan Chenga8e29892007-01-19 07:51:42 +0000992
David Goodwinc9ee1182009-06-25 22:49:55 +0000993// LSR register
Bill Wendlinga5a42d92010-12-01 00:48:44 +0000994def tLSRrr : // A8.6.91
995 T1sItDPEncode<0b0011, (outs tGPR:$Rdn), (ins tGPR:$Rn, tGPR:$Rm),
996 IIC_iMOVsr,
997 "lsr", "\t$Rdn, $Rm",
998 [(set tGPR:$Rdn, (srl tGPR:$Rn, tGPR:$Rm))]>;
Evan Chenga8e29892007-01-19 07:51:42 +0000999
Bill Wendlingdcf0a472010-11-21 11:49:36 +00001000// Move register
Evan Chengc4af4632010-11-17 20:13:28 +00001001let isMoveImm = 1 in
Jim Grosbach6b8f1e32011-06-27 23:54:06 +00001002def tMOVi8 : T1sI<(outs tGPR:$Rd), (ins imm0_255:$imm8), IIC_iMOVi,
Bill Wendlingdcf0a472010-11-21 11:49:36 +00001003 "mov", "\t$Rd, $imm8",
1004 [(set tGPR:$Rd, imm0_255:$imm8)]>,
1005 T1General<{1,0,0,?,?}> {
1006 // A8.6.96
1007 bits<3> Rd;
1008 bits<8> imm8;
1009 let Inst{10-8} = Rd;
1010 let Inst{7-0} = imm8;
1011}
Jim Grosbach4ec6e882011-08-19 20:46:54 +00001012// Because we have an explicit tMOVSr below, we need an alias to handle
1013// the immediate "movs" form here. Blech.
Jim Grosbacha33b31b2011-08-22 18:04:24 +00001014def : tInstAlias <"movs $Rdn, $imm",
1015 (tMOVi8 tGPR:$Rdn, CPSR, imm0_255:$imm, 14, 0)>;
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
Jim Grosbach86b5d2b2011-08-22 23:25:48 +00001044let isCommutable = 1 in
Bill Wendlinga5a42d92010-12-01 00:48:44 +00001045def tMUL : // A8.6.105 T1
Jim Grosbach88ae2bc2011-08-19 22:07:46 +00001046 Thumb1sI<(outs tGPR:$Rd), (ins tGPR:$Rn, tGPR:$Rm), AddrModeNone, 2,
1047 IIC_iMUL32, "mul", "\t$Rd, $Rn, $Rm", "$Rm = $Rd",
1048 [(set tGPR:$Rd, (mul tGPR:$Rn, tGPR:$Rm))]>,
1049 T1DataProcessing<0b1101> {
1050 bits<3> Rd;
1051 bits<3> Rn;
1052 let Inst{5-3} = Rn;
1053 let Inst{2-0} = Rd;
1054 let AsmMatchConverter = "cvtThumbMultiply";
1055}
1056
Jim Grosbacha33b31b2011-08-22 18:04:24 +00001057def :tInstAlias<"mul${s}${p} $Rdm, $Rn", (tMUL tGPR:$Rdm, s_cc_out:$s, tGPR:$Rn,
1058 pred:$p)>;
Evan Chenga8e29892007-01-19 07:51:42 +00001059
Bill Wendling76f4e102010-12-01 01:20:15 +00001060// Move inverse register
1061def tMVN : // A8.6.107
1062 T1sIDPEncode<0b1111, (outs tGPR:$Rd), (ins tGPR:$Rn), IIC_iMVNr,
1063 "mvn", "\t$Rd, $Rn",
1064 [(set tGPR:$Rd, (not tGPR:$Rn))]>;
Evan Chenga8e29892007-01-19 07:51:42 +00001065
Bill Wendlingdcf0a472010-11-21 11:49:36 +00001066// Bitwise or register
Evan Cheng446c4282009-07-11 06:43:01 +00001067let isCommutable = 1 in
Bill Wendlinga5a42d92010-12-01 00:48:44 +00001068def tORR : // A8.6.114
1069 T1sItDPEncode<0b1100, (outs tGPR:$Rdn), (ins tGPR:$Rn, tGPR:$Rm),
1070 IIC_iBITr,
1071 "orr", "\t$Rdn, $Rm",
1072 [(set tGPR:$Rdn, (or tGPR:$Rn, tGPR:$Rm))]>;
Evan Chenga8e29892007-01-19 07:51:42 +00001073
Bill Wendlingdcf0a472010-11-21 11:49:36 +00001074// Swaps
Bill Wendling1d045ee2010-12-01 02:28:08 +00001075def tREV : // A8.6.134
1076 T1pIMiscEncode<{1,0,1,0,0,0,?}, (outs tGPR:$Rd), (ins tGPR:$Rm),
1077 IIC_iUNAr,
1078 "rev", "\t$Rd, $Rm",
1079 [(set tGPR:$Rd, (bswap tGPR:$Rm))]>,
1080 Requires<[IsThumb, IsThumb1Only, HasV6]>;
Evan Chenga8e29892007-01-19 07:51:42 +00001081
Bill Wendling1d045ee2010-12-01 02:28:08 +00001082def tREV16 : // A8.6.135
1083 T1pIMiscEncode<{1,0,1,0,0,1,?}, (outs tGPR:$Rd), (ins tGPR:$Rm),
1084 IIC_iUNAr,
1085 "rev16", "\t$Rd, $Rm",
Evan Cheng9568e5c2011-06-21 06:01:08 +00001086 [(set tGPR:$Rd, (rotr (bswap tGPR:$Rm), (i32 16)))]>,
Bill Wendling1d045ee2010-12-01 02:28:08 +00001087 Requires<[IsThumb, IsThumb1Only, HasV6]>;
Evan Chenga8e29892007-01-19 07:51:42 +00001088
Bill Wendling1d045ee2010-12-01 02:28:08 +00001089def tREVSH : // A8.6.136
1090 T1pIMiscEncode<{1,0,1,0,1,1,?}, (outs tGPR:$Rd), (ins tGPR:$Rm),
1091 IIC_iUNAr,
1092 "revsh", "\t$Rd, $Rm",
Evan Cheng9568e5c2011-06-21 06:01:08 +00001093 [(set tGPR:$Rd, (sra (bswap tGPR:$Rm), (i32 16)))]>,
Bill Wendling1d045ee2010-12-01 02:28:08 +00001094 Requires<[IsThumb, IsThumb1Only, HasV6]>;
Evan Cheng446c4282009-07-11 06:43:01 +00001095
Bill Wendlinga5a42d92010-12-01 00:48:44 +00001096// Rotate right register
1097def tROR : // A8.6.139
1098 T1sItDPEncode<0b0111, (outs tGPR:$Rdn), (ins tGPR:$Rn, tGPR:$Rm),
1099 IIC_iMOVsr,
1100 "ror", "\t$Rdn, $Rm",
1101 [(set tGPR:$Rdn, (rotr tGPR:$Rn, tGPR:$Rm))]>;
Evan Cheng446c4282009-07-11 06:43:01 +00001102
Bill Wendlinga5a42d92010-12-01 00:48:44 +00001103// Negate register
Bill Wendling76f4e102010-12-01 01:20:15 +00001104def tRSB : // A8.6.141
1105 T1sIDPEncode<0b1001, (outs tGPR:$Rd), (ins tGPR:$Rn),
1106 IIC_iALUi,
1107 "rsb", "\t$Rd, $Rn, #0",
1108 [(set tGPR:$Rd, (ineg tGPR:$Rn))]>;
Evan Chenga8e29892007-01-19 07:51:42 +00001109
David Goodwinc9ee1182009-06-25 22:49:55 +00001110// Subtract with carry register
Evan Cheng446c4282009-07-11 06:43:01 +00001111let Uses = [CPSR] in
Bill Wendlinga5a42d92010-12-01 00:48:44 +00001112def tSBC : // A8.6.151
1113 T1sItDPEncode<0b0110, (outs tGPR:$Rdn), (ins tGPR:$Rn, tGPR:$Rm),
1114 IIC_iALUr,
1115 "sbc", "\t$Rdn, $Rm",
1116 [(set tGPR:$Rdn, (sube tGPR:$Rn, tGPR:$Rm))]>;
Evan Chenga8e29892007-01-19 07:51:42 +00001117
David Goodwinc9ee1182009-06-25 22:49:55 +00001118// Subtract immediate
Bill Wendling76f4e102010-12-01 01:20:15 +00001119def tSUBi3 : // A8.6.210 T1
Jim Grosbachf67e8552011-09-16 22:58:42 +00001120 T1sIGenEncodeImm<0b01111, (outs tGPR:$Rd), (ins tGPR:$Rm, imm0_7:$imm3),
Bill Wendling76f4e102010-12-01 01:20:15 +00001121 IIC_iALUi,
1122 "sub", "\t$Rd, $Rm, $imm3",
1123 [(set tGPR:$Rd, (add tGPR:$Rm, imm0_7_neg:$imm3))]> {
Bill Wendling5cbbf682010-11-29 01:00:43 +00001124 bits<3> imm3;
Bill Wendling5cbbf682010-11-29 01:00:43 +00001125 let Inst{8-6} = imm3;
Bill Wendling5cbbf682010-11-29 01:00:43 +00001126}
Jim Grosbach0ede14f2009-03-27 23:06:27 +00001127
Bill Wendlinga5a42d92010-12-01 00:48:44 +00001128def tSUBi8 : // A8.6.210 T2
Jim Grosbachf67e8552011-09-16 22:58:42 +00001129 T1sItGenEncodeImm<{1,1,1,?,?}, (outs tGPR:$Rdn),
1130 (ins tGPR:$Rn, imm0_255:$imm8), IIC_iALUi,
Bill Wendlinga5a42d92010-12-01 00:48:44 +00001131 "sub", "\t$Rdn, $imm8",
1132 [(set tGPR:$Rdn, (add tGPR:$Rn, imm8_255_neg:$imm8))]>;
Jim Grosbach0ede14f2009-03-27 23:06:27 +00001133
Bill Wendling76f4e102010-12-01 01:20:15 +00001134// Subtract register
1135def tSUBrr : // A8.6.212
1136 T1sIGenEncode<0b01101, (outs tGPR:$Rd), (ins tGPR:$Rn, tGPR:$Rm),
1137 IIC_iALUr,
1138 "sub", "\t$Rd, $Rn, $Rm",
1139 [(set tGPR:$Rd, (sub tGPR:$Rn, tGPR:$Rm))]>;
David Goodwinc9ee1182009-06-25 22:49:55 +00001140
Bill Wendling76f4e102010-12-01 01:20:15 +00001141// Sign-extend byte
Bill Wendling1d045ee2010-12-01 02:28:08 +00001142def tSXTB : // A8.6.222
1143 T1pIMiscEncode<{0,0,1,0,0,1,?}, (outs tGPR:$Rd), (ins tGPR:$Rm),
1144 IIC_iUNAr,
1145 "sxtb", "\t$Rd, $Rm",
1146 [(set tGPR:$Rd, (sext_inreg tGPR:$Rm, i8))]>,
1147 Requires<[IsThumb, IsThumb1Only, HasV6]>;
David Goodwinc9ee1182009-06-25 22:49:55 +00001148
Bill Wendling1d045ee2010-12-01 02:28:08 +00001149// Sign-extend short
1150def tSXTH : // A8.6.224
1151 T1pIMiscEncode<{0,0,1,0,0,0,?}, (outs tGPR:$Rd), (ins tGPR:$Rm),
1152 IIC_iUNAr,
1153 "sxth", "\t$Rd, $Rm",
1154 [(set tGPR:$Rd, (sext_inreg tGPR:$Rm, i16))]>,
1155 Requires<[IsThumb, IsThumb1Only, HasV6]>;
Evan Chenga8e29892007-01-19 07:51:42 +00001156
Bill Wendling1d045ee2010-12-01 02:28:08 +00001157// Test
Gabor Greif007248b2010-09-14 20:47:43 +00001158let isCompare = 1, isCommutable = 1, Defs = [CPSR] in
Bill Wendling1d045ee2010-12-01 02:28:08 +00001159def tTST : // A8.6.230
1160 T1pIDPEncode<0b1000, (outs), (ins tGPR:$Rn, tGPR:$Rm), IIC_iTSTr,
1161 "tst", "\t$Rn, $Rm",
1162 [(ARMcmpZ (and_su tGPR:$Rn, tGPR:$Rm), 0)]>;
Evan Chenga8e29892007-01-19 07:51:42 +00001163
Bill Wendling1d045ee2010-12-01 02:28:08 +00001164// Zero-extend byte
1165def tUXTB : // A8.6.262
1166 T1pIMiscEncode<{0,0,1,0,1,1,?}, (outs tGPR:$Rd), (ins tGPR:$Rm),
1167 IIC_iUNAr,
1168 "uxtb", "\t$Rd, $Rm",
1169 [(set tGPR:$Rd, (and tGPR:$Rm, 0xFF))]>,
1170 Requires<[IsThumb, IsThumb1Only, HasV6]>;
David Goodwinc9ee1182009-06-25 22:49:55 +00001171
Bill Wendling1d045ee2010-12-01 02:28:08 +00001172// Zero-extend short
1173def tUXTH : // A8.6.264
1174 T1pIMiscEncode<{0,0,1,0,1,0,?}, (outs tGPR:$Rd), (ins tGPR:$Rm),
1175 IIC_iUNAr,
1176 "uxth", "\t$Rd, $Rm",
1177 [(set tGPR:$Rd, (and tGPR:$Rm, 0xFFFF))]>,
1178 Requires<[IsThumb, IsThumb1Only, HasV6]>;
Evan Chenga8e29892007-01-19 07:51:42 +00001179
Jim Grosbach80dc1162010-02-16 21:23:02 +00001180// Conditional move tMOVCCr - Used to implement the Thumb SELECT_CC operation.
Dan Gohman533297b2009-10-29 18:10:34 +00001181// Expanded after instruction selection into a branch sequence.
1182let usesCustomInserter = 1 in // Expanded after instruction selection.
Evan Cheng007ea272009-08-12 05:17:19 +00001183 def tMOVCCr_pseudo :
Evan Chengc9721652009-08-12 02:03:03 +00001184 PseudoInst<(outs tGPR:$dst), (ins tGPR:$false, tGPR:$true, pred:$cc),
Jim Grosbach99594eb2010-11-18 01:38:26 +00001185 NoItinerary,
Evan Chengc9721652009-08-12 02:03:03 +00001186 [/*(set tGPR:$dst, (ARMcmov tGPR:$false, tGPR:$true, imm:$cc))*/]>;
Evan Chenga8e29892007-01-19 07:51:42 +00001187
1188// tLEApcrel - Load a pc-relative address into a register without offending the
1189// assembler.
Jim Grosbachd40963c2010-12-14 22:28:03 +00001190
1191def tADR : T1I<(outs tGPR:$Rd), (ins t_adrlabel:$addr, pred:$p),
Jim Grosbach5a1cd042011-08-17 20:37:40 +00001192 IIC_iALUi, "adr{$p}\t$Rd, $addr", []>,
Jim Grosbachd40963c2010-12-14 22:28:03 +00001193 T1Encoding<{1,0,1,0,0,?}> {
Bill Wendling67077412010-11-30 00:18:30 +00001194 bits<3> Rd;
Jim Grosbachd40963c2010-12-14 22:28:03 +00001195 bits<8> addr;
Bill Wendling67077412010-11-30 00:18:30 +00001196 let Inst{10-8} = Rd;
Jim Grosbachd40963c2010-12-14 22:28:03 +00001197 let Inst{7-0} = addr;
Owen Anderson8d7d2e12011-08-09 20:55:18 +00001198 let DecoderMethod = "DecodeThumbAddSpecialReg";
Bill Wendling67077412010-11-30 00:18:30 +00001199}
Evan Chenga8e29892007-01-19 07:51:42 +00001200
Jim Grosbachd40963c2010-12-14 22:28:03 +00001201let neverHasSideEffects = 1, isReMaterializable = 1 in
1202def tLEApcrel : tPseudoInst<(outs tGPR:$Rd), (ins i32imm:$label, pred:$p),
Owen Anderson16884412011-07-13 23:22:26 +00001203 2, IIC_iALUi, []>;
Jim Grosbachd40963c2010-12-14 22:28:03 +00001204
1205def tLEApcrelJT : tPseudoInst<(outs tGPR:$Rd),
1206 (ins i32imm:$label, nohash_imm:$id, pred:$p),
Owen Anderson16884412011-07-13 23:22:26 +00001207 2, IIC_iALUi, []>;
Evan Chengd85ac4d2007-01-27 02:29:45 +00001208
Evan Chenga8e29892007-01-19 07:51:42 +00001209//===----------------------------------------------------------------------===//
Lauro Ramos Venancio64f4fa52007-04-27 13:54:47 +00001210// TLS Instructions
1211//
1212
1213// __aeabi_read_tp preserves the registers r1-r3.
Jim Grosbachff97eb02011-06-30 19:38:01 +00001214// This is a pseudo inst so that we can get the encoding right,
1215// complete with fixup for the aeabi_read_tp function.
1216let isCall = 1, Defs = [R0, R12, LR, CPSR], Uses = [SP] in
Owen Anderson16884412011-07-13 23:22:26 +00001217def tTPsoft : tPseudoInst<(outs), (ins), 4, IIC_Br,
Jim Grosbachff97eb02011-06-30 19:38:01 +00001218 [(set R0, ARMthread_pointer)]>;
Lauro Ramos Venancio64f4fa52007-04-27 13:54:47 +00001219
Bill Wendling0480e282010-12-01 02:36:55 +00001220//===----------------------------------------------------------------------===//
Jim Grosbachd1228742009-12-01 18:10:36 +00001221// SJLJ Exception handling intrinsics
Owen Anderson18901d62011-05-11 17:00:48 +00001222//
Bill Wendling0480e282010-12-01 02:36:55 +00001223
1224// eh_sjlj_setjmp() is an instruction sequence to store the return address and
1225// save #0 in R0 for the non-longjmp case. Since by its nature we may be coming
1226// from some other function to get here, and we're using the stack frame for the
1227// containing function to save/restore registers, we can't keep anything live in
1228// regs across the eh_sjlj_setjmp(), else it will almost certainly have been
Chris Lattner7a2bdde2011-04-15 05:18:47 +00001229// tromped upon when we get here from a longjmp(). We force everything out of
Bill Wendling0480e282010-12-01 02:36:55 +00001230// registers except for our own input by listing the relevant registers in
1231// Defs. By doing so, we also cause the prologue/epilogue code to actively
1232// preserve all of the callee-saved resgisters, which is exactly what we want.
1233// $val is a scratch register for our use.
Andrew Tricka1099f12011-06-07 00:08:49 +00001234let Defs = [ R0, R1, R2, R3, R4, R5, R6, R7, R12, CPSR ],
Bill Wendling13a71212011-10-17 22:26:23 +00001235 hasSideEffects = 1, isBarrier = 1, isCodeGenOnly = 1,
1236 usesCustomInserter = 1 in
Bill Wendling0e45a5a2010-11-30 00:50:22 +00001237def tInt_eh_sjlj_setjmp : ThumbXI<(outs),(ins tGPR:$src, tGPR:$val),
Owen Anderson16884412011-07-13 23:22:26 +00001238 AddrModeNone, 0, NoItinerary, "","",
Bill Wendling0e45a5a2010-11-30 00:50:22 +00001239 [(set R0, (ARMeh_sjlj_setjmp tGPR:$src, tGPR:$val))]>;
Jim Grosbach5eb19512010-05-22 01:06:18 +00001240
Evan Chengafff9412011-12-20 18:26:50 +00001241// FIXME: Non-IOS version(s)
Chris Lattnera4a3a5e2010-10-31 19:15:18 +00001242let isBarrier = 1, hasSideEffects = 1, isTerminator = 1, isCodeGenOnly = 1,
Bill Wendling0e45a5a2010-11-30 00:50:22 +00001243 Defs = [ R7, LR, SP ] in
Jim Grosbach5eb19512010-05-22 01:06:18 +00001244def tInt_eh_sjlj_longjmp : XI<(outs), (ins GPR:$src, GPR:$scratch),
Owen Anderson16884412011-07-13 23:22:26 +00001245 AddrModeNone, 0, IndexModeNone,
Bill Wendling0e45a5a2010-11-30 00:50:22 +00001246 Pseudo, NoItinerary, "", "",
1247 [(ARMeh_sjlj_longjmp GPR:$src, GPR:$scratch)]>,
Evan Chengafff9412011-12-20 18:26:50 +00001248 Requires<[IsThumb, IsIOS]>;
Jim Grosbach5eb19512010-05-22 01:06:18 +00001249
Bob Wilsonf4aea8f2011-12-22 23:39:48 +00001250let Defs = [ R0, R1, R2, R3, R4, R5, R6, R7, R12, CPSR ],
1251 isBarrier = 1 in
1252def tInt_eh_sjlj_dispatchsetup : PseudoInst<(outs), (ins), NoItinerary, []>;
1253
Lauro Ramos Venancio64f4fa52007-04-27 13:54:47 +00001254//===----------------------------------------------------------------------===//
Evan Chenga8e29892007-01-19 07:51:42 +00001255// Non-Instruction Patterns
1256//
1257
Jim Grosbach97a884d2010-12-07 20:41:06 +00001258// Comparisons
1259def : T1Pat<(ARMcmpZ tGPR:$Rn, imm0_255:$imm8),
1260 (tCMPi8 tGPR:$Rn, imm0_255:$imm8)>;
1261def : T1Pat<(ARMcmpZ tGPR:$Rn, tGPR:$Rm),
1262 (tCMPr tGPR:$Rn, tGPR:$Rm)>;
1263
Evan Cheng892837a2009-07-10 02:09:04 +00001264// Add with carry
David Goodwinc9d138f2009-07-27 19:59:26 +00001265def : T1Pat<(addc tGPR:$lhs, imm0_7:$rhs),
1266 (tADDi3 tGPR:$lhs, imm0_7:$rhs)>;
1267def : T1Pat<(addc tGPR:$lhs, imm8_255:$rhs),
Evan Cheng89d177f2009-08-20 17:01:04 +00001268 (tADDi8 tGPR:$lhs, imm8_255:$rhs)>;
David Goodwinc9d138f2009-07-27 19:59:26 +00001269def : T1Pat<(addc tGPR:$lhs, tGPR:$rhs),
1270 (tADDrr tGPR:$lhs, tGPR:$rhs)>;
Evan Cheng892837a2009-07-10 02:09:04 +00001271
1272// Subtract with carry
David Goodwinc9d138f2009-07-27 19:59:26 +00001273def : T1Pat<(addc tGPR:$lhs, imm0_7_neg:$rhs),
1274 (tSUBi3 tGPR:$lhs, imm0_7_neg:$rhs)>;
1275def : T1Pat<(addc tGPR:$lhs, imm8_255_neg:$rhs),
1276 (tSUBi8 tGPR:$lhs, imm8_255_neg:$rhs)>;
1277def : T1Pat<(subc tGPR:$lhs, tGPR:$rhs),
1278 (tSUBrr tGPR:$lhs, tGPR:$rhs)>;
Evan Cheng892837a2009-07-10 02:09:04 +00001279
Evan Chenga8e29892007-01-19 07:51:42 +00001280// ConstantPool, GlobalAddress
David Goodwinc9d138f2009-07-27 19:59:26 +00001281def : T1Pat<(ARMWrapper tglobaladdr :$dst), (tLEApcrel tglobaladdr :$dst)>;
1282def : T1Pat<(ARMWrapper tconstpool :$dst), (tLEApcrel tconstpool :$dst)>;
Evan Chenga8e29892007-01-19 07:51:42 +00001283
Evan Chengd85ac4d2007-01-27 02:29:45 +00001284// JumpTable
David Goodwinc9d138f2009-07-27 19:59:26 +00001285def : T1Pat<(ARMWrapperJT tjumptable:$dst, imm:$id),
1286 (tLEApcrelJT tjumptable:$dst, imm:$id)>;
Evan Chengd85ac4d2007-01-27 02:29:45 +00001287
Evan Chenga8e29892007-01-19 07:51:42 +00001288// Direct calls
Evan Cheng20a2a0a2009-07-29 21:26:42 +00001289def : T1Pat<(ARMtcall texternalsym:$func), (tBL texternalsym:$func)>,
Jakob Stoklund Olesenf16936e2012-04-06 00:04:58 +00001290 Requires<[IsThumb]>;
Evan Cheng20a2a0a2009-07-29 21:26:42 +00001291
1292def : Tv5Pat<(ARMcall texternalsym:$func), (tBLXi texternalsym:$func)>,
Jakob Stoklund Olesenf16936e2012-04-06 00:04:58 +00001293 Requires<[IsThumb, HasV5T]>;
Evan Chenga8e29892007-01-19 07:51:42 +00001294
1295// Indirect calls to ARM routines
Evan Chengb6207242009-08-01 00:16:10 +00001296def : Tv5Pat<(ARMcall GPR:$dst), (tBLXr GPR:$dst)>,
Jakob Stoklund Olesenf16936e2012-04-06 00:04:58 +00001297 Requires<[IsThumb, HasV5T]>;
Evan Chenga8e29892007-01-19 07:51:42 +00001298
1299// zextload i1 -> zextload i8
Bill Wendlingf4caf692010-12-14 03:36:38 +00001300def : T1Pat<(zextloadi1 t_addrmode_rrs1:$addr),
1301 (tLDRBr t_addrmode_rrs1:$addr)>;
1302def : T1Pat<(zextloadi1 t_addrmode_is1:$addr),
1303 (tLDRBi t_addrmode_is1:$addr)>;
Jim Grosbach0ede14f2009-03-27 23:06:27 +00001304
Evan Chengb60c02e2007-01-26 19:13:16 +00001305// extload -> zextload
Bill Wendlingf4caf692010-12-14 03:36:38 +00001306def : T1Pat<(extloadi1 t_addrmode_rrs1:$addr), (tLDRBr t_addrmode_rrs1:$addr)>;
1307def : T1Pat<(extloadi1 t_addrmode_is1:$addr), (tLDRBi t_addrmode_is1:$addr)>;
1308def : T1Pat<(extloadi8 t_addrmode_rrs1:$addr), (tLDRBr t_addrmode_rrs1:$addr)>;
1309def : T1Pat<(extloadi8 t_addrmode_is1:$addr), (tLDRBi t_addrmode_is1:$addr)>;
1310def : T1Pat<(extloadi16 t_addrmode_rrs2:$addr), (tLDRHr t_addrmode_rrs2:$addr)>;
1311def : T1Pat<(extloadi16 t_addrmode_is2:$addr), (tLDRHi t_addrmode_is2:$addr)>;
Evan Chengb60c02e2007-01-26 19:13:16 +00001312
Evan Cheng0e87e232009-08-28 00:31:43 +00001313// If it's impossible to use [r,r] address mode for sextload, select to
Evan Cheng2f297df2009-07-11 07:08:13 +00001314// ldr{b|h} + sxt{b|h} instead.
Bill Wendling415af342010-12-15 00:58:57 +00001315def : T1Pat<(sextloadi8 t_addrmode_is1:$addr),
1316 (tSXTB (tLDRBi t_addrmode_is1:$addr))>,
1317 Requires<[IsThumb, IsThumb1Only, HasV6]>;
Bill Wendlingf4caf692010-12-14 03:36:38 +00001318def : T1Pat<(sextloadi8 t_addrmode_rrs1:$addr),
1319 (tSXTB (tLDRBr t_addrmode_rrs1:$addr))>,
Jim Grosbach6797f892010-11-01 17:08:58 +00001320 Requires<[IsThumb, IsThumb1Only, HasV6]>;
Bill Wendling415af342010-12-15 00:58:57 +00001321def : T1Pat<(sextloadi16 t_addrmode_is2:$addr),
1322 (tSXTH (tLDRHi t_addrmode_is2:$addr))>,
1323 Requires<[IsThumb, IsThumb1Only, HasV6]>;
Bill Wendlingf4caf692010-12-14 03:36:38 +00001324def : T1Pat<(sextloadi16 t_addrmode_rrs2:$addr),
1325 (tSXTH (tLDRHr t_addrmode_rrs2:$addr))>,
Jim Grosbach6797f892010-11-01 17:08:58 +00001326 Requires<[IsThumb, IsThumb1Only, HasV6]>;
Evan Cheng2f297df2009-07-11 07:08:13 +00001327
Bill Wendlingf4caf692010-12-14 03:36:38 +00001328def : T1Pat<(sextloadi8 t_addrmode_rrs1:$addr),
1329 (tASRri (tLSLri (tLDRBr t_addrmode_rrs1:$addr), 24), 24)>;
Bill Wendling415af342010-12-15 00:58:57 +00001330def : T1Pat<(sextloadi8 t_addrmode_is1:$addr),
1331 (tASRri (tLSLri (tLDRBi t_addrmode_is1:$addr), 24), 24)>;
1332def : T1Pat<(sextloadi16 t_addrmode_rrs2:$addr),
1333 (tASRri (tLSLri (tLDRHr t_addrmode_rrs2:$addr), 16), 16)>;
1334def : T1Pat<(sextloadi16 t_addrmode_is2:$addr),
1335 (tASRri (tLSLri (tLDRHi t_addrmode_is2:$addr), 16), 16)>;
Evan Cheng2f297df2009-07-11 07:08:13 +00001336
Eli Friedman7cc15662011-09-15 22:18:49 +00001337def : T1Pat<(atomic_load_8 t_addrmode_is1:$src),
1338 (tLDRBi t_addrmode_is1:$src)>;
1339def : T1Pat<(atomic_load_8 t_addrmode_rrs1:$src),
1340 (tLDRBr t_addrmode_rrs1:$src)>;
1341def : T1Pat<(atomic_load_16 t_addrmode_is2:$src),
1342 (tLDRHi t_addrmode_is2:$src)>;
1343def : T1Pat<(atomic_load_16 t_addrmode_rrs2:$src),
1344 (tLDRHr t_addrmode_rrs2:$src)>;
1345def : T1Pat<(atomic_load_32 t_addrmode_is4:$src),
1346 (tLDRi t_addrmode_is4:$src)>;
1347def : T1Pat<(atomic_load_32 t_addrmode_rrs4:$src),
1348 (tLDRr t_addrmode_rrs4:$src)>;
1349def : T1Pat<(atomic_store_8 t_addrmode_is1:$ptr, tGPR:$val),
1350 (tSTRBi tGPR:$val, t_addrmode_is1:$ptr)>;
1351def : T1Pat<(atomic_store_8 t_addrmode_rrs1:$ptr, tGPR:$val),
1352 (tSTRBr tGPR:$val, t_addrmode_rrs1:$ptr)>;
1353def : T1Pat<(atomic_store_16 t_addrmode_is2:$ptr, tGPR:$val),
1354 (tSTRHi tGPR:$val, t_addrmode_is2:$ptr)>;
1355def : T1Pat<(atomic_store_16 t_addrmode_rrs2:$ptr, tGPR:$val),
1356 (tSTRHr tGPR:$val, t_addrmode_rrs2:$ptr)>;
1357def : T1Pat<(atomic_store_32 t_addrmode_is4:$ptr, tGPR:$val),
1358 (tSTRi tGPR:$val, t_addrmode_is4:$ptr)>;
1359def : T1Pat<(atomic_store_32 t_addrmode_rrs4:$ptr, tGPR:$val),
1360 (tSTRr tGPR:$val, t_addrmode_rrs4:$ptr)>;
1361
Evan Chenga8e29892007-01-19 07:51:42 +00001362// Large immediate handling.
1363
1364// Two piece imms.
Evan Cheng9cb9e672009-06-27 02:26:13 +00001365def : T1Pat<(i32 thumb_immshifted:$src),
1366 (tLSLri (tMOVi8 (thumb_immshifted_val imm:$src)),
1367 (thumb_immshifted_shamt imm:$src))>;
Evan Chenga8e29892007-01-19 07:51:42 +00001368
Evan Cheng9cb9e672009-06-27 02:26:13 +00001369def : T1Pat<(i32 imm0_255_comp:$src),
1370 (tMVN (tMOVi8 (imm_comp_XFORM imm:$src)))>;
Evan Chengb9803a82009-11-06 23:52:48 +00001371
1372// Pseudo instruction that combines ldr from constpool and add pc. This should
1373// be expanded into two instructions late to allow if-conversion and
1374// scheduling.
1375let isReMaterializable = 1 in
1376def tLDRpci_pic : PseudoInst<(outs GPR:$dst), (ins i32imm:$addr, pclabel:$cp),
Bill Wendling0480e282010-12-01 02:36:55 +00001377 NoItinerary,
Evan Chengb9803a82009-11-06 23:52:48 +00001378 [(set GPR:$dst, (ARMpic_add (load (ARMWrapper tconstpool:$addr)),
1379 imm:$cp))]>,
Jim Grosbach6797f892010-11-01 17:08:58 +00001380 Requires<[IsThumb, IsThumb1Only]>;
Jim Grosbach53e3fc42011-07-08 17:40:42 +00001381
1382// Pseudo-instruction for merged POP and return.
1383// FIXME: remove when we have a way to marking a MI with these properties.
1384let isReturn = 1, isTerminator = 1, isBarrier = 1, mayLoad = 1,
1385 hasExtraDefRegAllocReq = 1 in
1386def tPOP_RET : tPseudoExpand<(outs), (ins pred:$p, reglist:$regs, variable_ops),
Owen Anderson16884412011-07-13 23:22:26 +00001387 2, IIC_iPop_Br, [],
Jim Grosbach53e3fc42011-07-08 17:40:42 +00001388 (tPOP pred:$p, reglist:$regs)>;
1389
Jim Grosbachaa8d1b82011-07-08 22:25:23 +00001390// Indirect branch using "mov pc, $Rm"
1391let isBranch = 1, isTerminator = 1, isBarrier = 1, isIndirectBranch = 1 in {
Jim Grosbach7e61a312011-07-08 22:33:49 +00001392 def tBRIND : tPseudoExpand<(outs), (ins GPR:$Rm, pred:$p),
Owen Anderson16884412011-07-13 23:22:26 +00001393 2, IIC_Br, [(brind GPR:$Rm)],
Jim Grosbach7e61a312011-07-08 22:33:49 +00001394 (tMOVr PC, GPR:$Rm, pred:$p)>;
Jim Grosbachaa8d1b82011-07-08 22:25:23 +00001395}
Jim Grosbach0780b632011-08-19 23:24:36 +00001396
1397
1398// In Thumb1, "nop" is encoded as a "mov r8, r8". Technically, the bf00
1399// encoding is available on ARMv6K, but we don't differentiate that finely.
1400def : InstAlias<"nop", (tMOVr R8, R8, 14, 0)>,Requires<[IsThumb, IsThumb1Only]>;
Jim Grosbachabb8aac2011-09-20 00:10:37 +00001401
1402
1403// For round-trip assembly/disassembly, we have to handle a CPS instruction
1404// without any iflags. That's not, strictly speaking, valid syntax, but it's
1405// a useful extention and assembles to defined behaviour (the insn does
1406// nothing).
1407def : tInstAlias<"cps$imod", (tCPS imod_op:$imod, 0)>;
1408def : tInstAlias<"cps$imod", (tCPS imod_op:$imod, 0)>;
Jim Grosbache91e7bc2011-12-13 20:23:22 +00001409
1410// "neg" is and alias for "rsb rd, rn, #0"
1411def : tInstAlias<"neg${s}${p} $Rd, $Rm",
1412 (tRSB tGPR:$Rd, s_cc_out:$s, tGPR:$Rm, pred:$p)>;
1413