blob: 554f6d9f94e17b22545b65e30e3be6867744fd9f [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_comp_XFORM : SDNodeXForm<imm, [{
Owen Anderson825b72b2009-08-11 20:47:22 +000036 return CurDAG->getTargetConstant(~((uint32_t)N->getZExtValue()), MVT::i32);
Evan Chenga8e29892007-01-19 07:51:42 +000037}]>;
38
Evan Chenga8e29892007-01-19 07:51:42 +000039def imm0_7_neg : PatLeaf<(i32 imm), [{
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +000040 return (uint32_t)-N->getZExtValue() < 8;
Evan Chenga8e29892007-01-19 07:51:42 +000041}], imm_neg_XFORM>;
42
Evan Chenga8e29892007-01-19 07:51:42 +000043def imm0_255_comp : PatLeaf<(i32 imm), [{
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +000044 return ~((uint32_t)N->getZExtValue()) < 256;
Evan Chenga8e29892007-01-19 07:51:42 +000045}]>;
46
Eric Christopher8f232d32011-04-28 05:49:04 +000047def imm8_255 : ImmLeaf<i32, [{
48 return Imm >= 8 && Imm < 256;
Evan Chenga8e29892007-01-19 07:51:42 +000049}]>;
50def imm8_255_neg : PatLeaf<(i32 imm), [{
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +000051 unsigned Val = -N->getZExtValue();
Evan Chenga8e29892007-01-19 07:51:42 +000052 return Val >= 8 && Val < 256;
53}], imm_neg_XFORM>;
54
Bill Wendling0480e282010-12-01 02:36:55 +000055// Break imm's up into two pieces: an immediate + a left shift. This uses
56// thumb_immshifted to match and thumb_immshifted_val and thumb_immshifted_shamt
57// to get the val/shift pieces.
Evan Chenga8e29892007-01-19 07:51:42 +000058def thumb_immshifted : PatLeaf<(imm), [{
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +000059 return ARM_AM::isThumbImmShiftedVal((unsigned)N->getZExtValue());
Evan Chenga8e29892007-01-19 07:51:42 +000060}]>;
61
62def thumb_immshifted_val : SDNodeXForm<imm, [{
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +000063 unsigned V = ARM_AM::getThumbImmNonShiftedVal((unsigned)N->getZExtValue());
Owen Anderson825b72b2009-08-11 20:47:22 +000064 return CurDAG->getTargetConstant(V, MVT::i32);
Evan Chenga8e29892007-01-19 07:51:42 +000065}]>;
66
67def thumb_immshifted_shamt : SDNodeXForm<imm, [{
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +000068 unsigned V = ARM_AM::getThumbImmValShift((unsigned)N->getZExtValue());
Owen Anderson825b72b2009-08-11 20:47:22 +000069 return CurDAG->getTargetConstant(V, MVT::i32);
Evan Chenga8e29892007-01-19 07:51:42 +000070}]>;
71
Jim Grosbachd40963c2010-12-14 22:28:03 +000072// ADR instruction labels.
73def t_adrlabel : Operand<i32> {
74 let EncoderMethod = "getThumbAdrLabelOpValue";
75}
76
Evan Cheng2ef9c8a2009-11-19 06:57:41 +000077// Scaled 4 immediate.
Jim Grosbach72f39f82011-08-24 21:22:15 +000078def t_imm0_1020s4_asmoperand: AsmOperandClass { let Name = "Imm0_1020s4"; }
79def t_imm0_1020s4 : Operand<i32> {
Evan Cheng2ef9c8a2009-11-19 06:57:41 +000080 let PrintMethod = "printThumbS4ImmOperand";
Jim Grosbach72f39f82011-08-24 21:22:15 +000081 let ParserMatchClass = t_imm0_1020s4_asmoperand;
82 let OperandType = "OPERAND_IMMEDIATE";
83}
84
85def t_imm0_508s4_asmoperand: AsmOperandClass { let Name = "Imm0_508s4"; }
86def t_imm0_508s4 : Operand<i32> {
87 let PrintMethod = "printThumbS4ImmOperand";
88 let ParserMatchClass = t_imm0_508s4_asmoperand;
Benjamin Kramer151bd172011-07-14 21:47:24 +000089 let OperandType = "OPERAND_IMMEDIATE";
Evan Cheng2ef9c8a2009-11-19 06:57:41 +000090}
Jim Grosbach4e53fe82012-04-05 20:57:13 +000091// Alias use only, so no printer is necessary.
92def t_imm0_508s4_neg_asmoperand: AsmOperandClass { let Name = "Imm0_508s4Neg"; }
93def t_imm0_508s4_neg : Operand<i32> {
94 let ParserMatchClass = t_imm0_508s4_neg_asmoperand;
95 let OperandType = "OPERAND_IMMEDIATE";
96}
Evan Cheng2ef9c8a2009-11-19 06:57:41 +000097
Evan Chenga8e29892007-01-19 07:51:42 +000098// Define Thumb specific addressing modes.
99
Benjamin Kramer151bd172011-07-14 21:47:24 +0000100let OperandType = "OPERAND_PCREL" in {
Jim Grosbache2467172010-12-10 18:21:33 +0000101def t_brtarget : Operand<OtherVT> {
102 let EncoderMethod = "getThumbBRTargetOpValue";
Owen Anderson8d7d2e12011-08-09 20:55:18 +0000103 let DecoderMethod = "DecodeThumbBROperand";
Jim Grosbache2467172010-12-10 18:21:33 +0000104}
105
Jim Grosbach01086452010-12-10 17:13:40 +0000106def t_bcctarget : Operand<i32> {
107 let EncoderMethod = "getThumbBCCTargetOpValue";
Owen Anderson8d7d2e12011-08-09 20:55:18 +0000108 let DecoderMethod = "DecodeThumbBCCTargetOperand";
Jim Grosbach01086452010-12-10 17:13:40 +0000109}
110
Jim Grosbachcf6220a2010-12-09 19:01:46 +0000111def t_cbtarget : Operand<i32> {
Jim Grosbach027d6e82010-12-09 19:04:53 +0000112 let EncoderMethod = "getThumbCBTargetOpValue";
Owen Anderson8d7d2e12011-08-09 20:55:18 +0000113 let DecoderMethod = "DecodeThumbCmpBROperand";
Bill Wendlingdff2f712010-12-08 23:01:43 +0000114}
115
Jim Grosbach662a8162010-12-06 23:57:07 +0000116def t_bltarget : Operand<i32> {
117 let EncoderMethod = "getThumbBLTargetOpValue";
Owen Anderson648f9a72011-08-08 23:25:22 +0000118 let DecoderMethod = "DecodeThumbBLTargetOperand";
Jim Grosbach662a8162010-12-06 23:57:07 +0000119}
120
Bill Wendling09aa3f02010-12-09 00:39:08 +0000121def t_blxtarget : Operand<i32> {
122 let EncoderMethod = "getThumbBLXTargetOpValue";
Owen Anderson6d746312011-08-08 20:42:17 +0000123 let DecoderMethod = "DecodeThumbBLXOffset";
Bill Wendling09aa3f02010-12-09 00:39:08 +0000124}
Benjamin Kramer151bd172011-07-14 21:47:24 +0000125}
Bill Wendling09aa3f02010-12-09 00:39:08 +0000126
Evan Chenga8e29892007-01-19 07:51:42 +0000127// t_addrmode_rr := reg + reg
128//
Jim Grosbach7ce05792011-08-03 23:50:40 +0000129def t_addrmode_rr_asm_operand : AsmOperandClass { let Name = "MemThumbRR"; }
Evan Chenga8e29892007-01-19 07:51:42 +0000130def t_addrmode_rr : Operand<i32>,
131 ComplexPattern<i32, 2, "SelectThumbAddrModeRR", []> {
Bill Wendlingf4caf692010-12-14 03:36:38 +0000132 let EncoderMethod = "getThumbAddrModeRegRegOpValue";
Evan Chenga8e29892007-01-19 07:51:42 +0000133 let PrintMethod = "printThumbAddrModeRROperand";
Owen Anderson305e0462011-08-15 19:00:06 +0000134 let DecoderMethod = "DecodeThumbAddrModeRR";
Jim Grosbach05b01562011-08-19 19:17:58 +0000135 let ParserMatchClass = t_addrmode_rr_asm_operand;
Jim Grosbach30eae3c2009-04-07 20:34:09 +0000136 let MIOperandInfo = (ops tGPR:$base, tGPR:$offsreg);
Evan Chenga8e29892007-01-19 07:51:42 +0000137}
138
Bill Wendlingf4caf692010-12-14 03:36:38 +0000139// t_addrmode_rrs := reg + reg
Evan Chenga8e29892007-01-19 07:51:42 +0000140//
Jim Grosbachc6d7c652011-08-19 16:52:32 +0000141// We use separate scaled versions because the Select* functions need
142// to explicitly check for a matching constant and return false here so that
143// the reg+imm forms will match instead. This is a horrible way to do that,
144// as it forces tight coupling between the methods, but it's how selectiondag
145// currently works.
Bill Wendlingf4caf692010-12-14 03:36:38 +0000146def t_addrmode_rrs1 : Operand<i32>,
147 ComplexPattern<i32, 2, "SelectThumbAddrModeRI5S1", []> {
148 let EncoderMethod = "getThumbAddrModeRegRegOpValue";
149 let PrintMethod = "printThumbAddrModeRROperand";
Owen Anderson8d7d2e12011-08-09 20:55:18 +0000150 let DecoderMethod = "DecodeThumbAddrModeRR";
Jim Grosbach7ce05792011-08-03 23:50:40 +0000151 let ParserMatchClass = t_addrmode_rr_asm_operand;
Bill Wendlingf4caf692010-12-14 03:36:38 +0000152 let MIOperandInfo = (ops tGPR:$base, tGPR:$offsreg);
Evan Chenga8e29892007-01-19 07:51:42 +0000153}
Bill Wendlingf4caf692010-12-14 03:36:38 +0000154def t_addrmode_rrs2 : Operand<i32>,
155 ComplexPattern<i32, 2, "SelectThumbAddrModeRI5S2", []> {
156 let EncoderMethod = "getThumbAddrModeRegRegOpValue";
Owen Anderson8d7d2e12011-08-09 20:55:18 +0000157 let DecoderMethod = "DecodeThumbAddrModeRR";
Bill Wendlingf4caf692010-12-14 03:36:38 +0000158 let PrintMethod = "printThumbAddrModeRROperand";
Jim Grosbach7ce05792011-08-03 23:50:40 +0000159 let ParserMatchClass = t_addrmode_rr_asm_operand;
Bill Wendlingf4caf692010-12-14 03:36:38 +0000160 let MIOperandInfo = (ops tGPR:$base, tGPR:$offsreg);
Bill Wendlingf4caf692010-12-14 03:36:38 +0000161}
162def t_addrmode_rrs4 : Operand<i32>,
163 ComplexPattern<i32, 2, "SelectThumbAddrModeRI5S4", []> {
164 let EncoderMethod = "getThumbAddrModeRegRegOpValue";
Owen Anderson8d7d2e12011-08-09 20:55:18 +0000165 let DecoderMethod = "DecodeThumbAddrModeRR";
Bill Wendlingf4caf692010-12-14 03:36:38 +0000166 let PrintMethod = "printThumbAddrModeRROperand";
Jim Grosbach7ce05792011-08-03 23:50:40 +0000167 let ParserMatchClass = t_addrmode_rr_asm_operand;
Bill Wendlingf4caf692010-12-14 03:36:38 +0000168 let MIOperandInfo = (ops tGPR:$base, tGPR:$offsreg);
Evan Chenga8e29892007-01-19 07:51:42 +0000169}
Evan Chengc38f2bc2007-01-23 22:59:13 +0000170
Bill Wendlingf4caf692010-12-14 03:36:38 +0000171// t_addrmode_is4 := reg + imm5 * 4
Evan Chengc38f2bc2007-01-23 22:59:13 +0000172//
Jim Grosbach60f91a32011-08-19 17:55:24 +0000173def t_addrmode_is4_asm_operand : AsmOperandClass { let Name = "MemThumbRIs4"; }
Bill Wendlingf4caf692010-12-14 03:36:38 +0000174def t_addrmode_is4 : Operand<i32>,
175 ComplexPattern<i32, 2, "SelectThumbAddrModeImm5S4", []> {
176 let EncoderMethod = "getAddrModeISOpValue";
Owen Anderson8d7d2e12011-08-09 20:55:18 +0000177 let DecoderMethod = "DecodeThumbAddrModeIS";
Bill Wendlingf4caf692010-12-14 03:36:38 +0000178 let PrintMethod = "printThumbAddrModeImm5S4Operand";
Jim Grosbach60f91a32011-08-19 17:55:24 +0000179 let ParserMatchClass = t_addrmode_is4_asm_operand;
Bill Wendlingf4caf692010-12-14 03:36:38 +0000180 let MIOperandInfo = (ops tGPR:$base, i32imm:$offsimm);
Bill Wendlingf4caf692010-12-14 03:36:38 +0000181}
182
183// t_addrmode_is2 := reg + imm5 * 2
184//
Jim Grosbach38466302011-08-19 18:55:51 +0000185def t_addrmode_is2_asm_operand : AsmOperandClass { let Name = "MemThumbRIs2"; }
Bill Wendlingf4caf692010-12-14 03:36:38 +0000186def t_addrmode_is2 : Operand<i32>,
187 ComplexPattern<i32, 2, "SelectThumbAddrModeImm5S2", []> {
188 let EncoderMethod = "getAddrModeISOpValue";
Owen Anderson8d7d2e12011-08-09 20:55:18 +0000189 let DecoderMethod = "DecodeThumbAddrModeIS";
Bill Wendlingf4caf692010-12-14 03:36:38 +0000190 let PrintMethod = "printThumbAddrModeImm5S2Operand";
Jim Grosbach38466302011-08-19 18:55:51 +0000191 let ParserMatchClass = t_addrmode_is2_asm_operand;
Bill Wendlingf4caf692010-12-14 03:36:38 +0000192 let MIOperandInfo = (ops tGPR:$base, i32imm:$offsimm);
Bill Wendlingf4caf692010-12-14 03:36:38 +0000193}
194
195// t_addrmode_is1 := reg + imm5
196//
Jim Grosbach48ff5ff2011-08-19 18:49:59 +0000197def t_addrmode_is1_asm_operand : AsmOperandClass { let Name = "MemThumbRIs1"; }
Bill Wendlingf4caf692010-12-14 03:36:38 +0000198def t_addrmode_is1 : Operand<i32>,
199 ComplexPattern<i32, 2, "SelectThumbAddrModeImm5S1", []> {
200 let EncoderMethod = "getAddrModeISOpValue";
Owen Anderson8d7d2e12011-08-09 20:55:18 +0000201 let DecoderMethod = "DecodeThumbAddrModeIS";
Bill Wendlingf4caf692010-12-14 03:36:38 +0000202 let PrintMethod = "printThumbAddrModeImm5S1Operand";
Jim Grosbach48ff5ff2011-08-19 18:49:59 +0000203 let ParserMatchClass = t_addrmode_is1_asm_operand;
Bill Wendlingf4caf692010-12-14 03:36:38 +0000204 let MIOperandInfo = (ops tGPR:$base, i32imm:$offsimm);
Evan Chenga8e29892007-01-19 07:51:42 +0000205}
206
207// t_addrmode_sp := sp + imm8 * 4
208//
Jim Grosbach803b1aa2011-08-23 18:39:41 +0000209// FIXME: This really shouldn't have an explicit SP operand at all. It should
210// be implicit, just like in the instruction encoding itself.
Jim Grosbachecd85892011-08-19 18:13:48 +0000211def t_addrmode_sp_asm_operand : AsmOperandClass { let Name = "MemThumbSPI"; }
Evan Chenga8e29892007-01-19 07:51:42 +0000212def t_addrmode_sp : Operand<i32>,
213 ComplexPattern<i32, 2, "SelectThumbAddrModeSP", []> {
Jim Grosbachd967cd02010-12-07 21:50:47 +0000214 let EncoderMethod = "getAddrModeThumbSPOpValue";
Owen Anderson648f9a72011-08-08 23:25:22 +0000215 let DecoderMethod = "DecodeThumbAddrModeSP";
Evan Chenga8e29892007-01-19 07:51:42 +0000216 let PrintMethod = "printThumbAddrModeSPOperand";
Jim Grosbachecd85892011-08-19 18:13:48 +0000217 let ParserMatchClass = t_addrmode_sp_asm_operand;
Jakob Stoklund Olesenc5b7ef12010-01-13 00:43:06 +0000218 let MIOperandInfo = (ops GPR:$base, i32imm:$offsimm);
Evan Chenga8e29892007-01-19 07:51:42 +0000219}
220
Bill Wendlingb8958b02010-12-08 01:57:09 +0000221// t_addrmode_pc := <label> => pc + imm8 * 4
222//
223def t_addrmode_pc : Operand<i32> {
224 let EncoderMethod = "getAddrModePCOpValue";
Owen Anderson8d7d2e12011-08-09 20:55:18 +0000225 let DecoderMethod = "DecodeThumbAddrModePC";
Bill Wendlingb8958b02010-12-08 01:57:09 +0000226}
227
Evan Chenga8e29892007-01-19 07:51:42 +0000228//===----------------------------------------------------------------------===//
229// Miscellaneous Instructions.
230//
231
Jim Grosbach4642ad32010-02-22 23:10:38 +0000232// FIXME: Marking these as hasSideEffects is necessary to prevent machine DCE
233// from removing one half of the matched pairs. That breaks PEI, which assumes
234// these will always be in pairs, and asserts if it finds otherwise. Better way?
235let Defs = [SP], Uses = [SP], hasSideEffects = 1 in {
Evan Cheng44bec522007-05-15 01:29:07 +0000236def tADJCALLSTACKUP :
Bill Wendlinga8981662010-11-19 22:02:18 +0000237 PseudoInst<(outs), (ins i32imm:$amt1, i32imm:$amt2), NoItinerary,
238 [(ARMcallseq_end imm:$amt1, imm:$amt2)]>,
239 Requires<[IsThumb, IsThumb1Only]>;
Evan Cheng44bec522007-05-15 01:29:07 +0000240
Jim Grosbach0ede14f2009-03-27 23:06:27 +0000241def tADJCALLSTACKDOWN :
Bill Wendlinga8981662010-11-19 22:02:18 +0000242 PseudoInst<(outs), (ins i32imm:$amt), NoItinerary,
243 [(ARMcallseq_start imm:$amt)]>,
244 Requires<[IsThumb, IsThumb1Only]>;
Evan Cheng071a2792007-09-11 19:55:27 +0000245}
Evan Cheng44bec522007-05-15 01:29:07 +0000246
Jim Grosbach421993f2011-08-17 23:08:57 +0000247class T1SystemEncoding<bits<8> opc>
Bill Wendlinga46a4932010-11-29 22:15:03 +0000248 : T1Encoding<0b101111> {
Jim Grosbach421993f2011-08-17 23:08:57 +0000249 let Inst{9-8} = 0b11;
250 let Inst{7-0} = opc;
Bill Wendlinga46a4932010-11-29 22:15:03 +0000251}
252
Jim Grosbach421993f2011-08-17 23:08:57 +0000253def tNOP : T1pI<(outs), (ins), NoItinerary, "nop", "", []>,
Jim Grosbach0780b632011-08-19 23:24:36 +0000254 T1SystemEncoding<0x00>, // A8.6.110
255 Requires<[IsThumb2]>;
Johnny Chenbd2c6232010-02-25 03:28:51 +0000256
Jim Grosbach421993f2011-08-17 23:08:57 +0000257def tYIELD : T1pI<(outs), (ins), NoItinerary, "yield", "", []>,
Richard Barton0a552d62012-05-02 09:43:18 +0000258 T1SystemEncoding<0x10>, // A8.6.410
259 Requires<[IsThumb2]>;
Johnny Chend86d2692010-02-25 17:51:03 +0000260
Jim Grosbach421993f2011-08-17 23:08:57 +0000261def tWFE : T1pI<(outs), (ins), NoItinerary, "wfe", "", []>,
Richard Barton0a552d62012-05-02 09:43:18 +0000262 T1SystemEncoding<0x20>, // A8.6.408
263 Requires<[IsThumb2]>;
Johnny Chend86d2692010-02-25 17:51:03 +0000264
Jim Grosbach421993f2011-08-17 23:08:57 +0000265def tWFI : T1pI<(outs), (ins), NoItinerary, "wfi", "", []>,
Richard Barton0a552d62012-05-02 09:43:18 +0000266 T1SystemEncoding<0x30>, // A8.6.409
267 Requires<[IsThumb2]>;
Johnny Chend86d2692010-02-25 17:51:03 +0000268
Jim Grosbach421993f2011-08-17 23:08:57 +0000269def tSEV : T1pI<(outs), (ins), NoItinerary, "sev", "", []>,
Richard Barton0a552d62012-05-02 09:43:18 +0000270 T1SystemEncoding<0x40>, // A8.6.157
271 Requires<[IsThumb2]>;
Bill Wendlinga46a4932010-11-29 22:15:03 +0000272
Jim Grosbach421993f2011-08-17 23:08:57 +0000273// The imm operand $val can be used by a debugger to store more information
Bill Wendlinga46a4932010-11-29 22:15:03 +0000274// about the breakpoint.
Jim Grosbach421993f2011-08-17 23:08:57 +0000275def tBKPT : T1I<(outs), (ins imm0_255:$val), NoItinerary, "bkpt\t$val",
276 []>,
277 T1Encoding<0b101111> {
278 let Inst{9-8} = 0b10;
Bill Wendlinga46a4932010-11-29 22:15:03 +0000279 // A8.6.22
280 bits<8> val;
281 let Inst{7-0} = val;
282}
Johnny Chend86d2692010-02-25 17:51:03 +0000283
Jim Grosbach06322472011-07-22 17:52:23 +0000284def tSETEND : T1I<(outs), (ins setend_op:$end), NoItinerary, "setend\t$end",
285 []>, T1Encoding<0b101101> {
286 bits<1> end;
Bill Wendling7d0affd2010-11-21 10:55:23 +0000287 // A8.6.156
Johnny Chend86d2692010-02-25 17:51:03 +0000288 let Inst{9-5} = 0b10010;
Bill Wendlinga8981662010-11-19 22:02:18 +0000289 let Inst{4} = 1;
Jim Grosbach06322472011-07-22 17:52:23 +0000290 let Inst{3} = end;
Bill Wendlinga8981662010-11-19 22:02:18 +0000291 let Inst{2-0} = 0b000;
Johnny Chend86d2692010-02-25 17:51:03 +0000292}
293
Johnny Chen93042d12010-03-02 18:14:57 +0000294// Change Processor State is a system instruction -- for disassembly only.
Bruno Cardoso Lopesa2b6e412011-02-14 13:09:44 +0000295def tCPS : T1I<(outs), (ins imod_op:$imod, iflags_op:$iflags),
Jim Grosbach26215422011-09-20 00:00:06 +0000296 NoItinerary, "cps$imod $iflags", []>,
Bill Wendling849f2e32010-11-29 00:18:15 +0000297 T1Misc<0b0110011> {
298 // A8.6.38 & B6.1.1
Bruno Cardoso Lopesa2b6e412011-02-14 13:09:44 +0000299 bit imod;
300 bits<3> iflags;
301
302 let Inst{4} = imod;
303 let Inst{3} = 0;
304 let Inst{2-0} = iflags;
Owen Anderson8d7d2e12011-08-09 20:55:18 +0000305 let DecoderMethod = "DecodeThumbCPS";
Bill Wendling849f2e32010-11-29 00:18:15 +0000306}
Johnny Chen93042d12010-03-02 18:14:57 +0000307
Evan Cheng35d6c412009-08-04 23:47:55 +0000308// For both thumb1 and thumb2.
Chris Lattnera4a3a5e2010-10-31 19:15:18 +0000309let isNotDuplicable = 1, isCodeGenOnly = 1 in
Jim Grosbacha3fbadf2010-09-30 19:53:58 +0000310def tPICADD : TIt<(outs GPR:$dst), (ins GPR:$lhs, pclabel:$cp), IIC_iALUr, "",
Bill Wendling0ae28e42010-11-19 22:37:33 +0000311 [(set GPR:$dst, (ARMpic_add GPR:$lhs, imm:$cp))]>,
Johnny Chend68e1192009-12-15 17:24:14 +0000312 T1Special<{0,0,?,?}> {
Bill Wendling0e45a5a2010-11-30 00:50:22 +0000313 // A8.6.6
Bill Wendling0ae28e42010-11-19 22:37:33 +0000314 bits<3> dst;
Bill Wendling0e45a5a2010-11-30 00:50:22 +0000315 let Inst{6-3} = 0b1111; // Rm = pc
Bill Wendling0ae28e42010-11-19 22:37:33 +0000316 let Inst{2-0} = dst;
Johnny Chend68e1192009-12-15 17:24:14 +0000317}
Evan Chenga8e29892007-01-19 07:51:42 +0000318
Bill Wendling0ae28e42010-11-19 22:37:33 +0000319// ADD <Rd>, sp, #<imm8>
Jakob Stoklund Olesen53484962011-10-15 00:57:13 +0000320// FIXME: This should not be marked as having side effects, and it should be
321// rematerializable. Clearing the side effect bit causes miscompilations,
322// probably because the instruction can be moved around.
Jim Grosbach72f39f82011-08-24 21:22:15 +0000323def tADDrSPi : T1pI<(outs tGPR:$dst), (ins GPRsp:$sp, t_imm0_1020s4:$imm),
324 IIC_iALUi, "add", "\t$dst, $sp, $imm", []>,
Bill Wendling0ae28e42010-11-19 22:37:33 +0000325 T1Encoding<{1,0,1,0,1,?}> {
326 // A6.2 & A8.6.8
327 bits<3> dst;
Jim Grosbach72f39f82011-08-24 21:22:15 +0000328 bits<8> imm;
Bill Wendling0ae28e42010-11-19 22:37:33 +0000329 let Inst{10-8} = dst;
Jim Grosbach72f39f82011-08-24 21:22:15 +0000330 let Inst{7-0} = imm;
Owen Anderson8d7d2e12011-08-09 20:55:18 +0000331 let DecoderMethod = "DecodeThumbAddSpecialReg";
Bill Wendling0ae28e42010-11-19 22:37:33 +0000332}
333
334// ADD sp, sp, #<imm7>
Jim Grosbach72f39f82011-08-24 21:22:15 +0000335def tADDspi : T1pIt<(outs GPRsp:$Rdn), (ins GPRsp:$Rn, t_imm0_508s4:$imm),
336 IIC_iALUi, "add", "\t$Rdn, $imm", []>,
Bill Wendling0ae28e42010-11-19 22:37:33 +0000337 T1Misc<{0,0,0,0,0,?,?}> {
338 // A6.2.5 & A8.6.8
Jim Grosbach72f39f82011-08-24 21:22:15 +0000339 bits<7> imm;
340 let Inst{6-0} = imm;
Owen Anderson8d7d2e12011-08-09 20:55:18 +0000341 let DecoderMethod = "DecodeThumbAddSPImm";
Bill Wendling0ae28e42010-11-19 22:37:33 +0000342}
Evan Cheng7dcf4a82009-06-25 01:05:06 +0000343
Bill Wendling0ae28e42010-11-19 22:37:33 +0000344// SUB sp, sp, #<imm7>
345// FIXME: The encoding and the ASM string don't match up.
Jim Grosbach72f39f82011-08-24 21:22:15 +0000346def tSUBspi : T1pIt<(outs GPRsp:$Rdn), (ins GPRsp:$Rn, t_imm0_508s4:$imm),
347 IIC_iALUi, "sub", "\t$Rdn, $imm", []>,
Bill Wendling0ae28e42010-11-19 22:37:33 +0000348 T1Misc<{0,0,0,0,1,?,?}> {
349 // A6.2.5 & A8.6.214
Jim Grosbach72f39f82011-08-24 21:22:15 +0000350 bits<7> imm;
351 let Inst{6-0} = imm;
Owen Anderson8d7d2e12011-08-09 20:55:18 +0000352 let DecoderMethod = "DecodeThumbAddSPImm";
Bill Wendling0ae28e42010-11-19 22:37:33 +0000353}
Evan Cheng86198642009-08-07 00:34:42 +0000354
Jim Grosbach4e53fe82012-04-05 20:57:13 +0000355def : tInstAlias<"add${p} sp, $imm",
356 (tSUBspi SP, t_imm0_508s4_neg:$imm, pred:$p)>;
357def : tInstAlias<"add${p} sp, sp, $imm",
358 (tSUBspi SP, t_imm0_508s4_neg:$imm, pred:$p)>;
359
Jim Grosbachf69c8042011-08-24 21:42:27 +0000360// Can optionally specify SP as a three operand instruction.
361def : tInstAlias<"add${p} sp, sp, $imm",
362 (tADDspi SP, t_imm0_508s4:$imm, pred:$p)>;
363def : tInstAlias<"sub${p} sp, sp, $imm",
364 (tSUBspi SP, t_imm0_508s4:$imm, pred:$p)>;
365
Bill Wendling0ae28e42010-11-19 22:37:33 +0000366// ADD <Rm>, sp
Jim Grosbacha9cc08f2012-04-27 23:51:36 +0000367def tADDrSP : T1pI<(outs GPR:$Rdn), (ins GPRsp:$sp, GPR:$Rn), IIC_iALUr,
368 "add", "\t$Rdn, $sp, $Rn", []>,
Johnny Chend68e1192009-12-15 17:24:14 +0000369 T1Special<{0,0,?,?}> {
Bill Wendling0ae28e42010-11-19 22:37:33 +0000370 // A8.6.9 Encoding T1
Jim Grosbach5b815842011-08-24 17:46:13 +0000371 bits<4> Rdn;
372 let Inst{7} = Rdn{3};
Bill Wendling0ae28e42010-11-19 22:37:33 +0000373 let Inst{6-3} = 0b1101;
Jim Grosbach5b815842011-08-24 17:46:13 +0000374 let Inst{2-0} = Rdn{2-0};
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
Bill Wendling0ae28e42010-11-19 22:37:33 +0000378// ADD sp, <Rm>
Jim Grosbach72f39f82011-08-24 21:22:15 +0000379def tADDspr : T1pIt<(outs GPRsp:$Rdn), (ins GPRsp:$Rn, GPR:$Rm), IIC_iALUr,
380 "add", "\t$Rdn, $Rm", []>,
Johnny Chend68e1192009-12-15 17:24:14 +0000381 T1Special<{0,0,?,?}> {
382 // A8.6.9 Encoding T2
Jim Grosbach72f39f82011-08-24 21:22:15 +0000383 bits<4> Rm;
Johnny Chend68e1192009-12-15 17:24:14 +0000384 let Inst{7} = 1;
Jim Grosbach72f39f82011-08-24 21:22:15 +0000385 let Inst{6-3} = Rm;
Johnny Chend68e1192009-12-15 17:24:14 +0000386 let Inst{2-0} = 0b101;
Owen Anderson8d7d2e12011-08-09 20:55:18 +0000387 let DecoderMethod = "DecodeThumbAddSPReg";
Johnny Chend68e1192009-12-15 17:24:14 +0000388}
Evan Cheng86198642009-08-07 00:34:42 +0000389
Evan Chenga8e29892007-01-19 07:51:42 +0000390//===----------------------------------------------------------------------===//
391// Control Flow Instructions.
392//
393
Bob Wilson8d4de5a2009-10-28 18:26:41 +0000394// Indirect branches
395let isBranch = 1, isTerminator = 1, isBarrier = 1, isIndirectBranch = 1 in {
Cameron Zwarich421b1062011-05-26 03:41:12 +0000396 def tBX : TI<(outs), (ins GPR:$Rm, pred:$p), IIC_Br, "bx${p}\t$Rm", []>,
397 T1Special<{1,1,0,?}> {
398 // A6.2.3 & A8.6.25
399 bits<4> Rm;
400 let Inst{6-3} = Rm;
401 let Inst{2-0} = 0b000;
James Molloy3015dfb2012-02-09 10:56:31 +0000402 let Unpredictable{2-0} = 0b111;
Cameron Zwarich421b1062011-05-26 03:41:12 +0000403 }
Bob Wilson8d4de5a2009-10-28 18:26:41 +0000404}
405
Jim Grosbachead77cd2011-07-08 21:04:05 +0000406let isReturn = 1, isTerminator = 1, isBarrier = 1 in {
Owen Anderson16884412011-07-13 23:22:26 +0000407 def tBX_RET : tPseudoExpand<(outs), (ins pred:$p), 2, IIC_Br,
Jim Grosbach25e6d482011-07-08 21:50:04 +0000408 [(ARMretflag)], (tBX LR, pred:$p)>;
Jim Grosbachead77cd2011-07-08 21:04:05 +0000409
410 // Alternative return instruction used by vararg functions.
Jim Grosbach25e6d482011-07-08 21:50:04 +0000411 def tBX_RET_vararg : tPseudoExpand<(outs), (ins tGPR:$Rm, pred:$p),
Owen Anderson16884412011-07-13 23:22:26 +0000412 2, IIC_Br, [],
Jim Grosbach25e6d482011-07-08 21:50:04 +0000413 (tBX GPR:$Rm, pred:$p)>;
Jim Grosbachead77cd2011-07-08 21:04:05 +0000414}
415
Bill Wendling0480e282010-12-01 02:36:55 +0000416// All calls clobber the non-callee saved registers. SP is marked as a use to
417// prevent stack-pointer assignments that appear immediately before calls from
418// potentially appearing dead.
Jim Grosbach0ede14f2009-03-27 23:06:27 +0000419let isCall = 1,
Jakob Stoklund Olesenc54f6342012-02-24 01:19:29 +0000420 Defs = [LR], Uses = [SP] in {
Evan Chengb6207242009-08-01 00:16:10 +0000421 // Also used for Thumb2
Johnny Chend68e1192009-12-15 17:24:14 +0000422 def tBL : TIx2<0b11110, 0b11, 1,
Jakob Stoklund Olesen135fb452012-07-13 20:27:00 +0000423 (outs), (ins pred:$p, t_bltarget:$func), IIC_Br,
Owen Anderson0af0dc82011-07-18 18:50:52 +0000424 "bl${p}\t$func",
Johnny Chend68e1192009-12-15 17:24:14 +0000425 [(ARMtcall tglobaladdr:$func)]>,
Jakob Stoklund Olesenf16936e2012-04-06 00:04:58 +0000426 Requires<[IsThumb]> {
Kevin Enderby2d524b02012-05-03 22:41:56 +0000427 bits<24> func;
428 let Inst{26} = func{23};
Jim Grosbach662a8162010-12-06 23:57:07 +0000429 let Inst{25-16} = func{20-11};
Kevin Enderby2d524b02012-05-03 22:41:56 +0000430 let Inst{13} = func{22};
431 let Inst{11} = func{21};
Jim Grosbach662a8162010-12-06 23:57:07 +0000432 let Inst{10-0} = func{10-0};
Bill Wendling534a5e42010-12-03 01:55:47 +0000433 }
Evan Cheng20a2a0a2009-07-29 21:26:42 +0000434
Evan Chengb6207242009-08-01 00:16:10 +0000435 // ARMv5T and above, also used for Thumb2
Johnny Chend68e1192009-12-15 17:24:14 +0000436 def tBLXi : TIx2<0b11110, 0b11, 0,
Jakob Stoklund Olesen135fb452012-07-13 20:27:00 +0000437 (outs), (ins pred:$p, t_blxtarget:$func), IIC_Br,
Owen Anderson0af0dc82011-07-18 18:50:52 +0000438 "blx${p}\t$func",
Johnny Chend68e1192009-12-15 17:24:14 +0000439 [(ARMcall tglobaladdr:$func)]>,
Jakob Stoklund Olesenf16936e2012-04-06 00:04:58 +0000440 Requires<[IsThumb, HasV5T]> {
Kevin Enderby2d524b02012-05-03 22:41:56 +0000441 bits<24> func;
442 let Inst{26} = func{23};
Jim Grosbach662a8162010-12-06 23:57:07 +0000443 let Inst{25-16} = func{20-11};
Kevin Enderby2d524b02012-05-03 22:41:56 +0000444 let Inst{13} = func{22};
445 let Inst{11} = func{21};
Jim Grosbach662a8162010-12-06 23:57:07 +0000446 let Inst{10-1} = func{10-1};
447 let Inst{0} = 0; // func{0} is assumed zero
Jim Grosbach4fa102b2010-12-03 22:33:42 +0000448 }
Evan Cheng20a2a0a2009-07-29 21:26:42 +0000449
Evan Chengb6207242009-08-01 00:16:10 +0000450 // Also used for Thumb2
Jakob Stoklund Olesen135fb452012-07-13 20:27:00 +0000451 def tBLXr : TI<(outs), (ins pred:$p, GPR:$func), IIC_Br,
Owen Anderson0af0dc82011-07-18 18:50:52 +0000452 "blx${p}\t$func",
Evan Chengb6207242009-08-01 00:16:10 +0000453 [(ARMtcall GPR:$func)]>,
Jakob Stoklund Olesenf16936e2012-04-06 00:04:58 +0000454 Requires<[IsThumb, HasV5T]>,
Owen Anderson18901d62011-05-11 17:00:48 +0000455 T1Special<{1,1,1,?}> { // A6.2.3 & A8.6.24;
456 bits<4> func;
457 let Inst{6-3} = func;
458 let Inst{2-0} = 0b000;
459 }
Evan Cheng20a2a0a2009-07-29 21:26:42 +0000460
Lauro Ramos Venanciob8a93a42007-03-27 16:19:21 +0000461 // ARMv4T
Jakob Stoklund Olesen135fb452012-07-13 20:27:00 +0000462 def tBX_CALL : tPseudoInst<(outs), (ins tGPR:$func),
Owen Anderson16884412011-07-13 23:22:26 +0000463 4, IIC_Br,
Evan Cheng20a2a0a2009-07-29 21:26:42 +0000464 [(ARMcall_nolink tGPR:$func)]>,
Jakob Stoklund Olesenf16936e2012-04-06 00:04:58 +0000465 Requires<[IsThumb, IsThumb1Only]>;
Evan Chenga8e29892007-01-19 07:51:42 +0000466}
467
Bill Wendling0480e282010-12-01 02:36:55 +0000468let isBranch = 1, isTerminator = 1, isBarrier = 1 in {
469 let isPredicable = 1 in
Owen Anderson51f6a7a2011-09-09 21:48:23 +0000470 def tB : T1pI<(outs), (ins t_brtarget:$target), IIC_Br,
471 "b", "\t$target", [(br bb:$target)]>,
Jim Grosbache2467172010-12-10 18:21:33 +0000472 T1Encoding<{1,1,1,0,0,?}> {
473 bits<11> target;
474 let Inst{10-0} = target;
475 }
Evan Chenga8e29892007-01-19 07:51:42 +0000476
Evan Cheng225dfe92007-01-30 01:13:37 +0000477 // Far jump
Jim Grosbach3efad8f2010-12-16 19:11:16 +0000478 // Just a pseudo for a tBL instruction. Needed to let regalloc know about
479 // the clobber of LR.
Evan Cheng53c67c02009-08-07 05:45:07 +0000480 let Defs = [LR] in
Owen Anderson0af0dc82011-07-18 18:50:52 +0000481 def tBfar : tPseudoExpand<(outs), (ins t_bltarget:$target, pred:$p),
482 4, IIC_Br, [], (tBL pred:$p, t_bltarget:$target)>;
Evan Cheng225dfe92007-01-30 01:13:37 +0000483
Jim Grosbachf1aa47d2010-11-29 19:32:47 +0000484 def tBR_JTr : tPseudoInst<(outs),
485 (ins tGPR:$target, i32imm:$jt, i32imm:$id),
Owen Anderson16884412011-07-13 23:22:26 +0000486 0, IIC_Br,
Jim Grosbachf1aa47d2010-11-29 19:32:47 +0000487 [(ARMbrjt tGPR:$target, tjumptable:$jt, imm:$id)]> {
488 list<Predicate> Predicates = [IsThumb, IsThumb1Only];
Johnny Chenbbc71b22009-12-16 02:32:54 +0000489 }
Evan Chengd85ac4d2007-01-27 02:29:45 +0000490}
491
Evan Chengc85e8322007-07-05 07:13:32 +0000492// FIXME: should be able to write a pattern for ARMBrcond, but can't use
Jim Grosbach0ede14f2009-03-27 23:06:27 +0000493// a two-value operand where a dag node expects two operands. :(
Evan Chengffbacca2007-07-21 00:34:19 +0000494let isBranch = 1, isTerminator = 1 in
Jim Grosbach01086452010-12-10 17:13:40 +0000495 def tBcc : T1I<(outs), (ins t_bcctarget:$target, pred:$p), IIC_Br,
Jim Grosbachceab5012010-12-04 00:20:40 +0000496 "b${p}\t$target",
Johnny Chend68e1192009-12-15 17:24:14 +0000497 [/*(ARMbrcond bb:$target, imm:$cc)*/]>,
Eric Christopher33281b22011-05-27 03:50:53 +0000498 T1BranchCond<{1,1,0,1}> {
Jim Grosbachceab5012010-12-04 00:20:40 +0000499 bits<4> p;
Jim Grosbach01086452010-12-10 17:13:40 +0000500 bits<8> target;
Jim Grosbachceab5012010-12-04 00:20:40 +0000501 let Inst{11-8} = p;
Jim Grosbach01086452010-12-10 17:13:40 +0000502 let Inst{7-0} = target;
Jim Grosbachceab5012010-12-04 00:20:40 +0000503}
Evan Chenga8e29892007-01-19 07:51:42 +0000504
Jim Grosbache36e21e2011-07-08 20:13:35 +0000505// Tail calls
506let isCall = 1, isTerminator = 1, isReturn = 1, isBarrier = 1 in {
Evan Chengafff9412011-12-20 18:26:50 +0000507 // IOS versions.
Jakob Stoklund Olesenc54f6342012-02-24 01:19:29 +0000508 let Uses = [SP] in {
Jakob Stoklund Olesen135fb452012-07-13 20:27:00 +0000509 def tTAILJMPr : tPseudoExpand<(outs), (ins tcGPR:$dst),
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))>,
Jakob Stoklund Olesenaa395e82012-04-06 21:17:42 +0000512 Requires<[IsThumb]>;
Jim Grosbache36e21e2011-07-08 20:13:35 +0000513 }
Jakob Stoklund Olesenaa395e82012-04-06 21:17:42 +0000514 // tTAILJMPd: IOS version uses a Thumb2 branch (no Thumb1 tail calls
515 // on IOS), so it's in ARMInstrThumb2.td.
516 // Non-IOS version:
Jakob Stoklund Olesenc54f6342012-02-24 01:19:29 +0000517 let Uses = [SP] in {
Owen Anderson51f6a7a2011-09-09 21:48:23 +0000518 def tTAILJMPdND : tPseudoExpand<(outs),
Jakob Stoklund Olesen135fb452012-07-13 20:27:00 +0000519 (ins t_brtarget:$dst, pred:$p),
Owen Anderson16884412011-07-13 23:22:26 +0000520 4, IIC_Br, [],
Owen Anderson51f6a7a2011-09-09 21:48:23 +0000521 (tB t_brtarget:$dst, pred:$p)>,
Evan Chengafff9412011-12-20 18:26:50 +0000522 Requires<[IsThumb, IsNotIOS]>;
Jim Grosbache36e21e2011-07-08 20:13:35 +0000523 }
524}
525
526
Jim Grosbachec8b8662011-08-23 19:49:10 +0000527// A8.6.218 Supervisor Call (Software Interrupt)
Johnny Chen4c61cdd2010-02-25 02:21:11 +0000528// A8.6.16 B: Encoding T1
529// If Inst{11-8} == 0b1111 then SEE SVC
Evan Cheng1e0eab12010-11-29 22:43:27 +0000530let isCall = 1, Uses = [SP] in
Jim Grosbached838482011-07-26 16:24:27 +0000531def tSVC : T1pI<(outs), (ins imm0_255:$imm), IIC_Br,
Bill Wendling6179c312010-11-20 00:53:35 +0000532 "svc", "\t$imm", []>, Encoding16 {
533 bits<8> imm;
Johnny Chen4c61cdd2010-02-25 02:21:11 +0000534 let Inst{15-12} = 0b1101;
Bill Wendling6179c312010-11-20 00:53:35 +0000535 let Inst{11-8} = 0b1111;
536 let Inst{7-0} = imm;
Johnny Chen4c61cdd2010-02-25 02:21:11 +0000537}
538
Bill Wendlingef4a68b2010-11-30 07:44:32 +0000539// The assembler uses 0xDEFE for a trap instruction.
Evan Chengfb3611d2010-05-11 07:26:32 +0000540let isBarrier = 1, isTerminator = 1 in
Owen Anderson18901d62011-05-11 17:00:48 +0000541def tTRAP : TI<(outs), (ins), IIC_Br,
Jim Grosbach2e6ae132010-09-23 18:05:37 +0000542 "trap", [(trap)]>, Encoding16 {
Bill Wendling7d0affd2010-11-21 10:55:23 +0000543 let Inst = 0xdefe;
Johnny Chen4c61cdd2010-02-25 02:21:11 +0000544}
545
Evan Chenga8e29892007-01-19 07:51:42 +0000546//===----------------------------------------------------------------------===//
547// Load Store Instructions.
548//
549
Bill Wendlingb6faf652010-12-14 22:10:49 +0000550// Loads: reg/reg and reg/imm5
Dan Gohmanbc9d98b2010-02-27 23:47:46 +0000551let canFoldAsLoad = 1, isReMaterializable = 1 in
Bill Wendlingb6faf652010-12-14 22:10:49 +0000552multiclass thumb_ld_rr_ri_enc<bits<3> reg_opc, bits<4> imm_opc,
553 Operand AddrMode_r, Operand AddrMode_i,
554 AddrMode am, InstrItinClass itin_r,
555 InstrItinClass itin_i, string asm,
556 PatFrag opnode> {
Bill Wendling345cdb62010-12-14 23:42:48 +0000557 def r : // reg/reg
Bill Wendlingb6faf652010-12-14 22:10:49 +0000558 T1pILdStEncode<reg_opc,
559 (outs tGPR:$Rt), (ins AddrMode_r:$addr),
560 am, itin_r, asm, "\t$Rt, $addr",
561 [(set tGPR:$Rt, (opnode AddrMode_r:$addr))]>;
Bill Wendling345cdb62010-12-14 23:42:48 +0000562 def i : // reg/imm5
Bill Wendlingb6faf652010-12-14 22:10:49 +0000563 T1pILdStEncodeImm<imm_opc, 1 /* Load */,
564 (outs tGPR:$Rt), (ins AddrMode_i:$addr),
565 am, itin_i, asm, "\t$Rt, $addr",
566 [(set tGPR:$Rt, (opnode AddrMode_i:$addr))]>;
567}
568// Stores: reg/reg and reg/imm5
569multiclass thumb_st_rr_ri_enc<bits<3> reg_opc, bits<4> imm_opc,
570 Operand AddrMode_r, Operand AddrMode_i,
571 AddrMode am, InstrItinClass itin_r,
572 InstrItinClass itin_i, string asm,
573 PatFrag opnode> {
Bill Wendling345cdb62010-12-14 23:42:48 +0000574 def r : // reg/reg
Bill Wendlingb6faf652010-12-14 22:10:49 +0000575 T1pILdStEncode<reg_opc,
576 (outs), (ins tGPR:$Rt, AddrMode_r:$addr),
577 am, itin_r, asm, "\t$Rt, $addr",
578 [(opnode tGPR:$Rt, AddrMode_r:$addr)]>;
Bill Wendling345cdb62010-12-14 23:42:48 +0000579 def i : // reg/imm5
Bill Wendlingb6faf652010-12-14 22:10:49 +0000580 T1pILdStEncodeImm<imm_opc, 0 /* Store */,
581 (outs), (ins tGPR:$Rt, AddrMode_i:$addr),
582 am, itin_i, asm, "\t$Rt, $addr",
583 [(opnode tGPR:$Rt, AddrMode_i:$addr)]>;
584}
Bill Wendling6179c312010-11-20 00:53:35 +0000585
Bill Wendlingb6faf652010-12-14 22:10:49 +0000586// A8.6.57 & A8.6.60
587defm tLDR : thumb_ld_rr_ri_enc<0b100, 0b0110, t_addrmode_rrs4,
588 t_addrmode_is4, AddrModeT1_4,
589 IIC_iLoad_r, IIC_iLoad_i, "ldr",
590 UnOpFrag<(load node:$Src)>>;
Evan Chenga8e29892007-01-19 07:51:42 +0000591
Bill Wendlingb6faf652010-12-14 22:10:49 +0000592// A8.6.64 & A8.6.61
593defm tLDRB : thumb_ld_rr_ri_enc<0b110, 0b0111, t_addrmode_rrs1,
594 t_addrmode_is1, AddrModeT1_1,
595 IIC_iLoad_bh_r, IIC_iLoad_bh_i, "ldrb",
596 UnOpFrag<(zextloadi8 node:$Src)>>;
Bill Wendling1fd374e2010-11-30 22:57:21 +0000597
Bill Wendlingb6faf652010-12-14 22:10:49 +0000598// A8.6.76 & A8.6.73
599defm tLDRH : thumb_ld_rr_ri_enc<0b101, 0b1000, t_addrmode_rrs2,
600 t_addrmode_is2, AddrModeT1_2,
601 IIC_iLoad_bh_r, IIC_iLoad_bh_i, "ldrh",
602 UnOpFrag<(zextloadi16 node:$Src)>>;
Evan Chengc38f2bc2007-01-23 22:59:13 +0000603
Evan Cheng2f297df2009-07-11 07:08:13 +0000604let AddedComplexity = 10 in
Bill Wendling1fd374e2010-11-30 22:57:21 +0000605def tLDRSB : // A8.6.80
Owen Anderson305e0462011-08-15 19:00:06 +0000606 T1pILdStEncode<0b011, (outs tGPR:$Rt), (ins t_addrmode_rr:$addr),
Bill Wendling40062fb2010-12-01 01:38:08 +0000607 AddrModeT1_1, IIC_iLoad_bh_r,
Owen Anderson305e0462011-08-15 19:00:06 +0000608 "ldrsb", "\t$Rt, $addr",
609 [(set tGPR:$Rt, (sextloadi8 t_addrmode_rr:$addr))]>;
Evan Chengc38f2bc2007-01-23 22:59:13 +0000610
Evan Cheng2f297df2009-07-11 07:08:13 +0000611let AddedComplexity = 10 in
Bill Wendling1fd374e2010-11-30 22:57:21 +0000612def tLDRSH : // A8.6.84
Owen Anderson305e0462011-08-15 19:00:06 +0000613 T1pILdStEncode<0b111, (outs tGPR:$Rt), (ins t_addrmode_rr:$addr),
Bill Wendling40062fb2010-12-01 01:38:08 +0000614 AddrModeT1_2, IIC_iLoad_bh_r,
Owen Anderson305e0462011-08-15 19:00:06 +0000615 "ldrsh", "\t$Rt, $addr",
616 [(set tGPR:$Rt, (sextloadi16 t_addrmode_rr:$addr))]>;
Evan Chengc38f2bc2007-01-23 22:59:13 +0000617
Dan Gohman15511cf2008-12-03 18:15:48 +0000618let canFoldAsLoad = 1 in
Jim Grosbachd967cd02010-12-07 21:50:47 +0000619def tLDRspi : T1pIs<(outs tGPR:$Rt), (ins t_addrmode_sp:$addr), IIC_iLoad_i,
Bill Wendlingdc381372010-12-15 23:31:24 +0000620 "ldr", "\t$Rt, $addr",
621 [(set tGPR:$Rt, (load t_addrmode_sp:$addr))]>,
Jim Grosbachd967cd02010-12-07 21:50:47 +0000622 T1LdStSP<{1,?,?}> {
623 bits<3> Rt;
624 bits<8> addr;
625 let Inst{10-8} = Rt;
626 let Inst{7-0} = addr;
627}
Evan Cheng012f2d92007-01-24 08:53:17 +0000628
629// Load tconstpool
Evan Chengafff9412011-12-20 18:26:50 +0000630// FIXME: Use ldr.n to work around a darwin assembler bug.
Owen Anderson91614ae2011-07-18 22:14:02 +0000631let canFoldAsLoad = 1, isReMaterializable = 1, isCodeGenOnly = 1 in
Bill Wendlingb8958b02010-12-08 01:57:09 +0000632def tLDRpci : T1pIs<(outs tGPR:$Rt), (ins t_addrmode_pc:$addr), IIC_iLoad_i,
Bill Wendling3f8c1102010-11-30 23:54:45 +0000633 "ldr", ".n\t$Rt, $addr",
634 [(set tGPR:$Rt, (load (ARMWrapper tconstpool:$addr)))]>,
635 T1Encoding<{0,1,0,0,1,?}> {
636 // A6.2 & A8.6.59
637 bits<3> Rt;
Bill Wendlingb8958b02010-12-08 01:57:09 +0000638 bits<8> addr;
Bill Wendling3f8c1102010-11-30 23:54:45 +0000639 let Inst{10-8} = Rt;
Bill Wendlingb8958b02010-12-08 01:57:09 +0000640 let Inst{7-0} = addr;
Bill Wendling3f8c1102010-11-30 23:54:45 +0000641}
Evan Chengfa775d02007-03-19 07:20:03 +0000642
Johnny Chen597fa652011-04-22 19:12:43 +0000643// FIXME: Remove this entry when the above ldr.n workaround is fixed.
Jim Grosbacha2ee0fa2012-01-18 21:54:09 +0000644// For assembly/disassembly use only.
645def tLDRpciASM : T1pIs<(outs tGPR:$Rt), (ins t_addrmode_pc:$addr), IIC_iLoad_i,
646 "ldr", "\t$Rt, $addr", []>,
Johnny Chen597fa652011-04-22 19:12:43 +0000647 T1Encoding<{0,1,0,0,1,?}> {
648 // A6.2 & A8.6.59
649 bits<3> Rt;
650 bits<8> addr;
651 let Inst{10-8} = Rt;
652 let Inst{7-0} = addr;
653}
654
Bill Wendlingb6faf652010-12-14 22:10:49 +0000655// A8.6.194 & A8.6.192
656defm tSTR : thumb_st_rr_ri_enc<0b000, 0b0110, t_addrmode_rrs4,
657 t_addrmode_is4, AddrModeT1_4,
658 IIC_iStore_r, IIC_iStore_i, "str",
659 BinOpFrag<(store node:$LHS, node:$RHS)>>;
Evan Chenga8e29892007-01-19 07:51:42 +0000660
Bill Wendlingb6faf652010-12-14 22:10:49 +0000661// A8.6.197 & A8.6.195
662defm tSTRB : thumb_st_rr_ri_enc<0b010, 0b0111, t_addrmode_rrs1,
663 t_addrmode_is1, AddrModeT1_1,
664 IIC_iStore_bh_r, IIC_iStore_bh_i, "strb",
665 BinOpFrag<(truncstorei8 node:$LHS, node:$RHS)>>;
Evan Chengc38f2bc2007-01-23 22:59:13 +0000666
Bill Wendlingb6faf652010-12-14 22:10:49 +0000667// A8.6.207 & A8.6.205
668defm tSTRH : thumb_st_rr_ri_enc<0b001, 0b1000, t_addrmode_rrs2,
Jim Grosbachf921c0fe2011-06-13 22:54:22 +0000669 t_addrmode_is2, AddrModeT1_2,
670 IIC_iStore_bh_r, IIC_iStore_bh_i, "strh",
671 BinOpFrag<(truncstorei16 node:$LHS, node:$RHS)>>;
Bill Wendling1fd374e2010-11-30 22:57:21 +0000672
Evan Chenga8e29892007-01-19 07:51:42 +0000673
Jim Grosbachd967cd02010-12-07 21:50:47 +0000674def tSTRspi : T1pIs<(outs), (ins tGPR:$Rt, t_addrmode_sp:$addr), IIC_iStore_i,
Bill Wendlingf4caf692010-12-14 03:36:38 +0000675 "str", "\t$Rt, $addr",
676 [(store tGPR:$Rt, t_addrmode_sp:$addr)]>,
Jim Grosbachd967cd02010-12-07 21:50:47 +0000677 T1LdStSP<{0,?,?}> {
678 bits<3> Rt;
679 bits<8> addr;
680 let Inst{10-8} = Rt;
681 let Inst{7-0} = addr;
682}
Evan Cheng8e59ea92007-02-07 00:06:56 +0000683
Evan Chenga8e29892007-01-19 07:51:42 +0000684//===----------------------------------------------------------------------===//
685// Load / store multiple Instructions.
686//
687
Bill Wendling73fe34a2010-11-16 01:16:36 +0000688// These require base address to be written back or one of the loaded regs.
Bill Wendlingddc918b2010-11-13 10:57:02 +0000689let neverHasSideEffects = 1 in {
690
691let mayLoad = 1, hasExtraDefRegAllocReq = 1 in
Jim Grosbachcefe4c92011-08-23 17:41:15 +0000692def tLDMIA : T1I<(outs), (ins tGPR:$Rn, pred:$p, reglist:$regs, variable_ops),
693 IIC_iLoad_m, "ldm${p}\t$Rn, $regs", []>, T1Encoding<{1,1,0,0,1,?}> {
694 bits<3> Rn;
695 bits<8> regs;
696 let Inst{10-8} = Rn;
697 let Inst{7-0} = regs;
698}
Bill Wendlingddc918b2010-11-13 10:57:02 +0000699
Jim Grosbachcefe4c92011-08-23 17:41:15 +0000700// Writeback version is just a pseudo, as there's no encoding difference.
701// Writeback happens iff the base register is not in the destination register
702// list.
703def tLDMIA_UPD :
704 InstTemplate<AddrModeNone, 0, IndexModeNone, Pseudo, GenericDomain,
705 "$Rn = $wb", IIC_iLoad_mu>,
706 PseudoInstExpansion<(tLDMIA tGPR:$Rn, pred:$p, reglist:$regs)> {
707 let Size = 2;
708 let OutOperandList = (outs GPR:$wb);
709 let InOperandList = (ins GPR:$Rn, pred:$p, reglist:$regs, variable_ops);
710 let Pattern = [];
711 let isCodeGenOnly = 1;
712 let isPseudo = 1;
713 list<Predicate> Predicates = [IsThumb];
714}
715
716// There is no non-writeback version of STM for Thumb.
Bill Wendlingddc918b2010-11-13 10:57:02 +0000717let mayStore = 1, hasExtraSrcRegAllocReq = 1 in
Jim Grosbachf95aaf92011-08-24 18:19:42 +0000718def tSTMIA_UPD : Thumb1I<(outs GPR:$wb),
719 (ins tGPR:$Rn, pred:$p, reglist:$regs, variable_ops),
720 AddrModeNone, 2, IIC_iStore_mu,
721 "stm${p}\t$Rn!, $regs", "$Rn = $wb", []>,
Jim Grosbachcefe4c92011-08-23 17:41:15 +0000722 T1Encoding<{1,1,0,0,0,?}> {
723 bits<3> Rn;
724 bits<8> regs;
725 let Inst{10-8} = Rn;
726 let Inst{7-0} = regs;
727}
Owen Anderson18901d62011-05-11 17:00:48 +0000728
Bill Wendlingddc918b2010-11-13 10:57:02 +0000729} // neverHasSideEffects
Evan Cheng4b322e52009-08-11 21:11:32 +0000730
Jim Grosbach93b3eff2011-08-18 21:50:53 +0000731def : InstAlias<"ldm${p} $Rn!, $regs",
732 (tLDMIA tGPR:$Rn, pred:$p, reglist:$regs)>,
733 Requires<[IsThumb, IsThumb1Only]>;
734
Evan Cheng0d92f5f2009-10-01 08:22:27 +0000735let mayLoad = 1, Uses = [SP], Defs = [SP], hasExtraDefRegAllocReq = 1 in
Bill Wendling602890d2010-11-19 01:33:10 +0000736def tPOP : T1I<(outs), (ins pred:$p, reglist:$regs, variable_ops),
Evan Chenga0792de2010-10-06 06:27:31 +0000737 IIC_iPop,
Bill Wendling602890d2010-11-19 01:33:10 +0000738 "pop${p}\t$regs", []>,
739 T1Misc<{1,1,0,?,?,?,?}> {
740 bits<16> regs;
Bill Wendling602890d2010-11-19 01:33:10 +0000741 let Inst{8} = regs{15};
742 let Inst{7-0} = regs{7-0};
743}
Evan Cheng4b322e52009-08-11 21:11:32 +0000744
Evan Cheng0d92f5f2009-10-01 08:22:27 +0000745let mayStore = 1, Uses = [SP], Defs = [SP], hasExtraSrcRegAllocReq = 1 in
Bill Wendling6179c312010-11-20 00:53:35 +0000746def tPUSH : T1I<(outs), (ins pred:$p, reglist:$regs, variable_ops),
Evan Chenga0792de2010-10-06 06:27:31 +0000747 IIC_iStore_m,
Bill Wendling6179c312010-11-20 00:53:35 +0000748 "push${p}\t$regs", []>,
749 T1Misc<{0,1,0,?,?,?,?}> {
750 bits<16> regs;
751 let Inst{8} = regs{14};
752 let Inst{7-0} = regs{7-0};
753}
Evan Chenga8e29892007-01-19 07:51:42 +0000754
755//===----------------------------------------------------------------------===//
756// Arithmetic Instructions.
757//
758
Bill Wendling1d045ee2010-12-01 02:28:08 +0000759// Helper classes for encoding T1pI patterns:
760class T1pIDPEncode<bits<4> opA, dag oops, dag iops, InstrItinClass itin,
761 string opc, string asm, list<dag> pattern>
762 : T1pI<oops, iops, itin, opc, asm, pattern>,
763 T1DataProcessing<opA> {
764 bits<3> Rm;
765 bits<3> Rn;
766 let Inst{5-3} = Rm;
767 let Inst{2-0} = Rn;
768}
769class T1pIMiscEncode<bits<7> opA, dag oops, dag iops, InstrItinClass itin,
770 string opc, string asm, list<dag> pattern>
771 : T1pI<oops, iops, itin, opc, asm, pattern>,
772 T1Misc<opA> {
773 bits<3> Rm;
774 bits<3> Rd;
775 let Inst{5-3} = Rm;
776 let Inst{2-0} = Rd;
777}
778
Bill Wendling76f4e102010-12-01 01:20:15 +0000779// Helper classes for encoding T1sI patterns:
780class T1sIDPEncode<bits<4> opA, dag oops, dag iops, InstrItinClass itin,
781 string opc, string asm, list<dag> pattern>
782 : T1sI<oops, iops, itin, opc, asm, pattern>,
783 T1DataProcessing<opA> {
784 bits<3> Rd;
785 bits<3> Rn;
786 let Inst{5-3} = Rn;
787 let Inst{2-0} = Rd;
788}
789class T1sIGenEncode<bits<5> opA, dag oops, dag iops, InstrItinClass itin,
790 string opc, string asm, list<dag> pattern>
791 : T1sI<oops, iops, itin, opc, asm, pattern>,
792 T1General<opA> {
793 bits<3> Rm;
794 bits<3> Rn;
795 bits<3> Rd;
796 let Inst{8-6} = Rm;
797 let Inst{5-3} = Rn;
798 let Inst{2-0} = Rd;
799}
800class T1sIGenEncodeImm<bits<5> opA, dag oops, dag iops, InstrItinClass itin,
801 string opc, string asm, list<dag> pattern>
802 : T1sI<oops, iops, itin, opc, asm, pattern>,
803 T1General<opA> {
804 bits<3> Rd;
805 bits<3> Rm;
806 let Inst{5-3} = Rm;
807 let Inst{2-0} = Rd;
808}
809
810// Helper classes for encoding T1sIt patterns:
Bill Wendlinga5a42d92010-12-01 00:48:44 +0000811class T1sItDPEncode<bits<4> opA, dag oops, dag iops, InstrItinClass itin,
812 string opc, string asm, list<dag> pattern>
813 : T1sIt<oops, iops, itin, opc, asm, pattern>,
814 T1DataProcessing<opA> {
Bill Wendling3f8c1102010-11-30 23:54:45 +0000815 bits<3> Rdn;
816 bits<3> Rm;
Bill Wendlinga5a42d92010-12-01 00:48:44 +0000817 let Inst{5-3} = Rm;
818 let Inst{2-0} = Rdn;
Bill Wendling95a6d172010-11-20 01:00:29 +0000819}
Bill Wendlinga5a42d92010-12-01 00:48:44 +0000820class T1sItGenEncodeImm<bits<5> opA, dag oops, dag iops, InstrItinClass itin,
821 string opc, string asm, list<dag> pattern>
822 : T1sIt<oops, iops, itin, opc, asm, pattern>,
823 T1General<opA> {
824 bits<3> Rdn;
825 bits<8> imm8;
826 let Inst{10-8} = Rdn;
827 let Inst{7-0} = imm8;
828}
829
830// Add with carry register
831let isCommutable = 1, Uses = [CPSR] in
832def tADC : // A8.6.2
833 T1sItDPEncode<0b0101, (outs tGPR:$Rdn), (ins tGPR:$Rn, tGPR:$Rm), IIC_iALUr,
834 "adc", "\t$Rdn, $Rm",
835 [(set tGPR:$Rdn, (adde tGPR:$Rn, tGPR:$Rm))]>;
Evan Cheng53d7dba2007-01-27 00:07:15 +0000836
David Goodwinc9ee1182009-06-25 22:49:55 +0000837// Add immediate
Bill Wendling76f4e102010-12-01 01:20:15 +0000838def tADDi3 : // A8.6.4 T1
Jim Grosbach89e2aa62011-08-16 23:57:34 +0000839 T1sIGenEncodeImm<0b01110, (outs tGPR:$Rd), (ins tGPR:$Rm, imm0_7:$imm3),
Jim Grosbachf921c0fe2011-06-13 22:54:22 +0000840 IIC_iALUi,
Bill Wendling76f4e102010-12-01 01:20:15 +0000841 "add", "\t$Rd, $Rm, $imm3",
842 [(set tGPR:$Rd, (add tGPR:$Rm, imm0_7:$imm3))]> {
Bill Wendling95a6d172010-11-20 01:00:29 +0000843 bits<3> imm3;
844 let Inst{8-6} = imm3;
Bill Wendling95a6d172010-11-20 01:00:29 +0000845}
Evan Chenga8e29892007-01-19 07:51:42 +0000846
Bill Wendlinga5a42d92010-12-01 00:48:44 +0000847def tADDi8 : // A8.6.4 T2
Jim Grosbach89e2aa62011-08-16 23:57:34 +0000848 T1sItGenEncodeImm<{1,1,0,?,?}, (outs tGPR:$Rdn),
849 (ins tGPR:$Rn, imm0_255:$imm8), IIC_iALUi,
Bill Wendlinga5a42d92010-12-01 00:48:44 +0000850 "add", "\t$Rdn, $imm8",
851 [(set tGPR:$Rdn, (add tGPR:$Rn, imm8_255:$imm8))]>;
Evan Chenga8e29892007-01-19 07:51:42 +0000852
David Goodwinc9ee1182009-06-25 22:49:55 +0000853// Add register
Evan Cheng446c4282009-07-11 06:43:01 +0000854let isCommutable = 1 in
Bill Wendling76f4e102010-12-01 01:20:15 +0000855def tADDrr : // A8.6.6 T1
856 T1sIGenEncode<0b01100, (outs tGPR:$Rd), (ins tGPR:$Rn, tGPR:$Rm),
857 IIC_iALUr,
858 "add", "\t$Rd, $Rn, $Rm",
859 [(set tGPR:$Rd, (add tGPR:$Rn, tGPR:$Rm))]>;
Evan Chenga8e29892007-01-19 07:51:42 +0000860
Evan Chengcd799b92009-06-12 20:46:18 +0000861let neverHasSideEffects = 1 in
Bill Wendling0b424dc2010-12-01 01:32:02 +0000862def tADDhirr : T1pIt<(outs GPR:$Rdn), (ins GPR:$Rn, GPR:$Rm), IIC_iALUr,
863 "add", "\t$Rdn, $Rm", []>,
Bill Wendlinga09cc2b2010-11-20 01:18:47 +0000864 T1Special<{0,0,?,?}> {
865 // A8.6.6 T2
Bill Wendling0b424dc2010-12-01 01:32:02 +0000866 bits<4> Rdn;
867 bits<4> Rm;
868 let Inst{7} = Rdn{3};
869 let Inst{6-3} = Rm;
870 let Inst{2-0} = Rdn{2-0};
Bill Wendlinga09cc2b2010-11-20 01:18:47 +0000871}
Evan Chenga8e29892007-01-19 07:51:42 +0000872
Bill Wendlinga09cc2b2010-11-20 01:18:47 +0000873// AND register
Evan Cheng446c4282009-07-11 06:43:01 +0000874let isCommutable = 1 in
Bill Wendlinga5a42d92010-12-01 00:48:44 +0000875def tAND : // A8.6.12
876 T1sItDPEncode<0b0000, (outs tGPR:$Rdn), (ins tGPR:$Rn, tGPR:$Rm),
877 IIC_iBITr,
878 "and", "\t$Rdn, $Rm",
879 [(set tGPR:$Rdn, (and tGPR:$Rn, tGPR:$Rm))]>;
Evan Chenga8e29892007-01-19 07:51:42 +0000880
David Goodwinc9ee1182009-06-25 22:49:55 +0000881// ASR immediate
Bill Wendling76f4e102010-12-01 01:20:15 +0000882def tASRri : // A8.6.14
Owen Anderson6d746312011-08-08 20:42:17 +0000883 T1sIGenEncodeImm<{0,1,0,?,?}, (outs tGPR:$Rd), (ins tGPR:$Rm, imm_sr:$imm5),
Bill Wendling76f4e102010-12-01 01:20:15 +0000884 IIC_iMOVsi,
885 "asr", "\t$Rd, $Rm, $imm5",
Owen Anderson6d746312011-08-08 20:42:17 +0000886 [(set tGPR:$Rd, (sra tGPR:$Rm, (i32 imm_sr:$imm5)))]> {
Bill Wendlinga09cc2b2010-11-20 01:18:47 +0000887 bits<5> imm5;
888 let Inst{10-6} = imm5;
Bill Wendlinga09cc2b2010-11-20 01:18:47 +0000889}
Evan Chenga8e29892007-01-19 07:51:42 +0000890
David Goodwinc9ee1182009-06-25 22:49:55 +0000891// ASR register
Bill Wendlinga5a42d92010-12-01 00:48:44 +0000892def tASRrr : // A8.6.15
893 T1sItDPEncode<0b0100, (outs tGPR:$Rdn), (ins tGPR:$Rn, tGPR:$Rm),
894 IIC_iMOVsr,
895 "asr", "\t$Rdn, $Rm",
896 [(set tGPR:$Rdn, (sra tGPR:$Rn, tGPR:$Rm))]>;
Evan Chenga8e29892007-01-19 07:51:42 +0000897
David Goodwinc9ee1182009-06-25 22:49:55 +0000898// BIC register
Bill Wendlinga5a42d92010-12-01 00:48:44 +0000899def tBIC : // A8.6.20
900 T1sItDPEncode<0b1110, (outs tGPR:$Rdn), (ins tGPR:$Rn, tGPR:$Rm),
901 IIC_iBITr,
902 "bic", "\t$Rdn, $Rm",
903 [(set tGPR:$Rdn, (and tGPR:$Rn, (not tGPR:$Rm)))]>;
Evan Chenga8e29892007-01-19 07:51:42 +0000904
David Goodwinc9ee1182009-06-25 22:49:55 +0000905// CMN register
Gabor Greiff7d10f52010-09-14 22:00:50 +0000906let isCompare = 1, Defs = [CPSR] in {
Jim Grosbachd5d2bae2010-01-22 00:08:13 +0000907//FIXME: Disable CMN, as CCodes are backwards from compare expectations
908// Compare-to-zero still works out, just not the relationals
Bill Wendling0480e282010-12-01 02:36:55 +0000909//def tCMN : // A8.6.33
910// T1pIDPEncode<0b1011, (outs), (ins tGPR:$lhs, tGPR:$rhs),
911// IIC_iCMPr,
912// "cmn", "\t$lhs, $rhs",
913// [(ARMcmp tGPR:$lhs, (ineg tGPR:$rhs))]>;
Bill Wendling1d045ee2010-12-01 02:28:08 +0000914
915def tCMNz : // A8.6.33
916 T1pIDPEncode<0b1011, (outs), (ins tGPR:$Rn, tGPR:$Rm),
917 IIC_iCMPr,
918 "cmn", "\t$Rn, $Rm",
919 [(ARMcmpZ tGPR:$Rn, (ineg tGPR:$Rm))]>;
920
921} // isCompare = 1, Defs = [CPSR]
Lauro Ramos Venancio99966632007-04-02 01:30:03 +0000922
David Goodwinc9ee1182009-06-25 22:49:55 +0000923// CMP immediate
Gabor Greiff7d10f52010-09-14 22:00:50 +0000924let isCompare = 1, Defs = [CPSR] in {
Jim Grosbach0d1511c2011-08-18 18:08:29 +0000925def tCMPi8 : T1pI<(outs), (ins tGPR:$Rn, imm0_255:$imm8), IIC_iCMPi,
Bill Wendling5cc88a22010-11-20 22:52:33 +0000926 "cmp", "\t$Rn, $imm8",
927 [(ARMcmp tGPR:$Rn, imm0_255:$imm8)]>,
928 T1General<{1,0,1,?,?}> {
929 // A8.6.35
930 bits<3> Rn;
931 bits<8> imm8;
932 let Inst{10-8} = Rn;
933 let Inst{7-0} = imm8;
934}
935
David Goodwinc9ee1182009-06-25 22:49:55 +0000936// CMP register
Bill Wendling1d045ee2010-12-01 02:28:08 +0000937def tCMPr : // A8.6.36 T1
938 T1pIDPEncode<0b1010, (outs), (ins tGPR:$Rn, tGPR:$Rm),
939 IIC_iCMPr,
940 "cmp", "\t$Rn, $Rm",
941 [(ARMcmp tGPR:$Rn, tGPR:$Rm)]>;
942
Bill Wendling849f2e32010-11-29 00:18:15 +0000943def tCMPhir : T1pI<(outs), (ins GPR:$Rn, GPR:$Rm), IIC_iCMPr,
944 "cmp", "\t$Rn, $Rm", []>,
945 T1Special<{0,1,?,?}> {
946 // A8.6.36 T2
947 bits<4> Rm;
948 bits<4> Rn;
949 let Inst{7} = Rn{3};
950 let Inst{6-3} = Rm;
951 let Inst{2-0} = Rn{2-0};
952}
Bill Wendling5cc88a22010-11-20 22:52:33 +0000953} // isCompare = 1, Defs = [CPSR]
Lauro Ramos Venancio99966632007-04-02 01:30:03 +0000954
Evan Chenga8e29892007-01-19 07:51:42 +0000955
David Goodwinc9ee1182009-06-25 22:49:55 +0000956// XOR register
Evan Cheng446c4282009-07-11 06:43:01 +0000957let isCommutable = 1 in
Bill Wendlinga5a42d92010-12-01 00:48:44 +0000958def tEOR : // A8.6.45
959 T1sItDPEncode<0b0001, (outs tGPR:$Rdn), (ins tGPR:$Rn, tGPR:$Rm),
960 IIC_iBITr,
961 "eor", "\t$Rdn, $Rm",
962 [(set tGPR:$Rdn, (xor tGPR:$Rn, tGPR:$Rm))]>;
Evan Chenga8e29892007-01-19 07:51:42 +0000963
David Goodwinc9ee1182009-06-25 22:49:55 +0000964// LSL immediate
Bill Wendling76f4e102010-12-01 01:20:15 +0000965def tLSLri : // A8.6.88
Jim Grosbach1b7b68f2011-08-19 19:29:25 +0000966 T1sIGenEncodeImm<{0,0,0,?,?}, (outs tGPR:$Rd), (ins tGPR:$Rm, imm0_31:$imm5),
Bill Wendling76f4e102010-12-01 01:20:15 +0000967 IIC_iMOVsi,
968 "lsl", "\t$Rd, $Rm, $imm5",
969 [(set tGPR:$Rd, (shl tGPR:$Rm, (i32 imm:$imm5)))]> {
Bill Wendlingdcf0a472010-11-21 11:49:36 +0000970 bits<5> imm5;
971 let Inst{10-6} = imm5;
Bill Wendlingdcf0a472010-11-21 11:49:36 +0000972}
Evan Chenga8e29892007-01-19 07:51:42 +0000973
David Goodwinc9ee1182009-06-25 22:49:55 +0000974// LSL register
Bill Wendlinga5a42d92010-12-01 00:48:44 +0000975def tLSLrr : // A8.6.89
976 T1sItDPEncode<0b0010, (outs tGPR:$Rdn), (ins tGPR:$Rn, tGPR:$Rm),
977 IIC_iMOVsr,
978 "lsl", "\t$Rdn, $Rm",
979 [(set tGPR:$Rdn, (shl tGPR:$Rn, tGPR:$Rm))]>;
Evan Chenga8e29892007-01-19 07:51:42 +0000980
David Goodwinc9ee1182009-06-25 22:49:55 +0000981// LSR immediate
Bill Wendling76f4e102010-12-01 01:20:15 +0000982def tLSRri : // A8.6.90
Owen Anderson6d746312011-08-08 20:42:17 +0000983 T1sIGenEncodeImm<{0,0,1,?,?}, (outs tGPR:$Rd), (ins tGPR:$Rm, imm_sr:$imm5),
Bill Wendling76f4e102010-12-01 01:20:15 +0000984 IIC_iMOVsi,
985 "lsr", "\t$Rd, $Rm, $imm5",
Owen Anderson6d746312011-08-08 20:42:17 +0000986 [(set tGPR:$Rd, (srl tGPR:$Rm, (i32 imm_sr:$imm5)))]> {
Bill Wendlingdcf0a472010-11-21 11:49:36 +0000987 bits<5> imm5;
988 let Inst{10-6} = imm5;
Bill Wendlingdcf0a472010-11-21 11:49:36 +0000989}
Evan Chenga8e29892007-01-19 07:51:42 +0000990
David Goodwinc9ee1182009-06-25 22:49:55 +0000991// LSR register
Bill Wendlinga5a42d92010-12-01 00:48:44 +0000992def tLSRrr : // A8.6.91
993 T1sItDPEncode<0b0011, (outs tGPR:$Rdn), (ins tGPR:$Rn, tGPR:$Rm),
994 IIC_iMOVsr,
995 "lsr", "\t$Rdn, $Rm",
996 [(set tGPR:$Rdn, (srl tGPR:$Rn, tGPR:$Rm))]>;
Evan Chenga8e29892007-01-19 07:51:42 +0000997
Bill Wendlingdcf0a472010-11-21 11:49:36 +0000998// Move register
Evan Chengc4af4632010-11-17 20:13:28 +0000999let isMoveImm = 1 in
Jim Grosbach6b8f1e32011-06-27 23:54:06 +00001000def tMOVi8 : T1sI<(outs tGPR:$Rd), (ins imm0_255:$imm8), IIC_iMOVi,
Bill Wendlingdcf0a472010-11-21 11:49:36 +00001001 "mov", "\t$Rd, $imm8",
1002 [(set tGPR:$Rd, imm0_255:$imm8)]>,
1003 T1General<{1,0,0,?,?}> {
1004 // A8.6.96
1005 bits<3> Rd;
1006 bits<8> imm8;
1007 let Inst{10-8} = Rd;
1008 let Inst{7-0} = imm8;
1009}
Jim Grosbach4ec6e882011-08-19 20:46:54 +00001010// Because we have an explicit tMOVSr below, we need an alias to handle
1011// the immediate "movs" form here. Blech.
Jim Grosbacha33b31b2011-08-22 18:04:24 +00001012def : tInstAlias <"movs $Rdn, $imm",
1013 (tMOVi8 tGPR:$Rdn, CPSR, imm0_255:$imm, 14, 0)>;
Evan Chenga8e29892007-01-19 07:51:42 +00001014
Jim Grosbachefeedce2011-07-01 17:14:11 +00001015// A7-73: MOV(2) - mov setting flag.
Evan Chenga8e29892007-01-19 07:51:42 +00001016
Evan Chengcd799b92009-06-12 20:46:18 +00001017let neverHasSideEffects = 1 in {
Jim Grosbach2a7b41b2011-06-30 23:38:17 +00001018def tMOVr : Thumb1pI<(outs GPR:$Rd), (ins GPR:$Rm), AddrModeNone,
Owen Anderson16884412011-07-13 23:22:26 +00001019 2, IIC_iMOVr,
Jim Grosbach63b46fa2011-06-30 22:10:46 +00001020 "mov", "\t$Rd, $Rm", "", []>,
Jim Grosbach2a7b41b2011-06-30 23:38:17 +00001021 T1Special<{1,0,?,?}> {
Bill Wendling534a5e42010-12-03 01:55:47 +00001022 // A8.6.97
1023 bits<4> Rd;
1024 bits<4> Rm;
Jim Grosbach2a7b41b2011-06-30 23:38:17 +00001025 let Inst{7} = Rd{3};
1026 let Inst{6-3} = Rm;
Bill Wendling534a5e42010-12-03 01:55:47 +00001027 let Inst{2-0} = Rd{2-0};
1028}
Evan Cheng446c4282009-07-11 06:43:01 +00001029let Defs = [CPSR] in
Bill Wendling534a5e42010-12-03 01:55:47 +00001030def tMOVSr : T1I<(outs tGPR:$Rd), (ins tGPR:$Rm), IIC_iMOVr,
1031 "movs\t$Rd, $Rm", []>, Encoding16 {
1032 // A8.6.97
1033 bits<3> Rd;
1034 bits<3> Rm;
Johnny Chend68e1192009-12-15 17:24:14 +00001035 let Inst{15-6} = 0b0000000000;
Bill Wendling534a5e42010-12-03 01:55:47 +00001036 let Inst{5-3} = Rm;
1037 let Inst{2-0} = Rd;
Johnny Chend68e1192009-12-15 17:24:14 +00001038}
Evan Chengcd799b92009-06-12 20:46:18 +00001039} // neverHasSideEffects
Evan Chenga8e29892007-01-19 07:51:42 +00001040
Bill Wendling0480e282010-12-01 02:36:55 +00001041// Multiply register
Jim Grosbach86b5d2b2011-08-22 23:25:48 +00001042let isCommutable = 1 in
Bill Wendlinga5a42d92010-12-01 00:48:44 +00001043def tMUL : // A8.6.105 T1
Jim Grosbach88ae2bc2011-08-19 22:07:46 +00001044 Thumb1sI<(outs tGPR:$Rd), (ins tGPR:$Rn, tGPR:$Rm), AddrModeNone, 2,
1045 IIC_iMUL32, "mul", "\t$Rd, $Rn, $Rm", "$Rm = $Rd",
1046 [(set tGPR:$Rd, (mul tGPR:$Rn, tGPR:$Rm))]>,
1047 T1DataProcessing<0b1101> {
1048 bits<3> Rd;
1049 bits<3> Rn;
1050 let Inst{5-3} = Rn;
1051 let Inst{2-0} = Rd;
1052 let AsmMatchConverter = "cvtThumbMultiply";
1053}
1054
Jim Grosbacha33b31b2011-08-22 18:04:24 +00001055def :tInstAlias<"mul${s}${p} $Rdm, $Rn", (tMUL tGPR:$Rdm, s_cc_out:$s, tGPR:$Rn,
1056 pred:$p)>;
Evan Chenga8e29892007-01-19 07:51:42 +00001057
Bill Wendling76f4e102010-12-01 01:20:15 +00001058// Move inverse register
1059def tMVN : // A8.6.107
1060 T1sIDPEncode<0b1111, (outs tGPR:$Rd), (ins tGPR:$Rn), IIC_iMVNr,
1061 "mvn", "\t$Rd, $Rn",
1062 [(set tGPR:$Rd, (not tGPR:$Rn))]>;
Evan Chenga8e29892007-01-19 07:51:42 +00001063
Bill Wendlingdcf0a472010-11-21 11:49:36 +00001064// Bitwise or register
Evan Cheng446c4282009-07-11 06:43:01 +00001065let isCommutable = 1 in
Bill Wendlinga5a42d92010-12-01 00:48:44 +00001066def tORR : // A8.6.114
1067 T1sItDPEncode<0b1100, (outs tGPR:$Rdn), (ins tGPR:$Rn, tGPR:$Rm),
1068 IIC_iBITr,
1069 "orr", "\t$Rdn, $Rm",
1070 [(set tGPR:$Rdn, (or tGPR:$Rn, tGPR:$Rm))]>;
Evan Chenga8e29892007-01-19 07:51:42 +00001071
Bill Wendlingdcf0a472010-11-21 11:49:36 +00001072// Swaps
Bill Wendling1d045ee2010-12-01 02:28:08 +00001073def tREV : // A8.6.134
1074 T1pIMiscEncode<{1,0,1,0,0,0,?}, (outs tGPR:$Rd), (ins tGPR:$Rm),
1075 IIC_iUNAr,
1076 "rev", "\t$Rd, $Rm",
1077 [(set tGPR:$Rd, (bswap tGPR:$Rm))]>,
1078 Requires<[IsThumb, IsThumb1Only, HasV6]>;
Evan Chenga8e29892007-01-19 07:51:42 +00001079
Bill Wendling1d045ee2010-12-01 02:28:08 +00001080def tREV16 : // A8.6.135
1081 T1pIMiscEncode<{1,0,1,0,0,1,?}, (outs tGPR:$Rd), (ins tGPR:$Rm),
1082 IIC_iUNAr,
1083 "rev16", "\t$Rd, $Rm",
Evan Cheng9568e5c2011-06-21 06:01:08 +00001084 [(set tGPR:$Rd, (rotr (bswap tGPR:$Rm), (i32 16)))]>,
Bill Wendling1d045ee2010-12-01 02:28:08 +00001085 Requires<[IsThumb, IsThumb1Only, HasV6]>;
Evan Chenga8e29892007-01-19 07:51:42 +00001086
Bill Wendling1d045ee2010-12-01 02:28:08 +00001087def tREVSH : // A8.6.136
1088 T1pIMiscEncode<{1,0,1,0,1,1,?}, (outs tGPR:$Rd), (ins tGPR:$Rm),
1089 IIC_iUNAr,
1090 "revsh", "\t$Rd, $Rm",
Evan Cheng9568e5c2011-06-21 06:01:08 +00001091 [(set tGPR:$Rd, (sra (bswap tGPR:$Rm), (i32 16)))]>,
Bill Wendling1d045ee2010-12-01 02:28:08 +00001092 Requires<[IsThumb, IsThumb1Only, HasV6]>;
Evan Cheng446c4282009-07-11 06:43:01 +00001093
Bill Wendlinga5a42d92010-12-01 00:48:44 +00001094// Rotate right register
1095def tROR : // A8.6.139
1096 T1sItDPEncode<0b0111, (outs tGPR:$Rdn), (ins tGPR:$Rn, tGPR:$Rm),
1097 IIC_iMOVsr,
1098 "ror", "\t$Rdn, $Rm",
1099 [(set tGPR:$Rdn, (rotr tGPR:$Rn, tGPR:$Rm))]>;
Evan Cheng446c4282009-07-11 06:43:01 +00001100
Bill Wendlinga5a42d92010-12-01 00:48:44 +00001101// Negate register
Bill Wendling76f4e102010-12-01 01:20:15 +00001102def tRSB : // A8.6.141
1103 T1sIDPEncode<0b1001, (outs tGPR:$Rd), (ins tGPR:$Rn),
1104 IIC_iALUi,
1105 "rsb", "\t$Rd, $Rn, #0",
1106 [(set tGPR:$Rd, (ineg tGPR:$Rn))]>;
Evan Chenga8e29892007-01-19 07:51:42 +00001107
David Goodwinc9ee1182009-06-25 22:49:55 +00001108// Subtract with carry register
Evan Cheng446c4282009-07-11 06:43:01 +00001109let Uses = [CPSR] in
Bill Wendlinga5a42d92010-12-01 00:48:44 +00001110def tSBC : // A8.6.151
1111 T1sItDPEncode<0b0110, (outs tGPR:$Rdn), (ins tGPR:$Rn, tGPR:$Rm),
1112 IIC_iALUr,
1113 "sbc", "\t$Rdn, $Rm",
1114 [(set tGPR:$Rdn, (sube tGPR:$Rn, tGPR:$Rm))]>;
Evan Chenga8e29892007-01-19 07:51:42 +00001115
David Goodwinc9ee1182009-06-25 22:49:55 +00001116// Subtract immediate
Bill Wendling76f4e102010-12-01 01:20:15 +00001117def tSUBi3 : // A8.6.210 T1
Jim Grosbachf67e8552011-09-16 22:58:42 +00001118 T1sIGenEncodeImm<0b01111, (outs tGPR:$Rd), (ins tGPR:$Rm, imm0_7:$imm3),
Bill Wendling76f4e102010-12-01 01:20:15 +00001119 IIC_iALUi,
1120 "sub", "\t$Rd, $Rm, $imm3",
1121 [(set tGPR:$Rd, (add tGPR:$Rm, imm0_7_neg:$imm3))]> {
Bill Wendling5cbbf682010-11-29 01:00:43 +00001122 bits<3> imm3;
Bill Wendling5cbbf682010-11-29 01:00:43 +00001123 let Inst{8-6} = imm3;
Bill Wendling5cbbf682010-11-29 01:00:43 +00001124}
Jim Grosbach0ede14f2009-03-27 23:06:27 +00001125
Bill Wendlinga5a42d92010-12-01 00:48:44 +00001126def tSUBi8 : // A8.6.210 T2
Jim Grosbachf67e8552011-09-16 22:58:42 +00001127 T1sItGenEncodeImm<{1,1,1,?,?}, (outs tGPR:$Rdn),
1128 (ins tGPR:$Rn, imm0_255:$imm8), IIC_iALUi,
Bill Wendlinga5a42d92010-12-01 00:48:44 +00001129 "sub", "\t$Rdn, $imm8",
1130 [(set tGPR:$Rdn, (add tGPR:$Rn, imm8_255_neg:$imm8))]>;
Jim Grosbach0ede14f2009-03-27 23:06:27 +00001131
Bill Wendling76f4e102010-12-01 01:20:15 +00001132// Subtract register
1133def tSUBrr : // A8.6.212
1134 T1sIGenEncode<0b01101, (outs tGPR:$Rd), (ins tGPR:$Rn, tGPR:$Rm),
1135 IIC_iALUr,
1136 "sub", "\t$Rd, $Rn, $Rm",
1137 [(set tGPR:$Rd, (sub tGPR:$Rn, tGPR:$Rm))]>;
David Goodwinc9ee1182009-06-25 22:49:55 +00001138
Bill Wendling76f4e102010-12-01 01:20:15 +00001139// Sign-extend byte
Bill Wendling1d045ee2010-12-01 02:28:08 +00001140def tSXTB : // A8.6.222
1141 T1pIMiscEncode<{0,0,1,0,0,1,?}, (outs tGPR:$Rd), (ins tGPR:$Rm),
1142 IIC_iUNAr,
1143 "sxtb", "\t$Rd, $Rm",
1144 [(set tGPR:$Rd, (sext_inreg tGPR:$Rm, i8))]>,
1145 Requires<[IsThumb, IsThumb1Only, HasV6]>;
David Goodwinc9ee1182009-06-25 22:49:55 +00001146
Bill Wendling1d045ee2010-12-01 02:28:08 +00001147// Sign-extend short
1148def tSXTH : // A8.6.224
1149 T1pIMiscEncode<{0,0,1,0,0,0,?}, (outs tGPR:$Rd), (ins tGPR:$Rm),
1150 IIC_iUNAr,
1151 "sxth", "\t$Rd, $Rm",
1152 [(set tGPR:$Rd, (sext_inreg tGPR:$Rm, i16))]>,
1153 Requires<[IsThumb, IsThumb1Only, HasV6]>;
Evan Chenga8e29892007-01-19 07:51:42 +00001154
Bill Wendling1d045ee2010-12-01 02:28:08 +00001155// Test
Gabor Greif007248b2010-09-14 20:47:43 +00001156let isCompare = 1, isCommutable = 1, Defs = [CPSR] in
Bill Wendling1d045ee2010-12-01 02:28:08 +00001157def tTST : // A8.6.230
1158 T1pIDPEncode<0b1000, (outs), (ins tGPR:$Rn, tGPR:$Rm), IIC_iTSTr,
1159 "tst", "\t$Rn, $Rm",
1160 [(ARMcmpZ (and_su tGPR:$Rn, tGPR:$Rm), 0)]>;
Evan Chenga8e29892007-01-19 07:51:42 +00001161
Bill Wendling1d045ee2010-12-01 02:28:08 +00001162// Zero-extend byte
1163def tUXTB : // A8.6.262
1164 T1pIMiscEncode<{0,0,1,0,1,1,?}, (outs tGPR:$Rd), (ins tGPR:$Rm),
1165 IIC_iUNAr,
1166 "uxtb", "\t$Rd, $Rm",
1167 [(set tGPR:$Rd, (and tGPR:$Rm, 0xFF))]>,
1168 Requires<[IsThumb, IsThumb1Only, HasV6]>;
David Goodwinc9ee1182009-06-25 22:49:55 +00001169
Bill Wendling1d045ee2010-12-01 02:28:08 +00001170// Zero-extend short
1171def tUXTH : // A8.6.264
1172 T1pIMiscEncode<{0,0,1,0,1,0,?}, (outs tGPR:$Rd), (ins tGPR:$Rm),
1173 IIC_iUNAr,
1174 "uxth", "\t$Rd, $Rm",
1175 [(set tGPR:$Rd, (and tGPR:$Rm, 0xFFFF))]>,
1176 Requires<[IsThumb, IsThumb1Only, HasV6]>;
Evan Chenga8e29892007-01-19 07:51:42 +00001177
Jim Grosbach80dc1162010-02-16 21:23:02 +00001178// Conditional move tMOVCCr - Used to implement the Thumb SELECT_CC operation.
Dan Gohman533297b2009-10-29 18:10:34 +00001179// Expanded after instruction selection into a branch sequence.
1180let usesCustomInserter = 1 in // Expanded after instruction selection.
Evan Cheng007ea272009-08-12 05:17:19 +00001181 def tMOVCCr_pseudo :
Evan Chengc9721652009-08-12 02:03:03 +00001182 PseudoInst<(outs tGPR:$dst), (ins tGPR:$false, tGPR:$true, pred:$cc),
Jim Grosbach99594eb2010-11-18 01:38:26 +00001183 NoItinerary,
Evan Chengc9721652009-08-12 02:03:03 +00001184 [/*(set tGPR:$dst, (ARMcmov tGPR:$false, tGPR:$true, imm:$cc))*/]>;
Evan Chenga8e29892007-01-19 07:51:42 +00001185
1186// tLEApcrel - Load a pc-relative address into a register without offending the
1187// assembler.
Jim Grosbachd40963c2010-12-14 22:28:03 +00001188
1189def tADR : T1I<(outs tGPR:$Rd), (ins t_adrlabel:$addr, pred:$p),
Jim Grosbach5a1cd042011-08-17 20:37:40 +00001190 IIC_iALUi, "adr{$p}\t$Rd, $addr", []>,
Jim Grosbachd40963c2010-12-14 22:28:03 +00001191 T1Encoding<{1,0,1,0,0,?}> {
Bill Wendling67077412010-11-30 00:18:30 +00001192 bits<3> Rd;
Jim Grosbachd40963c2010-12-14 22:28:03 +00001193 bits<8> addr;
Bill Wendling67077412010-11-30 00:18:30 +00001194 let Inst{10-8} = Rd;
Jim Grosbachd40963c2010-12-14 22:28:03 +00001195 let Inst{7-0} = addr;
Owen Anderson8d7d2e12011-08-09 20:55:18 +00001196 let DecoderMethod = "DecodeThumbAddSpecialReg";
Bill Wendling67077412010-11-30 00:18:30 +00001197}
Evan Chenga8e29892007-01-19 07:51:42 +00001198
Jim Grosbachd40963c2010-12-14 22:28:03 +00001199let neverHasSideEffects = 1, isReMaterializable = 1 in
1200def tLEApcrel : tPseudoInst<(outs tGPR:$Rd), (ins i32imm:$label, pred:$p),
Owen Anderson16884412011-07-13 23:22:26 +00001201 2, IIC_iALUi, []>;
Jim Grosbachd40963c2010-12-14 22:28:03 +00001202
1203def tLEApcrelJT : tPseudoInst<(outs tGPR:$Rd),
1204 (ins i32imm:$label, nohash_imm:$id, pred:$p),
Owen Anderson16884412011-07-13 23:22:26 +00001205 2, IIC_iALUi, []>;
Evan Chengd85ac4d2007-01-27 02:29:45 +00001206
Evan Chenga8e29892007-01-19 07:51:42 +00001207//===----------------------------------------------------------------------===//
Lauro Ramos Venancio64f4fa52007-04-27 13:54:47 +00001208// TLS Instructions
1209//
1210
1211// __aeabi_read_tp preserves the registers r1-r3.
Jim Grosbachff97eb02011-06-30 19:38:01 +00001212// This is a pseudo inst so that we can get the encoding right,
1213// complete with fixup for the aeabi_read_tp function.
1214let isCall = 1, Defs = [R0, R12, LR, CPSR], Uses = [SP] in
Owen Anderson16884412011-07-13 23:22:26 +00001215def tTPsoft : tPseudoInst<(outs), (ins), 4, IIC_Br,
Jim Grosbachff97eb02011-06-30 19:38:01 +00001216 [(set R0, ARMthread_pointer)]>;
Lauro Ramos Venancio64f4fa52007-04-27 13:54:47 +00001217
Bill Wendling0480e282010-12-01 02:36:55 +00001218//===----------------------------------------------------------------------===//
Jim Grosbachd1228742009-12-01 18:10:36 +00001219// SJLJ Exception handling intrinsics
Owen Anderson18901d62011-05-11 17:00:48 +00001220//
Bill Wendling0480e282010-12-01 02:36:55 +00001221
1222// eh_sjlj_setjmp() is an instruction sequence to store the return address and
1223// save #0 in R0 for the non-longjmp case. Since by its nature we may be coming
1224// from some other function to get here, and we're using the stack frame for the
1225// containing function to save/restore registers, we can't keep anything live in
1226// regs across the eh_sjlj_setjmp(), else it will almost certainly have been
Chris Lattner7a2bdde2011-04-15 05:18:47 +00001227// tromped upon when we get here from a longjmp(). We force everything out of
Bill Wendling0480e282010-12-01 02:36:55 +00001228// registers except for our own input by listing the relevant registers in
1229// Defs. By doing so, we also cause the prologue/epilogue code to actively
1230// preserve all of the callee-saved resgisters, which is exactly what we want.
1231// $val is a scratch register for our use.
Andrew Tricka1099f12011-06-07 00:08:49 +00001232let Defs = [ R0, R1, R2, R3, R4, R5, R6, R7, R12, CPSR ],
Bill Wendling13a71212011-10-17 22:26:23 +00001233 hasSideEffects = 1, isBarrier = 1, isCodeGenOnly = 1,
1234 usesCustomInserter = 1 in
Bill Wendling0e45a5a2010-11-30 00:50:22 +00001235def tInt_eh_sjlj_setjmp : ThumbXI<(outs),(ins tGPR:$src, tGPR:$val),
Owen Anderson16884412011-07-13 23:22:26 +00001236 AddrModeNone, 0, NoItinerary, "","",
Bill Wendling0e45a5a2010-11-30 00:50:22 +00001237 [(set R0, (ARMeh_sjlj_setjmp tGPR:$src, tGPR:$val))]>;
Jim Grosbach5eb19512010-05-22 01:06:18 +00001238
Evan Chengafff9412011-12-20 18:26:50 +00001239// FIXME: Non-IOS version(s)
Chris Lattnera4a3a5e2010-10-31 19:15:18 +00001240let isBarrier = 1, hasSideEffects = 1, isTerminator = 1, isCodeGenOnly = 1,
Bill Wendling0e45a5a2010-11-30 00:50:22 +00001241 Defs = [ R7, LR, SP ] in
Jim Grosbach5eb19512010-05-22 01:06:18 +00001242def tInt_eh_sjlj_longjmp : XI<(outs), (ins GPR:$src, GPR:$scratch),
Owen Anderson16884412011-07-13 23:22:26 +00001243 AddrModeNone, 0, IndexModeNone,
Bill Wendling0e45a5a2010-11-30 00:50:22 +00001244 Pseudo, NoItinerary, "", "",
1245 [(ARMeh_sjlj_longjmp GPR:$src, GPR:$scratch)]>,
Evan Chengafff9412011-12-20 18:26:50 +00001246 Requires<[IsThumb, IsIOS]>;
Jim Grosbach5eb19512010-05-22 01:06:18 +00001247
Bob Wilsonf4aea8f2011-12-22 23:39:48 +00001248let Defs = [ R0, R1, R2, R3, R4, R5, R6, R7, R12, CPSR ],
1249 isBarrier = 1 in
1250def tInt_eh_sjlj_dispatchsetup : PseudoInst<(outs), (ins), NoItinerary, []>;
1251
Lauro Ramos Venancio64f4fa52007-04-27 13:54:47 +00001252//===----------------------------------------------------------------------===//
Evan Chenga8e29892007-01-19 07:51:42 +00001253// Non-Instruction Patterns
1254//
1255
Jim Grosbach97a884d2010-12-07 20:41:06 +00001256// Comparisons
1257def : T1Pat<(ARMcmpZ tGPR:$Rn, imm0_255:$imm8),
1258 (tCMPi8 tGPR:$Rn, imm0_255:$imm8)>;
1259def : T1Pat<(ARMcmpZ tGPR:$Rn, tGPR:$Rm),
1260 (tCMPr tGPR:$Rn, tGPR:$Rm)>;
1261
Evan Cheng892837a2009-07-10 02:09:04 +00001262// Add with carry
David Goodwinc9d138f2009-07-27 19:59:26 +00001263def : T1Pat<(addc tGPR:$lhs, imm0_7:$rhs),
1264 (tADDi3 tGPR:$lhs, imm0_7:$rhs)>;
1265def : T1Pat<(addc tGPR:$lhs, imm8_255:$rhs),
Evan Cheng89d177f2009-08-20 17:01:04 +00001266 (tADDi8 tGPR:$lhs, imm8_255:$rhs)>;
David Goodwinc9d138f2009-07-27 19:59:26 +00001267def : T1Pat<(addc tGPR:$lhs, tGPR:$rhs),
1268 (tADDrr tGPR:$lhs, tGPR:$rhs)>;
Evan Cheng892837a2009-07-10 02:09:04 +00001269
1270// Subtract with carry
David Goodwinc9d138f2009-07-27 19:59:26 +00001271def : T1Pat<(addc tGPR:$lhs, imm0_7_neg:$rhs),
1272 (tSUBi3 tGPR:$lhs, imm0_7_neg:$rhs)>;
1273def : T1Pat<(addc tGPR:$lhs, imm8_255_neg:$rhs),
1274 (tSUBi8 tGPR:$lhs, imm8_255_neg:$rhs)>;
1275def : T1Pat<(subc tGPR:$lhs, tGPR:$rhs),
1276 (tSUBrr tGPR:$lhs, tGPR:$rhs)>;
Evan Cheng892837a2009-07-10 02:09:04 +00001277
Evan Chenga8e29892007-01-19 07:51:42 +00001278// ConstantPool, GlobalAddress
David Goodwinc9d138f2009-07-27 19:59:26 +00001279def : T1Pat<(ARMWrapper tglobaladdr :$dst), (tLEApcrel tglobaladdr :$dst)>;
1280def : T1Pat<(ARMWrapper tconstpool :$dst), (tLEApcrel tconstpool :$dst)>;
Evan Chenga8e29892007-01-19 07:51:42 +00001281
Evan Chengd85ac4d2007-01-27 02:29:45 +00001282// JumpTable
David Goodwinc9d138f2009-07-27 19:59:26 +00001283def : T1Pat<(ARMWrapperJT tjumptable:$dst, imm:$id),
1284 (tLEApcrelJT tjumptable:$dst, imm:$id)>;
Evan Chengd85ac4d2007-01-27 02:29:45 +00001285
Evan Chenga8e29892007-01-19 07:51:42 +00001286// Direct calls
Evan Cheng20a2a0a2009-07-29 21:26:42 +00001287def : T1Pat<(ARMtcall texternalsym:$func), (tBL texternalsym:$func)>,
Jakob Stoklund Olesenf16936e2012-04-06 00:04:58 +00001288 Requires<[IsThumb]>;
Evan Cheng20a2a0a2009-07-29 21:26:42 +00001289
1290def : Tv5Pat<(ARMcall texternalsym:$func), (tBLXi texternalsym:$func)>,
Jakob Stoklund Olesenf16936e2012-04-06 00:04:58 +00001291 Requires<[IsThumb, HasV5T]>;
Evan Chenga8e29892007-01-19 07:51:42 +00001292
1293// Indirect calls to ARM routines
Evan Chengb6207242009-08-01 00:16:10 +00001294def : Tv5Pat<(ARMcall GPR:$dst), (tBLXr GPR:$dst)>,
Jakob Stoklund Olesenf16936e2012-04-06 00:04:58 +00001295 Requires<[IsThumb, HasV5T]>;
Evan Chenga8e29892007-01-19 07:51:42 +00001296
1297// zextload i1 -> zextload i8
Bill Wendlingf4caf692010-12-14 03:36:38 +00001298def : T1Pat<(zextloadi1 t_addrmode_rrs1:$addr),
1299 (tLDRBr t_addrmode_rrs1:$addr)>;
1300def : T1Pat<(zextloadi1 t_addrmode_is1:$addr),
1301 (tLDRBi t_addrmode_is1:$addr)>;
Jim Grosbach0ede14f2009-03-27 23:06:27 +00001302
Evan Chengb60c02e2007-01-26 19:13:16 +00001303// extload -> zextload
Bill Wendlingf4caf692010-12-14 03:36:38 +00001304def : T1Pat<(extloadi1 t_addrmode_rrs1:$addr), (tLDRBr t_addrmode_rrs1:$addr)>;
1305def : T1Pat<(extloadi1 t_addrmode_is1:$addr), (tLDRBi t_addrmode_is1:$addr)>;
1306def : T1Pat<(extloadi8 t_addrmode_rrs1:$addr), (tLDRBr t_addrmode_rrs1:$addr)>;
1307def : T1Pat<(extloadi8 t_addrmode_is1:$addr), (tLDRBi t_addrmode_is1:$addr)>;
1308def : T1Pat<(extloadi16 t_addrmode_rrs2:$addr), (tLDRHr t_addrmode_rrs2:$addr)>;
1309def : T1Pat<(extloadi16 t_addrmode_is2:$addr), (tLDRHi t_addrmode_is2:$addr)>;
Evan Chengb60c02e2007-01-26 19:13:16 +00001310
Evan Cheng0e87e232009-08-28 00:31:43 +00001311// If it's impossible to use [r,r] address mode for sextload, select to
Evan Cheng2f297df2009-07-11 07:08:13 +00001312// ldr{b|h} + sxt{b|h} instead.
Bill Wendling415af342010-12-15 00:58:57 +00001313def : T1Pat<(sextloadi8 t_addrmode_is1:$addr),
1314 (tSXTB (tLDRBi t_addrmode_is1:$addr))>,
1315 Requires<[IsThumb, IsThumb1Only, HasV6]>;
Bill Wendlingf4caf692010-12-14 03:36:38 +00001316def : T1Pat<(sextloadi8 t_addrmode_rrs1:$addr),
1317 (tSXTB (tLDRBr t_addrmode_rrs1:$addr))>,
Jim Grosbach6797f892010-11-01 17:08:58 +00001318 Requires<[IsThumb, IsThumb1Only, HasV6]>;
Bill Wendling415af342010-12-15 00:58:57 +00001319def : T1Pat<(sextloadi16 t_addrmode_is2:$addr),
1320 (tSXTH (tLDRHi t_addrmode_is2:$addr))>,
1321 Requires<[IsThumb, IsThumb1Only, HasV6]>;
Bill Wendlingf4caf692010-12-14 03:36:38 +00001322def : T1Pat<(sextloadi16 t_addrmode_rrs2:$addr),
1323 (tSXTH (tLDRHr t_addrmode_rrs2:$addr))>,
Jim Grosbach6797f892010-11-01 17:08:58 +00001324 Requires<[IsThumb, IsThumb1Only, HasV6]>;
Evan Cheng2f297df2009-07-11 07:08:13 +00001325
Bill Wendlingf4caf692010-12-14 03:36:38 +00001326def : T1Pat<(sextloadi8 t_addrmode_rrs1:$addr),
1327 (tASRri (tLSLri (tLDRBr t_addrmode_rrs1:$addr), 24), 24)>;
Bill Wendling415af342010-12-15 00:58:57 +00001328def : T1Pat<(sextloadi8 t_addrmode_is1:$addr),
1329 (tASRri (tLSLri (tLDRBi t_addrmode_is1:$addr), 24), 24)>;
1330def : T1Pat<(sextloadi16 t_addrmode_rrs2:$addr),
1331 (tASRri (tLSLri (tLDRHr t_addrmode_rrs2:$addr), 16), 16)>;
1332def : T1Pat<(sextloadi16 t_addrmode_is2:$addr),
1333 (tASRri (tLSLri (tLDRHi t_addrmode_is2:$addr), 16), 16)>;
Evan Cheng2f297df2009-07-11 07:08:13 +00001334
Eli Friedman7cc15662011-09-15 22:18:49 +00001335def : T1Pat<(atomic_load_8 t_addrmode_is1:$src),
1336 (tLDRBi t_addrmode_is1:$src)>;
1337def : T1Pat<(atomic_load_8 t_addrmode_rrs1:$src),
1338 (tLDRBr t_addrmode_rrs1:$src)>;
1339def : T1Pat<(atomic_load_16 t_addrmode_is2:$src),
1340 (tLDRHi t_addrmode_is2:$src)>;
1341def : T1Pat<(atomic_load_16 t_addrmode_rrs2:$src),
1342 (tLDRHr t_addrmode_rrs2:$src)>;
1343def : T1Pat<(atomic_load_32 t_addrmode_is4:$src),
1344 (tLDRi t_addrmode_is4:$src)>;
1345def : T1Pat<(atomic_load_32 t_addrmode_rrs4:$src),
1346 (tLDRr t_addrmode_rrs4:$src)>;
1347def : T1Pat<(atomic_store_8 t_addrmode_is1:$ptr, tGPR:$val),
1348 (tSTRBi tGPR:$val, t_addrmode_is1:$ptr)>;
1349def : T1Pat<(atomic_store_8 t_addrmode_rrs1:$ptr, tGPR:$val),
1350 (tSTRBr tGPR:$val, t_addrmode_rrs1:$ptr)>;
1351def : T1Pat<(atomic_store_16 t_addrmode_is2:$ptr, tGPR:$val),
1352 (tSTRHi tGPR:$val, t_addrmode_is2:$ptr)>;
1353def : T1Pat<(atomic_store_16 t_addrmode_rrs2:$ptr, tGPR:$val),
1354 (tSTRHr tGPR:$val, t_addrmode_rrs2:$ptr)>;
1355def : T1Pat<(atomic_store_32 t_addrmode_is4:$ptr, tGPR:$val),
1356 (tSTRi tGPR:$val, t_addrmode_is4:$ptr)>;
1357def : T1Pat<(atomic_store_32 t_addrmode_rrs4:$ptr, tGPR:$val),
1358 (tSTRr tGPR:$val, t_addrmode_rrs4:$ptr)>;
1359
Evan Chenga8e29892007-01-19 07:51:42 +00001360// Large immediate handling.
1361
1362// Two piece imms.
Evan Cheng9cb9e672009-06-27 02:26:13 +00001363def : T1Pat<(i32 thumb_immshifted:$src),
1364 (tLSLri (tMOVi8 (thumb_immshifted_val imm:$src)),
1365 (thumb_immshifted_shamt imm:$src))>;
Evan Chenga8e29892007-01-19 07:51:42 +00001366
Evan Cheng9cb9e672009-06-27 02:26:13 +00001367def : T1Pat<(i32 imm0_255_comp:$src),
1368 (tMVN (tMOVi8 (imm_comp_XFORM imm:$src)))>;
Evan Chengb9803a82009-11-06 23:52:48 +00001369
1370// Pseudo instruction that combines ldr from constpool and add pc. This should
1371// be expanded into two instructions late to allow if-conversion and
1372// scheduling.
1373let isReMaterializable = 1 in
1374def tLDRpci_pic : PseudoInst<(outs GPR:$dst), (ins i32imm:$addr, pclabel:$cp),
Bill Wendling0480e282010-12-01 02:36:55 +00001375 NoItinerary,
Evan Chengb9803a82009-11-06 23:52:48 +00001376 [(set GPR:$dst, (ARMpic_add (load (ARMWrapper tconstpool:$addr)),
1377 imm:$cp))]>,
Jim Grosbach6797f892010-11-01 17:08:58 +00001378 Requires<[IsThumb, IsThumb1Only]>;
Jim Grosbach53e3fc42011-07-08 17:40:42 +00001379
1380// Pseudo-instruction for merged POP and return.
1381// FIXME: remove when we have a way to marking a MI with these properties.
1382let isReturn = 1, isTerminator = 1, isBarrier = 1, mayLoad = 1,
1383 hasExtraDefRegAllocReq = 1 in
1384def tPOP_RET : tPseudoExpand<(outs), (ins pred:$p, reglist:$regs, variable_ops),
Owen Anderson16884412011-07-13 23:22:26 +00001385 2, IIC_iPop_Br, [],
Jim Grosbach53e3fc42011-07-08 17:40:42 +00001386 (tPOP pred:$p, reglist:$regs)>;
1387
Jim Grosbachaa8d1b82011-07-08 22:25:23 +00001388// Indirect branch using "mov pc, $Rm"
1389let isBranch = 1, isTerminator = 1, isBarrier = 1, isIndirectBranch = 1 in {
Jim Grosbach7e61a312011-07-08 22:33:49 +00001390 def tBRIND : tPseudoExpand<(outs), (ins GPR:$Rm, pred:$p),
Owen Anderson16884412011-07-13 23:22:26 +00001391 2, IIC_Br, [(brind GPR:$Rm)],
Jim Grosbach7e61a312011-07-08 22:33:49 +00001392 (tMOVr PC, GPR:$Rm, pred:$p)>;
Jim Grosbachaa8d1b82011-07-08 22:25:23 +00001393}
Jim Grosbach0780b632011-08-19 23:24:36 +00001394
1395
1396// In Thumb1, "nop" is encoded as a "mov r8, r8". Technically, the bf00
1397// encoding is available on ARMv6K, but we don't differentiate that finely.
1398def : InstAlias<"nop", (tMOVr R8, R8, 14, 0)>,Requires<[IsThumb, IsThumb1Only]>;
Jim Grosbachabb8aac2011-09-20 00:10:37 +00001399
1400
1401// For round-trip assembly/disassembly, we have to handle a CPS instruction
1402// without any iflags. That's not, strictly speaking, valid syntax, but it's
Benjamin Kramerd9b0b022012-06-02 10:20:22 +00001403// a useful extension and assembles to defined behaviour (the insn does
Jim Grosbachabb8aac2011-09-20 00:10:37 +00001404// nothing).
1405def : tInstAlias<"cps$imod", (tCPS imod_op:$imod, 0)>;
1406def : tInstAlias<"cps$imod", (tCPS imod_op:$imod, 0)>;
Jim Grosbache91e7bc2011-12-13 20:23:22 +00001407
1408// "neg" is and alias for "rsb rd, rn, #0"
1409def : tInstAlias<"neg${s}${p} $Rd, $Rm",
1410 (tRSB tGPR:$Rd, s_cc_out:$s, tGPR:$Rm, pred:$p)>;
1411
Jim Grosbacha5378eb2012-04-11 00:15:16 +00001412
1413// Implied destination operand forms for shifts.
1414def : tInstAlias<"lsl${s}${p} $Rdm, $imm",
1415 (tLSLri tGPR:$Rdm, cc_out:$s, tGPR:$Rdm, imm0_31:$imm, pred:$p)>;
1416def : tInstAlias<"lsr${s}${p} $Rdm, $imm",
1417 (tLSRri tGPR:$Rdm, cc_out:$s, tGPR:$Rdm, imm_sr:$imm, pred:$p)>;
1418def : tInstAlias<"asr${s}${p} $Rdm, $imm",
1419 (tASRri tGPR:$Rdm, cc_out:$s, tGPR:$Rdm, imm_sr:$imm, pred:$p)>;