blob: c50482cdbb04ccd5c13b8bbb7ac617a312dddbf4 [file] [log] [blame]
Anton Korobeynikovf2e14752009-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 Korobeynikovac869fc2009-06-17 18:13:58 +000013
Evan Chengd5b67fa2009-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 Cheng1b2b3e22009-07-29 02:18:14 +000024// Table branch address
25def tb_addrmode : Operand<i32> {
26 let PrintMethod = "printTBAddrMode";
27}
28
Anton Korobeynikovac869fc2009-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 Cheng19bb7c72009-06-27 02:26:13 +000032 ComplexPattern<i32, 2, "SelectT2ShifterOperandReg",
Anton Korobeynikovac869fc2009-06-17 18:13:58 +000033 [shl,srl,sra,rotr]> {
Evan Cheng19bb7c72009-06-27 02:26:13 +000034 let PrintMethod = "printT2SOOperand";
Anton Korobeynikovac869fc2009-06-17 18:13:58 +000035 let MIOperandInfo = (ops GPR, i32imm);
36}
37
Evan Cheng36173712009-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, [{
Evan Cheng8be2a5b2009-07-08 21:03:57 +000040 return CurDAG->getTargetConstant(~((uint32_t)N->getZExtValue()), MVT::i32);
Anton Korobeynikovac869fc2009-06-17 18:13:58 +000041}]>;
42
Evan Cheng36173712009-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, [{
Evan Cheng8be2a5b2009-07-08 21:03:57 +000045 return CurDAG->getTargetConstant(-((int)N->getZExtValue()), MVT::i32);
Evan Cheng36173712009-06-23 17:48:47 +000046}]>;
Anton Korobeynikovac869fc2009-06-17 18:13:58 +000047
Evan Cheng36173712009-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 Cheng8be2a5b2009-07-08 21:03:57 +000056 return ARM_AM::getT2SOImmVal((uint32_t)N->getZExtValue()) != -1;
57}]>;
Anton Korobeynikovac869fc2009-06-17 18:13:58 +000058
Evan Cheng36173712009-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 Cheng8be2a5b2009-07-08 21:03:57 +000063 return ARM_AM::getT2SOImmVal(~((uint32_t)N->getZExtValue())) != -1;
64}], t2_so_imm_not_XFORM>;
Evan Cheng36173712009-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 Cheng8be2a5b2009-07-08 21:03:57 +000069 return ARM_AM::getT2SOImmVal(-((int)N->getZExtValue())) != -1;
70}], t2_so_imm_neg_XFORM>;
Evan Cheng36173712009-06-23 17:48:47 +000071
Evan Chengf7f986d2009-06-23 19:39:13 +000072/// imm1_31 predicate - True if the 32-bit immediate is in the range [1,31].
73def imm1_31 : PatLeaf<(i32 imm), [{
74 return (int32_t)N->getZExtValue() >= 1 && (int32_t)N->getZExtValue() < 32;
75}]>;
76
Evan Cheng36173712009-06-23 17:48:47 +000077/// imm0_4095 predicate - True if the 32-bit immediate is in the range [0.4095].
Evan Cheng815c23a2009-08-07 00:34:42 +000078def imm0_4095 : Operand<i32>,
79 PatLeaf<(i32 imm), [{
Evan Cheng36173712009-06-23 17:48:47 +000080 return (uint32_t)N->getZExtValue() < 4096;
81}]>;
Anton Korobeynikovac869fc2009-06-17 18:13:58 +000082
83def imm0_4095_neg : PatLeaf<(i32 imm), [{
Evan Cheng36173712009-06-23 17:48:47 +000084 return (uint32_t)(-N->getZExtValue()) < 4096;
Anton Korobeynikovac869fc2009-06-17 18:13:58 +000085}], imm_neg_XFORM>;
86
Evan Cheng809fadb2009-08-04 01:41:15 +000087def imm0_255_neg : PatLeaf<(i32 imm), [{
88 return (uint32_t)(-N->getZExtValue()) < 255;
89}], imm_neg_XFORM>;
90
Evan Cheng36173712009-06-23 17:48:47 +000091/// imm0_65535 predicate - True if the 32-bit immediate is in the range
92/// [0.65535].
93def imm0_65535 : PatLeaf<(i32 imm), [{
94 return (uint32_t)N->getZExtValue() < 65536;
Anton Korobeynikovac869fc2009-06-17 18:13:58 +000095}]>;
96
Evan Cheng36173712009-06-23 17:48:47 +000097/// Split a 32-bit immediate into two 16 bit parts.
98def t2_lo16 : SDNodeXForm<imm, [{
99 return CurDAG->getTargetConstant((uint32_t)N->getZExtValue() & 0xffff,
100 MVT::i32);
101}]>;
102
103def t2_hi16 : SDNodeXForm<imm, [{
104 return CurDAG->getTargetConstant((uint32_t)N->getZExtValue() >> 16, MVT::i32);
105}]>;
106
107def t2_lo16AllZero : PatLeaf<(i32 imm), [{
108 // Returns true if all low 16-bits are 0.
109 return (((uint32_t)N->getZExtValue()) & 0xFFFFUL) == 0;
110 }], t2_hi16>;
111
Evan Cheng19bb7c72009-06-27 02:26:13 +0000112
Evan Cheng532cdc52009-06-29 07:51:04 +0000113// Define Thumb2 specific addressing modes.
114
115// t2addrmode_imm12 := reg + imm12
116def t2addrmode_imm12 : Operand<i32>,
117 ComplexPattern<i32, 2, "SelectT2AddrModeImm12", []> {
118 let PrintMethod = "printT2AddrModeImm12Operand";
119 let MIOperandInfo = (ops GPR:$base, i32imm:$offsimm);
120}
121
David Goodwin7938afc2009-07-24 00:16:18 +0000122// t2addrmode_imm8 := reg - imm8
Evan Cheng532cdc52009-06-29 07:51:04 +0000123def t2addrmode_imm8 : Operand<i32>,
124 ComplexPattern<i32, 2, "SelectT2AddrModeImm8", []> {
125 let PrintMethod = "printT2AddrModeImm8Operand";
126 let MIOperandInfo = (ops GPR:$base, i32imm:$offsimm);
127}
128
Evan Cheng24f87d82009-07-03 00:06:39 +0000129def t2am_imm8_offset : Operand<i32>,
130 ComplexPattern<i32, 1, "SelectT2AddrModeImm8Offset", []>{
Evan Chenga90942e2009-07-02 07:28:31 +0000131 let PrintMethod = "printT2AddrModeImm8OffsetOperand";
132}
133
Evan Cheng6bc67202009-07-09 22:21:59 +0000134// t2addrmode_imm8s4 := reg +/- (imm8 << 2)
David Goodwin2af7ed82009-06-30 22:50:01 +0000135def t2addrmode_imm8s4 : Operand<i32>,
136 ComplexPattern<i32, 2, "SelectT2AddrModeImm8s4", []> {
Evan Cheng6bc67202009-07-09 22:21:59 +0000137 let PrintMethod = "printT2AddrModeImm8s4Operand";
David Goodwin2af7ed82009-06-30 22:50:01 +0000138 let MIOperandInfo = (ops GPR:$base, i32imm:$offsimm);
139}
140
Evan Cheng4df2ea72009-07-09 20:40:44 +0000141// t2addrmode_so_reg := reg + (reg << imm2)
Evan Cheng532cdc52009-06-29 07:51:04 +0000142def t2addrmode_so_reg : Operand<i32>,
143 ComplexPattern<i32, 3, "SelectT2AddrModeSoReg", []> {
144 let PrintMethod = "printT2AddrModeSoRegOperand";
145 let MIOperandInfo = (ops GPR:$base, GPR:$offsreg, i32imm:$offsimm);
146}
147
148
Anton Korobeynikovac869fc2009-06-17 18:13:58 +0000149//===----------------------------------------------------------------------===//
Evan Cheng19bb7c72009-06-27 02:26:13 +0000150// Multiclass helpers...
Anton Korobeynikovac869fc2009-06-17 18:13:58 +0000151//
152
Evan Chengf7f986d2009-06-23 19:39:13 +0000153/// T2I_un_irs - Defines a set of (op reg, {so_imm|r|so_reg}) patterns for a
Evan Cheng3d92dfd2009-06-25 02:08:06 +0000154/// unary operation that produces a value. These are predicable and can be
155/// changed to modify CPSR.
Evan Chengf7f986d2009-06-23 19:39:13 +0000156multiclass T2I_un_irs<string opc, PatFrag opnode, bit Cheap = 0, bit ReMat = 0>{
157 // shifted imm
David Goodwincfd67652009-08-06 16:52:47 +0000158 def i : T2sI<(outs GPR:$dst), (ins t2_so_imm:$src), IIC_iALU,
Evan Cheng3d92dfd2009-06-25 02:08:06 +0000159 opc, " $dst, $src",
Evan Chengf7f986d2009-06-23 19:39:13 +0000160 [(set GPR:$dst, (opnode t2_so_imm:$src))]> {
161 let isAsCheapAsAMove = Cheap;
162 let isReMaterializable = ReMat;
163 }
164 // register
David Goodwincfd67652009-08-06 16:52:47 +0000165 def r : T2I<(outs GPR:$dst), (ins GPR:$src), IIC_iALU,
David Goodwin2f6f1132009-07-27 16:31:55 +0000166 opc, ".w $dst, $src",
Evan Chengf7f986d2009-06-23 19:39:13 +0000167 [(set GPR:$dst, (opnode GPR:$src))]>;
168 // shifted register
David Goodwincfd67652009-08-06 16:52:47 +0000169 def s : T2I<(outs GPR:$dst), (ins t2_so_reg:$src), IIC_iALU,
David Goodwin2f6f1132009-07-27 16:31:55 +0000170 opc, ".w $dst, $src",
Evan Cheng3d92dfd2009-06-25 02:08:06 +0000171 [(set GPR:$dst, (opnode t2_so_reg:$src))]>;
Evan Chengf7f986d2009-06-23 19:39:13 +0000172}
173
174/// T2I_bin_irs - Defines a set of (op reg, {so_imm|r|so_reg}) patterns for a
Evan Cheng3d92dfd2009-06-25 02:08:06 +0000175// binary operation that produces a value. These are predicable and can be
176/// changed to modify CPSR.
David Goodwin87affb92009-07-27 23:34:12 +0000177multiclass T2I_bin_irs<string opc, PatFrag opnode,
178 bit Commutable = 0, string wide =""> {
Anton Korobeynikovac869fc2009-06-17 18:13:58 +0000179 // shifted imm
David Goodwincfd67652009-08-06 16:52:47 +0000180 def ri : T2sI<(outs GPR:$dst), (ins GPR:$lhs, t2_so_imm:$rhs), IIC_iALU,
Evan Cheng3d92dfd2009-06-25 02:08:06 +0000181 opc, " $dst, $lhs, $rhs",
182 [(set GPR:$dst, (opnode GPR:$lhs, t2_so_imm:$rhs))]>;
Evan Chengf7f986d2009-06-23 19:39:13 +0000183 // register
David Goodwincfd67652009-08-06 16:52:47 +0000184 def rr : T2sI<(outs GPR:$dst), (ins GPR:$lhs, GPR:$rhs), IIC_iALU,
David Goodwin87affb92009-07-27 23:34:12 +0000185 opc, !strconcat(wide, " $dst, $lhs, $rhs"),
Evan Chengbdd679a2009-06-26 00:19:44 +0000186 [(set GPR:$dst, (opnode GPR:$lhs, GPR:$rhs))]> {
187 let isCommutable = Commutable;
188 }
Anton Korobeynikovac869fc2009-06-17 18:13:58 +0000189 // shifted register
David Goodwincfd67652009-08-06 16:52:47 +0000190 def rs : T2sI<(outs GPR:$dst), (ins GPR:$lhs, t2_so_reg:$rhs), IIC_iALU,
David Goodwin87affb92009-07-27 23:34:12 +0000191 opc, !strconcat(wide, " $dst, $lhs, $rhs"),
Evan Cheng3d92dfd2009-06-25 02:08:06 +0000192 [(set GPR:$dst, (opnode GPR:$lhs, t2_so_reg:$rhs))]>;
Anton Korobeynikovac869fc2009-06-17 18:13:58 +0000193}
194
David Goodwin87affb92009-07-27 23:34:12 +0000195/// T2I_bin_w_irs - Same as T2I_bin_irs except these operations need
196// the ".w" prefix to indicate that they are wide.
197multiclass T2I_bin_w_irs<string opc, PatFrag opnode, bit Commutable = 0> :
198 T2I_bin_irs<opc, opnode, Commutable, ".w">;
199
Evan Chengd4e2f052009-06-25 20:59:23 +0000200/// T2I_rbin_is - Same as T2I_bin_irs except the order of operands are
201/// reversed. It doesn't define the 'rr' form since it's handled by its
202/// T2I_bin_irs counterpart.
203multiclass T2I_rbin_is<string opc, PatFrag opnode> {
Evan Cheng36173712009-06-23 17:48:47 +0000204 // shifted imm
David Goodwincfd67652009-08-06 16:52:47 +0000205 def ri : T2I<(outs GPR:$dst), (ins GPR:$rhs, t2_so_imm:$lhs), IIC_iALU,
David Goodwin2f6f1132009-07-27 16:31:55 +0000206 opc, ".w $dst, $rhs, $lhs",
Evan Cheng36173712009-06-23 17:48:47 +0000207 [(set GPR:$dst, (opnode t2_so_imm:$lhs, GPR:$rhs))]>;
208 // shifted register
David Goodwincfd67652009-08-06 16:52:47 +0000209 def rs : T2I<(outs GPR:$dst), (ins GPR:$rhs, t2_so_reg:$lhs), IIC_iALU,
Evan Cheng3d92dfd2009-06-25 02:08:06 +0000210 opc, " $dst, $rhs, $lhs",
Evan Cheng36173712009-06-23 17:48:47 +0000211 [(set GPR:$dst, (opnode t2_so_reg:$lhs, GPR:$rhs))]>;
212}
213
Evan Chengf7f986d2009-06-23 19:39:13 +0000214/// T2I_bin_s_irs - Similar to T2I_bin_irs except it sets the 's' bit so the
Anton Korobeynikovac869fc2009-06-17 18:13:58 +0000215/// instruction modifies the CPSR register.
216let Defs = [CPSR] in {
Evan Chengbdd679a2009-06-26 00:19:44 +0000217multiclass T2I_bin_s_irs<string opc, PatFrag opnode, bit Commutable = 0> {
Anton Korobeynikovac869fc2009-06-17 18:13:58 +0000218 // shifted imm
David Goodwincfd67652009-08-06 16:52:47 +0000219 def ri : T2I<(outs GPR:$dst), (ins GPR:$lhs, t2_so_imm:$rhs), IIC_iALU,
David Goodwin2f6f1132009-07-27 16:31:55 +0000220 !strconcat(opc, "s"), ".w $dst, $lhs, $rhs",
Evan Cheng36173712009-06-23 17:48:47 +0000221 [(set GPR:$dst, (opnode GPR:$lhs, t2_so_imm:$rhs))]>;
Evan Chengf7f986d2009-06-23 19:39:13 +0000222 // register
David Goodwincfd67652009-08-06 16:52:47 +0000223 def rr : T2I<(outs GPR:$dst), (ins GPR:$lhs, GPR:$rhs), IIC_iALU,
David Goodwin2f6f1132009-07-27 16:31:55 +0000224 !strconcat(opc, "s"), ".w $dst, $lhs, $rhs",
Evan Chengbdd679a2009-06-26 00:19:44 +0000225 [(set GPR:$dst, (opnode GPR:$lhs, GPR:$rhs))]> {
226 let isCommutable = Commutable;
227 }
Anton Korobeynikovac869fc2009-06-17 18:13:58 +0000228 // shifted register
David Goodwincfd67652009-08-06 16:52:47 +0000229 def rs : T2I<(outs GPR:$dst), (ins GPR:$lhs, t2_so_reg:$rhs), IIC_iALU,
David Goodwin2f6f1132009-07-27 16:31:55 +0000230 !strconcat(opc, "s"), ".w $dst, $lhs, $rhs",
Evan Cheng36173712009-06-23 17:48:47 +0000231 [(set GPR:$dst, (opnode GPR:$lhs, t2_so_reg:$rhs))]>;
Anton Korobeynikovac869fc2009-06-17 18:13:58 +0000232}
233}
234
Evan Chengf7f986d2009-06-23 19:39:13 +0000235/// T2I_bin_ii12rs - Defines a set of (op reg, {so_imm|imm0_4095|r|so_reg})
236/// patterns for a binary operation that produces a value.
Evan Chengbdd679a2009-06-26 00:19:44 +0000237multiclass T2I_bin_ii12rs<string opc, PatFrag opnode, bit Commutable = 0> {
Evan Cheng36173712009-06-23 17:48:47 +0000238 // shifted imm
David Goodwincfd67652009-08-06 16:52:47 +0000239 def ri : T2sI<(outs GPR:$dst), (ins GPR:$lhs, t2_so_imm:$rhs), IIC_iALU,
David Goodwin2f6f1132009-07-27 16:31:55 +0000240 opc, ".w $dst, $lhs, $rhs",
Evan Cheng3d92dfd2009-06-25 02:08:06 +0000241 [(set GPR:$dst, (opnode GPR:$lhs, t2_so_imm:$rhs))]>;
Evan Cheng36173712009-06-23 17:48:47 +0000242 // 12-bit imm
Evan Cheng815c23a2009-08-07 00:34:42 +0000243 def ri12 : T2sI<(outs GPR:$dst), (ins GPR:$lhs, imm0_4095:$rhs), IIC_iALU,
Evan Cheng3d92dfd2009-06-25 02:08:06 +0000244 !strconcat(opc, "w"), " $dst, $lhs, $rhs",
245 [(set GPR:$dst, (opnode GPR:$lhs, imm0_4095:$rhs))]>;
Evan Chengf7f986d2009-06-23 19:39:13 +0000246 // register
David Goodwincfd67652009-08-06 16:52:47 +0000247 def rr : T2sI<(outs GPR:$dst), (ins GPR:$lhs, GPR:$rhs), IIC_iALU,
David Goodwin2f6f1132009-07-27 16:31:55 +0000248 opc, ".w $dst, $lhs, $rhs",
Evan Chengbdd679a2009-06-26 00:19:44 +0000249 [(set GPR:$dst, (opnode GPR:$lhs, GPR:$rhs))]> {
250 let isCommutable = Commutable;
251 }
Evan Cheng36173712009-06-23 17:48:47 +0000252 // shifted register
David Goodwincfd67652009-08-06 16:52:47 +0000253 def rs : T2sI<(outs GPR:$dst), (ins GPR:$lhs, t2_so_reg:$rhs), IIC_iALU,
David Goodwin2f6f1132009-07-27 16:31:55 +0000254 opc, ".w $dst, $lhs, $rhs",
Evan Cheng3d92dfd2009-06-25 02:08:06 +0000255 [(set GPR:$dst, (opnode GPR:$lhs, t2_so_reg:$rhs))]>;
Evan Cheng36173712009-06-23 17:48:47 +0000256}
257
Evan Cheng9b4d26f2009-06-25 23:34:10 +0000258/// T2I_adde_sube_irs - Defines a set of (op reg, {so_imm|r|so_reg}) patterns for a
Evan Chengd4e2f052009-06-25 20:59:23 +0000259/// binary operation that produces a value and use and define the carry bit.
260/// It's not predicable.
Evan Cheng9b4d26f2009-06-25 23:34:10 +0000261let Uses = [CPSR] in {
Evan Chengbdd679a2009-06-26 00:19:44 +0000262multiclass T2I_adde_sube_irs<string opc, PatFrag opnode, bit Commutable = 0> {
Anton Korobeynikovac869fc2009-06-17 18:13:58 +0000263 // shifted imm
David Goodwincfd67652009-08-06 16:52:47 +0000264 def ri : T2sI<(outs GPR:$dst), (ins GPR:$lhs, t2_so_imm:$rhs), IIC_iALU,
David Goodwin3536d172009-06-26 20:45:56 +0000265 opc, " $dst, $lhs, $rhs",
Evan Cheng9b4d26f2009-06-25 23:34:10 +0000266 [(set GPR:$dst, (opnode GPR:$lhs, t2_so_imm:$rhs))]>,
Evan Chengb1b2abc2009-07-02 06:38:40 +0000267 Requires<[IsThumb2, CarryDefIsUnused]>;
Evan Chengf7f986d2009-06-23 19:39:13 +0000268 // register
David Goodwincfd67652009-08-06 16:52:47 +0000269 def rr : T2sI<(outs GPR:$dst), (ins GPR:$lhs, GPR:$rhs), IIC_iALU,
David Goodwin2f6f1132009-07-27 16:31:55 +0000270 opc, ".w $dst, $lhs, $rhs",
Evan Cheng9b4d26f2009-06-25 23:34:10 +0000271 [(set GPR:$dst, (opnode GPR:$lhs, GPR:$rhs))]>,
Evan Chengb1b2abc2009-07-02 06:38:40 +0000272 Requires<[IsThumb2, CarryDefIsUnused]> {
Evan Chengbdd679a2009-06-26 00:19:44 +0000273 let isCommutable = Commutable;
274 }
Anton Korobeynikovac869fc2009-06-17 18:13:58 +0000275 // shifted register
David Goodwincfd67652009-08-06 16:52:47 +0000276 def rs : T2sI<(outs GPR:$dst), (ins GPR:$lhs, t2_so_reg:$rhs), IIC_iALU,
David Goodwin2f6f1132009-07-27 16:31:55 +0000277 opc, ".w $dst, $lhs, $rhs",
Evan Cheng9b4d26f2009-06-25 23:34:10 +0000278 [(set GPR:$dst, (opnode GPR:$lhs, t2_so_reg:$rhs))]>,
Evan Chengb1b2abc2009-07-02 06:38:40 +0000279 Requires<[IsThumb2, CarryDefIsUnused]>;
Evan Cheng9b4d26f2009-06-25 23:34:10 +0000280 // Carry setting variants
281 // shifted imm
David Goodwincfd67652009-08-06 16:52:47 +0000282 def Sri : T2XI<(outs GPR:$dst), (ins GPR:$lhs, t2_so_imm:$rhs), IIC_iALU,
Evan Cheng9b4d26f2009-06-25 23:34:10 +0000283 !strconcat(opc, "s $dst, $lhs, $rhs"),
284 [(set GPR:$dst, (opnode GPR:$lhs, t2_so_imm:$rhs))]>,
Evan Chengb1b2abc2009-07-02 06:38:40 +0000285 Requires<[IsThumb2, CarryDefIsUsed]> {
Evan Cheng9b4d26f2009-06-25 23:34:10 +0000286 let Defs = [CPSR];
287 }
288 // register
David Goodwincfd67652009-08-06 16:52:47 +0000289 def Srr : T2XI<(outs GPR:$dst), (ins GPR:$lhs, GPR:$rhs), IIC_iALU,
David Goodwin2f6f1132009-07-27 16:31:55 +0000290 !strconcat(opc, "s.w $dst, $lhs, $rhs"),
Evan Cheng9b4d26f2009-06-25 23:34:10 +0000291 [(set GPR:$dst, (opnode GPR:$lhs, GPR:$rhs))]>,
Evan Chengb1b2abc2009-07-02 06:38:40 +0000292 Requires<[IsThumb2, CarryDefIsUsed]> {
Evan Cheng9b4d26f2009-06-25 23:34:10 +0000293 let Defs = [CPSR];
Evan Chengbdd679a2009-06-26 00:19:44 +0000294 let isCommutable = Commutable;
295 }
Evan Cheng9b4d26f2009-06-25 23:34:10 +0000296 // shifted register
David Goodwincfd67652009-08-06 16:52:47 +0000297 def Srs : T2XI<(outs GPR:$dst), (ins GPR:$lhs, t2_so_reg:$rhs), IIC_iALU,
David Goodwin2f6f1132009-07-27 16:31:55 +0000298 !strconcat(opc, "s.w $dst, $lhs, $rhs"),
Evan Cheng9b4d26f2009-06-25 23:34:10 +0000299 [(set GPR:$dst, (opnode GPR:$lhs, t2_so_reg:$rhs))]>,
Evan Chengb1b2abc2009-07-02 06:38:40 +0000300 Requires<[IsThumb2, CarryDefIsUsed]> {
Evan Cheng9b4d26f2009-06-25 23:34:10 +0000301 let Defs = [CPSR];
Evan Chengbdd679a2009-06-26 00:19:44 +0000302 }
Evan Cheng36173712009-06-23 17:48:47 +0000303}
304}
305
David Goodwin2f6f1132009-07-27 16:31:55 +0000306/// T2I_rbin_s_is - Same as T2I_rbin_is except sets 's' bit.
Evan Chengd4e2f052009-06-25 20:59:23 +0000307let Defs = [CPSR] in {
308multiclass T2I_rbin_s_is<string opc, PatFrag opnode> {
Evan Cheng36173712009-06-23 17:48:47 +0000309 // shifted imm
David Goodwincfd67652009-08-06 16:52:47 +0000310 def ri : T2XI<(outs GPR:$dst), (ins GPR:$rhs, t2_so_imm:$lhs, cc_out:$s), IIC_iALU,
David Goodwin2f6f1132009-07-27 16:31:55 +0000311 !strconcat(opc, "${s}.w $dst, $rhs, $lhs"),
Evan Cheng3d92dfd2009-06-25 02:08:06 +0000312 [(set GPR:$dst, (opnode t2_so_imm:$lhs, GPR:$rhs))]>;
Evan Cheng36173712009-06-23 17:48:47 +0000313 // shifted register
David Goodwincfd67652009-08-06 16:52:47 +0000314 def rs : T2XI<(outs GPR:$dst), (ins GPR:$rhs, t2_so_reg:$lhs, cc_out:$s), IIC_iALU,
Evan Cheng3d92dfd2009-06-25 02:08:06 +0000315 !strconcat(opc, "${s} $dst, $rhs, $lhs"),
316 [(set GPR:$dst, (opnode t2_so_reg:$lhs, GPR:$rhs))]>;
Evan Cheng36173712009-06-23 17:48:47 +0000317}
318}
319
Evan Chengf7f986d2009-06-23 19:39:13 +0000320/// T2I_sh_ir - Defines a set of (op reg, {so_imm|r}) patterns for a shift /
321// rotate operation that produces a value.
322multiclass T2I_sh_ir<string opc, PatFrag opnode> {
323 // 5-bit imm
David Goodwincfd67652009-08-06 16:52:47 +0000324 def ri : T2sI<(outs GPR:$dst), (ins GPR:$lhs, i32imm:$rhs), IIC_iALU,
David Goodwin2f6f1132009-07-27 16:31:55 +0000325 opc, ".w $dst, $lhs, $rhs",
Evan Cheng3d92dfd2009-06-25 02:08:06 +0000326 [(set GPR:$dst, (opnode GPR:$lhs, imm1_31:$rhs))]>;
Evan Chengf7f986d2009-06-23 19:39:13 +0000327 // register
David Goodwincfd67652009-08-06 16:52:47 +0000328 def rr : T2sI<(outs GPR:$dst), (ins GPR:$lhs, GPR:$rhs), IIC_iALU,
David Goodwin2f6f1132009-07-27 16:31:55 +0000329 opc, ".w $dst, $lhs, $rhs",
Evan Cheng3d92dfd2009-06-25 02:08:06 +0000330 [(set GPR:$dst, (opnode GPR:$lhs, GPR:$rhs))]>;
Evan Chengf7f986d2009-06-23 19:39:13 +0000331}
Evan Cheng36173712009-06-23 17:48:47 +0000332
Evan Chengf7f986d2009-06-23 19:39:13 +0000333/// T21_cmp_irs - Defines a set of (op r, {so_imm|r|so_reg}) cmp / test
334/// patterns. Similar to T2I_bin_irs except the instruction does not produce
Evan Cheng36173712009-06-23 17:48:47 +0000335/// a explicit result, only implicitly set CPSR.
David Goodwin97eb10c2009-07-20 22:13:31 +0000336let Defs = [CPSR] in {
Evan Cheng36173712009-06-23 17:48:47 +0000337multiclass T2I_cmp_is<string opc, PatFrag opnode> {
338 // shifted imm
David Goodwincfd67652009-08-06 16:52:47 +0000339 def ri : T2I<(outs), (ins GPR:$lhs, t2_so_imm:$rhs), IIC_iALU,
David Goodwin2f6f1132009-07-27 16:31:55 +0000340 opc, ".w $lhs, $rhs",
Evan Cheng36173712009-06-23 17:48:47 +0000341 [(opnode GPR:$lhs, t2_so_imm:$rhs)]>;
Evan Chengf7f986d2009-06-23 19:39:13 +0000342 // register
David Goodwincfd67652009-08-06 16:52:47 +0000343 def rr : T2I<(outs), (ins GPR:$lhs, GPR:$rhs), IIC_iALU,
David Goodwin2f6f1132009-07-27 16:31:55 +0000344 opc, ".w $lhs, $rhs",
Evan Chengf7f986d2009-06-23 19:39:13 +0000345 [(opnode GPR:$lhs, GPR:$rhs)]>;
Evan Cheng36173712009-06-23 17:48:47 +0000346 // shifted register
David Goodwincfd67652009-08-06 16:52:47 +0000347 def rs : T2I<(outs), (ins GPR:$lhs, t2_so_reg:$rhs), IIC_iALU,
David Goodwin2f6f1132009-07-27 16:31:55 +0000348 opc, ".w $lhs, $rhs",
Evan Cheng36173712009-06-23 17:48:47 +0000349 [(opnode GPR:$lhs, t2_so_reg:$rhs)]>;
Anton Korobeynikovac869fc2009-06-17 18:13:58 +0000350}
351}
352
Evan Cheng503be112009-06-30 02:15:48 +0000353/// T2I_ld - Defines a set of (op r, {imm12|imm8|so_reg}) load patterns.
354multiclass T2I_ld<string opc, PatFrag opnode> {
David Goodwincfd67652009-08-06 16:52:47 +0000355 def i12 : T2Ii12<(outs GPR:$dst), (ins t2addrmode_imm12:$addr), IIC_iLoad,
David Goodwin2f6f1132009-07-27 16:31:55 +0000356 opc, ".w $dst, $addr",
Evan Cheng503be112009-06-30 02:15:48 +0000357 [(set GPR:$dst, (opnode t2addrmode_imm12:$addr))]>;
David Goodwincfd67652009-08-06 16:52:47 +0000358 def i8 : T2Ii8 <(outs GPR:$dst), (ins t2addrmode_imm8:$addr), IIC_iLoad,
Evan Cheng503be112009-06-30 02:15:48 +0000359 opc, " $dst, $addr",
360 [(set GPR:$dst, (opnode t2addrmode_imm8:$addr))]>;
David Goodwincfd67652009-08-06 16:52:47 +0000361 def s : T2Iso <(outs GPR:$dst), (ins t2addrmode_so_reg:$addr), IIC_iLoad,
David Goodwin2f6f1132009-07-27 16:31:55 +0000362 opc, ".w $dst, $addr",
Evan Cheng503be112009-06-30 02:15:48 +0000363 [(set GPR:$dst, (opnode t2addrmode_so_reg:$addr))]>;
David Goodwincfd67652009-08-06 16:52:47 +0000364 def pci : T2Ipc <(outs GPR:$dst), (ins i32imm:$addr), IIC_iLoad,
David Goodwin2f6f1132009-07-27 16:31:55 +0000365 opc, ".w $dst, $addr",
Evan Cheng503be112009-06-30 02:15:48 +0000366 [(set GPR:$dst, (opnode (ARMWrapper tconstpool:$addr)))]>;
367}
368
David Goodwinbab5da12009-06-30 22:11:34 +0000369/// T2I_st - Defines a set of (op r, {imm12|imm8|so_reg}) store patterns.
370multiclass T2I_st<string opc, PatFrag opnode> {
David Goodwincfd67652009-08-06 16:52:47 +0000371 def i12 : T2Ii12<(outs), (ins GPR:$src, t2addrmode_imm12:$addr), IIC_iStore,
David Goodwin2f6f1132009-07-27 16:31:55 +0000372 opc, ".w $src, $addr",
David Goodwinbab5da12009-06-30 22:11:34 +0000373 [(opnode GPR:$src, t2addrmode_imm12:$addr)]>;
David Goodwincfd67652009-08-06 16:52:47 +0000374 def i8 : T2Ii8 <(outs), (ins GPR:$src, t2addrmode_imm8:$addr), IIC_iStore,
David Goodwinbab5da12009-06-30 22:11:34 +0000375 opc, " $src, $addr",
376 [(opnode GPR:$src, t2addrmode_imm8:$addr)]>;
David Goodwincfd67652009-08-06 16:52:47 +0000377 def s : T2Iso <(outs), (ins GPR:$src, t2addrmode_so_reg:$addr), IIC_iStore,
David Goodwin2f6f1132009-07-27 16:31:55 +0000378 opc, ".w $src, $addr",
David Goodwinbab5da12009-06-30 22:11:34 +0000379 [(opnode GPR:$src, t2addrmode_so_reg:$addr)]>;
380}
381
David Goodwin5811e5c2009-07-01 00:01:13 +0000382/// T2I_picld - Defines the PIC load pattern.
383class T2I_picld<string opc, PatFrag opnode> :
David Goodwincfd67652009-08-06 16:52:47 +0000384 T2I<(outs GPR:$dst), (ins addrmodepc:$addr), IIC_iLoad,
David Goodwin5811e5c2009-07-01 00:01:13 +0000385 !strconcat("${addr:label}:\n\t", opc), " $dst, $addr",
386 [(set GPR:$dst, (opnode addrmodepc:$addr))]>;
387
388/// T2I_picst - Defines the PIC store pattern.
389class T2I_picst<string opc, PatFrag opnode> :
David Goodwincfd67652009-08-06 16:52:47 +0000390 T2I<(outs), (ins GPR:$src, addrmodepc:$addr), IIC_iStore,
David Goodwin5811e5c2009-07-01 00:01:13 +0000391 !strconcat("${addr:label}:\n\t", opc), " $src, $addr",
392 [(opnode GPR:$src, addrmodepc:$addr)]>;
393
Evan Cheng0f994ed2009-07-03 01:43:10 +0000394
395/// T2I_unary_rrot - A unary operation with two forms: one whose operand is a
396/// register and one whose operand is a register rotated by 8/16/24.
397multiclass T2I_unary_rrot<string opc, PatFrag opnode> {
David Goodwincfd67652009-08-06 16:52:47 +0000398 def r : T2I<(outs GPR:$dst), (ins GPR:$Src), IIC_iALU,
David Goodwin2f6f1132009-07-27 16:31:55 +0000399 opc, ".w $dst, $Src",
Evan Cheng0f994ed2009-07-03 01:43:10 +0000400 [(set GPR:$dst, (opnode GPR:$Src))]>;
David Goodwincfd67652009-08-06 16:52:47 +0000401 def r_rot : T2I<(outs GPR:$dst), (ins GPR:$Src, i32imm:$rot), IIC_iALU,
David Goodwin2f6f1132009-07-27 16:31:55 +0000402 opc, ".w $dst, $Src, ror $rot",
Evan Cheng0f994ed2009-07-03 01:43:10 +0000403 [(set GPR:$dst, (opnode (rotr GPR:$Src, rot_imm:$rot)))]>;
404}
405
406/// T2I_bin_rrot - A binary operation with two forms: one whose operand is a
407/// register and one whose operand is a register rotated by 8/16/24.
408multiclass T2I_bin_rrot<string opc, PatFrag opnode> {
David Goodwincfd67652009-08-06 16:52:47 +0000409 def rr : T2I<(outs GPR:$dst), (ins GPR:$LHS, GPR:$RHS), IIC_iALU,
Evan Cheng0f994ed2009-07-03 01:43:10 +0000410 opc, " $dst, $LHS, $RHS",
411 [(set GPR:$dst, (opnode GPR:$LHS, GPR:$RHS))]>;
412 def rr_rot : T2I<(outs GPR:$dst), (ins GPR:$LHS, GPR:$RHS, i32imm:$rot),
David Goodwincfd67652009-08-06 16:52:47 +0000413 IIC_iALU, opc, " $dst, $LHS, $RHS, ror $rot",
Evan Cheng0f994ed2009-07-03 01:43:10 +0000414 [(set GPR:$dst, (opnode GPR:$LHS,
415 (rotr GPR:$RHS, rot_imm:$rot)))]>;
416}
417
Anton Korobeynikovac869fc2009-06-17 18:13:58 +0000418//===----------------------------------------------------------------------===//
Evan Cheng19bb7c72009-06-27 02:26:13 +0000419// Instructions
420//===----------------------------------------------------------------------===//
421
422//===----------------------------------------------------------------------===//
Evan Cheng41799702009-06-24 23:47:58 +0000423// Miscellaneous Instructions.
424//
425
Evan Cheng41799702009-06-24 23:47:58 +0000426// LEApcrel - Load a pc-relative address into a register without offending the
427// assembler.
David Goodwincfd67652009-08-06 16:52:47 +0000428def t2LEApcrel : T2XI<(outs GPR:$dst), (ins i32imm:$label, pred:$p), IIC_iALU,
David Goodwin2f6f1132009-07-27 16:31:55 +0000429 "adr$p.w $dst, #$label", []>;
Evan Cheng41799702009-06-24 23:47:58 +0000430
Evan Cheng3d92dfd2009-06-25 02:08:06 +0000431def t2LEApcrelJT : T2XI<(outs GPR:$dst),
Anton Korobeynikove2be3382009-08-08 23:10:41 +0000432 (ins i32imm:$label, lane_cst:$id, pred:$p), IIC_iALU,
433 "adr$p.w $dst, #${label}_${id}", []>;
Evan Cheng41799702009-06-24 23:47:58 +0000434
Evan Cheng815c23a2009-08-07 00:34:42 +0000435
436// ADD r, sp, {so_imm|i12}
437def t2ADDrSPi : T2sI<(outs GPR:$dst), (ins GPR:$sp, t2_so_imm:$imm), IIC_iALU,
438 "add", ".w $dst, $sp, $imm", []>;
439def t2ADDrSPi12 : T2I<(outs GPR:$dst), (ins GPR:$sp, imm0_4095:$imm), IIC_iALU,
440 "addw", " $dst, $sp, $imm", []>;
441
442// ADD r, sp, so_reg
443def t2ADDrSPs : T2sI<(outs GPR:$dst), (ins GPR:$sp, t2_so_reg:$rhs), IIC_iALU,
444 "add", ".w $dst, $sp, $rhs", []>;
445
446// SUB r, sp, {so_imm|i12}
447def t2SUBrSPi : T2sI<(outs GPR:$dst), (ins GPR:$sp, t2_so_imm:$imm), IIC_iALU,
448 "sub", ".w $dst, $sp, $imm", []>;
449def t2SUBrSPi12 : T2I<(outs GPR:$dst), (ins GPR:$sp, imm0_4095:$imm), IIC_iALU,
450 "subw", " $dst, $sp, $imm", []>;
451
452// SUB r, sp, so_reg
453def t2SUBrSPs : T2sI<(outs GPR:$dst), (ins GPR:$sp, t2_so_reg:$rhs), IIC_iALU,
454 "sub", " $dst, $sp, $rhs", []>;
455
456
457// Pseudo instruction that will expand into a t2SUBrSPi + a copy.
458let usesCustomDAGSchedInserter = 1 in { // Expanded by the scheduler.
459def t2SUBrSPi_ : PseudoInst<(outs GPR:$dst), (ins GPR:$sp, t2_so_imm:$imm),
460 NoItinerary, "@ sub.w $dst, $sp, $imm", []>;
461def t2SUBrSPi12_ : PseudoInst<(outs GPR:$dst), (ins GPR:$sp, imm0_4095:$imm),
462 NoItinerary, "@ subw $dst, $sp, $imm", []>;
463def t2SUBrSPs_ : PseudoInst<(outs GPR:$dst), (ins GPR:$sp, t2_so_reg:$rhs),
464 NoItinerary, "@ sub $dst, $sp, $rhs", []>;
465} // usesCustomDAGSchedInserter
466
467
Evan Cheng41799702009-06-24 23:47:58 +0000468//===----------------------------------------------------------------------===//
Evan Cheng19bb7c72009-06-27 02:26:13 +0000469// Load / store Instructions.
470//
471
Evan Cheng532cdc52009-06-29 07:51:04 +0000472// Load
Evan Cheng503be112009-06-30 02:15:48 +0000473let canFoldAsLoad = 1 in
474defm t2LDR : T2I_ld<"ldr", UnOpFrag<(load node:$Src)>>;
Evan Cheng532cdc52009-06-29 07:51:04 +0000475
Evan Cheng503be112009-06-30 02:15:48 +0000476// Loads with zero extension
477defm t2LDRH : T2I_ld<"ldrh", UnOpFrag<(zextloadi16 node:$Src)>>;
478defm t2LDRB : T2I_ld<"ldrb", UnOpFrag<(zextloadi8 node:$Src)>>;
Evan Cheng532cdc52009-06-29 07:51:04 +0000479
Evan Cheng503be112009-06-30 02:15:48 +0000480// Loads with sign extension
481defm t2LDRSH : T2I_ld<"ldrsh", UnOpFrag<(sextloadi16 node:$Src)>>;
482defm t2LDRSB : T2I_ld<"ldrsb", UnOpFrag<(sextloadi8 node:$Src)>>;
Evan Cheng532cdc52009-06-29 07:51:04 +0000483
Evan Cheng503be112009-06-30 02:15:48 +0000484let mayLoad = 1 in {
485// Load doubleword
David Goodwin2af7ed82009-06-30 22:50:01 +0000486def t2LDRDi8 : T2Ii8s4<(outs GPR:$dst), (ins t2addrmode_imm8s4:$addr),
David Goodwincfd67652009-08-06 16:52:47 +0000487 IIC_iLoad, "ldrd", " $dst, $addr", []>;
488def t2LDRDpci : T2Ii8s4<(outs GPR:$dst), (ins i32imm:$addr), IIC_iLoad,
Evan Cheng503be112009-06-30 02:15:48 +0000489 "ldrd", " $dst, $addr", []>;
490}
491
492// zextload i1 -> zextload i8
493def : T2Pat<(zextloadi1 t2addrmode_imm12:$addr),
494 (t2LDRBi12 t2addrmode_imm12:$addr)>;
495def : T2Pat<(zextloadi1 t2addrmode_imm8:$addr),
496 (t2LDRBi8 t2addrmode_imm8:$addr)>;
497def : T2Pat<(zextloadi1 t2addrmode_so_reg:$addr),
498 (t2LDRBs t2addrmode_so_reg:$addr)>;
499def : T2Pat<(zextloadi1 (ARMWrapper tconstpool:$addr)),
500 (t2LDRBpci tconstpool:$addr)>;
501
502// extload -> zextload
503// FIXME: Reduce the number of patterns by legalizing extload to zextload
504// earlier?
505def : T2Pat<(extloadi1 t2addrmode_imm12:$addr),
506 (t2LDRBi12 t2addrmode_imm12:$addr)>;
507def : T2Pat<(extloadi1 t2addrmode_imm8:$addr),
508 (t2LDRBi8 t2addrmode_imm8:$addr)>;
509def : T2Pat<(extloadi1 t2addrmode_so_reg:$addr),
510 (t2LDRBs t2addrmode_so_reg:$addr)>;
511def : T2Pat<(extloadi1 (ARMWrapper tconstpool:$addr)),
512 (t2LDRBpci tconstpool:$addr)>;
513
514def : T2Pat<(extloadi8 t2addrmode_imm12:$addr),
515 (t2LDRBi12 t2addrmode_imm12:$addr)>;
516def : T2Pat<(extloadi8 t2addrmode_imm8:$addr),
517 (t2LDRBi8 t2addrmode_imm8:$addr)>;
518def : T2Pat<(extloadi8 t2addrmode_so_reg:$addr),
519 (t2LDRBs t2addrmode_so_reg:$addr)>;
520def : T2Pat<(extloadi8 (ARMWrapper tconstpool:$addr)),
521 (t2LDRBpci tconstpool:$addr)>;
522
523def : T2Pat<(extloadi16 t2addrmode_imm12:$addr),
524 (t2LDRHi12 t2addrmode_imm12:$addr)>;
525def : T2Pat<(extloadi16 t2addrmode_imm8:$addr),
526 (t2LDRHi8 t2addrmode_imm8:$addr)>;
527def : T2Pat<(extloadi16 t2addrmode_so_reg:$addr),
528 (t2LDRHs t2addrmode_so_reg:$addr)>;
529def : T2Pat<(extloadi16 (ARMWrapper tconstpool:$addr)),
530 (t2LDRHpci tconstpool:$addr)>;
Evan Cheng532cdc52009-06-29 07:51:04 +0000531
Evan Chenga90942e2009-07-02 07:28:31 +0000532// Indexed loads
Evan Chengd72edde2009-07-03 00:08:19 +0000533let mayLoad = 1 in {
Evan Chenga90942e2009-07-02 07:28:31 +0000534def t2LDR_PRE : T2Iidxldst<(outs GPR:$dst, GPR:$base_wb),
535 (ins t2addrmode_imm8:$addr),
David Goodwincfd67652009-08-06 16:52:47 +0000536 AddrModeT2_i8, IndexModePre, IIC_iLoad,
Evan Chenga90942e2009-07-02 07:28:31 +0000537 "ldr", " $dst, $addr!", "$addr.base = $base_wb",
538 []>;
539
540def t2LDR_POST : T2Iidxldst<(outs GPR:$dst, GPR:$base_wb),
541 (ins GPR:$base, t2am_imm8_offset:$offset),
David Goodwincfd67652009-08-06 16:52:47 +0000542 AddrModeT2_i8, IndexModePost, IIC_iLoad,
Evan Chenga90942e2009-07-02 07:28:31 +0000543 "ldr", " $dst, [$base], $offset", "$base = $base_wb",
544 []>;
545
546def t2LDRB_PRE : T2Iidxldst<(outs GPR:$dst, GPR:$base_wb),
547 (ins t2addrmode_imm8:$addr),
David Goodwincfd67652009-08-06 16:52:47 +0000548 AddrModeT2_i8, IndexModePre, IIC_iLoad,
Evan Chenga90942e2009-07-02 07:28:31 +0000549 "ldrb", " $dst, $addr!", "$addr.base = $base_wb",
550 []>;
551def t2LDRB_POST : T2Iidxldst<(outs GPR:$dst, GPR:$base_wb),
552 (ins GPR:$base, t2am_imm8_offset:$offset),
David Goodwincfd67652009-08-06 16:52:47 +0000553 AddrModeT2_i8, IndexModePost, IIC_iLoad,
Evan Chenga90942e2009-07-02 07:28:31 +0000554 "ldrb", " $dst, [$base], $offset", "$base = $base_wb",
555 []>;
556
557def t2LDRH_PRE : T2Iidxldst<(outs GPR:$dst, GPR:$base_wb),
558 (ins t2addrmode_imm8:$addr),
David Goodwincfd67652009-08-06 16:52:47 +0000559 AddrModeT2_i8, IndexModePre, IIC_iLoad,
Evan Chenga90942e2009-07-02 07:28:31 +0000560 "ldrh", " $dst, $addr!", "$addr.base = $base_wb",
561 []>;
562def t2LDRH_POST : T2Iidxldst<(outs GPR:$dst, GPR:$base_wb),
563 (ins GPR:$base, t2am_imm8_offset:$offset),
David Goodwincfd67652009-08-06 16:52:47 +0000564 AddrModeT2_i8, IndexModePost, IIC_iLoad,
Evan Chenga90942e2009-07-02 07:28:31 +0000565 "ldrh", " $dst, [$base], $offset", "$base = $base_wb",
566 []>;
567
Evan Cheng40995c92009-07-02 23:16:11 +0000568def t2LDRSB_PRE : T2Iidxldst<(outs GPR:$dst, GPR:$base_wb),
569 (ins t2addrmode_imm8:$addr),
David Goodwincfd67652009-08-06 16:52:47 +0000570 AddrModeT2_i8, IndexModePre, IIC_iLoad,
Evan Cheng40995c92009-07-02 23:16:11 +0000571 "ldrsb", " $dst, $addr!", "$addr.base = $base_wb",
572 []>;
573def t2LDRSB_POST : T2Iidxldst<(outs GPR:$dst, GPR:$base_wb),
574 (ins GPR:$base, t2am_imm8_offset:$offset),
David Goodwincfd67652009-08-06 16:52:47 +0000575 AddrModeT2_i8, IndexModePost, IIC_iLoad,
Evan Cheng40995c92009-07-02 23:16:11 +0000576 "ldrsb", " $dst, [$base], $offset", "$base = $base_wb",
577 []>;
578
579def t2LDRSH_PRE : T2Iidxldst<(outs GPR:$dst, GPR:$base_wb),
580 (ins t2addrmode_imm8:$addr),
David Goodwincfd67652009-08-06 16:52:47 +0000581 AddrModeT2_i8, IndexModePre, IIC_iLoad,
Evan Cheng40995c92009-07-02 23:16:11 +0000582 "ldrsh", " $dst, $addr!", "$addr.base = $base_wb",
583 []>;
584def t2LDRSH_POST : T2Iidxldst<(outs GPR:$dst, GPR:$base_wb),
585 (ins GPR:$base, t2am_imm8_offset:$offset),
David Goodwincfd67652009-08-06 16:52:47 +0000586 AddrModeT2_i8, IndexModePost, IIC_iLoad,
Evan Cheng40995c92009-07-02 23:16:11 +0000587 "ldrsh", " $dst, [$base], $offset", "$base = $base_wb",
588 []>;
Evan Chengd72edde2009-07-03 00:08:19 +0000589}
Evan Cheng40995c92009-07-02 23:16:11 +0000590
David Goodwinbab5da12009-06-30 22:11:34 +0000591// Store
Evan Chenga90942e2009-07-02 07:28:31 +0000592defm t2STR : T2I_st<"str", BinOpFrag<(store node:$LHS, node:$RHS)>>;
593defm t2STRB : T2I_st<"strb", BinOpFrag<(truncstorei8 node:$LHS, node:$RHS)>>;
594defm t2STRH : T2I_st<"strh", BinOpFrag<(truncstorei16 node:$LHS, node:$RHS)>>;
David Goodwinbab5da12009-06-30 22:11:34 +0000595
David Goodwin2af7ed82009-06-30 22:50:01 +0000596// Store doubleword
597let mayLoad = 1 in
David Goodwincfd67652009-08-06 16:52:47 +0000598def t2STRDi8 : T2Ii8s4<(outs), (ins GPR:$src, t2addrmode_imm8s4:$addr), IIC_iStore,
David Goodwin2af7ed82009-06-30 22:50:01 +0000599 "strd", " $src, $addr", []>;
600
Evan Cheng24f87d82009-07-03 00:06:39 +0000601// Indexed stores
602def t2STR_PRE : T2Iidxldst<(outs GPR:$base_wb),
603 (ins GPR:$src, GPR:$base, t2am_imm8_offset:$offset),
David Goodwincfd67652009-08-06 16:52:47 +0000604 AddrModeT2_i8, IndexModePre, IIC_iStore,
Evan Cheng24f87d82009-07-03 00:06:39 +0000605 "str", " $src, [$base, $offset]!", "$base = $base_wb",
606 [(set GPR:$base_wb,
607 (pre_store GPR:$src, GPR:$base, t2am_imm8_offset:$offset))]>;
608
609def t2STR_POST : T2Iidxldst<(outs GPR:$base_wb),
610 (ins GPR:$src, GPR:$base, t2am_imm8_offset:$offset),
David Goodwincfd67652009-08-06 16:52:47 +0000611 AddrModeT2_i8, IndexModePost, IIC_iStore,
Evan Cheng24f87d82009-07-03 00:06:39 +0000612 "str", " $src, [$base], $offset", "$base = $base_wb",
613 [(set GPR:$base_wb,
614 (post_store GPR:$src, GPR:$base, t2am_imm8_offset:$offset))]>;
615
616def t2STRH_PRE : T2Iidxldst<(outs GPR:$base_wb),
617 (ins GPR:$src, GPR:$base, t2am_imm8_offset:$offset),
David Goodwincfd67652009-08-06 16:52:47 +0000618 AddrModeT2_i8, IndexModePre, IIC_iStore,
Evan Cheng24f87d82009-07-03 00:06:39 +0000619 "strh", " $src, [$base, $offset]!", "$base = $base_wb",
620 [(set GPR:$base_wb,
621 (pre_truncsti16 GPR:$src, GPR:$base, t2am_imm8_offset:$offset))]>;
622
623def t2STRH_POST : T2Iidxldst<(outs GPR:$base_wb),
624 (ins GPR:$src, GPR:$base, t2am_imm8_offset:$offset),
David Goodwincfd67652009-08-06 16:52:47 +0000625 AddrModeT2_i8, IndexModePost, IIC_iStore,
Evan Cheng24f87d82009-07-03 00:06:39 +0000626 "strh", " $src, [$base], $offset", "$base = $base_wb",
627 [(set GPR:$base_wb,
628 (post_truncsti16 GPR:$src, GPR:$base, t2am_imm8_offset:$offset))]>;
629
630def t2STRB_PRE : T2Iidxldst<(outs GPR:$base_wb),
631 (ins GPR:$src, GPR:$base, t2am_imm8_offset:$offset),
David Goodwincfd67652009-08-06 16:52:47 +0000632 AddrModeT2_i8, IndexModePre, IIC_iStore,
Evan Cheng24f87d82009-07-03 00:06:39 +0000633 "strb", " $src, [$base, $offset]!", "$base = $base_wb",
634 [(set GPR:$base_wb,
635 (pre_truncsti8 GPR:$src, GPR:$base, t2am_imm8_offset:$offset))]>;
636
637def t2STRB_POST : T2Iidxldst<(outs GPR:$base_wb),
638 (ins GPR:$src, GPR:$base, t2am_imm8_offset:$offset),
David Goodwincfd67652009-08-06 16:52:47 +0000639 AddrModeT2_i8, IndexModePost, IIC_iStore,
Evan Cheng24f87d82009-07-03 00:06:39 +0000640 "strb", " $src, [$base], $offset", "$base = $base_wb",
641 [(set GPR:$base_wb,
642 (post_truncsti8 GPR:$src, GPR:$base, t2am_imm8_offset:$offset))]>;
643
David Goodwin5811e5c2009-07-01 00:01:13 +0000644
Evan Cheng6bc67202009-07-09 22:21:59 +0000645// FIXME: ldrd / strd pre / post variants
Evan Cheng2832edf2009-07-03 00:18:36 +0000646
647//===----------------------------------------------------------------------===//
648// Load / store multiple Instructions.
649//
650
651let mayLoad = 1 in
652def t2LDM : T2XI<(outs),
653 (ins addrmode4:$addr, pred:$p, reglist:$dst1, variable_ops),
Evan Cheng9b531042009-08-07 21:19:10 +0000654 IIC_iLoad, "ldm${addr:submode}${p}${addr:wide} $addr, $dst1", []>;
Evan Cheng2832edf2009-07-03 00:18:36 +0000655
656let mayStore = 1 in
657def t2STM : T2XI<(outs),
658 (ins addrmode4:$addr, pred:$p, reglist:$src1, variable_ops),
Evan Cheng9b531042009-08-07 21:19:10 +0000659 IIC_iStore, "stm${addr:submode}${p}${addr:wide} $addr, $src1", []>;
Evan Cheng2832edf2009-07-03 00:18:36 +0000660
Evan Cheng19bb7c72009-06-27 02:26:13 +0000661//===----------------------------------------------------------------------===//
Anton Korobeynikovac869fc2009-06-17 18:13:58 +0000662// Move Instructions.
663//
Anton Korobeynikovac869fc2009-06-17 18:13:58 +0000664
Evan Cheng36173712009-06-23 17:48:47 +0000665let neverHasSideEffects = 1 in
David Goodwincfd67652009-08-06 16:52:47 +0000666def t2MOVr : T2sI<(outs GPR:$dst), (ins GPR:$src), IIC_iALU,
David Goodwin2f6f1132009-07-27 16:31:55 +0000667 "mov", ".w $dst, $src", []>;
Evan Cheng36173712009-06-23 17:48:47 +0000668
Evan Chengf7f986d2009-06-23 19:39:13 +0000669let isReMaterializable = 1, isAsCheapAsAMove = 1 in
David Goodwincfd67652009-08-06 16:52:47 +0000670def t2MOVi : T2sI<(outs GPR:$dst), (ins t2_so_imm:$src), IIC_iALU,
David Goodwin2f6f1132009-07-27 16:31:55 +0000671 "mov", ".w $dst, $src",
David Goodwin2dbffd42009-06-26 16:10:07 +0000672 [(set GPR:$dst, t2_so_imm:$src)]>;
673
674let isReMaterializable = 1, isAsCheapAsAMove = 1 in
David Goodwincfd67652009-08-06 16:52:47 +0000675def t2MOVi16 : T2I<(outs GPR:$dst), (ins i32imm:$src), IIC_iALU,
David Goodwin2dbffd42009-06-26 16:10:07 +0000676 "movw", " $dst, $src",
677 [(set GPR:$dst, imm0_65535:$src)]>;
Evan Cheng36173712009-06-23 17:48:47 +0000678
Evan Cheng36173712009-06-23 17:48:47 +0000679// FIXME: Also available in ARM mode.
Evan Cheng42e6ce92009-06-23 05:23:49 +0000680let Constraints = "$src = $dst" in
David Goodwincfd67652009-08-06 16:52:47 +0000681def t2MOVTi16 : T2sI<(outs GPR:$dst), (ins GPR:$src, i32imm:$imm), IIC_iALU,
Evan Cheng3d92dfd2009-06-25 02:08:06 +0000682 "movt", " $dst, $imm",
683 [(set GPR:$dst,
684 (or (and GPR:$src, 0xffff), t2_lo16AllZero:$imm))]>;
Anton Korobeynikovac869fc2009-06-17 18:13:58 +0000685
686//===----------------------------------------------------------------------===//
Evan Cheng0f994ed2009-07-03 01:43:10 +0000687// Extend Instructions.
688//
689
690// Sign extenders
691
692defm t2SXTB : T2I_unary_rrot<"sxtb", UnOpFrag<(sext_inreg node:$Src, i8)>>;
693defm t2SXTH : T2I_unary_rrot<"sxth", UnOpFrag<(sext_inreg node:$Src, i16)>>;
694
695defm t2SXTAB : T2I_bin_rrot<"sxtab",
696 BinOpFrag<(add node:$LHS, (sext_inreg node:$RHS, i8))>>;
697defm t2SXTAH : T2I_bin_rrot<"sxtah",
698 BinOpFrag<(add node:$LHS, (sext_inreg node:$RHS,i16))>>;
699
700// TODO: SXT(A){B|H}16
701
702// Zero extenders
703
704let AddedComplexity = 16 in {
705defm t2UXTB : T2I_unary_rrot<"uxtb" , UnOpFrag<(and node:$Src, 0x000000FF)>>;
706defm t2UXTH : T2I_unary_rrot<"uxth" , UnOpFrag<(and node:$Src, 0x0000FFFF)>>;
707defm t2UXTB16 : T2I_unary_rrot<"uxtb16", UnOpFrag<(and node:$Src, 0x00FF00FF)>>;
708
709def : T2Pat<(and (shl GPR:$Src, (i32 8)), 0xFF00FF),
710 (t2UXTB16r_rot GPR:$Src, 24)>;
711def : T2Pat<(and (srl GPR:$Src, (i32 8)), 0xFF00FF),
712 (t2UXTB16r_rot GPR:$Src, 8)>;
713
714defm t2UXTAB : T2I_bin_rrot<"uxtab",
715 BinOpFrag<(add node:$LHS, (and node:$RHS, 0x00FF))>>;
716defm t2UXTAH : T2I_bin_rrot<"uxtah",
717 BinOpFrag<(add node:$LHS, (and node:$RHS, 0xFFFF))>>;
718}
719
720//===----------------------------------------------------------------------===//
Anton Korobeynikovac869fc2009-06-17 18:13:58 +0000721// Arithmetic Instructions.
722//
Anton Korobeynikovac869fc2009-06-17 18:13:58 +0000723
Evan Chengbdd679a2009-06-26 00:19:44 +0000724defm t2ADD : T2I_bin_ii12rs<"add", BinOpFrag<(add node:$LHS, node:$RHS)>, 1>;
Evan Chengf7f986d2009-06-23 19:39:13 +0000725defm t2SUB : T2I_bin_ii12rs<"sub", BinOpFrag<(sub node:$LHS, node:$RHS)>>;
Anton Korobeynikovac869fc2009-06-17 18:13:58 +0000726
Evan Cheng36173712009-06-23 17:48:47 +0000727// ADD and SUB with 's' bit set. No 12-bit immediate (T4) variants.
Evan Chengbdd679a2009-06-26 00:19:44 +0000728defm t2ADDS : T2I_bin_s_irs <"add", BinOpFrag<(addc node:$LHS, node:$RHS)>, 1>;
Evan Chengd4e2f052009-06-25 20:59:23 +0000729defm t2SUBS : T2I_bin_s_irs <"sub", BinOpFrag<(subc node:$LHS, node:$RHS)>>;
Anton Korobeynikovac869fc2009-06-17 18:13:58 +0000730
Evan Chengbdd679a2009-06-26 00:19:44 +0000731defm t2ADC : T2I_adde_sube_irs<"adc",BinOpFrag<(adde node:$LHS, node:$RHS)>,1>;
732defm t2SBC : T2I_adde_sube_irs<"sbc",BinOpFrag<(sube node:$LHS, node:$RHS)>>;
Evan Cheng36173712009-06-23 17:48:47 +0000733
David Goodwin3bc1afe2009-07-27 16:39:05 +0000734// RSB
Evan Chengd4e2f052009-06-25 20:59:23 +0000735defm t2RSB : T2I_rbin_is <"rsb", BinOpFrag<(sub node:$LHS, node:$RHS)>>;
736defm t2RSBS : T2I_rbin_s_is <"rsb", BinOpFrag<(subc node:$LHS, node:$RHS)>>;
Evan Cheng36173712009-06-23 17:48:47 +0000737
738// (sub X, imm) gets canonicalized to (add X, -imm). Match this form.
Evan Cheng809fadb2009-08-04 01:41:15 +0000739let AddedComplexity = 1 in
740def : T2Pat<(add GPR:$src, imm0_255_neg:$imm),
741 (t2SUBri GPR:$src, imm0_255_neg:$imm)>;
Evan Cheng19bb7c72009-06-27 02:26:13 +0000742def : T2Pat<(add GPR:$src, t2_so_imm_neg:$imm),
743 (t2SUBri GPR:$src, t2_so_imm_neg:$imm)>;
744def : T2Pat<(add GPR:$src, imm0_4095_neg:$imm),
745 (t2SUBri12 GPR:$src, imm0_4095_neg:$imm)>;
Anton Korobeynikovac869fc2009-06-17 18:13:58 +0000746
747
Evan Cheng36173712009-06-23 17:48:47 +0000748//===----------------------------------------------------------------------===//
Evan Chengf7f986d2009-06-23 19:39:13 +0000749// Shift and rotate Instructions.
750//
751
752defm t2LSL : T2I_sh_ir<"lsl", BinOpFrag<(shl node:$LHS, node:$RHS)>>;
753defm t2LSR : T2I_sh_ir<"lsr", BinOpFrag<(srl node:$LHS, node:$RHS)>>;
754defm t2ASR : T2I_sh_ir<"asr", BinOpFrag<(sra node:$LHS, node:$RHS)>>;
755defm t2ROR : T2I_sh_ir<"ror", BinOpFrag<(rotr node:$LHS, node:$RHS)>>;
756
David Goodwincfd67652009-08-06 16:52:47 +0000757def t2MOVrx : T2sI<(outs GPR:$dst), (ins GPR:$src), IIC_iALU,
David Goodwin1f697672009-07-30 21:38:40 +0000758 "rrx", ".w $dst, $src",
Evan Cheng3d92dfd2009-06-25 02:08:06 +0000759 [(set GPR:$dst, (ARMrrx GPR:$src))]>;
Evan Chengf7f986d2009-06-23 19:39:13 +0000760
David Goodwin7cdd24c2009-07-28 17:06:49 +0000761let Defs = [CPSR] in {
David Goodwincfd67652009-08-06 16:52:47 +0000762def t2MOVsrl_flag : T2XI<(outs GPR:$dst), (ins GPR:$src), IIC_iALU,
David Goodwin7cdd24c2009-07-28 17:06:49 +0000763 "lsrs.w $dst, $src, #1",
764 [(set GPR:$dst, (ARMsrl_flag GPR:$src))]>;
David Goodwincfd67652009-08-06 16:52:47 +0000765def t2MOVsra_flag : T2XI<(outs GPR:$dst), (ins GPR:$src), IIC_iALU,
David Goodwin7cdd24c2009-07-28 17:06:49 +0000766 "asrs.w $dst, $src, #1",
767 [(set GPR:$dst, (ARMsra_flag GPR:$src))]>;
768}
769
Evan Chengf7f986d2009-06-23 19:39:13 +0000770//===----------------------------------------------------------------------===//
Evan Cheng36173712009-06-23 17:48:47 +0000771// Bitwise Instructions.
772//
Anton Korobeynikovac869fc2009-06-17 18:13:58 +0000773
David Goodwin87affb92009-07-27 23:34:12 +0000774defm t2AND : T2I_bin_w_irs<"and", BinOpFrag<(and node:$LHS, node:$RHS)>, 1>;
775defm t2ORR : T2I_bin_w_irs<"orr", BinOpFrag<(or node:$LHS, node:$RHS)>, 1>;
776defm t2EOR : T2I_bin_w_irs<"eor", BinOpFrag<(xor node:$LHS, node:$RHS)>, 1>;
Evan Cheng36173712009-06-23 17:48:47 +0000777
David Goodwin87affb92009-07-27 23:34:12 +0000778defm t2BIC : T2I_bin_w_irs<"bic", BinOpFrag<(and node:$LHS, (not node:$RHS))>>;
Evan Cheng36173712009-06-23 17:48:47 +0000779
Evan Cheng36173712009-06-23 17:48:47 +0000780let Constraints = "$src = $dst" in
David Goodwincfd67652009-08-06 16:52:47 +0000781def t2BFC : T2I<(outs GPR:$dst), (ins GPR:$src, bf_inv_mask_imm:$imm), IIC_iALU,
Evan Cheng3d92dfd2009-06-25 02:08:06 +0000782 "bfc", " $dst, $imm",
Evan Cheng36173712009-06-23 17:48:47 +0000783 [(set GPR:$dst, (and GPR:$src, bf_inv_mask_imm:$imm))]>;
784
785// FIXME: A8.6.18 BFI - Bitfield insert (Encoding T1)
786
Evan Cheng04f40fa2009-08-01 06:13:52 +0000787/*
David Goodwin481216a2009-07-30 21:51:41 +0000788defm t2ORN : T2I_bin_irs<"orn", BinOpFrag<(or node:$LHS, (not node:$RHS))>>;
Evan Cheng04f40fa2009-08-01 06:13:52 +0000789*/
790// FIXME: Disable this pattern on Darwin to workaround an assembler bug.
David Goodwincfd67652009-08-06 16:52:47 +0000791def t2ORNri : T2sI<(outs GPR:$dst), (ins GPR:$lhs, t2_so_imm:$rhs), IIC_iALU,
Evan Cheng04f40fa2009-08-01 06:13:52 +0000792 "orn", " $dst, $lhs, $rhs",
793 [(set GPR:$dst, (or GPR:$lhs, (not t2_so_imm:$rhs)))]>,
794 Requires<[IsThumb2, IsNotDarwin]>;
795
David Goodwincfd67652009-08-06 16:52:47 +0000796def t2ORNrr : T2sI<(outs GPR:$dst), (ins GPR:$lhs, GPR:$rhs), IIC_iALU,
Evan Cheng04f40fa2009-08-01 06:13:52 +0000797 "orn", " $dst, $lhs, $rhs",
798 [(set GPR:$dst, (or GPR:$lhs, (not GPR:$rhs)))]>;
David Goodwincfd67652009-08-06 16:52:47 +0000799def t2ORNrs : T2sI<(outs GPR:$dst), (ins GPR:$lhs, t2_so_reg:$rhs), IIC_iALU,
Evan Cheng04f40fa2009-08-01 06:13:52 +0000800 "orn", " $dst, $lhs, $rhs",
801 [(set GPR:$dst, (or GPR:$lhs, (not t2_so_reg:$rhs)))]>;
Evan Cheng299ee652009-07-06 22:23:46 +0000802
803// Prefer over of t2EORri ra, rb, -1 because mvn has 16-bit version
804let AddedComplexity = 1 in
805defm t2MVN : T2I_un_irs <"mvn", UnOpFrag<(not node:$Src)>, 1, 1>;
806
807
808def : T2Pat<(and GPR:$src, t2_so_imm_not:$imm),
809 (t2BICri GPR:$src, t2_so_imm_not:$imm)>;
810
Evan Cheng04f40fa2009-08-01 06:13:52 +0000811// FIXME: Disable this pattern on Darwin to workaround an assembler bug.
David Goodwin481216a2009-07-30 21:51:41 +0000812def : T2Pat<(or GPR:$src, t2_so_imm_not:$imm),
Evan Cheng04f40fa2009-08-01 06:13:52 +0000813 (t2ORNri GPR:$src, t2_so_imm_not:$imm)>,
814 Requires<[IsThumb2, IsNotDarwin]>;
Evan Cheng299ee652009-07-06 22:23:46 +0000815
816def : T2Pat<(t2_so_imm_not:$src),
817 (t2MVNi t2_so_imm_not:$src)>;
818
Evan Cheng36173712009-06-23 17:48:47 +0000819//===----------------------------------------------------------------------===//
820// Multiply Instructions.
821//
Evan Chengbdd679a2009-06-26 00:19:44 +0000822let isCommutable = 1 in
David Goodwincfd67652009-08-06 16:52:47 +0000823def t2MUL: T2I<(outs GPR:$dst), (ins GPR:$a, GPR:$b), IIC_iALU,
Evan Cheng3d92dfd2009-06-25 02:08:06 +0000824 "mul", " $dst, $a, $b",
Evan Cheng36173712009-06-23 17:48:47 +0000825 [(set GPR:$dst, (mul GPR:$a, GPR:$b))]>;
826
David Goodwincfd67652009-08-06 16:52:47 +0000827def t2MLA: T2I<(outs GPR:$dst), (ins GPR:$a, GPR:$b, GPR:$c), IIC_iALU,
Evan Cheng3d92dfd2009-06-25 02:08:06 +0000828 "mla", " $dst, $a, $b, $c",
Evan Cheng36173712009-06-23 17:48:47 +0000829 [(set GPR:$dst, (add (mul GPR:$a, GPR:$b), GPR:$c))]>;
830
David Goodwincfd67652009-08-06 16:52:47 +0000831def t2MLS: T2I<(outs GPR:$dst), (ins GPR:$a, GPR:$b, GPR:$c), IIC_iALU,
Evan Cheng3d92dfd2009-06-25 02:08:06 +0000832 "mls", " $dst, $a, $b, $c",
Evan Cheng36173712009-06-23 17:48:47 +0000833 [(set GPR:$dst, (sub GPR:$c, (mul GPR:$a, GPR:$b)))]>;
834
Evan Chenga5626262009-07-07 01:17:28 +0000835// Extra precision multiplies with low / high results
836let neverHasSideEffects = 1 in {
837let isCommutable = 1 in {
David Goodwincfd67652009-08-06 16:52:47 +0000838def t2SMULL : T2I<(outs GPR:$ldst, GPR:$hdst), (ins GPR:$a, GPR:$b), IIC_iALU,
Evan Chenga5626262009-07-07 01:17:28 +0000839 "smull", " $ldst, $hdst, $a, $b", []>;
840
David Goodwincfd67652009-08-06 16:52:47 +0000841def t2UMULL : T2I<(outs GPR:$ldst, GPR:$hdst), (ins GPR:$a, GPR:$b), IIC_iALU,
Evan Chenga5626262009-07-07 01:17:28 +0000842 "umull", " $ldst, $hdst, $a, $b", []>;
843}
844
845// Multiply + accumulate
David Goodwincfd67652009-08-06 16:52:47 +0000846def t2SMLAL : T2I<(outs GPR:$ldst, GPR:$hdst), (ins GPR:$a, GPR:$b), IIC_iALU,
Evan Chenga5626262009-07-07 01:17:28 +0000847 "smlal", " $ldst, $hdst, $a, $b", []>;
848
David Goodwincfd67652009-08-06 16:52:47 +0000849def t2UMLAL : T2I<(outs GPR:$ldst, GPR:$hdst), (ins GPR:$a, GPR:$b), IIC_iALU,
Evan Chenga5626262009-07-07 01:17:28 +0000850 "umlal", " $ldst, $hdst, $a, $b", []>;
851
David Goodwincfd67652009-08-06 16:52:47 +0000852def t2UMAAL : T2I<(outs GPR:$ldst, GPR:$hdst), (ins GPR:$a, GPR:$b), IIC_iALU,
Evan Chenga5626262009-07-07 01:17:28 +0000853 "umaal", " $ldst, $hdst, $a, $b", []>;
854} // neverHasSideEffects
855
856// Most significant word multiply
David Goodwincfd67652009-08-06 16:52:47 +0000857def t2SMMUL : T2I<(outs GPR:$dst), (ins GPR:$a, GPR:$b), IIC_iALU,
Evan Chenga5626262009-07-07 01:17:28 +0000858 "smmul", " $dst, $a, $b",
859 [(set GPR:$dst, (mulhs GPR:$a, GPR:$b))]>;
860
David Goodwincfd67652009-08-06 16:52:47 +0000861def t2SMMLA : T2I<(outs GPR:$dst), (ins GPR:$a, GPR:$b, GPR:$c), IIC_iALU,
Evan Chenga5626262009-07-07 01:17:28 +0000862 "smmla", " $dst, $a, $b, $c",
863 [(set GPR:$dst, (add (mulhs GPR:$a, GPR:$b), GPR:$c))]>;
864
865
David Goodwincfd67652009-08-06 16:52:47 +0000866def t2SMMLS : T2I <(outs GPR:$dst), (ins GPR:$a, GPR:$b, GPR:$c), IIC_iALU,
Evan Chenga5626262009-07-07 01:17:28 +0000867 "smmls", " $dst, $a, $b, $c",
868 [(set GPR:$dst, (sub GPR:$c, (mulhs GPR:$a, GPR:$b)))]>;
869
870multiclass T2I_smul<string opc, PatFrag opnode> {
David Goodwincfd67652009-08-06 16:52:47 +0000871 def BB : T2I<(outs GPR:$dst), (ins GPR:$a, GPR:$b), IIC_iALU,
Evan Chenga5626262009-07-07 01:17:28 +0000872 !strconcat(opc, "bb"), " $dst, $a, $b",
873 [(set GPR:$dst, (opnode (sext_inreg GPR:$a, i16),
874 (sext_inreg GPR:$b, i16)))]>;
875
David Goodwincfd67652009-08-06 16:52:47 +0000876 def BT : T2I<(outs GPR:$dst), (ins GPR:$a, GPR:$b), IIC_iALU,
Evan Chenga5626262009-07-07 01:17:28 +0000877 !strconcat(opc, "bt"), " $dst, $a, $b",
878 [(set GPR:$dst, (opnode (sext_inreg GPR:$a, i16),
879 (sra GPR:$b, (i32 16))))]>;
880
David Goodwincfd67652009-08-06 16:52:47 +0000881 def TB : T2I<(outs GPR:$dst), (ins GPR:$a, GPR:$b), IIC_iALU,
Evan Chenga5626262009-07-07 01:17:28 +0000882 !strconcat(opc, "tb"), " $dst, $a, $b",
883 [(set GPR:$dst, (opnode (sra GPR:$a, (i32 16)),
884 (sext_inreg GPR:$b, i16)))]>;
885
David Goodwincfd67652009-08-06 16:52:47 +0000886 def TT : T2I<(outs GPR:$dst), (ins GPR:$a, GPR:$b), IIC_iALU,
Evan Chenga5626262009-07-07 01:17:28 +0000887 !strconcat(opc, "tt"), " $dst, $a, $b",
888 [(set GPR:$dst, (opnode (sra GPR:$a, (i32 16)),
889 (sra GPR:$b, (i32 16))))]>;
890
David Goodwincfd67652009-08-06 16:52:47 +0000891 def WB : T2I<(outs GPR:$dst), (ins GPR:$a, GPR:$b), IIC_iALU,
Evan Chenga5626262009-07-07 01:17:28 +0000892 !strconcat(opc, "wb"), " $dst, $a, $b",
893 [(set GPR:$dst, (sra (opnode GPR:$a,
894 (sext_inreg GPR:$b, i16)), (i32 16)))]>;
895
David Goodwincfd67652009-08-06 16:52:47 +0000896 def WT : T2I<(outs GPR:$dst), (ins GPR:$a, GPR:$b), IIC_iALU,
Evan Chenga5626262009-07-07 01:17:28 +0000897 !strconcat(opc, "wt"), " $dst, $a, $b",
898 [(set GPR:$dst, (sra (opnode GPR:$a,
899 (sra GPR:$b, (i32 16))), (i32 16)))]>;
900}
901
902
903multiclass T2I_smla<string opc, PatFrag opnode> {
David Goodwincfd67652009-08-06 16:52:47 +0000904 def BB : T2I<(outs GPR:$dst), (ins GPR:$a, GPR:$b, GPR:$acc), IIC_iALU,
Evan Chenga5626262009-07-07 01:17:28 +0000905 !strconcat(opc, "bb"), " $dst, $a, $b, $acc",
906 [(set GPR:$dst, (add GPR:$acc,
907 (opnode (sext_inreg GPR:$a, i16),
908 (sext_inreg GPR:$b, i16))))]>;
909
David Goodwincfd67652009-08-06 16:52:47 +0000910 def BT : T2I<(outs GPR:$dst), (ins GPR:$a, GPR:$b, GPR:$acc), IIC_iALU,
Evan Chenga5626262009-07-07 01:17:28 +0000911 !strconcat(opc, "bt"), " $dst, $a, $b, $acc",
912 [(set GPR:$dst, (add GPR:$acc, (opnode (sext_inreg GPR:$a, i16),
913 (sra GPR:$b, (i32 16)))))]>;
914
David Goodwincfd67652009-08-06 16:52:47 +0000915 def TB : T2I<(outs GPR:$dst), (ins GPR:$a, GPR:$b, GPR:$acc), IIC_iALU,
Evan Chenga5626262009-07-07 01:17:28 +0000916 !strconcat(opc, "tb"), " $dst, $a, $b, $acc",
917 [(set GPR:$dst, (add GPR:$acc, (opnode (sra GPR:$a, (i32 16)),
918 (sext_inreg GPR:$b, i16))))]>;
919
David Goodwincfd67652009-08-06 16:52:47 +0000920 def TT : T2I<(outs GPR:$dst), (ins GPR:$a, GPR:$b, GPR:$acc), IIC_iALU,
Evan Chenga5626262009-07-07 01:17:28 +0000921 !strconcat(opc, "tt"), " $dst, $a, $b, $acc",
922 [(set GPR:$dst, (add GPR:$acc, (opnode (sra GPR:$a, (i32 16)),
923 (sra GPR:$b, (i32 16)))))]>;
924
David Goodwincfd67652009-08-06 16:52:47 +0000925 def WB : T2I<(outs GPR:$dst), (ins GPR:$a, GPR:$b, GPR:$acc), IIC_iALU,
Evan Chenga5626262009-07-07 01:17:28 +0000926 !strconcat(opc, "wb"), " $dst, $a, $b, $acc",
927 [(set GPR:$dst, (add GPR:$acc, (sra (opnode GPR:$a,
928 (sext_inreg GPR:$b, i16)), (i32 16))))]>;
929
David Goodwincfd67652009-08-06 16:52:47 +0000930 def WT : T2I<(outs GPR:$dst), (ins GPR:$a, GPR:$b, GPR:$acc), IIC_iALU,
Evan Chenga5626262009-07-07 01:17:28 +0000931 !strconcat(opc, "wt"), " $dst, $a, $b, $acc",
932 [(set GPR:$dst, (add GPR:$acc, (sra (opnode GPR:$a,
933 (sra GPR:$b, (i32 16))), (i32 16))))]>;
934}
935
936defm t2SMUL : T2I_smul<"smul", BinOpFrag<(mul node:$LHS, node:$RHS)>>;
937defm t2SMLA : T2I_smla<"smla", BinOpFrag<(mul node:$LHS, node:$RHS)>>;
938
939// TODO: Halfword multiple accumulate long: SMLAL<x><y>
940// TODO: Dual halfword multiple: SMUAD, SMUSD, SMLAD, SMLSD, SMLALD, SMLSLD
941
Evan Cheng36173712009-06-23 17:48:47 +0000942
943//===----------------------------------------------------------------------===//
944// Misc. Arithmetic Instructions.
945//
946
David Goodwincfd67652009-08-06 16:52:47 +0000947def t2CLZ : T2I<(outs GPR:$dst), (ins GPR:$src), IIC_iALU,
Evan Cheng3d92dfd2009-06-25 02:08:06 +0000948 "clz", " $dst, $src",
Evan Cheng36173712009-06-23 17:48:47 +0000949 [(set GPR:$dst, (ctlz GPR:$src))]>;
950
David Goodwincfd67652009-08-06 16:52:47 +0000951def t2REV : T2I<(outs GPR:$dst), (ins GPR:$src), IIC_iALU,
David Goodwin2f6f1132009-07-27 16:31:55 +0000952 "rev", ".w $dst, $src",
Evan Cheng36173712009-06-23 17:48:47 +0000953 [(set GPR:$dst, (bswap GPR:$src))]>;
954
David Goodwincfd67652009-08-06 16:52:47 +0000955def t2REV16 : T2I<(outs GPR:$dst), (ins GPR:$src), IIC_iALU,
David Goodwin2f6f1132009-07-27 16:31:55 +0000956 "rev16", ".w $dst, $src",
Evan Cheng36173712009-06-23 17:48:47 +0000957 [(set GPR:$dst,
958 (or (and (srl GPR:$src, (i32 8)), 0xFF),
959 (or (and (shl GPR:$src, (i32 8)), 0xFF00),
960 (or (and (srl GPR:$src, (i32 8)), 0xFF0000),
961 (and (shl GPR:$src, (i32 8)), 0xFF000000)))))]>;
962
David Goodwincfd67652009-08-06 16:52:47 +0000963def t2REVSH : T2I<(outs GPR:$dst), (ins GPR:$src), IIC_iALU,
David Goodwin2f6f1132009-07-27 16:31:55 +0000964 "revsh", ".w $dst, $src",
Evan Cheng36173712009-06-23 17:48:47 +0000965 [(set GPR:$dst,
966 (sext_inreg
967 (or (srl (and GPR:$src, 0xFFFF), (i32 8)),
968 (shl GPR:$src, (i32 8))), i16))]>;
969
Evan Chengcd0ae282009-07-07 05:35:52 +0000970def t2PKHBT : T2I<(outs GPR:$dst), (ins GPR:$src1, GPR:$src2, i32imm:$shamt),
David Goodwincfd67652009-08-06 16:52:47 +0000971 IIC_iALU, "pkhbt", " $dst, $src1, $src2, LSL $shamt",
Evan Chengcd0ae282009-07-07 05:35:52 +0000972 [(set GPR:$dst, (or (and GPR:$src1, 0xFFFF),
973 (and (shl GPR:$src2, (i32 imm:$shamt)),
974 0xFFFF0000)))]>;
975
976// Alternate cases for PKHBT where identities eliminate some nodes.
977def : T2Pat<(or (and GPR:$src1, 0xFFFF), (and GPR:$src2, 0xFFFF0000)),
978 (t2PKHBT GPR:$src1, GPR:$src2, 0)>;
979def : T2Pat<(or (and GPR:$src1, 0xFFFF), (shl GPR:$src2, imm16_31:$shamt)),
980 (t2PKHBT GPR:$src1, GPR:$src2, imm16_31:$shamt)>;
981
982def t2PKHTB : T2I<(outs GPR:$dst), (ins GPR:$src1, GPR:$src2, i32imm:$shamt),
David Goodwincfd67652009-08-06 16:52:47 +0000983 IIC_iALU, "pkhtb", " $dst, $src1, $src2, ASR $shamt",
Evan Chengcd0ae282009-07-07 05:35:52 +0000984 [(set GPR:$dst, (or (and GPR:$src1, 0xFFFF0000),
985 (and (sra GPR:$src2, imm16_31:$shamt),
986 0xFFFF)))]>;
987
988// Alternate cases for PKHTB where identities eliminate some nodes. Note that
989// a shift amount of 0 is *not legal* here, it is PKHBT instead.
990def : T2Pat<(or (and GPR:$src1, 0xFFFF0000), (srl GPR:$src2, (i32 16))),
991 (t2PKHTB GPR:$src1, GPR:$src2, 16)>;
992def : T2Pat<(or (and GPR:$src1, 0xFFFF0000),
993 (and (srl GPR:$src2, imm1_15:$shamt), 0xFFFF)),
994 (t2PKHTB GPR:$src1, GPR:$src2, imm1_15:$shamt)>;
Evan Cheng36173712009-06-23 17:48:47 +0000995
996//===----------------------------------------------------------------------===//
997// Comparison Instructions...
998//
999
1000defm t2CMP : T2I_cmp_is<"cmp",
1001 BinOpFrag<(ARMcmp node:$LHS, node:$RHS)>>;
David Goodwin8bdcbb32009-06-29 15:33:01 +00001002defm t2CMPz : T2I_cmp_is<"cmp",
1003 BinOpFrag<(ARMcmpZ node:$LHS, node:$RHS)>>;
Evan Cheng36173712009-06-23 17:48:47 +00001004
1005defm t2CMN : T2I_cmp_is<"cmn",
1006 BinOpFrag<(ARMcmp node:$LHS,(ineg node:$RHS))>>;
David Goodwin8bdcbb32009-06-29 15:33:01 +00001007defm t2CMNz : T2I_cmp_is<"cmn",
1008 BinOpFrag<(ARMcmpZ node:$LHS,(ineg node:$RHS))>>;
Evan Cheng36173712009-06-23 17:48:47 +00001009
Evan Cheng19bb7c72009-06-27 02:26:13 +00001010def : T2Pat<(ARMcmp GPR:$src, t2_so_imm_neg:$imm),
1011 (t2CMNri GPR:$src, t2_so_imm_neg:$imm)>;
Evan Cheng36173712009-06-23 17:48:47 +00001012
David Goodwin8bdcbb32009-06-29 15:33:01 +00001013def : T2Pat<(ARMcmpZ GPR:$src, t2_so_imm_neg:$imm),
Evan Cheng19bb7c72009-06-27 02:26:13 +00001014 (t2CMNri GPR:$src, t2_so_imm_neg:$imm)>;
Evan Cheng36173712009-06-23 17:48:47 +00001015
David Goodwinec52c892009-06-29 22:49:42 +00001016defm t2TST : T2I_cmp_is<"tst",
1017 BinOpFrag<(ARMcmpZ (and node:$LHS, node:$RHS), 0)>>;
1018defm t2TEQ : T2I_cmp_is<"teq",
1019 BinOpFrag<(ARMcmpZ (xor node:$LHS, node:$RHS), 0)>>;
Evan Cheng36173712009-06-23 17:48:47 +00001020
1021// A8.6.27 CBNZ, CBZ - Compare and branch on (non)zero.
1022// Short range conditional branch. Looks awesome for loops. Need to figure
1023// out how to use this one.
1024
Evan Cheng03137672009-07-07 20:39:03 +00001025
1026// Conditional moves
1027// FIXME: should be able to write a pattern for ARMcmov, but can't use
1028// a two-value operand where a dag node expects two operands. :(
David Goodwincfd67652009-08-06 16:52:47 +00001029def t2MOVCCr : T2I<(outs GPR:$dst), (ins GPR:$false, GPR:$true), IIC_iALU,
Evan Chengdec08242009-07-31 22:21:55 +00001030 "mov", ".w $dst, $true",
Evan Cheng03137672009-07-07 20:39:03 +00001031 [/*(set GPR:$dst, (ARMcmov GPR:$false, GPR:$true, imm:$cc, CCR:$ccr))*/]>,
1032 RegConstraint<"$false = $dst">;
1033
David Goodwincfd67652009-08-06 16:52:47 +00001034def t2MOVCCi : T2I<(outs GPR:$dst), (ins GPR:$false, t2_so_imm:$true), IIC_iALU,
Evan Chengdec08242009-07-31 22:21:55 +00001035 "mov", ".w $dst, $true",
Evan Cheng03137672009-07-07 20:39:03 +00001036[/*(set GPR:$dst, (ARMcmov GPR:$false, t2_so_imm:$true, imm:$cc, CCR:$ccr))*/]>,
1037 RegConstraint<"$false = $dst">;
Evan Cheng36173712009-06-23 17:48:47 +00001038
Evan Cheng7c002f32009-08-01 01:43:45 +00001039def t2MOVCClsl : T2I<(outs GPR:$dst), (ins GPR:$false, GPR:$true, i32imm:$rhs),
David Goodwincfd67652009-08-06 16:52:47 +00001040 IIC_iALU, "lsl", ".w $dst, $true, $rhs", []>,
Evan Cheng7c002f32009-08-01 01:43:45 +00001041 RegConstraint<"$false = $dst">;
1042def t2MOVCClsr : T2I<(outs GPR:$dst), (ins GPR:$false, GPR:$true, i32imm:$rhs),
David Goodwincfd67652009-08-06 16:52:47 +00001043 IIC_iALU, "lsr", ".w $dst, $true, $rhs", []>,
Evan Cheng7c002f32009-08-01 01:43:45 +00001044 RegConstraint<"$false = $dst">;
1045def t2MOVCCasr : T2I<(outs GPR:$dst), (ins GPR:$false, GPR:$true, i32imm:$rhs),
David Goodwincfd67652009-08-06 16:52:47 +00001046 IIC_iALU, "asr", ".w $dst, $true, $rhs", []>,
Evan Cheng7c002f32009-08-01 01:43:45 +00001047 RegConstraint<"$false = $dst">;
1048def t2MOVCCror : T2I<(outs GPR:$dst), (ins GPR:$false, GPR:$true, i32imm:$rhs),
David Goodwincfd67652009-08-06 16:52:47 +00001049 IIC_iALU, "ror", ".w $dst, $true, $rhs", []>,
Evan Cheng7c002f32009-08-01 01:43:45 +00001050 RegConstraint<"$false = $dst">;
1051
David Goodwinf6154702009-06-30 18:04:13 +00001052//===----------------------------------------------------------------------===//
David Goodwin41afec22009-07-08 16:09:28 +00001053// TLS Instructions
1054//
1055
1056// __aeabi_read_tp preserves the registers r1-r3.
1057let isCall = 1,
1058 Defs = [R0, R12, LR, CPSR] in {
David Goodwincfd67652009-08-06 16:52:47 +00001059 def t2TPsoft : T2XI<(outs), (ins), IIC_Br,
David Goodwin41afec22009-07-08 16:09:28 +00001060 "bl __aeabi_read_tp",
1061 [(set R0, ARMthread_pointer)]>;
1062}
1063
1064//===----------------------------------------------------------------------===//
David Goodwinf6154702009-06-30 18:04:13 +00001065// Control-Flow Instructions
1066//
1067
Evan Chengad877c82009-07-09 22:58:39 +00001068// FIXME: remove when we have a way to marking a MI with these properties.
1069// FIXME: $dst1 should be a def. But the extra ops must be in the end of the
1070// operand list.
1071// FIXME: Should pc be an implicit operand like PICADD, etc?
1072let isReturn = 1, isTerminator = 1, mayLoad = 1 in
1073 def t2LDM_RET : T2XI<(outs),
1074 (ins addrmode4:$addr, pred:$p, reglist:$dst1, variable_ops),
Evan Cheng9b531042009-08-07 21:19:10 +00001075 IIC_iLoad, "ldm${addr:submode}${p}${addr:wide} $addr, $dst1",
Evan Chengad877c82009-07-09 22:58:39 +00001076 []>;
1077
David Goodwinf6154702009-06-30 18:04:13 +00001078let isBranch = 1, isTerminator = 1, isBarrier = 1 in {
1079let isPredicable = 1 in
David Goodwincfd67652009-08-06 16:52:47 +00001080def t2B : T2XI<(outs), (ins brtarget:$target), IIC_Br,
David Goodwin2f6f1132009-07-27 16:31:55 +00001081 "b.w $target",
David Goodwinf6154702009-06-30 18:04:13 +00001082 [(br bb:$target)]>;
1083
Evan Cheng1b2b3e22009-07-29 02:18:14 +00001084let isNotDuplicable = 1, isIndirectBranch = 1 in {
Evan Cheng6e2ebc92009-07-25 00:33:29 +00001085def t2BR_JT :
Evan Cheng1b2b3e22009-07-29 02:18:14 +00001086 T2JTI<(outs),
1087 (ins GPR:$target, GPR:$index, jt2block_operand:$jt, i32imm:$id),
David Goodwincfd67652009-08-06 16:52:47 +00001088 IIC_Br, "mov pc, $target\n$jt",
Evan Cheng1b2b3e22009-07-29 02:18:14 +00001089 [(ARMbr2jt GPR:$target, GPR:$index, tjumptable:$jt, imm:$id)]>;
1090
Evan Cheng04f40fa2009-08-01 06:13:52 +00001091// FIXME: Add a non-pc based case that can be predicated.
Evan Cheng1b2b3e22009-07-29 02:18:14 +00001092def t2TBB :
Evan Cheng04f40fa2009-08-01 06:13:52 +00001093 T2JTI<(outs),
Evan Cheng1b2b3e22009-07-29 02:18:14 +00001094 (ins tb_addrmode:$index, jt2block_operand:$jt, i32imm:$id),
David Goodwincfd67652009-08-06 16:52:47 +00001095 IIC_Br, "tbb $index\n$jt", []>;
Evan Cheng1b2b3e22009-07-29 02:18:14 +00001096
1097def t2TBH :
Evan Cheng04f40fa2009-08-01 06:13:52 +00001098 T2JTI<(outs),
Evan Cheng1b2b3e22009-07-29 02:18:14 +00001099 (ins tb_addrmode:$index, jt2block_operand:$jt, i32imm:$id),
David Goodwincfd67652009-08-06 16:52:47 +00001100 IIC_Br, "tbh $index\n$jt", []>;
Evan Cheng1b2b3e22009-07-29 02:18:14 +00001101} // isNotDuplicable, isIndirectBranch
1102
David Goodwin13d2f4e2009-06-30 19:50:22 +00001103} // isBranch, isTerminator, isBarrier
David Goodwinf6154702009-06-30 18:04:13 +00001104
1105// FIXME: should be able to write a pattern for ARMBrcond, but can't use
1106// a two-value operand where a dag node expects two operands. :(
1107let isBranch = 1, isTerminator = 1 in
David Goodwincfd67652009-08-06 16:52:47 +00001108def t2Bcc : T2I<(outs), (ins brtarget:$target), IIC_Br,
David Goodwin2f6f1132009-07-27 16:31:55 +00001109 "b", ".w $target",
David Goodwinf6154702009-06-30 18:04:13 +00001110 [/*(ARMbrcond bb:$target, imm:$cc)*/]>;
Evan Cheng36173712009-06-23 17:48:47 +00001111
Evan Chengd5b67fa2009-07-10 01:54:42 +00001112
1113// IT block
1114def t2IT : Thumb2XI<(outs), (ins it_pred:$cc, it_mask:$mask),
David Goodwincfd67652009-08-06 16:52:47 +00001115 AddrModeNone, Size2Bytes, IIC_iALU,
Evan Chengd5b67fa2009-07-10 01:54:42 +00001116 "it$mask $cc", "", []>;
1117
Evan Cheng36173712009-06-23 17:48:47 +00001118//===----------------------------------------------------------------------===//
1119// Non-Instruction Patterns
1120//
1121
Evan Cheng41799702009-06-24 23:47:58 +00001122// ConstantPool, GlobalAddress, and JumpTable
Evan Cheng19bb7c72009-06-27 02:26:13 +00001123def : T2Pat<(ARMWrapper tglobaladdr :$dst), (t2LEApcrel tglobaladdr :$dst)>;
1124def : T2Pat<(ARMWrapper tconstpool :$dst), (t2LEApcrel tconstpool :$dst)>;
1125def : T2Pat<(ARMWrapperJT tjumptable:$dst, imm:$id),
1126 (t2LEApcrelJT tjumptable:$dst, imm:$id)>;
Evan Cheng41799702009-06-24 23:47:58 +00001127
Evan Cheng36173712009-06-23 17:48:47 +00001128// Large immediate handling.
1129
Evan Cheng19bb7c72009-06-27 02:26:13 +00001130def : T2Pat<(i32 imm:$src),
1131 (t2MOVTi16 (t2MOVi16 (t2_lo16 imm:$src)), (t2_hi16 imm:$src))>;