blob: 3ee0355584aaa1d94755efc1d9dd629d711d57a6 [file] [log] [blame]
Anton Korobeynikovd4022c32009-05-29 23:41:08 +00001//===- ARMInstrThumb2.td - Thumb2 support for ARM -------------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file describes the Thumb2 instruction set.
11//
12//===----------------------------------------------------------------------===//
Anton Korobeynikov52237112009-06-17 18:13:58 +000013
Evan Cheng06e16582009-07-10 01:54:42 +000014// IT block predicate field
15def it_pred : Operand<i32> {
16 let PrintMethod = "printPredicateOperand";
17}
18
19// IT block condition mask
20def it_mask : Operand<i32> {
21 let PrintMethod = "printThumbITMask";
22}
23
Evan Cheng5657c012009-07-29 02:18:14 +000024// Table branch address
25def tb_addrmode : Operand<i32> {
26 let PrintMethod = "printTBAddrMode";
27}
28
Anton Korobeynikov52237112009-06-17 18:13:58 +000029// Shifted operands. No register controlled shifts for Thumb2.
30// Note: We do not support rrx shifted operands yet.
31def t2_so_reg : Operand<i32>, // reg imm
Evan Cheng9cb9e672009-06-27 02:26:13 +000032 ComplexPattern<i32, 2, "SelectT2ShifterOperandReg",
Anton Korobeynikov52237112009-06-17 18:13:58 +000033 [shl,srl,sra,rotr]> {
Evan Cheng9cb9e672009-06-27 02:26:13 +000034 let PrintMethod = "printT2SOOperand";
Anton Korobeynikov52237112009-06-17 18:13:58 +000035 let MIOperandInfo = (ops GPR, i32imm);
36}
37
Evan Chengf49810c2009-06-23 17:48:47 +000038// t2_so_imm_not_XFORM - Return the complement of a t2_so_imm value
39def t2_so_imm_not_XFORM : SDNodeXForm<imm, [{
Owen Anderson825b72b2009-08-11 20:47:22 +000040 return CurDAG->getTargetConstant(~((uint32_t)N->getZExtValue()), MVT::i32);
Anton Korobeynikov52237112009-06-17 18:13:58 +000041}]>;
42
Evan Chengf49810c2009-06-23 17:48:47 +000043// t2_so_imm_neg_XFORM - Return the negation of a t2_so_imm value
44def t2_so_imm_neg_XFORM : SDNodeXForm<imm, [{
Owen Anderson825b72b2009-08-11 20:47:22 +000045 return CurDAG->getTargetConstant(-((int)N->getZExtValue()), MVT::i32);
Evan Chengf49810c2009-06-23 17:48:47 +000046}]>;
Anton Korobeynikov52237112009-06-17 18:13:58 +000047
Evan Chengf49810c2009-06-23 17:48:47 +000048// t2_so_imm - Match a 32-bit immediate operand, which is an
49// 8-bit immediate rotated by an arbitrary number of bits, or an 8-bit
50// immediate splatted into multiple bytes of the word. t2_so_imm values are
51// represented in the imm field in the same 12-bit form that they are encoded
52// into t2_so_imm instructions: the 8-bit immediate is the least significant bits
53// [bits 0-7], the 4-bit shift/splat amount is the next 4 bits [bits 8-11].
54def t2_so_imm : Operand<i32>,
55 PatLeaf<(imm), [{
Evan Chenge7cbe412009-07-08 21:03:57 +000056 return ARM_AM::getT2SOImmVal((uint32_t)N->getZExtValue()) != -1;
57}]>;
Anton Korobeynikov52237112009-06-17 18:13:58 +000058
Evan Chengf49810c2009-06-23 17:48:47 +000059// t2_so_imm_not - Match an immediate that is a complement
60// of a t2_so_imm.
61def t2_so_imm_not : Operand<i32>,
62 PatLeaf<(imm), [{
Evan Chenge7cbe412009-07-08 21:03:57 +000063 return ARM_AM::getT2SOImmVal(~((uint32_t)N->getZExtValue())) != -1;
64}], t2_so_imm_not_XFORM>;
Evan Chengf49810c2009-06-23 17:48:47 +000065
66// t2_so_imm_neg - Match an immediate that is a negation of a t2_so_imm.
67def t2_so_imm_neg : Operand<i32>,
68 PatLeaf<(imm), [{
Evan Chenge7cbe412009-07-08 21:03:57 +000069 return ARM_AM::getT2SOImmVal(-((int)N->getZExtValue())) != -1;
70}], t2_so_imm_neg_XFORM>;
Evan Chengf49810c2009-06-23 17:48:47 +000071
Jim Grosbach65b7f3a2009-10-21 20:44:34 +000072// Break t2_so_imm's up into two pieces. This handles immediates with up to 16
73// bits set in them. This uses t2_so_imm2part to match and t2_so_imm2part_[12]
74// to get the first/second pieces.
75def t2_so_imm2part : Operand<i32>,
76 PatLeaf<(imm), [{
77 return ARM_AM::isT2SOImmTwoPartVal((unsigned)N->getZExtValue());
78 }]> {
79}
80
81def t2_so_imm2part_1 : SDNodeXForm<imm, [{
82 unsigned V = ARM_AM::getT2SOImmTwoPartFirst((unsigned)N->getZExtValue());
83 return CurDAG->getTargetConstant(V, MVT::i32);
84}]>;
85
86def t2_so_imm2part_2 : SDNodeXForm<imm, [{
87 unsigned V = ARM_AM::getT2SOImmTwoPartSecond((unsigned)N->getZExtValue());
88 return CurDAG->getTargetConstant(V, MVT::i32);
89}]>;
90
Evan Chenga67efd12009-06-23 19:39:13 +000091/// imm1_31 predicate - True if the 32-bit immediate is in the range [1,31].
92def imm1_31 : PatLeaf<(i32 imm), [{
93 return (int32_t)N->getZExtValue() >= 1 && (int32_t)N->getZExtValue() < 32;
94}]>;
95
Evan Chengf49810c2009-06-23 17:48:47 +000096/// imm0_4095 predicate - True if the 32-bit immediate is in the range [0.4095].
Evan Cheng86198642009-08-07 00:34:42 +000097def imm0_4095 : Operand<i32>,
98 PatLeaf<(i32 imm), [{
Evan Chengf49810c2009-06-23 17:48:47 +000099 return (uint32_t)N->getZExtValue() < 4096;
100}]>;
Anton Korobeynikov52237112009-06-17 18:13:58 +0000101
102def imm0_4095_neg : PatLeaf<(i32 imm), [{
Evan Chengf49810c2009-06-23 17:48:47 +0000103 return (uint32_t)(-N->getZExtValue()) < 4096;
Anton Korobeynikov52237112009-06-17 18:13:58 +0000104}], imm_neg_XFORM>;
105
Evan Chengfa2ea1a2009-08-04 01:41:15 +0000106def imm0_255_neg : PatLeaf<(i32 imm), [{
107 return (uint32_t)(-N->getZExtValue()) < 255;
108}], imm_neg_XFORM>;
109
Evan Cheng055b0312009-06-29 07:51:04 +0000110// Define Thumb2 specific addressing modes.
111
112// t2addrmode_imm12 := reg + imm12
113def t2addrmode_imm12 : Operand<i32>,
114 ComplexPattern<i32, 2, "SelectT2AddrModeImm12", []> {
115 let PrintMethod = "printT2AddrModeImm12Operand";
116 let MIOperandInfo = (ops GPR:$base, i32imm:$offsimm);
117}
118
David Goodwin5ff58b52009-07-24 00:16:18 +0000119// t2addrmode_imm8 := reg - imm8
Evan Cheng055b0312009-06-29 07:51:04 +0000120def t2addrmode_imm8 : Operand<i32>,
121 ComplexPattern<i32, 2, "SelectT2AddrModeImm8", []> {
122 let PrintMethod = "printT2AddrModeImm8Operand";
123 let MIOperandInfo = (ops GPR:$base, i32imm:$offsimm);
124}
125
Evan Cheng6d94f112009-07-03 00:06:39 +0000126def t2am_imm8_offset : Operand<i32>,
127 ComplexPattern<i32, 1, "SelectT2AddrModeImm8Offset", []>{
Evan Chenge88d5ce2009-07-02 07:28:31 +0000128 let PrintMethod = "printT2AddrModeImm8OffsetOperand";
129}
130
Evan Cheng5c874172009-07-09 22:21:59 +0000131// t2addrmode_imm8s4 := reg +/- (imm8 << 2)
David Goodwin6647cea2009-06-30 22:50:01 +0000132def t2addrmode_imm8s4 : Operand<i32>,
133 ComplexPattern<i32, 2, "SelectT2AddrModeImm8s4", []> {
Evan Cheng5c874172009-07-09 22:21:59 +0000134 let PrintMethod = "printT2AddrModeImm8s4Operand";
David Goodwin6647cea2009-06-30 22:50:01 +0000135 let MIOperandInfo = (ops GPR:$base, i32imm:$offsimm);
136}
137
Evan Chengcba962d2009-07-09 20:40:44 +0000138// t2addrmode_so_reg := reg + (reg << imm2)
Evan Cheng055b0312009-06-29 07:51:04 +0000139def t2addrmode_so_reg : Operand<i32>,
140 ComplexPattern<i32, 3, "SelectT2AddrModeSoReg", []> {
141 let PrintMethod = "printT2AddrModeSoRegOperand";
142 let MIOperandInfo = (ops GPR:$base, GPR:$offsreg, i32imm:$offsimm);
143}
144
145
Anton Korobeynikov52237112009-06-17 18:13:58 +0000146//===----------------------------------------------------------------------===//
Evan Cheng9cb9e672009-06-27 02:26:13 +0000147// Multiclass helpers...
Anton Korobeynikov52237112009-06-17 18:13:58 +0000148//
149
Evan Chenga67efd12009-06-23 19:39:13 +0000150/// T2I_un_irs - Defines a set of (op reg, {so_imm|r|so_reg}) patterns for a
Evan Cheng0aa1d8c2009-06-25 02:08:06 +0000151/// unary operation that produces a value. These are predicable and can be
152/// changed to modify CPSR.
Evan Chenga67efd12009-06-23 19:39:13 +0000153multiclass T2I_un_irs<string opc, PatFrag opnode, bit Cheap = 0, bit ReMat = 0>{
154 // shifted imm
David Goodwin5d598aa2009-08-19 18:00:44 +0000155 def i : T2sI<(outs GPR:$dst), (ins t2_so_imm:$src), IIC_iMOVi,
Evan Cheng699beba2009-10-27 00:08:59 +0000156 opc, "\t$dst, $src",
Evan Chenga67efd12009-06-23 19:39:13 +0000157 [(set GPR:$dst, (opnode t2_so_imm:$src))]> {
158 let isAsCheapAsAMove = Cheap;
159 let isReMaterializable = ReMat;
160 }
161 // register
David Goodwin5d598aa2009-08-19 18:00:44 +0000162 def r : T2I<(outs GPR:$dst), (ins GPR:$src), IIC_iMOVr,
Evan Cheng699beba2009-10-27 00:08:59 +0000163 opc, ".w\t$dst, $src",
Evan Chenga67efd12009-06-23 19:39:13 +0000164 [(set GPR:$dst, (opnode GPR:$src))]>;
165 // shifted register
David Goodwin5d598aa2009-08-19 18:00:44 +0000166 def s : T2I<(outs GPR:$dst), (ins t2_so_reg:$src), IIC_iMOVsi,
Evan Cheng699beba2009-10-27 00:08:59 +0000167 opc, ".w\t$dst, $src",
Evan Cheng0aa1d8c2009-06-25 02:08:06 +0000168 [(set GPR:$dst, (opnode t2_so_reg:$src))]>;
Evan Chenga67efd12009-06-23 19:39:13 +0000169}
170
171/// T2I_bin_irs - Defines a set of (op reg, {so_imm|r|so_reg}) patterns for a
Evan Cheng0aa1d8c2009-06-25 02:08:06 +0000172// binary operation that produces a value. These are predicable and can be
173/// changed to modify CPSR.
David Goodwin1f096272009-07-27 23:34:12 +0000174multiclass T2I_bin_irs<string opc, PatFrag opnode,
175 bit Commutable = 0, string wide =""> {
Anton Korobeynikov52237112009-06-17 18:13:58 +0000176 // shifted imm
David Goodwin5d598aa2009-08-19 18:00:44 +0000177 def ri : T2sI<(outs GPR:$dst), (ins GPR:$lhs, t2_so_imm:$rhs), IIC_iALUi,
Evan Cheng699beba2009-10-27 00:08:59 +0000178 opc, "\t$dst, $lhs, $rhs",
Evan Cheng0aa1d8c2009-06-25 02:08:06 +0000179 [(set GPR:$dst, (opnode GPR:$lhs, t2_so_imm:$rhs))]>;
Evan Chenga67efd12009-06-23 19:39:13 +0000180 // register
David Goodwin5d598aa2009-08-19 18:00:44 +0000181 def rr : T2sI<(outs GPR:$dst), (ins GPR:$lhs, GPR:$rhs), IIC_iALUr,
Evan Cheng699beba2009-10-27 00:08:59 +0000182 opc, !strconcat(wide, "\t$dst, $lhs, $rhs"),
Evan Cheng8de898a2009-06-26 00:19:44 +0000183 [(set GPR:$dst, (opnode GPR:$lhs, GPR:$rhs))]> {
184 let isCommutable = Commutable;
185 }
Anton Korobeynikov52237112009-06-17 18:13:58 +0000186 // shifted register
David Goodwin5d598aa2009-08-19 18:00:44 +0000187 def rs : T2sI<(outs GPR:$dst), (ins GPR:$lhs, t2_so_reg:$rhs), IIC_iALUsi,
Evan Cheng699beba2009-10-27 00:08:59 +0000188 opc, !strconcat(wide, "\t$dst, $lhs, $rhs"),
Evan Cheng0aa1d8c2009-06-25 02:08:06 +0000189 [(set GPR:$dst, (opnode GPR:$lhs, t2_so_reg:$rhs))]>;
Anton Korobeynikov52237112009-06-17 18:13:58 +0000190}
191
David Goodwin1f096272009-07-27 23:34:12 +0000192/// T2I_bin_w_irs - Same as T2I_bin_irs except these operations need
193// the ".w" prefix to indicate that they are wide.
194multiclass T2I_bin_w_irs<string opc, PatFrag opnode, bit Commutable = 0> :
195 T2I_bin_irs<opc, opnode, Commutable, ".w">;
196
Evan Cheng1e249e32009-06-25 20:59:23 +0000197/// T2I_rbin_is - Same as T2I_bin_irs except the order of operands are
198/// reversed. It doesn't define the 'rr' form since it's handled by its
199/// T2I_bin_irs counterpart.
200multiclass T2I_rbin_is<string opc, PatFrag opnode> {
Evan Chengf49810c2009-06-23 17:48:47 +0000201 // shifted imm
David Goodwin5d598aa2009-08-19 18:00:44 +0000202 def ri : T2I<(outs GPR:$dst), (ins GPR:$rhs, t2_so_imm:$lhs), IIC_iALUi,
Evan Cheng699beba2009-10-27 00:08:59 +0000203 opc, ".w\t$dst, $rhs, $lhs",
Evan Chengf49810c2009-06-23 17:48:47 +0000204 [(set GPR:$dst, (opnode t2_so_imm:$lhs, GPR:$rhs))]>;
205 // shifted register
David Goodwin5d598aa2009-08-19 18:00:44 +0000206 def rs : T2I<(outs GPR:$dst), (ins GPR:$rhs, t2_so_reg:$lhs), IIC_iALUsi,
Evan Cheng699beba2009-10-27 00:08:59 +0000207 opc, "\t$dst, $rhs, $lhs",
Evan Chengf49810c2009-06-23 17:48:47 +0000208 [(set GPR:$dst, (opnode t2_so_reg:$lhs, GPR:$rhs))]>;
209}
210
Evan Chenga67efd12009-06-23 19:39:13 +0000211/// T2I_bin_s_irs - Similar to T2I_bin_irs except it sets the 's' bit so the
Anton Korobeynikov52237112009-06-17 18:13:58 +0000212/// instruction modifies the CPSR register.
213let Defs = [CPSR] in {
Evan Cheng8de898a2009-06-26 00:19:44 +0000214multiclass T2I_bin_s_irs<string opc, PatFrag opnode, bit Commutable = 0> {
Anton Korobeynikov52237112009-06-17 18:13:58 +0000215 // shifted imm
David Goodwin5d598aa2009-08-19 18:00:44 +0000216 def ri : T2I<(outs GPR:$dst), (ins GPR:$lhs, t2_so_imm:$rhs), IIC_iALUi,
Evan Cheng699beba2009-10-27 00:08:59 +0000217 !strconcat(opc, "s"), ".w\t$dst, $lhs, $rhs",
Evan Chengf49810c2009-06-23 17:48:47 +0000218 [(set GPR:$dst, (opnode GPR:$lhs, t2_so_imm:$rhs))]>;
Evan Chenga67efd12009-06-23 19:39:13 +0000219 // register
David Goodwin5d598aa2009-08-19 18:00:44 +0000220 def rr : T2I<(outs GPR:$dst), (ins GPR:$lhs, GPR:$rhs), IIC_iALUr,
Evan Cheng699beba2009-10-27 00:08:59 +0000221 !strconcat(opc, "s"), ".w\t$dst, $lhs, $rhs",
Evan Cheng8de898a2009-06-26 00:19:44 +0000222 [(set GPR:$dst, (opnode GPR:$lhs, GPR:$rhs))]> {
223 let isCommutable = Commutable;
224 }
Anton Korobeynikov52237112009-06-17 18:13:58 +0000225 // shifted register
David Goodwin5d598aa2009-08-19 18:00:44 +0000226 def rs : T2I<(outs GPR:$dst), (ins GPR:$lhs, t2_so_reg:$rhs), IIC_iALUsi,
Evan Cheng699beba2009-10-27 00:08:59 +0000227 !strconcat(opc, "s"), ".w\t$dst, $lhs, $rhs",
Evan Chengf49810c2009-06-23 17:48:47 +0000228 [(set GPR:$dst, (opnode GPR:$lhs, t2_so_reg:$rhs))]>;
Anton Korobeynikov52237112009-06-17 18:13:58 +0000229}
230}
231
Evan Chenga67efd12009-06-23 19:39:13 +0000232/// T2I_bin_ii12rs - Defines a set of (op reg, {so_imm|imm0_4095|r|so_reg})
233/// patterns for a binary operation that produces a value.
Evan Cheng8de898a2009-06-26 00:19:44 +0000234multiclass T2I_bin_ii12rs<string opc, PatFrag opnode, bit Commutable = 0> {
Evan Chengf49810c2009-06-23 17:48:47 +0000235 // shifted imm
David Goodwin5d598aa2009-08-19 18:00:44 +0000236 def ri : T2sI<(outs GPR:$dst), (ins GPR:$lhs, t2_so_imm:$rhs), IIC_iALUi,
Evan Cheng699beba2009-10-27 00:08:59 +0000237 opc, ".w\t$dst, $lhs, $rhs",
Evan Cheng0aa1d8c2009-06-25 02:08:06 +0000238 [(set GPR:$dst, (opnode GPR:$lhs, t2_so_imm:$rhs))]>;
Evan Chengf49810c2009-06-23 17:48:47 +0000239 // 12-bit imm
David Goodwin5d598aa2009-08-19 18:00:44 +0000240 def ri12 : T2sI<(outs GPR:$dst), (ins GPR:$lhs, imm0_4095:$rhs), IIC_iALUi,
Evan Cheng699beba2009-10-27 00:08:59 +0000241 !strconcat(opc, "w"), "\t$dst, $lhs, $rhs",
Evan Cheng0aa1d8c2009-06-25 02:08:06 +0000242 [(set GPR:$dst, (opnode GPR:$lhs, imm0_4095:$rhs))]>;
Evan Chenga67efd12009-06-23 19:39:13 +0000243 // register
David Goodwin5d598aa2009-08-19 18:00:44 +0000244 def rr : T2sI<(outs GPR:$dst), (ins GPR:$lhs, GPR:$rhs), IIC_iALUr,
Evan Cheng699beba2009-10-27 00:08:59 +0000245 opc, ".w\t$dst, $lhs, $rhs",
Evan Cheng8de898a2009-06-26 00:19:44 +0000246 [(set GPR:$dst, (opnode GPR:$lhs, GPR:$rhs))]> {
247 let isCommutable = Commutable;
248 }
Evan Chengf49810c2009-06-23 17:48:47 +0000249 // shifted register
David Goodwin5d598aa2009-08-19 18:00:44 +0000250 def rs : T2sI<(outs GPR:$dst), (ins GPR:$lhs, t2_so_reg:$rhs), IIC_iALUsi,
Evan Cheng699beba2009-10-27 00:08:59 +0000251 opc, ".w\t$dst, $lhs, $rhs",
Evan Cheng0aa1d8c2009-06-25 02:08:06 +0000252 [(set GPR:$dst, (opnode GPR:$lhs, t2_so_reg:$rhs))]>;
Evan Chengf49810c2009-06-23 17:48:47 +0000253}
254
Evan Cheng62674222009-06-25 23:34:10 +0000255/// T2I_adde_sube_irs - Defines a set of (op reg, {so_imm|r|so_reg}) patterns for a
Evan Cheng1e249e32009-06-25 20:59:23 +0000256/// binary operation that produces a value and use and define the carry bit.
257/// It's not predicable.
Evan Cheng62674222009-06-25 23:34:10 +0000258let Uses = [CPSR] in {
Evan Cheng8de898a2009-06-26 00:19:44 +0000259multiclass T2I_adde_sube_irs<string opc, PatFrag opnode, bit Commutable = 0> {
Anton Korobeynikov52237112009-06-17 18:13:58 +0000260 // shifted imm
David Goodwin5d598aa2009-08-19 18:00:44 +0000261 def ri : T2sI<(outs GPR:$dst), (ins GPR:$lhs, t2_so_imm:$rhs), IIC_iALUi,
Evan Cheng699beba2009-10-27 00:08:59 +0000262 opc, "\t$dst, $lhs, $rhs",
Evan Cheng62674222009-06-25 23:34:10 +0000263 [(set GPR:$dst, (opnode GPR:$lhs, t2_so_imm:$rhs))]>,
Evan Chengd770d9e2009-07-02 06:38:40 +0000264 Requires<[IsThumb2, CarryDefIsUnused]>;
Evan Chenga67efd12009-06-23 19:39:13 +0000265 // register
David Goodwin5d598aa2009-08-19 18:00:44 +0000266 def rr : T2sI<(outs GPR:$dst), (ins GPR:$lhs, GPR:$rhs), IIC_iALUr,
Evan Cheng699beba2009-10-27 00:08:59 +0000267 opc, ".w\t$dst, $lhs, $rhs",
Evan Cheng62674222009-06-25 23:34:10 +0000268 [(set GPR:$dst, (opnode GPR:$lhs, GPR:$rhs))]>,
Evan Chengd770d9e2009-07-02 06:38:40 +0000269 Requires<[IsThumb2, CarryDefIsUnused]> {
Evan Cheng8de898a2009-06-26 00:19:44 +0000270 let isCommutable = Commutable;
271 }
Anton Korobeynikov52237112009-06-17 18:13:58 +0000272 // shifted register
David Goodwin5d598aa2009-08-19 18:00:44 +0000273 def rs : T2sI<(outs GPR:$dst), (ins GPR:$lhs, t2_so_reg:$rhs), IIC_iALUsi,
Evan Cheng699beba2009-10-27 00:08:59 +0000274 opc, ".w\t$dst, $lhs, $rhs",
Evan Cheng62674222009-06-25 23:34:10 +0000275 [(set GPR:$dst, (opnode GPR:$lhs, t2_so_reg:$rhs))]>,
Evan Chengd770d9e2009-07-02 06:38:40 +0000276 Requires<[IsThumb2, CarryDefIsUnused]>;
Evan Cheng62674222009-06-25 23:34:10 +0000277 // Carry setting variants
278 // shifted imm
David Goodwin5d598aa2009-08-19 18:00:44 +0000279 def Sri : T2XI<(outs GPR:$dst), (ins GPR:$lhs, t2_so_imm:$rhs), IIC_iALUi,
Evan Cheng699beba2009-10-27 00:08:59 +0000280 !strconcat(opc, "s\t$dst, $lhs, $rhs"),
Evan Cheng62674222009-06-25 23:34:10 +0000281 [(set GPR:$dst, (opnode GPR:$lhs, t2_so_imm:$rhs))]>,
Evan Chengd770d9e2009-07-02 06:38:40 +0000282 Requires<[IsThumb2, CarryDefIsUsed]> {
Evan Cheng62674222009-06-25 23:34:10 +0000283 let Defs = [CPSR];
284 }
285 // register
David Goodwin5d598aa2009-08-19 18:00:44 +0000286 def Srr : T2XI<(outs GPR:$dst), (ins GPR:$lhs, GPR:$rhs), IIC_iALUr,
Evan Cheng699beba2009-10-27 00:08:59 +0000287 !strconcat(opc, "s.w\t$dst, $lhs, $rhs"),
Evan Cheng62674222009-06-25 23:34:10 +0000288 [(set GPR:$dst, (opnode GPR:$lhs, GPR:$rhs))]>,
Evan Chengd770d9e2009-07-02 06:38:40 +0000289 Requires<[IsThumb2, CarryDefIsUsed]> {
Evan Cheng62674222009-06-25 23:34:10 +0000290 let Defs = [CPSR];
Evan Cheng8de898a2009-06-26 00:19:44 +0000291 let isCommutable = Commutable;
292 }
Evan Cheng62674222009-06-25 23:34:10 +0000293 // shifted register
David Goodwin5d598aa2009-08-19 18:00:44 +0000294 def Srs : T2XI<(outs GPR:$dst), (ins GPR:$lhs, t2_so_reg:$rhs), IIC_iALUsi,
Evan Cheng699beba2009-10-27 00:08:59 +0000295 !strconcat(opc, "s.w\t$dst, $lhs, $rhs"),
Evan Cheng62674222009-06-25 23:34:10 +0000296 [(set GPR:$dst, (opnode GPR:$lhs, t2_so_reg:$rhs))]>,
Evan Chengd770d9e2009-07-02 06:38:40 +0000297 Requires<[IsThumb2, CarryDefIsUsed]> {
Evan Cheng62674222009-06-25 23:34:10 +0000298 let Defs = [CPSR];
Evan Cheng8de898a2009-06-26 00:19:44 +0000299 }
Evan Chengf49810c2009-06-23 17:48:47 +0000300}
301}
302
David Goodwinaf0d08d2009-07-27 16:31:55 +0000303/// T2I_rbin_s_is - Same as T2I_rbin_is except sets 's' bit.
Evan Cheng1e249e32009-06-25 20:59:23 +0000304let Defs = [CPSR] in {
305multiclass T2I_rbin_s_is<string opc, PatFrag opnode> {
Evan Chengf49810c2009-06-23 17:48:47 +0000306 // shifted imm
Evan Chenge8af1f92009-08-10 02:37:24 +0000307 def ri : T2XI<(outs GPR:$dst), (ins GPR:$rhs, t2_so_imm:$lhs, cc_out:$s),
David Goodwin5d598aa2009-08-19 18:00:44 +0000308 IIC_iALUi,
Evan Cheng699beba2009-10-27 00:08:59 +0000309 !strconcat(opc, "${s}.w\t$dst, $rhs, $lhs"),
Evan Cheng0aa1d8c2009-06-25 02:08:06 +0000310 [(set GPR:$dst, (opnode t2_so_imm:$lhs, GPR:$rhs))]>;
Evan Chengf49810c2009-06-23 17:48:47 +0000311 // shifted register
Evan Chenge8af1f92009-08-10 02:37:24 +0000312 def rs : T2XI<(outs GPR:$dst), (ins GPR:$rhs, t2_so_reg:$lhs, cc_out:$s),
David Goodwin5d598aa2009-08-19 18:00:44 +0000313 IIC_iALUsi,
Evan Cheng699beba2009-10-27 00:08:59 +0000314 !strconcat(opc, "${s}\t$dst, $rhs, $lhs"),
Evan Cheng0aa1d8c2009-06-25 02:08:06 +0000315 [(set GPR:$dst, (opnode t2_so_reg:$lhs, GPR:$rhs))]>;
Evan Chengf49810c2009-06-23 17:48:47 +0000316}
317}
318
Evan Chenga67efd12009-06-23 19:39:13 +0000319/// T2I_sh_ir - Defines a set of (op reg, {so_imm|r}) patterns for a shift /
320// rotate operation that produces a value.
321multiclass T2I_sh_ir<string opc, PatFrag opnode> {
322 // 5-bit imm
David Goodwin5d598aa2009-08-19 18:00:44 +0000323 def ri : T2sI<(outs GPR:$dst), (ins GPR:$lhs, i32imm:$rhs), IIC_iMOVsi,
Evan Cheng699beba2009-10-27 00:08:59 +0000324 opc, ".w\t$dst, $lhs, $rhs",
Evan Cheng0aa1d8c2009-06-25 02:08:06 +0000325 [(set GPR:$dst, (opnode GPR:$lhs, imm1_31:$rhs))]>;
Evan Chenga67efd12009-06-23 19:39:13 +0000326 // register
David Goodwin5d598aa2009-08-19 18:00:44 +0000327 def rr : T2sI<(outs GPR:$dst), (ins GPR:$lhs, GPR:$rhs), IIC_iMOVsr,
Evan Cheng699beba2009-10-27 00:08:59 +0000328 opc, ".w\t$dst, $lhs, $rhs",
Evan Cheng0aa1d8c2009-06-25 02:08:06 +0000329 [(set GPR:$dst, (opnode GPR:$lhs, GPR:$rhs))]>;
Evan Chenga67efd12009-06-23 19:39:13 +0000330}
Evan Chengf49810c2009-06-23 17:48:47 +0000331
David Goodwin5d598aa2009-08-19 18:00:44 +0000332/// T2I_cmp_is - Defines a set of (op r, {so_imm|r|so_reg}) cmp / test
Evan Chenga67efd12009-06-23 19:39:13 +0000333/// patterns. Similar to T2I_bin_irs except the instruction does not produce
Evan Chengf49810c2009-06-23 17:48:47 +0000334/// a explicit result, only implicitly set CPSR.
David Goodwinc27a4542009-07-20 22:13:31 +0000335let Defs = [CPSR] in {
Evan Chengf49810c2009-06-23 17:48:47 +0000336multiclass T2I_cmp_is<string opc, PatFrag opnode> {
337 // shifted imm
David Goodwin5d598aa2009-08-19 18:00:44 +0000338 def ri : T2I<(outs), (ins GPR:$lhs, t2_so_imm:$rhs), IIC_iCMPi,
Evan Cheng699beba2009-10-27 00:08:59 +0000339 opc, ".w\t$lhs, $rhs",
Evan Chengf49810c2009-06-23 17:48:47 +0000340 [(opnode GPR:$lhs, t2_so_imm:$rhs)]>;
Evan Chenga67efd12009-06-23 19:39:13 +0000341 // register
David Goodwin5d598aa2009-08-19 18:00:44 +0000342 def rr : T2I<(outs), (ins GPR:$lhs, GPR:$rhs), IIC_iCMPr,
Evan Cheng699beba2009-10-27 00:08:59 +0000343 opc, ".w\t$lhs, $rhs",
Evan Chenga67efd12009-06-23 19:39:13 +0000344 [(opnode GPR:$lhs, GPR:$rhs)]>;
Evan Chengf49810c2009-06-23 17:48:47 +0000345 // shifted register
David Goodwin5d598aa2009-08-19 18:00:44 +0000346 def rs : T2I<(outs), (ins GPR:$lhs, t2_so_reg:$rhs), IIC_iCMPsi,
Evan Cheng699beba2009-10-27 00:08:59 +0000347 opc, ".w\t$lhs, $rhs",
Evan Chengf49810c2009-06-23 17:48:47 +0000348 [(opnode GPR:$lhs, t2_so_reg:$rhs)]>;
Anton Korobeynikov52237112009-06-17 18:13:58 +0000349}
350}
351
Evan Chengf3c21b82009-06-30 02:15:48 +0000352/// T2I_ld - Defines a set of (op r, {imm12|imm8|so_reg}) load patterns.
353multiclass T2I_ld<string opc, PatFrag opnode> {
David Goodwin5d598aa2009-08-19 18:00:44 +0000354 def i12 : T2Ii12<(outs GPR:$dst), (ins t2addrmode_imm12:$addr), IIC_iLoadi,
Evan Cheng699beba2009-10-27 00:08:59 +0000355 opc, ".w\t$dst, $addr",
Evan Chengf3c21b82009-06-30 02:15:48 +0000356 [(set GPR:$dst, (opnode t2addrmode_imm12:$addr))]>;
David Goodwin5d598aa2009-08-19 18:00:44 +0000357 def i8 : T2Ii8 <(outs GPR:$dst), (ins t2addrmode_imm8:$addr), IIC_iLoadi,
Evan Cheng699beba2009-10-27 00:08:59 +0000358 opc, "\t$dst, $addr",
Evan Chengf3c21b82009-06-30 02:15:48 +0000359 [(set GPR:$dst, (opnode t2addrmode_imm8:$addr))]>;
David Goodwin5d598aa2009-08-19 18:00:44 +0000360 def s : T2Iso <(outs GPR:$dst), (ins t2addrmode_so_reg:$addr), IIC_iLoadr,
Evan Cheng699beba2009-10-27 00:08:59 +0000361 opc, ".w\t$dst, $addr",
Evan Chengf3c21b82009-06-30 02:15:48 +0000362 [(set GPR:$dst, (opnode t2addrmode_so_reg:$addr))]>;
David Goodwin5d598aa2009-08-19 18:00:44 +0000363 def pci : T2Ipc <(outs GPR:$dst), (ins i32imm:$addr), IIC_iLoadi,
Evan Cheng699beba2009-10-27 00:08:59 +0000364 opc, ".w\t$dst, $addr",
Evan Chengf3c21b82009-06-30 02:15:48 +0000365 [(set GPR:$dst, (opnode (ARMWrapper tconstpool:$addr)))]>;
366}
367
David Goodwin73b8f162009-06-30 22:11:34 +0000368/// T2I_st - Defines a set of (op r, {imm12|imm8|so_reg}) store patterns.
369multiclass T2I_st<string opc, PatFrag opnode> {
David Goodwin5d598aa2009-08-19 18:00:44 +0000370 def i12 : T2Ii12<(outs), (ins GPR:$src, t2addrmode_imm12:$addr), IIC_iStorei,
Evan Cheng699beba2009-10-27 00:08:59 +0000371 opc, ".w\t$src, $addr",
David Goodwin73b8f162009-06-30 22:11:34 +0000372 [(opnode GPR:$src, t2addrmode_imm12:$addr)]>;
David Goodwin5d598aa2009-08-19 18:00:44 +0000373 def i8 : T2Ii8 <(outs), (ins GPR:$src, t2addrmode_imm8:$addr), IIC_iStorei,
Evan Cheng699beba2009-10-27 00:08:59 +0000374 opc, "\t$src, $addr",
David Goodwin73b8f162009-06-30 22:11:34 +0000375 [(opnode GPR:$src, t2addrmode_imm8:$addr)]>;
David Goodwin5d598aa2009-08-19 18:00:44 +0000376 def s : T2Iso <(outs), (ins GPR:$src, t2addrmode_so_reg:$addr), IIC_iStorer,
Evan Cheng699beba2009-10-27 00:08:59 +0000377 opc, ".w\t$src, $addr",
David Goodwin73b8f162009-06-30 22:11:34 +0000378 [(opnode GPR:$src, t2addrmode_so_reg:$addr)]>;
379}
380
David Goodwind1fa1202009-07-01 00:01:13 +0000381/// T2I_picld - Defines the PIC load pattern.
382class T2I_picld<string opc, PatFrag opnode> :
David Goodwin5d598aa2009-08-19 18:00:44 +0000383 T2I<(outs GPR:$dst), (ins addrmodepc:$addr), IIC_iLoadi,
Evan Cheng699beba2009-10-27 00:08:59 +0000384 !strconcat("\n${addr:label}:\n\t", opc), "\t$dst, $addr",
David Goodwind1fa1202009-07-01 00:01:13 +0000385 [(set GPR:$dst, (opnode addrmodepc:$addr))]>;
386
387/// T2I_picst - Defines the PIC store pattern.
388class T2I_picst<string opc, PatFrag opnode> :
David Goodwin5d598aa2009-08-19 18:00:44 +0000389 T2I<(outs), (ins GPR:$src, addrmodepc:$addr), IIC_iStorer,
Evan Cheng699beba2009-10-27 00:08:59 +0000390 !strconcat("\n${addr:label}:\n\t", opc), "\t$src, $addr",
David Goodwind1fa1202009-07-01 00:01:13 +0000391 [(opnode GPR:$src, addrmodepc:$addr)]>;
392
Evan Chengd27c9fc2009-07-03 01:43:10 +0000393
394/// T2I_unary_rrot - A unary operation with two forms: one whose operand is a
395/// register and one whose operand is a register rotated by 8/16/24.
396multiclass T2I_unary_rrot<string opc, PatFrag opnode> {
David Goodwin5d598aa2009-08-19 18:00:44 +0000397 def r : T2I<(outs GPR:$dst), (ins GPR:$src), IIC_iUNAr,
Evan Cheng699beba2009-10-27 00:08:59 +0000398 opc, ".w\t$dst, $src",
David Goodwin5d598aa2009-08-19 18:00:44 +0000399 [(set GPR:$dst, (opnode GPR:$src))]>;
400 def r_rot : T2I<(outs GPR:$dst), (ins GPR:$src, i32imm:$rot), IIC_iUNAsi,
Evan Cheng699beba2009-10-27 00:08:59 +0000401 opc, ".w\t$dst, $src, ror $rot",
David Goodwin5d598aa2009-08-19 18:00:44 +0000402 [(set GPR:$dst, (opnode (rotr GPR:$src, rot_imm:$rot)))]>;
Evan Chengd27c9fc2009-07-03 01:43:10 +0000403}
404
405/// T2I_bin_rrot - A binary operation with two forms: one whose operand is a
406/// register and one whose operand is a register rotated by 8/16/24.
407multiclass T2I_bin_rrot<string opc, PatFrag opnode> {
David Goodwin5d598aa2009-08-19 18:00:44 +0000408 def rr : T2I<(outs GPR:$dst), (ins GPR:$LHS, GPR:$RHS), IIC_iALUr,
Evan Cheng699beba2009-10-27 00:08:59 +0000409 opc, "\t$dst, $LHS, $RHS",
Evan Chengd27c9fc2009-07-03 01:43:10 +0000410 [(set GPR:$dst, (opnode GPR:$LHS, GPR:$RHS))]>;
411 def rr_rot : T2I<(outs GPR:$dst), (ins GPR:$LHS, GPR:$RHS, i32imm:$rot),
Evan Cheng699beba2009-10-27 00:08:59 +0000412 IIC_iALUsr, opc, "\t$dst, $LHS, $RHS, ror $rot",
Evan Chengd27c9fc2009-07-03 01:43:10 +0000413 [(set GPR:$dst, (opnode GPR:$LHS,
414 (rotr GPR:$RHS, rot_imm:$rot)))]>;
415}
416
Anton Korobeynikov52237112009-06-17 18:13:58 +0000417//===----------------------------------------------------------------------===//
Evan Cheng9cb9e672009-06-27 02:26:13 +0000418// Instructions
419//===----------------------------------------------------------------------===//
420
421//===----------------------------------------------------------------------===//
Evan Chenga09b9ca2009-06-24 23:47:58 +0000422// Miscellaneous Instructions.
423//
424
Evan Chenga09b9ca2009-06-24 23:47:58 +0000425// LEApcrel - Load a pc-relative address into a register without offending the
426// assembler.
David Goodwin5d598aa2009-08-19 18:00:44 +0000427def t2LEApcrel : T2XI<(outs GPR:$dst), (ins i32imm:$label, pred:$p), IIC_iALUi,
Evan Cheng699beba2009-10-27 00:08:59 +0000428 "adr$p.w\t$dst, #$label", []>;
Evan Chenga09b9ca2009-06-24 23:47:58 +0000429
Evan Cheng0aa1d8c2009-06-25 02:08:06 +0000430def t2LEApcrelJT : T2XI<(outs GPR:$dst),
Bob Wilson4f38b382009-08-21 21:58:55 +0000431 (ins i32imm:$label, nohash_imm:$id, pred:$p), IIC_iALUi,
Evan Cheng699beba2009-10-27 00:08:59 +0000432 "adr$p.w\t$dst, #${label}_${id}", []>;
Evan Chenga09b9ca2009-06-24 23:47:58 +0000433
Evan Cheng86198642009-08-07 00:34:42 +0000434// ADD r, sp, {so_imm|i12}
David Goodwin5d598aa2009-08-19 18:00:44 +0000435def t2ADDrSPi : T2sI<(outs GPR:$dst), (ins GPR:$sp, t2_so_imm:$imm),
Evan Cheng699beba2009-10-27 00:08:59 +0000436 IIC_iALUi, "add", ".w\t$dst, $sp, $imm", []>;
David Goodwin5d598aa2009-08-19 18:00:44 +0000437def t2ADDrSPi12 : T2I<(outs GPR:$dst), (ins GPR:$sp, imm0_4095:$imm),
Evan Cheng699beba2009-10-27 00:08:59 +0000438 IIC_iALUi, "addw", "\t$dst, $sp, $imm", []>;
Evan Cheng86198642009-08-07 00:34:42 +0000439
440// ADD r, sp, so_reg
David Goodwin5d598aa2009-08-19 18:00:44 +0000441def t2ADDrSPs : T2sI<(outs GPR:$dst), (ins GPR:$sp, t2_so_reg:$rhs),
Evan Cheng699beba2009-10-27 00:08:59 +0000442 IIC_iALUsi, "add", ".w\t$dst, $sp, $rhs", []>;
Evan Cheng86198642009-08-07 00:34:42 +0000443
444// SUB r, sp, {so_imm|i12}
David Goodwin5d598aa2009-08-19 18:00:44 +0000445def t2SUBrSPi : T2sI<(outs GPR:$dst), (ins GPR:$sp, t2_so_imm:$imm),
Evan Cheng699beba2009-10-27 00:08:59 +0000446 IIC_iALUi, "sub", ".w\t$dst, $sp, $imm", []>;
David Goodwin5d598aa2009-08-19 18:00:44 +0000447def t2SUBrSPi12 : T2I<(outs GPR:$dst), (ins GPR:$sp, imm0_4095:$imm),
Evan Cheng699beba2009-10-27 00:08:59 +0000448 IIC_iALUi, "subw", "\t$dst, $sp, $imm", []>;
Evan Cheng86198642009-08-07 00:34:42 +0000449
450// SUB r, sp, so_reg
David Goodwin5d598aa2009-08-19 18:00:44 +0000451def t2SUBrSPs : T2sI<(outs GPR:$dst), (ins GPR:$sp, t2_so_reg:$rhs),
452 IIC_iALUsi,
Evan Cheng699beba2009-10-27 00:08:59 +0000453 "sub", "\t$dst, $sp, $rhs", []>;
Evan Cheng86198642009-08-07 00:34:42 +0000454
455
456// Pseudo instruction that will expand into a t2SUBrSPi + a copy.
Dan Gohman533297b2009-10-29 18:10:34 +0000457let usesCustomInserter = 1 in { // Expanded after instruction selection.
Evan Cheng86198642009-08-07 00:34:42 +0000458def t2SUBrSPi_ : PseudoInst<(outs GPR:$dst), (ins GPR:$sp, t2_so_imm:$imm),
Evan Cheng699beba2009-10-27 00:08:59 +0000459 NoItinerary, "@ sub.w\t$dst, $sp, $imm", []>;
Evan Cheng86198642009-08-07 00:34:42 +0000460def t2SUBrSPi12_ : PseudoInst<(outs GPR:$dst), (ins GPR:$sp, imm0_4095:$imm),
Evan Cheng699beba2009-10-27 00:08:59 +0000461 NoItinerary, "@ subw\t$dst, $sp, $imm", []>;
Evan Cheng86198642009-08-07 00:34:42 +0000462def t2SUBrSPs_ : PseudoInst<(outs GPR:$dst), (ins GPR:$sp, t2_so_reg:$rhs),
Evan Cheng699beba2009-10-27 00:08:59 +0000463 NoItinerary, "@ sub\t$dst, $sp, $rhs", []>;
Dan Gohman533297b2009-10-29 18:10:34 +0000464} // usesCustomInserter
Evan Cheng86198642009-08-07 00:34:42 +0000465
466
Evan Chenga09b9ca2009-06-24 23:47:58 +0000467//===----------------------------------------------------------------------===//
Evan Cheng9cb9e672009-06-27 02:26:13 +0000468// Load / store Instructions.
469//
470
Evan Cheng055b0312009-06-29 07:51:04 +0000471// Load
Evan Chengf3c21b82009-06-30 02:15:48 +0000472let canFoldAsLoad = 1 in
473defm t2LDR : T2I_ld<"ldr", UnOpFrag<(load node:$Src)>>;
Evan Cheng055b0312009-06-29 07:51:04 +0000474
Evan Chengf3c21b82009-06-30 02:15:48 +0000475// Loads with zero extension
476defm t2LDRH : T2I_ld<"ldrh", UnOpFrag<(zextloadi16 node:$Src)>>;
477defm t2LDRB : T2I_ld<"ldrb", UnOpFrag<(zextloadi8 node:$Src)>>;
Evan Cheng055b0312009-06-29 07:51:04 +0000478
Evan Chengf3c21b82009-06-30 02:15:48 +0000479// Loads with sign extension
480defm t2LDRSH : T2I_ld<"ldrsh", UnOpFrag<(sextloadi16 node:$Src)>>;
481defm t2LDRSB : T2I_ld<"ldrsb", UnOpFrag<(sextloadi8 node:$Src)>>;
Evan Cheng055b0312009-06-29 07:51:04 +0000482
Evan Cheng0d92f5f2009-10-01 08:22:27 +0000483let mayLoad = 1, hasExtraDefRegAllocReq = 1 in {
Evan Chengf3c21b82009-06-30 02:15:48 +0000484// Load doubleword
Evan Chenge298ab22009-09-27 09:46:04 +0000485def t2LDRDi8 : T2Ii8s4<(outs GPR:$dst1, GPR:$dst2),
486 (ins t2addrmode_imm8s4:$addr),
Evan Cheng699beba2009-10-27 00:08:59 +0000487 IIC_iLoadi, "ldrd", "\t$dst1, $addr", []>;
Evan Chenge298ab22009-09-27 09:46:04 +0000488def t2LDRDpci : T2Ii8s4<(outs GPR:$dst1, GPR:$dst2),
489 (ins i32imm:$addr), IIC_iLoadi,
Evan Cheng699beba2009-10-27 00:08:59 +0000490 "ldrd", "\t$dst1, $addr", []>;
Evan Chengf3c21b82009-06-30 02:15:48 +0000491}
492
493// zextload i1 -> zextload i8
494def : T2Pat<(zextloadi1 t2addrmode_imm12:$addr),
495 (t2LDRBi12 t2addrmode_imm12:$addr)>;
496def : T2Pat<(zextloadi1 t2addrmode_imm8:$addr),
497 (t2LDRBi8 t2addrmode_imm8:$addr)>;
498def : T2Pat<(zextloadi1 t2addrmode_so_reg:$addr),
499 (t2LDRBs t2addrmode_so_reg:$addr)>;
500def : T2Pat<(zextloadi1 (ARMWrapper tconstpool:$addr)),
501 (t2LDRBpci tconstpool:$addr)>;
502
503// extload -> zextload
504// FIXME: Reduce the number of patterns by legalizing extload to zextload
505// earlier?
506def : T2Pat<(extloadi1 t2addrmode_imm12:$addr),
507 (t2LDRBi12 t2addrmode_imm12:$addr)>;
508def : T2Pat<(extloadi1 t2addrmode_imm8:$addr),
509 (t2LDRBi8 t2addrmode_imm8:$addr)>;
510def : T2Pat<(extloadi1 t2addrmode_so_reg:$addr),
511 (t2LDRBs t2addrmode_so_reg:$addr)>;
512def : T2Pat<(extloadi1 (ARMWrapper tconstpool:$addr)),
513 (t2LDRBpci tconstpool:$addr)>;
514
515def : T2Pat<(extloadi8 t2addrmode_imm12:$addr),
516 (t2LDRBi12 t2addrmode_imm12:$addr)>;
517def : T2Pat<(extloadi8 t2addrmode_imm8:$addr),
518 (t2LDRBi8 t2addrmode_imm8:$addr)>;
519def : T2Pat<(extloadi8 t2addrmode_so_reg:$addr),
520 (t2LDRBs t2addrmode_so_reg:$addr)>;
521def : T2Pat<(extloadi8 (ARMWrapper tconstpool:$addr)),
522 (t2LDRBpci tconstpool:$addr)>;
523
524def : T2Pat<(extloadi16 t2addrmode_imm12:$addr),
525 (t2LDRHi12 t2addrmode_imm12:$addr)>;
526def : T2Pat<(extloadi16 t2addrmode_imm8:$addr),
527 (t2LDRHi8 t2addrmode_imm8:$addr)>;
528def : T2Pat<(extloadi16 t2addrmode_so_reg:$addr),
529 (t2LDRHs t2addrmode_so_reg:$addr)>;
530def : T2Pat<(extloadi16 (ARMWrapper tconstpool:$addr)),
531 (t2LDRHpci tconstpool:$addr)>;
Evan Cheng055b0312009-06-29 07:51:04 +0000532
Evan Chenge88d5ce2009-07-02 07:28:31 +0000533// Indexed loads
Evan Cheng78236f82009-07-03 00:08:19 +0000534let mayLoad = 1 in {
Evan Chenge88d5ce2009-07-02 07:28:31 +0000535def t2LDR_PRE : T2Iidxldst<(outs GPR:$dst, GPR:$base_wb),
536 (ins t2addrmode_imm8:$addr),
David Goodwin5d598aa2009-08-19 18:00:44 +0000537 AddrModeT2_i8, IndexModePre, IIC_iLoadiu,
Evan Cheng699beba2009-10-27 00:08:59 +0000538 "ldr", "\t$dst, $addr!", "$addr.base = $base_wb",
Evan Chenge88d5ce2009-07-02 07:28:31 +0000539 []>;
540
541def t2LDR_POST : T2Iidxldst<(outs GPR:$dst, GPR:$base_wb),
542 (ins GPR:$base, t2am_imm8_offset:$offset),
David Goodwin5d598aa2009-08-19 18:00:44 +0000543 AddrModeT2_i8, IndexModePost, IIC_iLoadiu,
Evan Cheng699beba2009-10-27 00:08:59 +0000544 "ldr", "\t$dst, [$base], $offset", "$base = $base_wb",
Evan Chenge88d5ce2009-07-02 07:28:31 +0000545 []>;
546
547def t2LDRB_PRE : T2Iidxldst<(outs GPR:$dst, GPR:$base_wb),
548 (ins t2addrmode_imm8:$addr),
David Goodwin5d598aa2009-08-19 18:00:44 +0000549 AddrModeT2_i8, IndexModePre, IIC_iLoadiu,
Evan Cheng699beba2009-10-27 00:08:59 +0000550 "ldrb", "\t$dst, $addr!", "$addr.base = $base_wb",
Evan Chenge88d5ce2009-07-02 07:28:31 +0000551 []>;
552def t2LDRB_POST : T2Iidxldst<(outs GPR:$dst, GPR:$base_wb),
553 (ins GPR:$base, t2am_imm8_offset:$offset),
David Goodwin5d598aa2009-08-19 18:00:44 +0000554 AddrModeT2_i8, IndexModePost, IIC_iLoadiu,
Evan Cheng699beba2009-10-27 00:08:59 +0000555 "ldrb", "\t$dst, [$base], $offset", "$base = $base_wb",
Evan Chenge88d5ce2009-07-02 07:28:31 +0000556 []>;
557
558def t2LDRH_PRE : T2Iidxldst<(outs GPR:$dst, GPR:$base_wb),
559 (ins t2addrmode_imm8:$addr),
David Goodwin5d598aa2009-08-19 18:00:44 +0000560 AddrModeT2_i8, IndexModePre, IIC_iLoadiu,
Evan Cheng699beba2009-10-27 00:08:59 +0000561 "ldrh", "\t$dst, $addr!", "$addr.base = $base_wb",
Evan Chenge88d5ce2009-07-02 07:28:31 +0000562 []>;
563def t2LDRH_POST : T2Iidxldst<(outs GPR:$dst, GPR:$base_wb),
564 (ins GPR:$base, t2am_imm8_offset:$offset),
David Goodwin5d598aa2009-08-19 18:00:44 +0000565 AddrModeT2_i8, IndexModePost, IIC_iLoadiu,
Evan Cheng699beba2009-10-27 00:08:59 +0000566 "ldrh", "\t$dst, [$base], $offset", "$base = $base_wb",
Evan Chenge88d5ce2009-07-02 07:28:31 +0000567 []>;
568
Evan Cheng4fbb9962009-07-02 23:16:11 +0000569def t2LDRSB_PRE : T2Iidxldst<(outs GPR:$dst, GPR:$base_wb),
570 (ins t2addrmode_imm8:$addr),
David Goodwin5d598aa2009-08-19 18:00:44 +0000571 AddrModeT2_i8, IndexModePre, IIC_iLoadiu,
Evan Cheng699beba2009-10-27 00:08:59 +0000572 "ldrsb", "\t$dst, $addr!", "$addr.base = $base_wb",
Evan Cheng4fbb9962009-07-02 23:16:11 +0000573 []>;
574def t2LDRSB_POST : T2Iidxldst<(outs GPR:$dst, GPR:$base_wb),
575 (ins GPR:$base, t2am_imm8_offset:$offset),
David Goodwin5d598aa2009-08-19 18:00:44 +0000576 AddrModeT2_i8, IndexModePost, IIC_iLoadiu,
Evan Cheng699beba2009-10-27 00:08:59 +0000577 "ldrsb", "\t$dst, [$base], $offset", "$base = $base_wb",
Evan Cheng4fbb9962009-07-02 23:16:11 +0000578 []>;
579
580def t2LDRSH_PRE : T2Iidxldst<(outs GPR:$dst, GPR:$base_wb),
581 (ins t2addrmode_imm8:$addr),
David Goodwin5d598aa2009-08-19 18:00:44 +0000582 AddrModeT2_i8, IndexModePre, IIC_iLoadiu,
Evan Cheng699beba2009-10-27 00:08:59 +0000583 "ldrsh", "\t$dst, $addr!", "$addr.base = $base_wb",
Evan Cheng4fbb9962009-07-02 23:16:11 +0000584 []>;
585def t2LDRSH_POST : T2Iidxldst<(outs GPR:$dst, GPR:$base_wb),
586 (ins GPR:$base, t2am_imm8_offset:$offset),
David Goodwin5d598aa2009-08-19 18:00:44 +0000587 AddrModeT2_i8, IndexModePost, IIC_iLoadiu,
Evan Cheng699beba2009-10-27 00:08:59 +0000588 "ldrsh", "\t$dst, [$base], $offset", "$base = $base_wb",
Evan Cheng4fbb9962009-07-02 23:16:11 +0000589 []>;
Evan Cheng78236f82009-07-03 00:08:19 +0000590}
Evan Cheng4fbb9962009-07-02 23:16:11 +0000591
David Goodwin73b8f162009-06-30 22:11:34 +0000592// Store
Evan Chenge88d5ce2009-07-02 07:28:31 +0000593defm t2STR : T2I_st<"str", BinOpFrag<(store node:$LHS, node:$RHS)>>;
594defm t2STRB : T2I_st<"strb", BinOpFrag<(truncstorei8 node:$LHS, node:$RHS)>>;
595defm t2STRH : T2I_st<"strh", BinOpFrag<(truncstorei16 node:$LHS, node:$RHS)>>;
David Goodwin73b8f162009-06-30 22:11:34 +0000596
David Goodwin6647cea2009-06-30 22:50:01 +0000597// Store doubleword
Evan Cheng0d92f5f2009-10-01 08:22:27 +0000598let mayLoad = 1, hasExtraSrcRegAllocReq = 1 in
Evan Chenge298ab22009-09-27 09:46:04 +0000599def t2STRDi8 : T2Ii8s4<(outs),
600 (ins GPR:$src1, GPR:$src2, t2addrmode_imm8s4:$addr),
Evan Cheng699beba2009-10-27 00:08:59 +0000601 IIC_iStorer, "strd", "\t$src1, $addr", []>;
David Goodwin6647cea2009-06-30 22:50:01 +0000602
Evan Cheng6d94f112009-07-03 00:06:39 +0000603// Indexed stores
604def t2STR_PRE : T2Iidxldst<(outs GPR:$base_wb),
605 (ins GPR:$src, GPR:$base, t2am_imm8_offset:$offset),
David Goodwin5d598aa2009-08-19 18:00:44 +0000606 AddrModeT2_i8, IndexModePre, IIC_iStoreiu,
Evan Cheng699beba2009-10-27 00:08:59 +0000607 "str", "\t$src, [$base, $offset]!", "$base = $base_wb",
Evan Cheng6d94f112009-07-03 00:06:39 +0000608 [(set GPR:$base_wb,
609 (pre_store GPR:$src, GPR:$base, t2am_imm8_offset:$offset))]>;
610
611def t2STR_POST : T2Iidxldst<(outs GPR:$base_wb),
612 (ins GPR:$src, GPR:$base, t2am_imm8_offset:$offset),
David Goodwin5d598aa2009-08-19 18:00:44 +0000613 AddrModeT2_i8, IndexModePost, IIC_iStoreiu,
Evan Cheng699beba2009-10-27 00:08:59 +0000614 "str", "\t$src, [$base], $offset", "$base = $base_wb",
Evan Cheng6d94f112009-07-03 00:06:39 +0000615 [(set GPR:$base_wb,
616 (post_store GPR:$src, GPR:$base, t2am_imm8_offset:$offset))]>;
617
618def t2STRH_PRE : T2Iidxldst<(outs GPR:$base_wb),
619 (ins GPR:$src, GPR:$base, t2am_imm8_offset:$offset),
David Goodwin5d598aa2009-08-19 18:00:44 +0000620 AddrModeT2_i8, IndexModePre, IIC_iStoreiu,
Evan Cheng699beba2009-10-27 00:08:59 +0000621 "strh", "\t$src, [$base, $offset]!", "$base = $base_wb",
Evan Cheng6d94f112009-07-03 00:06:39 +0000622 [(set GPR:$base_wb,
623 (pre_truncsti16 GPR:$src, GPR:$base, t2am_imm8_offset:$offset))]>;
624
625def t2STRH_POST : T2Iidxldst<(outs GPR:$base_wb),
626 (ins GPR:$src, GPR:$base, t2am_imm8_offset:$offset),
David Goodwin5d598aa2009-08-19 18:00:44 +0000627 AddrModeT2_i8, IndexModePost, IIC_iStoreiu,
Evan Cheng699beba2009-10-27 00:08:59 +0000628 "strh", "\t$src, [$base], $offset", "$base = $base_wb",
Evan Cheng6d94f112009-07-03 00:06:39 +0000629 [(set GPR:$base_wb,
630 (post_truncsti16 GPR:$src, GPR:$base, t2am_imm8_offset:$offset))]>;
631
632def t2STRB_PRE : T2Iidxldst<(outs GPR:$base_wb),
633 (ins GPR:$src, GPR:$base, t2am_imm8_offset:$offset),
David Goodwin5d598aa2009-08-19 18:00:44 +0000634 AddrModeT2_i8, IndexModePre, IIC_iStoreiu,
Evan Cheng699beba2009-10-27 00:08:59 +0000635 "strb", "\t$src, [$base, $offset]!", "$base = $base_wb",
Evan Cheng6d94f112009-07-03 00:06:39 +0000636 [(set GPR:$base_wb,
637 (pre_truncsti8 GPR:$src, GPR:$base, t2am_imm8_offset:$offset))]>;
638
639def t2STRB_POST : T2Iidxldst<(outs GPR:$base_wb),
640 (ins GPR:$src, GPR:$base, t2am_imm8_offset:$offset),
David Goodwin5d598aa2009-08-19 18:00:44 +0000641 AddrModeT2_i8, IndexModePost, IIC_iStoreiu,
Evan Cheng699beba2009-10-27 00:08:59 +0000642 "strb", "\t$src, [$base], $offset", "$base = $base_wb",
Evan Cheng6d94f112009-07-03 00:06:39 +0000643 [(set GPR:$base_wb,
644 (post_truncsti8 GPR:$src, GPR:$base, t2am_imm8_offset:$offset))]>;
645
David Goodwind1fa1202009-07-01 00:01:13 +0000646
Evan Cheng5c874172009-07-09 22:21:59 +0000647// FIXME: ldrd / strd pre / post variants
Evan Cheng2889cce2009-07-03 00:18:36 +0000648
649//===----------------------------------------------------------------------===//
650// Load / store multiple Instructions.
651//
652
Evan Cheng0d92f5f2009-10-01 08:22:27 +0000653let mayLoad = 1, hasExtraDefRegAllocReq = 1 in
Evan Cheng2889cce2009-07-03 00:18:36 +0000654def t2LDM : T2XI<(outs),
Evan Chengd20d6582009-10-01 01:33:39 +0000655 (ins addrmode4:$addr, pred:$p, reglist:$wb, variable_ops),
Evan Cheng699beba2009-10-27 00:08:59 +0000656 IIC_iLoadm, "ldm${addr:submode}${p}${addr:wide}\t$addr, $wb", []>;
Evan Cheng2889cce2009-07-03 00:18:36 +0000657
Evan Cheng0d92f5f2009-10-01 08:22:27 +0000658let mayStore = 1, hasExtraSrcRegAllocReq = 1 in
Evan Cheng2889cce2009-07-03 00:18:36 +0000659def t2STM : T2XI<(outs),
Evan Chengd20d6582009-10-01 01:33:39 +0000660 (ins addrmode4:$addr, pred:$p, reglist:$wb, variable_ops),
Evan Cheng699beba2009-10-27 00:08:59 +0000661 IIC_iStorem, "stm${addr:submode}${p}${addr:wide}\t$addr, $wb", []>;
Evan Cheng2889cce2009-07-03 00:18:36 +0000662
Evan Cheng9cb9e672009-06-27 02:26:13 +0000663//===----------------------------------------------------------------------===//
Anton Korobeynikov52237112009-06-17 18:13:58 +0000664// Move Instructions.
665//
Anton Korobeynikov52237112009-06-17 18:13:58 +0000666
Evan Chengf49810c2009-06-23 17:48:47 +0000667let neverHasSideEffects = 1 in
David Goodwin5d598aa2009-08-19 18:00:44 +0000668def t2MOVr : T2sI<(outs GPR:$dst), (ins GPR:$src), IIC_iMOVr,
Evan Cheng699beba2009-10-27 00:08:59 +0000669 "mov", ".w\t$dst, $src", []>;
Evan Chengf49810c2009-06-23 17:48:47 +0000670
Evan Cheng5adb66a2009-09-28 09:14:39 +0000671// AddedComplexity to ensure isel tries t2MOVi before t2MOVi16.
672let isReMaterializable = 1, isAsCheapAsAMove = 1, AddedComplexity = 1 in
David Goodwin5d598aa2009-08-19 18:00:44 +0000673def t2MOVi : T2sI<(outs GPR:$dst), (ins t2_so_imm:$src), IIC_iMOVi,
Evan Cheng699beba2009-10-27 00:08:59 +0000674 "mov", ".w\t$dst, $src",
David Goodwin83b35932009-06-26 16:10:07 +0000675 [(set GPR:$dst, t2_so_imm:$src)]>;
676
677let isReMaterializable = 1, isAsCheapAsAMove = 1 in
David Goodwin5d598aa2009-08-19 18:00:44 +0000678def t2MOVi16 : T2I<(outs GPR:$dst), (ins i32imm:$src), IIC_iMOVi,
Evan Cheng699beba2009-10-27 00:08:59 +0000679 "movw", "\t$dst, $src",
David Goodwin83b35932009-06-26 16:10:07 +0000680 [(set GPR:$dst, imm0_65535:$src)]>;
Evan Chengf49810c2009-06-23 17:48:47 +0000681
Evan Cheng3850a6a2009-06-23 05:23:49 +0000682let Constraints = "$src = $dst" in
Evan Cheng5adb66a2009-09-28 09:14:39 +0000683def t2MOVTi16 : T2I<(outs GPR:$dst), (ins GPR:$src, i32imm:$imm), IIC_iMOVi,
Evan Cheng699beba2009-10-27 00:08:59 +0000684 "movt", "\t$dst, $imm",
Evan Cheng5adb66a2009-09-28 09:14:39 +0000685 [(set GPR:$dst,
686 (or (and GPR:$src, 0xffff), lo16AllZero:$imm))]>;
Anton Korobeynikov52237112009-06-17 18:13:58 +0000687
Evan Cheng20956592009-10-21 08:15:52 +0000688def : T2Pat<(or GPR:$src, 0xffff0000), (t2MOVTi16 GPR:$src, 0xffff)>;
689
Anton Korobeynikov52237112009-06-17 18:13:58 +0000690//===----------------------------------------------------------------------===//
Evan Chengd27c9fc2009-07-03 01:43:10 +0000691// Extend Instructions.
692//
693
694// Sign extenders
695
696defm t2SXTB : T2I_unary_rrot<"sxtb", UnOpFrag<(sext_inreg node:$Src, i8)>>;
697defm t2SXTH : T2I_unary_rrot<"sxth", UnOpFrag<(sext_inreg node:$Src, i16)>>;
698
699defm t2SXTAB : T2I_bin_rrot<"sxtab",
700 BinOpFrag<(add node:$LHS, (sext_inreg node:$RHS, i8))>>;
701defm t2SXTAH : T2I_bin_rrot<"sxtah",
702 BinOpFrag<(add node:$LHS, (sext_inreg node:$RHS,i16))>>;
703
704// TODO: SXT(A){B|H}16
705
706// Zero extenders
707
708let AddedComplexity = 16 in {
709defm t2UXTB : T2I_unary_rrot<"uxtb" , UnOpFrag<(and node:$Src, 0x000000FF)>>;
710defm t2UXTH : T2I_unary_rrot<"uxth" , UnOpFrag<(and node:$Src, 0x0000FFFF)>>;
711defm t2UXTB16 : T2I_unary_rrot<"uxtb16", UnOpFrag<(and node:$Src, 0x00FF00FF)>>;
712
713def : T2Pat<(and (shl GPR:$Src, (i32 8)), 0xFF00FF),
714 (t2UXTB16r_rot GPR:$Src, 24)>;
715def : T2Pat<(and (srl GPR:$Src, (i32 8)), 0xFF00FF),
716 (t2UXTB16r_rot GPR:$Src, 8)>;
717
718defm t2UXTAB : T2I_bin_rrot<"uxtab",
719 BinOpFrag<(add node:$LHS, (and node:$RHS, 0x00FF))>>;
720defm t2UXTAH : T2I_bin_rrot<"uxtah",
721 BinOpFrag<(add node:$LHS, (and node:$RHS, 0xFFFF))>>;
722}
723
724//===----------------------------------------------------------------------===//
Anton Korobeynikov52237112009-06-17 18:13:58 +0000725// Arithmetic Instructions.
726//
Anton Korobeynikov52237112009-06-17 18:13:58 +0000727
Evan Cheng8de898a2009-06-26 00:19:44 +0000728defm t2ADD : T2I_bin_ii12rs<"add", BinOpFrag<(add node:$LHS, node:$RHS)>, 1>;
Evan Chenga67efd12009-06-23 19:39:13 +0000729defm t2SUB : T2I_bin_ii12rs<"sub", BinOpFrag<(sub node:$LHS, node:$RHS)>>;
Anton Korobeynikov52237112009-06-17 18:13:58 +0000730
Evan Chengf49810c2009-06-23 17:48:47 +0000731// ADD and SUB with 's' bit set. No 12-bit immediate (T4) variants.
Evan Cheng8de898a2009-06-26 00:19:44 +0000732defm t2ADDS : T2I_bin_s_irs <"add", BinOpFrag<(addc node:$LHS, node:$RHS)>, 1>;
Evan Cheng1e249e32009-06-25 20:59:23 +0000733defm t2SUBS : T2I_bin_s_irs <"sub", BinOpFrag<(subc node:$LHS, node:$RHS)>>;
Anton Korobeynikov52237112009-06-17 18:13:58 +0000734
Evan Cheng8de898a2009-06-26 00:19:44 +0000735defm t2ADC : T2I_adde_sube_irs<"adc",BinOpFrag<(adde node:$LHS, node:$RHS)>,1>;
736defm t2SBC : T2I_adde_sube_irs<"sbc",BinOpFrag<(sube node:$LHS, node:$RHS)>>;
Evan Chengf49810c2009-06-23 17:48:47 +0000737
David Goodwin752aa7d2009-07-27 16:39:05 +0000738// RSB
Evan Cheng1e249e32009-06-25 20:59:23 +0000739defm t2RSB : T2I_rbin_is <"rsb", BinOpFrag<(sub node:$LHS, node:$RHS)>>;
740defm t2RSBS : T2I_rbin_s_is <"rsb", BinOpFrag<(subc node:$LHS, node:$RHS)>>;
Evan Chengf49810c2009-06-23 17:48:47 +0000741
742// (sub X, imm) gets canonicalized to (add X, -imm). Match this form.
Evan Chengfa2ea1a2009-08-04 01:41:15 +0000743let AddedComplexity = 1 in
744def : T2Pat<(add GPR:$src, imm0_255_neg:$imm),
745 (t2SUBri GPR:$src, imm0_255_neg:$imm)>;
Evan Cheng9cb9e672009-06-27 02:26:13 +0000746def : T2Pat<(add GPR:$src, t2_so_imm_neg:$imm),
747 (t2SUBri GPR:$src, t2_so_imm_neg:$imm)>;
748def : T2Pat<(add GPR:$src, imm0_4095_neg:$imm),
749 (t2SUBri12 GPR:$src, imm0_4095_neg:$imm)>;
Anton Korobeynikov52237112009-06-17 18:13:58 +0000750
751
Evan Chengf49810c2009-06-23 17:48:47 +0000752//===----------------------------------------------------------------------===//
Evan Chenga67efd12009-06-23 19:39:13 +0000753// Shift and rotate Instructions.
754//
755
756defm t2LSL : T2I_sh_ir<"lsl", BinOpFrag<(shl node:$LHS, node:$RHS)>>;
757defm t2LSR : T2I_sh_ir<"lsr", BinOpFrag<(srl node:$LHS, node:$RHS)>>;
758defm t2ASR : T2I_sh_ir<"asr", BinOpFrag<(sra node:$LHS, node:$RHS)>>;
759defm t2ROR : T2I_sh_ir<"ror", BinOpFrag<(rotr node:$LHS, node:$RHS)>>;
760
David Goodwinca01a8d2009-09-01 18:32:09 +0000761let Uses = [CPSR] in {
David Goodwin5d598aa2009-08-19 18:00:44 +0000762def t2MOVrx : T2sI<(outs GPR:$dst), (ins GPR:$src), IIC_iMOVsi,
Evan Cheng699beba2009-10-27 00:08:59 +0000763 "rrx", "\t$dst, $src",
Evan Cheng0aa1d8c2009-06-25 02:08:06 +0000764 [(set GPR:$dst, (ARMrrx GPR:$src))]>;
David Goodwinca01a8d2009-09-01 18:32:09 +0000765}
Evan Chenga67efd12009-06-23 19:39:13 +0000766
David Goodwin3583df72009-07-28 17:06:49 +0000767let Defs = [CPSR] in {
David Goodwin5d598aa2009-08-19 18:00:44 +0000768def t2MOVsrl_flag : T2XI<(outs GPR:$dst), (ins GPR:$src), IIC_iMOVsi,
Evan Cheng699beba2009-10-27 00:08:59 +0000769 "lsrs.w\t$dst, $src, #1",
David Goodwin3583df72009-07-28 17:06:49 +0000770 [(set GPR:$dst, (ARMsrl_flag GPR:$src))]>;
David Goodwin5d598aa2009-08-19 18:00:44 +0000771def t2MOVsra_flag : T2XI<(outs GPR:$dst), (ins GPR:$src), IIC_iMOVsi,
Evan Cheng699beba2009-10-27 00:08:59 +0000772 "asrs.w\t$dst, $src, #1",
David Goodwin3583df72009-07-28 17:06:49 +0000773 [(set GPR:$dst, (ARMsra_flag GPR:$src))]>;
774}
775
Evan Chenga67efd12009-06-23 19:39:13 +0000776//===----------------------------------------------------------------------===//
Evan Chengf49810c2009-06-23 17:48:47 +0000777// Bitwise Instructions.
778//
Anton Korobeynikov52237112009-06-17 18:13:58 +0000779
David Goodwin1f096272009-07-27 23:34:12 +0000780defm t2AND : T2I_bin_w_irs<"and", BinOpFrag<(and node:$LHS, node:$RHS)>, 1>;
781defm t2ORR : T2I_bin_w_irs<"orr", BinOpFrag<(or node:$LHS, node:$RHS)>, 1>;
782defm t2EOR : T2I_bin_w_irs<"eor", BinOpFrag<(xor node:$LHS, node:$RHS)>, 1>;
Evan Chengf49810c2009-06-23 17:48:47 +0000783
David Goodwin1f096272009-07-27 23:34:12 +0000784defm t2BIC : T2I_bin_w_irs<"bic", BinOpFrag<(and node:$LHS, (not node:$RHS))>>;
Evan Chengf49810c2009-06-23 17:48:47 +0000785
Evan Chengf49810c2009-06-23 17:48:47 +0000786let Constraints = "$src = $dst" in
David Goodwin5d598aa2009-08-19 18:00:44 +0000787def t2BFC : T2I<(outs GPR:$dst), (ins GPR:$src, bf_inv_mask_imm:$imm),
Evan Cheng699beba2009-10-27 00:08:59 +0000788 IIC_iALUi, "bfc", "\t$dst, $imm",
Evan Chengf49810c2009-06-23 17:48:47 +0000789 [(set GPR:$dst, (and GPR:$src, bf_inv_mask_imm:$imm))]>;
790
Sandeep Patel47eedaa2009-10-13 18:59:48 +0000791def t2SBFX : T2I<(outs GPR:$dst), (ins GPR:$src, imm0_31:$lsb, imm0_31:$width),
Evan Cheng699beba2009-10-27 00:08:59 +0000792 IIC_iALUi, "sbfx", "\t$dst, $src, $lsb, $width", []>;
Sandeep Patel47eedaa2009-10-13 18:59:48 +0000793
794def t2UBFX : T2I<(outs GPR:$dst), (ins GPR:$src, imm0_31:$lsb, imm0_31:$width),
Evan Cheng699beba2009-10-27 00:08:59 +0000795 IIC_iALUi, "ubfx", "\t$dst, $src, $lsb, $width", []>;
Sandeep Patel47eedaa2009-10-13 18:59:48 +0000796
Evan Chengf49810c2009-06-23 17:48:47 +0000797// FIXME: A8.6.18 BFI - Bitfield insert (Encoding T1)
798
David Goodwin8f652532009-07-30 21:51:41 +0000799defm t2ORN : T2I_bin_irs<"orn", BinOpFrag<(or node:$LHS, (not node:$RHS))>>;
Evan Cheng36a0aeb2009-07-06 22:23:46 +0000800
801// Prefer over of t2EORri ra, rb, -1 because mvn has 16-bit version
802let AddedComplexity = 1 in
803defm t2MVN : T2I_un_irs <"mvn", UnOpFrag<(not node:$Src)>, 1, 1>;
804
805
806def : T2Pat<(and GPR:$src, t2_so_imm_not:$imm),
807 (t2BICri GPR:$src, t2_so_imm_not:$imm)>;
808
Evan Cheng25f7cfc2009-08-01 06:13:52 +0000809// FIXME: Disable this pattern on Darwin to workaround an assembler bug.
David Goodwin8f652532009-07-30 21:51:41 +0000810def : T2Pat<(or GPR:$src, t2_so_imm_not:$imm),
Evan Cheng25f7cfc2009-08-01 06:13:52 +0000811 (t2ORNri GPR:$src, t2_so_imm_not:$imm)>,
Evan Chengea253b92009-08-12 01:56:42 +0000812 Requires<[IsThumb2]>;
Evan Cheng36a0aeb2009-07-06 22:23:46 +0000813
814def : T2Pat<(t2_so_imm_not:$src),
815 (t2MVNi t2_so_imm_not:$src)>;
816
Evan Chengf49810c2009-06-23 17:48:47 +0000817//===----------------------------------------------------------------------===//
818// Multiply Instructions.
819//
Evan Cheng8de898a2009-06-26 00:19:44 +0000820let isCommutable = 1 in
David Goodwin5d598aa2009-08-19 18:00:44 +0000821def t2MUL: T2I<(outs GPR:$dst), (ins GPR:$a, GPR:$b), IIC_iMUL32,
Evan Cheng699beba2009-10-27 00:08:59 +0000822 "mul", "\t$dst, $a, $b",
Evan Chengf49810c2009-06-23 17:48:47 +0000823 [(set GPR:$dst, (mul GPR:$a, GPR:$b))]>;
824
David Goodwin5d598aa2009-08-19 18:00:44 +0000825def t2MLA: T2I<(outs GPR:$dst), (ins GPR:$a, GPR:$b, GPR:$c), IIC_iMAC32,
Evan Cheng699beba2009-10-27 00:08:59 +0000826 "mla", "\t$dst, $a, $b, $c",
Evan Chengf49810c2009-06-23 17:48:47 +0000827 [(set GPR:$dst, (add (mul GPR:$a, GPR:$b), GPR:$c))]>;
828
David Goodwin5d598aa2009-08-19 18:00:44 +0000829def t2MLS: T2I<(outs GPR:$dst), (ins GPR:$a, GPR:$b, GPR:$c), IIC_iMAC32,
Evan Cheng699beba2009-10-27 00:08:59 +0000830 "mls", "\t$dst, $a, $b, $c",
Evan Chengf49810c2009-06-23 17:48:47 +0000831 [(set GPR:$dst, (sub GPR:$c, (mul GPR:$a, GPR:$b)))]>;
832
Evan Cheng5b9fcd12009-07-07 01:17:28 +0000833// Extra precision multiplies with low / high results
834let neverHasSideEffects = 1 in {
835let isCommutable = 1 in {
David Goodwin5d598aa2009-08-19 18:00:44 +0000836def t2SMULL : T2I<(outs GPR:$ldst, GPR:$hdst), (ins GPR:$a, GPR:$b), IIC_iMUL64,
Evan Cheng699beba2009-10-27 00:08:59 +0000837 "smull", "\t$ldst, $hdst, $a, $b", []>;
Evan Cheng5b9fcd12009-07-07 01:17:28 +0000838
David Goodwin5d598aa2009-08-19 18:00:44 +0000839def t2UMULL : T2I<(outs GPR:$ldst, GPR:$hdst), (ins GPR:$a, GPR:$b), IIC_iMUL64,
Evan Cheng699beba2009-10-27 00:08:59 +0000840 "umull", "\t$ldst, $hdst, $a, $b", []>;
Evan Cheng5b9fcd12009-07-07 01:17:28 +0000841}
842
843// Multiply + accumulate
David Goodwin5d598aa2009-08-19 18:00:44 +0000844def t2SMLAL : T2I<(outs GPR:$ldst, GPR:$hdst), (ins GPR:$a, GPR:$b), IIC_iMAC64,
Evan Cheng699beba2009-10-27 00:08:59 +0000845 "smlal", "\t$ldst, $hdst, $a, $b", []>;
Evan Cheng5b9fcd12009-07-07 01:17:28 +0000846
David Goodwin5d598aa2009-08-19 18:00:44 +0000847def t2UMLAL : T2I<(outs GPR:$ldst, GPR:$hdst), (ins GPR:$a, GPR:$b), IIC_iMAC64,
Evan Cheng699beba2009-10-27 00:08:59 +0000848 "umlal", "\t$ldst, $hdst, $a, $b", []>;
Evan Cheng5b9fcd12009-07-07 01:17:28 +0000849
David Goodwin5d598aa2009-08-19 18:00:44 +0000850def t2UMAAL : T2I<(outs GPR:$ldst, GPR:$hdst), (ins GPR:$a, GPR:$b), IIC_iMAC64,
Evan Cheng699beba2009-10-27 00:08:59 +0000851 "umaal", "\t$ldst, $hdst, $a, $b", []>;
Evan Cheng5b9fcd12009-07-07 01:17:28 +0000852} // neverHasSideEffects
853
854// Most significant word multiply
David Goodwin5d598aa2009-08-19 18:00:44 +0000855def t2SMMUL : T2I<(outs GPR:$dst), (ins GPR:$a, GPR:$b), IIC_iMUL32,
Evan Cheng699beba2009-10-27 00:08:59 +0000856 "smmul", "\t$dst, $a, $b",
Evan Cheng5b9fcd12009-07-07 01:17:28 +0000857 [(set GPR:$dst, (mulhs GPR:$a, GPR:$b))]>;
858
David Goodwin5d598aa2009-08-19 18:00:44 +0000859def t2SMMLA : T2I<(outs GPR:$dst), (ins GPR:$a, GPR:$b, GPR:$c), IIC_iMAC32,
Evan Cheng699beba2009-10-27 00:08:59 +0000860 "smmla", "\t$dst, $a, $b, $c",
Evan Cheng5b9fcd12009-07-07 01:17:28 +0000861 [(set GPR:$dst, (add (mulhs GPR:$a, GPR:$b), GPR:$c))]>;
862
863
David Goodwin5d598aa2009-08-19 18:00:44 +0000864def t2SMMLS : T2I <(outs GPR:$dst), (ins GPR:$a, GPR:$b, GPR:$c), IIC_iMAC32,
Evan Cheng699beba2009-10-27 00:08:59 +0000865 "smmls", "\t$dst, $a, $b, $c",
Evan Cheng5b9fcd12009-07-07 01:17:28 +0000866 [(set GPR:$dst, (sub GPR:$c, (mulhs GPR:$a, GPR:$b)))]>;
867
868multiclass T2I_smul<string opc, PatFrag opnode> {
David Goodwin5d598aa2009-08-19 18:00:44 +0000869 def BB : T2I<(outs GPR:$dst), (ins GPR:$a, GPR:$b), IIC_iMUL32,
Evan Cheng699beba2009-10-27 00:08:59 +0000870 !strconcat(opc, "bb"), "\t$dst, $a, $b",
Evan Cheng5b9fcd12009-07-07 01:17:28 +0000871 [(set GPR:$dst, (opnode (sext_inreg GPR:$a, i16),
872 (sext_inreg GPR:$b, i16)))]>;
873
David Goodwin5d598aa2009-08-19 18:00:44 +0000874 def BT : T2I<(outs GPR:$dst), (ins GPR:$a, GPR:$b), IIC_iMUL32,
Evan Cheng699beba2009-10-27 00:08:59 +0000875 !strconcat(opc, "bt"), "\t$dst, $a, $b",
Evan Cheng5b9fcd12009-07-07 01:17:28 +0000876 [(set GPR:$dst, (opnode (sext_inreg GPR:$a, i16),
877 (sra GPR:$b, (i32 16))))]>;
878
David Goodwin5d598aa2009-08-19 18:00:44 +0000879 def TB : T2I<(outs GPR:$dst), (ins GPR:$a, GPR:$b), IIC_iMUL32,
Evan Cheng699beba2009-10-27 00:08:59 +0000880 !strconcat(opc, "tb"), "\t$dst, $a, $b",
Evan Cheng5b9fcd12009-07-07 01:17:28 +0000881 [(set GPR:$dst, (opnode (sra GPR:$a, (i32 16)),
882 (sext_inreg GPR:$b, i16)))]>;
883
David Goodwin5d598aa2009-08-19 18:00:44 +0000884 def TT : T2I<(outs GPR:$dst), (ins GPR:$a, GPR:$b), IIC_iMUL32,
Evan Cheng699beba2009-10-27 00:08:59 +0000885 !strconcat(opc, "tt"), "\t$dst, $a, $b",
Evan Cheng5b9fcd12009-07-07 01:17:28 +0000886 [(set GPR:$dst, (opnode (sra GPR:$a, (i32 16)),
887 (sra GPR:$b, (i32 16))))]>;
888
David Goodwin5d598aa2009-08-19 18:00:44 +0000889 def WB : T2I<(outs GPR:$dst), (ins GPR:$a, GPR:$b), IIC_iMUL16,
Evan Cheng699beba2009-10-27 00:08:59 +0000890 !strconcat(opc, "wb"), "\t$dst, $a, $b",
Evan Cheng5b9fcd12009-07-07 01:17:28 +0000891 [(set GPR:$dst, (sra (opnode GPR:$a,
892 (sext_inreg GPR:$b, i16)), (i32 16)))]>;
893
David Goodwin5d598aa2009-08-19 18:00:44 +0000894 def WT : T2I<(outs GPR:$dst), (ins GPR:$a, GPR:$b), IIC_iMUL16,
Evan Cheng699beba2009-10-27 00:08:59 +0000895 !strconcat(opc, "wt"), "\t$dst, $a, $b",
Evan Cheng5b9fcd12009-07-07 01:17:28 +0000896 [(set GPR:$dst, (sra (opnode GPR:$a,
897 (sra GPR:$b, (i32 16))), (i32 16)))]>;
898}
899
900
901multiclass T2I_smla<string opc, PatFrag opnode> {
David Goodwin5d598aa2009-08-19 18:00:44 +0000902 def BB : T2I<(outs GPR:$dst), (ins GPR:$a, GPR:$b, GPR:$acc), IIC_iMAC16,
Evan Cheng699beba2009-10-27 00:08:59 +0000903 !strconcat(opc, "bb"), "\t$dst, $a, $b, $acc",
Evan Cheng5b9fcd12009-07-07 01:17:28 +0000904 [(set GPR:$dst, (add GPR:$acc,
905 (opnode (sext_inreg GPR:$a, i16),
906 (sext_inreg GPR:$b, i16))))]>;
907
David Goodwin5d598aa2009-08-19 18:00:44 +0000908 def BT : T2I<(outs GPR:$dst), (ins GPR:$a, GPR:$b, GPR:$acc), IIC_iMAC16,
Evan Cheng699beba2009-10-27 00:08:59 +0000909 !strconcat(opc, "bt"), "\t$dst, $a, $b, $acc",
Evan Cheng5b9fcd12009-07-07 01:17:28 +0000910 [(set GPR:$dst, (add GPR:$acc, (opnode (sext_inreg GPR:$a, i16),
911 (sra GPR:$b, (i32 16)))))]>;
912
David Goodwin5d598aa2009-08-19 18:00:44 +0000913 def TB : T2I<(outs GPR:$dst), (ins GPR:$a, GPR:$b, GPR:$acc), IIC_iMAC16,
Evan Cheng699beba2009-10-27 00:08:59 +0000914 !strconcat(opc, "tb"), "\t$dst, $a, $b, $acc",
Evan Cheng5b9fcd12009-07-07 01:17:28 +0000915 [(set GPR:$dst, (add GPR:$acc, (opnode (sra GPR:$a, (i32 16)),
916 (sext_inreg GPR:$b, i16))))]>;
917
David Goodwin5d598aa2009-08-19 18:00:44 +0000918 def TT : T2I<(outs GPR:$dst), (ins GPR:$a, GPR:$b, GPR:$acc), IIC_iMAC16,
Evan Cheng699beba2009-10-27 00:08:59 +0000919 !strconcat(opc, "tt"), "\t$dst, $a, $b, $acc",
Evan Cheng5b9fcd12009-07-07 01:17:28 +0000920 [(set GPR:$dst, (add GPR:$acc, (opnode (sra GPR:$a, (i32 16)),
921 (sra GPR:$b, (i32 16)))))]>;
922
David Goodwin5d598aa2009-08-19 18:00:44 +0000923 def WB : T2I<(outs GPR:$dst), (ins GPR:$a, GPR:$b, GPR:$acc), IIC_iMAC16,
Evan Cheng699beba2009-10-27 00:08:59 +0000924 !strconcat(opc, "wb"), "\t$dst, $a, $b, $acc",
Evan Cheng5b9fcd12009-07-07 01:17:28 +0000925 [(set GPR:$dst, (add GPR:$acc, (sra (opnode GPR:$a,
926 (sext_inreg GPR:$b, i16)), (i32 16))))]>;
927
David Goodwin5d598aa2009-08-19 18:00:44 +0000928 def WT : T2I<(outs GPR:$dst), (ins GPR:$a, GPR:$b, GPR:$acc), IIC_iMAC16,
Evan Cheng699beba2009-10-27 00:08:59 +0000929 !strconcat(opc, "wt"), "\t$dst, $a, $b, $acc",
Evan Cheng5b9fcd12009-07-07 01:17:28 +0000930 [(set GPR:$dst, (add GPR:$acc, (sra (opnode GPR:$a,
931 (sra GPR:$b, (i32 16))), (i32 16))))]>;
932}
933
934defm t2SMUL : T2I_smul<"smul", BinOpFrag<(mul node:$LHS, node:$RHS)>>;
935defm t2SMLA : T2I_smla<"smla", BinOpFrag<(mul node:$LHS, node:$RHS)>>;
936
937// TODO: Halfword multiple accumulate long: SMLAL<x><y>
938// TODO: Dual halfword multiple: SMUAD, SMUSD, SMLAD, SMLSD, SMLALD, SMLSLD
939
Evan Chengf49810c2009-06-23 17:48:47 +0000940
941//===----------------------------------------------------------------------===//
942// Misc. Arithmetic Instructions.
943//
944
David Goodwin5d598aa2009-08-19 18:00:44 +0000945def t2CLZ : T2I<(outs GPR:$dst), (ins GPR:$src), IIC_iUNAr,
Evan Cheng699beba2009-10-27 00:08:59 +0000946 "clz", "\t$dst, $src",
Evan Chengf49810c2009-06-23 17:48:47 +0000947 [(set GPR:$dst, (ctlz GPR:$src))]>;
948
David Goodwin5d598aa2009-08-19 18:00:44 +0000949def t2REV : T2I<(outs GPR:$dst), (ins GPR:$src), IIC_iUNAr,
Evan Cheng699beba2009-10-27 00:08:59 +0000950 "rev", ".w\t$dst, $src",
Evan Chengf49810c2009-06-23 17:48:47 +0000951 [(set GPR:$dst, (bswap GPR:$src))]>;
952
David Goodwin5d598aa2009-08-19 18:00:44 +0000953def t2REV16 : T2I<(outs GPR:$dst), (ins GPR:$src), IIC_iUNAr,
Evan Cheng699beba2009-10-27 00:08:59 +0000954 "rev16", ".w\t$dst, $src",
Evan Chengf49810c2009-06-23 17:48:47 +0000955 [(set GPR:$dst,
956 (or (and (srl GPR:$src, (i32 8)), 0xFF),
957 (or (and (shl GPR:$src, (i32 8)), 0xFF00),
958 (or (and (srl GPR:$src, (i32 8)), 0xFF0000),
959 (and (shl GPR:$src, (i32 8)), 0xFF000000)))))]>;
960
David Goodwin5d598aa2009-08-19 18:00:44 +0000961def t2REVSH : T2I<(outs GPR:$dst), (ins GPR:$src), IIC_iUNAr,
Evan Cheng699beba2009-10-27 00:08:59 +0000962 "revsh", ".w\t$dst, $src",
Evan Chengf49810c2009-06-23 17:48:47 +0000963 [(set GPR:$dst,
964 (sext_inreg
Evan Cheng51f39962009-08-18 05:43:23 +0000965 (or (srl (and GPR:$src, 0xFF00), (i32 8)),
Evan Chengf49810c2009-06-23 17:48:47 +0000966 (shl GPR:$src, (i32 8))), i16))]>;
967
Evan Cheng40289b02009-07-07 05:35:52 +0000968def t2PKHBT : T2I<(outs GPR:$dst), (ins GPR:$src1, GPR:$src2, i32imm:$shamt),
Evan Cheng699beba2009-10-27 00:08:59 +0000969 IIC_iALUsi, "pkhbt", "\t$dst, $src1, $src2, LSL $shamt",
Evan Cheng40289b02009-07-07 05:35:52 +0000970 [(set GPR:$dst, (or (and GPR:$src1, 0xFFFF),
971 (and (shl GPR:$src2, (i32 imm:$shamt)),
972 0xFFFF0000)))]>;
973
974// Alternate cases for PKHBT where identities eliminate some nodes.
975def : T2Pat<(or (and GPR:$src1, 0xFFFF), (and GPR:$src2, 0xFFFF0000)),
976 (t2PKHBT GPR:$src1, GPR:$src2, 0)>;
977def : T2Pat<(or (and GPR:$src1, 0xFFFF), (shl GPR:$src2, imm16_31:$shamt)),
978 (t2PKHBT GPR:$src1, GPR:$src2, imm16_31:$shamt)>;
979
980def t2PKHTB : T2I<(outs GPR:$dst), (ins GPR:$src1, GPR:$src2, i32imm:$shamt),
Evan Cheng699beba2009-10-27 00:08:59 +0000981 IIC_iALUsi, "pkhtb", "\t$dst, $src1, $src2, ASR $shamt",
Evan Cheng40289b02009-07-07 05:35:52 +0000982 [(set GPR:$dst, (or (and GPR:$src1, 0xFFFF0000),
983 (and (sra GPR:$src2, imm16_31:$shamt),
984 0xFFFF)))]>;
985
986// Alternate cases for PKHTB where identities eliminate some nodes. Note that
987// a shift amount of 0 is *not legal* here, it is PKHBT instead.
988def : T2Pat<(or (and GPR:$src1, 0xFFFF0000), (srl GPR:$src2, (i32 16))),
989 (t2PKHTB GPR:$src1, GPR:$src2, 16)>;
990def : T2Pat<(or (and GPR:$src1, 0xFFFF0000),
991 (and (srl GPR:$src2, imm1_15:$shamt), 0xFFFF)),
992 (t2PKHTB GPR:$src1, GPR:$src2, imm1_15:$shamt)>;
Evan Chengf49810c2009-06-23 17:48:47 +0000993
994//===----------------------------------------------------------------------===//
995// Comparison Instructions...
996//
997
Evan Chenge8af1f92009-08-10 02:37:24 +0000998defm t2CMP : T2I_cmp_is<"cmp",
999 BinOpFrag<(ARMcmp node:$LHS, node:$RHS)>>;
David Goodwinc0309b42009-06-29 15:33:01 +00001000defm t2CMPz : T2I_cmp_is<"cmp",
1001 BinOpFrag<(ARMcmpZ node:$LHS, node:$RHS)>>;
Evan Chengf49810c2009-06-23 17:48:47 +00001002
Evan Chenge8af1f92009-08-10 02:37:24 +00001003defm t2CMN : T2I_cmp_is<"cmn",
1004 BinOpFrag<(ARMcmp node:$LHS,(ineg node:$RHS))>>;
David Goodwinc0309b42009-06-29 15:33:01 +00001005defm t2CMNz : T2I_cmp_is<"cmn",
1006 BinOpFrag<(ARMcmpZ node:$LHS,(ineg node:$RHS))>>;
Evan Chengf49810c2009-06-23 17:48:47 +00001007
Evan Cheng9cb9e672009-06-27 02:26:13 +00001008def : T2Pat<(ARMcmp GPR:$src, t2_so_imm_neg:$imm),
1009 (t2CMNri GPR:$src, t2_so_imm_neg:$imm)>;
Evan Chengf49810c2009-06-23 17:48:47 +00001010
David Goodwinc0309b42009-06-29 15:33:01 +00001011def : T2Pat<(ARMcmpZ GPR:$src, t2_so_imm_neg:$imm),
Evan Cheng9cb9e672009-06-27 02:26:13 +00001012 (t2CMNri GPR:$src, t2_so_imm_neg:$imm)>;
Evan Chengf49810c2009-06-23 17:48:47 +00001013
David Goodwinbaeb9112009-06-29 22:49:42 +00001014defm t2TST : T2I_cmp_is<"tst",
1015 BinOpFrag<(ARMcmpZ (and node:$LHS, node:$RHS), 0)>>;
1016defm t2TEQ : T2I_cmp_is<"teq",
1017 BinOpFrag<(ARMcmpZ (xor node:$LHS, node:$RHS), 0)>>;
Evan Chengf49810c2009-06-23 17:48:47 +00001018
1019// A8.6.27 CBNZ, CBZ - Compare and branch on (non)zero.
1020// Short range conditional branch. Looks awesome for loops. Need to figure
1021// out how to use this one.
1022
Evan Chenge253c952009-07-07 20:39:03 +00001023
1024// Conditional moves
1025// FIXME: should be able to write a pattern for ARMcmov, but can't use
1026// a two-value operand where a dag node expects two operands. :(
David Goodwin5d598aa2009-08-19 18:00:44 +00001027def t2MOVCCr : T2I<(outs GPR:$dst), (ins GPR:$false, GPR:$true), IIC_iCMOVr,
Evan Cheng699beba2009-10-27 00:08:59 +00001028 "mov", ".w\t$dst, $true",
Evan Chenge253c952009-07-07 20:39:03 +00001029 [/*(set GPR:$dst, (ARMcmov GPR:$false, GPR:$true, imm:$cc, CCR:$ccr))*/]>,
1030 RegConstraint<"$false = $dst">;
1031
David Goodwin5d598aa2009-08-19 18:00:44 +00001032def t2MOVCCi : T2I<(outs GPR:$dst), (ins GPR:$false, t2_so_imm:$true),
Evan Cheng699beba2009-10-27 00:08:59 +00001033 IIC_iCMOVi, "mov", ".w\t$dst, $true",
Evan Chenge253c952009-07-07 20:39:03 +00001034[/*(set GPR:$dst, (ARMcmov GPR:$false, t2_so_imm:$true, imm:$cc, CCR:$ccr))*/]>,
1035 RegConstraint<"$false = $dst">;
Evan Chengf49810c2009-06-23 17:48:47 +00001036
Evan Cheng13f8b362009-08-01 01:43:45 +00001037def t2MOVCClsl : T2I<(outs GPR:$dst), (ins GPR:$false, GPR:$true, i32imm:$rhs),
Evan Cheng699beba2009-10-27 00:08:59 +00001038 IIC_iCMOVsi, "lsl", ".w\t$dst, $true, $rhs", []>,
Evan Cheng13f8b362009-08-01 01:43:45 +00001039 RegConstraint<"$false = $dst">;
1040def t2MOVCClsr : T2I<(outs GPR:$dst), (ins GPR:$false, GPR:$true, i32imm:$rhs),
Evan Cheng699beba2009-10-27 00:08:59 +00001041 IIC_iCMOVsi, "lsr", ".w\t$dst, $true, $rhs", []>,
Evan Cheng13f8b362009-08-01 01:43:45 +00001042 RegConstraint<"$false = $dst">;
1043def t2MOVCCasr : T2I<(outs GPR:$dst), (ins GPR:$false, GPR:$true, i32imm:$rhs),
Evan Cheng699beba2009-10-27 00:08:59 +00001044 IIC_iCMOVsi, "asr", ".w\t$dst, $true, $rhs", []>,
Evan Cheng13f8b362009-08-01 01:43:45 +00001045 RegConstraint<"$false = $dst">;
1046def t2MOVCCror : T2I<(outs GPR:$dst), (ins GPR:$false, GPR:$true, i32imm:$rhs),
Evan Cheng699beba2009-10-27 00:08:59 +00001047 IIC_iCMOVsi, "ror", ".w\t$dst, $true, $rhs", []>,
Evan Cheng13f8b362009-08-01 01:43:45 +00001048 RegConstraint<"$false = $dst">;
1049
David Goodwin5e47a9a2009-06-30 18:04:13 +00001050//===----------------------------------------------------------------------===//
David Goodwin334c2642009-07-08 16:09:28 +00001051// TLS Instructions
1052//
1053
1054// __aeabi_read_tp preserves the registers r1-r3.
1055let isCall = 1,
1056 Defs = [R0, R12, LR, CPSR] in {
David Goodwin8b7d7ad2009-08-06 16:52:47 +00001057 def t2TPsoft : T2XI<(outs), (ins), IIC_Br,
Evan Cheng699beba2009-10-27 00:08:59 +00001058 "bl\t__aeabi_read_tp",
David Goodwin334c2642009-07-08 16:09:28 +00001059 [(set R0, ARMthread_pointer)]>;
1060}
1061
1062//===----------------------------------------------------------------------===//
Jim Grosbach5aa16842009-08-11 19:42:21 +00001063// SJLJ Exception handling intrinsics
Jim Grosbach1add6592009-08-13 15:11:43 +00001064// eh_sjlj_setjmp() is an instruction sequence to store the return
Jim Grosbach5aa16842009-08-11 19:42:21 +00001065// address and save #0 in R0 for the non-longjmp case.
1066// Since by its nature we may be coming from some other function to get
1067// here, and we're using the stack frame for the containing function to
1068// save/restore registers, we can't keep anything live in regs across
1069// the eh_sjlj_setjmp(), else it will almost certainly have been tromped upon
1070// when we get here from a longjmp(). We force everthing out of registers
1071// except for our own input by listing the relevant registers in Defs. By
1072// doing so, we also cause the prologue/epilogue code to actively preserve
1073// all of the callee-saved resgisters, which is exactly what we want.
1074let Defs =
Jim Grosbachf35d2162009-08-13 16:59:44 +00001075 [ R0, R1, R2, R3, R4, R5, R6, R7, R8, R9, R10, R11, R12, LR, D0,
1076 D1, D2, D3, D4, D5, D6, D7, D8, D9, D10, D11, D12, D13, D14, D15,
Jim Grosbach5aa16842009-08-11 19:42:21 +00001077 D16, D17, D18, D19, D20, D21, D22, D23, D24, D25, D26, D27, D28, D29, D30,
1078 D31 ] in {
1079 def t2Int_eh_sjlj_setjmp : Thumb2XI<(outs), (ins GPR:$src),
1080 AddrModeNone, SizeSpecial, NoItinerary,
Evan Cheng699beba2009-10-27 00:08:59 +00001081 "str.w\tsp, [$src, #+8] @ eh_setjmp begin\n"
1082 "\tadr\tr12, 0f\n"
1083 "\torr\tr12, #1\n"
1084 "\tstr.w\tr12, [$src, #+4]\n"
1085 "\tmovs\tr0, #0\n"
1086 "\tb\t1f\n"
1087 "0:\tmovs\tr0, #1 @ eh_setjmp end\n"
Jim Grosbach8db5cce2009-08-13 15:12:16 +00001088 "1:", "",
Jim Grosbach5aa16842009-08-11 19:42:21 +00001089 [(set R0, (ARMeh_sjlj_setjmp GPR:$src))]>;
1090}
1091
1092
1093
1094//===----------------------------------------------------------------------===//
David Goodwin5e47a9a2009-06-30 18:04:13 +00001095// Control-Flow Instructions
1096//
1097
Evan Chengc50a1cb2009-07-09 22:58:39 +00001098// FIXME: remove when we have a way to marking a MI with these properties.
1099// FIXME: $dst1 should be a def. But the extra ops must be in the end of the
1100// operand list.
1101// FIXME: Should pc be an implicit operand like PICADD, etc?
Evan Cheng0d92f5f2009-10-01 08:22:27 +00001102let isReturn = 1, isTerminator = 1, isBarrier = 1, mayLoad = 1,
1103 hasExtraDefRegAllocReq = 1 in
Evan Chengc50a1cb2009-07-09 22:58:39 +00001104 def t2LDM_RET : T2XI<(outs),
Evan Chengd20d6582009-10-01 01:33:39 +00001105 (ins addrmode4:$addr, pred:$p, reglist:$wb, variable_ops),
Evan Cheng699beba2009-10-27 00:08:59 +00001106 IIC_Br, "ldm${addr:submode}${p}${addr:wide}\t$addr, $wb",
Evan Chengc50a1cb2009-07-09 22:58:39 +00001107 []>;
1108
David Goodwin5e47a9a2009-06-30 18:04:13 +00001109let isBranch = 1, isTerminator = 1, isBarrier = 1 in {
1110let isPredicable = 1 in
David Goodwin8b7d7ad2009-08-06 16:52:47 +00001111def t2B : T2XI<(outs), (ins brtarget:$target), IIC_Br,
Evan Cheng699beba2009-10-27 00:08:59 +00001112 "b.w\t$target",
David Goodwin5e47a9a2009-06-30 18:04:13 +00001113 [(br bb:$target)]>;
1114
Evan Cheng5657c012009-07-29 02:18:14 +00001115let isNotDuplicable = 1, isIndirectBranch = 1 in {
Evan Cheng66ac5312009-07-25 00:33:29 +00001116def t2BR_JT :
Evan Cheng5657c012009-07-29 02:18:14 +00001117 T2JTI<(outs),
1118 (ins GPR:$target, GPR:$index, jt2block_operand:$jt, i32imm:$id),
Evan Cheng699beba2009-10-27 00:08:59 +00001119 IIC_Br, "mov\tpc, $target\n$jt",
Evan Cheng5657c012009-07-29 02:18:14 +00001120 [(ARMbr2jt GPR:$target, GPR:$index, tjumptable:$jt, imm:$id)]>;
1121
Evan Cheng25f7cfc2009-08-01 06:13:52 +00001122// FIXME: Add a non-pc based case that can be predicated.
Evan Cheng5657c012009-07-29 02:18:14 +00001123def t2TBB :
Evan Cheng25f7cfc2009-08-01 06:13:52 +00001124 T2JTI<(outs),
Evan Cheng5657c012009-07-29 02:18:14 +00001125 (ins tb_addrmode:$index, jt2block_operand:$jt, i32imm:$id),
Evan Cheng699beba2009-10-27 00:08:59 +00001126 IIC_Br, "tbb\t$index\n$jt", []>;
Evan Cheng5657c012009-07-29 02:18:14 +00001127
1128def t2TBH :
Evan Cheng25f7cfc2009-08-01 06:13:52 +00001129 T2JTI<(outs),
Evan Cheng5657c012009-07-29 02:18:14 +00001130 (ins tb_addrmode:$index, jt2block_operand:$jt, i32imm:$id),
Evan Cheng699beba2009-10-27 00:08:59 +00001131 IIC_Br, "tbh\t$index\n$jt", []>;
Evan Cheng5657c012009-07-29 02:18:14 +00001132} // isNotDuplicable, isIndirectBranch
1133
David Goodwinc9a59b52009-06-30 19:50:22 +00001134} // isBranch, isTerminator, isBarrier
David Goodwin5e47a9a2009-06-30 18:04:13 +00001135
1136// FIXME: should be able to write a pattern for ARMBrcond, but can't use
1137// a two-value operand where a dag node expects two operands. :(
1138let isBranch = 1, isTerminator = 1 in
David Goodwin8b7d7ad2009-08-06 16:52:47 +00001139def t2Bcc : T2I<(outs), (ins brtarget:$target), IIC_Br,
Evan Cheng699beba2009-10-27 00:08:59 +00001140 "b", ".w\t$target",
David Goodwin5e47a9a2009-06-30 18:04:13 +00001141 [/*(ARMbrcond bb:$target, imm:$cc)*/]>;
Evan Chengf49810c2009-06-23 17:48:47 +00001142
Evan Cheng06e16582009-07-10 01:54:42 +00001143
1144// IT block
1145def t2IT : Thumb2XI<(outs), (ins it_pred:$cc, it_mask:$mask),
David Goodwin5d598aa2009-08-19 18:00:44 +00001146 AddrModeNone, Size2Bytes, IIC_iALUx,
Evan Cheng699beba2009-10-27 00:08:59 +00001147 "it$mask\t$cc", "", []>;
Evan Cheng06e16582009-07-10 01:54:42 +00001148
Evan Chengf49810c2009-06-23 17:48:47 +00001149//===----------------------------------------------------------------------===//
1150// Non-Instruction Patterns
1151//
1152
Jim Grosbach65b7f3a2009-10-21 20:44:34 +00001153// Two piece so_imms.
1154def : T2Pat<(or GPR:$LHS, t2_so_imm2part:$RHS),
1155 (t2ORRri (t2ORRri GPR:$LHS, (t2_so_imm2part_1 imm:$RHS)),
1156 (t2_so_imm2part_2 imm:$RHS))>;
1157def : T2Pat<(xor GPR:$LHS, t2_so_imm2part:$RHS),
1158 (t2EORri (t2EORri GPR:$LHS, (t2_so_imm2part_1 imm:$RHS)),
1159 (t2_so_imm2part_2 imm:$RHS))>;
1160def : T2Pat<(add GPR:$LHS, t2_so_imm2part:$RHS),
1161 (t2ADDri (t2ADDri GPR:$LHS, (t2_so_imm2part_1 imm:$RHS)),
1162 (t2_so_imm2part_2 imm:$RHS))>;
1163def : T2Pat<(sub GPR:$LHS, t2_so_imm2part:$RHS),
1164 (t2SUBri (t2SUBri GPR:$LHS, (t2_so_imm2part_1 imm:$RHS)),
1165 (t2_so_imm2part_2 imm:$RHS))>;
1166
Evan Chenga09b9ca2009-06-24 23:47:58 +00001167// ConstantPool, GlobalAddress, and JumpTable
Evan Cheng9cb9e672009-06-27 02:26:13 +00001168def : T2Pat<(ARMWrapper tglobaladdr :$dst), (t2LEApcrel tglobaladdr :$dst)>;
1169def : T2Pat<(ARMWrapper tconstpool :$dst), (t2LEApcrel tconstpool :$dst)>;
1170def : T2Pat<(ARMWrapperJT tjumptable:$dst, imm:$id),
1171 (t2LEApcrelJT tjumptable:$dst, imm:$id)>;
Evan Chenga09b9ca2009-06-24 23:47:58 +00001172
Evan Cheng5adb66a2009-09-28 09:14:39 +00001173// 32-bit immediate using movw + movt.
1174// This is a single pseudo instruction to make it re-materializable. Remove
1175// when we can do generalized remat.
1176let isReMaterializable = 1 in
1177def t2MOVi32imm : T2Ix2<(outs GPR:$dst), (ins i32imm:$src), IIC_iMOVi,
Evan Cheng699beba2009-10-27 00:08:59 +00001178 "movw", "\t$dst, ${src:lo16}\n\tmovt${p}\t$dst, ${src:hi16}",
Evan Cheng5adb66a2009-09-28 09:14:39 +00001179 [(set GPR:$dst, (i32 imm:$src))]>;