blob: 27c4ef0dbb3fd2c12a26f51e37056233614d49e7 [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, [{
Owen Anderson36e3a6e2009-08-11 20:47:22 +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, [{
Owen Anderson36e3a6e2009-08-11 20:47:22 +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 Cheng532cdc52009-06-29 07:51:04 +000091// Define Thumb2 specific addressing modes.
92
93// t2addrmode_imm12 := reg + imm12
94def t2addrmode_imm12 : Operand<i32>,
95 ComplexPattern<i32, 2, "SelectT2AddrModeImm12", []> {
96 let PrintMethod = "printT2AddrModeImm12Operand";
97 let MIOperandInfo = (ops GPR:$base, i32imm:$offsimm);
98}
99
David Goodwin7938afc2009-07-24 00:16:18 +0000100// t2addrmode_imm8 := reg - imm8
Evan Cheng532cdc52009-06-29 07:51:04 +0000101def t2addrmode_imm8 : Operand<i32>,
102 ComplexPattern<i32, 2, "SelectT2AddrModeImm8", []> {
103 let PrintMethod = "printT2AddrModeImm8Operand";
104 let MIOperandInfo = (ops GPR:$base, i32imm:$offsimm);
105}
106
Evan Cheng24f87d82009-07-03 00:06:39 +0000107def t2am_imm8_offset : Operand<i32>,
108 ComplexPattern<i32, 1, "SelectT2AddrModeImm8Offset", []>{
Evan Chenga90942e2009-07-02 07:28:31 +0000109 let PrintMethod = "printT2AddrModeImm8OffsetOperand";
110}
111
Evan Cheng6bc67202009-07-09 22:21:59 +0000112// t2addrmode_imm8s4 := reg +/- (imm8 << 2)
David Goodwin2af7ed82009-06-30 22:50:01 +0000113def t2addrmode_imm8s4 : Operand<i32>,
114 ComplexPattern<i32, 2, "SelectT2AddrModeImm8s4", []> {
Evan Cheng6bc67202009-07-09 22:21:59 +0000115 let PrintMethod = "printT2AddrModeImm8s4Operand";
David Goodwin2af7ed82009-06-30 22:50:01 +0000116 let MIOperandInfo = (ops GPR:$base, i32imm:$offsimm);
117}
118
Evan Cheng4df2ea72009-07-09 20:40:44 +0000119// t2addrmode_so_reg := reg + (reg << imm2)
Evan Cheng532cdc52009-06-29 07:51:04 +0000120def t2addrmode_so_reg : Operand<i32>,
121 ComplexPattern<i32, 3, "SelectT2AddrModeSoReg", []> {
122 let PrintMethod = "printT2AddrModeSoRegOperand";
123 let MIOperandInfo = (ops GPR:$base, GPR:$offsreg, i32imm:$offsimm);
124}
125
126
Anton Korobeynikovac869fc2009-06-17 18:13:58 +0000127//===----------------------------------------------------------------------===//
Evan Cheng19bb7c72009-06-27 02:26:13 +0000128// Multiclass helpers...
Anton Korobeynikovac869fc2009-06-17 18:13:58 +0000129//
130
Evan Chengf7f986d2009-06-23 19:39:13 +0000131/// T2I_un_irs - Defines a set of (op reg, {so_imm|r|so_reg}) patterns for a
Evan Cheng3d92dfd2009-06-25 02:08:06 +0000132/// unary operation that produces a value. These are predicable and can be
133/// changed to modify CPSR.
Evan Chengf7f986d2009-06-23 19:39:13 +0000134multiclass T2I_un_irs<string opc, PatFrag opnode, bit Cheap = 0, bit ReMat = 0>{
135 // shifted imm
David Goodwin236ccb52009-08-19 18:00:44 +0000136 def i : T2sI<(outs GPR:$dst), (ins t2_so_imm:$src), IIC_iMOVi,
Evan Cheng3d92dfd2009-06-25 02:08:06 +0000137 opc, " $dst, $src",
Evan Chengf7f986d2009-06-23 19:39:13 +0000138 [(set GPR:$dst, (opnode t2_so_imm:$src))]> {
139 let isAsCheapAsAMove = Cheap;
140 let isReMaterializable = ReMat;
141 }
142 // register
David Goodwin236ccb52009-08-19 18:00:44 +0000143 def r : T2I<(outs GPR:$dst), (ins GPR:$src), IIC_iMOVr,
David Goodwin2f6f1132009-07-27 16:31:55 +0000144 opc, ".w $dst, $src",
Evan Chengf7f986d2009-06-23 19:39:13 +0000145 [(set GPR:$dst, (opnode GPR:$src))]>;
146 // shifted register
David Goodwin236ccb52009-08-19 18:00:44 +0000147 def s : T2I<(outs GPR:$dst), (ins t2_so_reg:$src), IIC_iMOVsi,
David Goodwin2f6f1132009-07-27 16:31:55 +0000148 opc, ".w $dst, $src",
Evan Cheng3d92dfd2009-06-25 02:08:06 +0000149 [(set GPR:$dst, (opnode t2_so_reg:$src))]>;
Evan Chengf7f986d2009-06-23 19:39:13 +0000150}
151
152/// T2I_bin_irs - Defines a set of (op reg, {so_imm|r|so_reg}) patterns for a
Evan Cheng3d92dfd2009-06-25 02:08:06 +0000153// binary operation that produces a value. These are predicable and can be
154/// changed to modify CPSR.
David Goodwin87affb92009-07-27 23:34:12 +0000155multiclass T2I_bin_irs<string opc, PatFrag opnode,
156 bit Commutable = 0, string wide =""> {
Anton Korobeynikovac869fc2009-06-17 18:13:58 +0000157 // shifted imm
David Goodwin236ccb52009-08-19 18:00:44 +0000158 def ri : T2sI<(outs GPR:$dst), (ins GPR:$lhs, t2_so_imm:$rhs), IIC_iALUi,
Evan Cheng3d92dfd2009-06-25 02:08:06 +0000159 opc, " $dst, $lhs, $rhs",
160 [(set GPR:$dst, (opnode GPR:$lhs, t2_so_imm:$rhs))]>;
Evan Chengf7f986d2009-06-23 19:39:13 +0000161 // register
David Goodwin236ccb52009-08-19 18:00:44 +0000162 def rr : T2sI<(outs GPR:$dst), (ins GPR:$lhs, GPR:$rhs), IIC_iALUr,
David Goodwin87affb92009-07-27 23:34:12 +0000163 opc, !strconcat(wide, " $dst, $lhs, $rhs"),
Evan Chengbdd679a2009-06-26 00:19:44 +0000164 [(set GPR:$dst, (opnode GPR:$lhs, GPR:$rhs))]> {
165 let isCommutable = Commutable;
166 }
Anton Korobeynikovac869fc2009-06-17 18:13:58 +0000167 // shifted register
David Goodwin236ccb52009-08-19 18:00:44 +0000168 def rs : T2sI<(outs GPR:$dst), (ins GPR:$lhs, t2_so_reg:$rhs), IIC_iALUsi,
David Goodwin87affb92009-07-27 23:34:12 +0000169 opc, !strconcat(wide, " $dst, $lhs, $rhs"),
Evan Cheng3d92dfd2009-06-25 02:08:06 +0000170 [(set GPR:$dst, (opnode GPR:$lhs, t2_so_reg:$rhs))]>;
Anton Korobeynikovac869fc2009-06-17 18:13:58 +0000171}
172
David Goodwin87affb92009-07-27 23:34:12 +0000173/// T2I_bin_w_irs - Same as T2I_bin_irs except these operations need
174// the ".w" prefix to indicate that they are wide.
175multiclass T2I_bin_w_irs<string opc, PatFrag opnode, bit Commutable = 0> :
176 T2I_bin_irs<opc, opnode, Commutable, ".w">;
177
Evan Chengd4e2f052009-06-25 20:59:23 +0000178/// T2I_rbin_is - Same as T2I_bin_irs except the order of operands are
179/// reversed. It doesn't define the 'rr' form since it's handled by its
180/// T2I_bin_irs counterpart.
181multiclass T2I_rbin_is<string opc, PatFrag opnode> {
Evan Cheng36173712009-06-23 17:48:47 +0000182 // shifted imm
David Goodwin236ccb52009-08-19 18:00:44 +0000183 def ri : T2I<(outs GPR:$dst), (ins GPR:$rhs, t2_so_imm:$lhs), IIC_iALUi,
David Goodwin2f6f1132009-07-27 16:31:55 +0000184 opc, ".w $dst, $rhs, $lhs",
Evan Cheng36173712009-06-23 17:48:47 +0000185 [(set GPR:$dst, (opnode t2_so_imm:$lhs, GPR:$rhs))]>;
186 // shifted register
David Goodwin236ccb52009-08-19 18:00:44 +0000187 def rs : T2I<(outs GPR:$dst), (ins GPR:$rhs, t2_so_reg:$lhs), IIC_iALUsi,
Evan Cheng3d92dfd2009-06-25 02:08:06 +0000188 opc, " $dst, $rhs, $lhs",
Evan Cheng36173712009-06-23 17:48:47 +0000189 [(set GPR:$dst, (opnode t2_so_reg:$lhs, GPR:$rhs))]>;
190}
191
Evan Chengf7f986d2009-06-23 19:39:13 +0000192/// T2I_bin_s_irs - Similar to T2I_bin_irs except it sets the 's' bit so the
Anton Korobeynikovac869fc2009-06-17 18:13:58 +0000193/// instruction modifies the CPSR register.
194let Defs = [CPSR] in {
Evan Chengbdd679a2009-06-26 00:19:44 +0000195multiclass T2I_bin_s_irs<string opc, PatFrag opnode, bit Commutable = 0> {
Anton Korobeynikovac869fc2009-06-17 18:13:58 +0000196 // shifted imm
David Goodwin236ccb52009-08-19 18:00:44 +0000197 def ri : T2I<(outs GPR:$dst), (ins GPR:$lhs, t2_so_imm:$rhs), IIC_iALUi,
David Goodwin2f6f1132009-07-27 16:31:55 +0000198 !strconcat(opc, "s"), ".w $dst, $lhs, $rhs",
Evan Cheng36173712009-06-23 17:48:47 +0000199 [(set GPR:$dst, (opnode GPR:$lhs, t2_so_imm:$rhs))]>;
Evan Chengf7f986d2009-06-23 19:39:13 +0000200 // register
David Goodwin236ccb52009-08-19 18:00:44 +0000201 def rr : T2I<(outs GPR:$dst), (ins GPR:$lhs, GPR:$rhs), IIC_iALUr,
David Goodwin2f6f1132009-07-27 16:31:55 +0000202 !strconcat(opc, "s"), ".w $dst, $lhs, $rhs",
Evan Chengbdd679a2009-06-26 00:19:44 +0000203 [(set GPR:$dst, (opnode GPR:$lhs, GPR:$rhs))]> {
204 let isCommutable = Commutable;
205 }
Anton Korobeynikovac869fc2009-06-17 18:13:58 +0000206 // shifted register
David Goodwin236ccb52009-08-19 18:00:44 +0000207 def rs : T2I<(outs GPR:$dst), (ins GPR:$lhs, t2_so_reg:$rhs), IIC_iALUsi,
David Goodwin2f6f1132009-07-27 16:31:55 +0000208 !strconcat(opc, "s"), ".w $dst, $lhs, $rhs",
Evan Cheng36173712009-06-23 17:48:47 +0000209 [(set GPR:$dst, (opnode GPR:$lhs, t2_so_reg:$rhs))]>;
Anton Korobeynikovac869fc2009-06-17 18:13:58 +0000210}
211}
212
Evan Chengf7f986d2009-06-23 19:39:13 +0000213/// T2I_bin_ii12rs - Defines a set of (op reg, {so_imm|imm0_4095|r|so_reg})
214/// patterns for a binary operation that produces a value.
Evan Chengbdd679a2009-06-26 00:19:44 +0000215multiclass T2I_bin_ii12rs<string opc, PatFrag opnode, bit Commutable = 0> {
Evan Cheng36173712009-06-23 17:48:47 +0000216 // shifted imm
David Goodwin236ccb52009-08-19 18:00:44 +0000217 def ri : T2sI<(outs GPR:$dst), (ins GPR:$lhs, t2_so_imm:$rhs), IIC_iALUi,
David Goodwin2f6f1132009-07-27 16:31:55 +0000218 opc, ".w $dst, $lhs, $rhs",
Evan Cheng3d92dfd2009-06-25 02:08:06 +0000219 [(set GPR:$dst, (opnode GPR:$lhs, t2_so_imm:$rhs))]>;
Evan Cheng36173712009-06-23 17:48:47 +0000220 // 12-bit imm
David Goodwin236ccb52009-08-19 18:00:44 +0000221 def ri12 : T2sI<(outs GPR:$dst), (ins GPR:$lhs, imm0_4095:$rhs), IIC_iALUi,
Evan Cheng3d92dfd2009-06-25 02:08:06 +0000222 !strconcat(opc, "w"), " $dst, $lhs, $rhs",
223 [(set GPR:$dst, (opnode GPR:$lhs, imm0_4095:$rhs))]>;
Evan Chengf7f986d2009-06-23 19:39:13 +0000224 // register
David Goodwin236ccb52009-08-19 18:00:44 +0000225 def rr : T2sI<(outs GPR:$dst), (ins GPR:$lhs, GPR:$rhs), IIC_iALUr,
David Goodwin2f6f1132009-07-27 16:31:55 +0000226 opc, ".w $dst, $lhs, $rhs",
Evan Chengbdd679a2009-06-26 00:19:44 +0000227 [(set GPR:$dst, (opnode GPR:$lhs, GPR:$rhs))]> {
228 let isCommutable = Commutable;
229 }
Evan Cheng36173712009-06-23 17:48:47 +0000230 // shifted register
David Goodwin236ccb52009-08-19 18:00:44 +0000231 def rs : T2sI<(outs GPR:$dst), (ins GPR:$lhs, t2_so_reg:$rhs), IIC_iALUsi,
David Goodwin2f6f1132009-07-27 16:31:55 +0000232 opc, ".w $dst, $lhs, $rhs",
Evan Cheng3d92dfd2009-06-25 02:08:06 +0000233 [(set GPR:$dst, (opnode GPR:$lhs, t2_so_reg:$rhs))]>;
Evan Cheng36173712009-06-23 17:48:47 +0000234}
235
Evan Cheng9b4d26f2009-06-25 23:34:10 +0000236/// 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 +0000237/// binary operation that produces a value and use and define the carry bit.
238/// It's not predicable.
Evan Cheng9b4d26f2009-06-25 23:34:10 +0000239let Uses = [CPSR] in {
Evan Chengbdd679a2009-06-26 00:19:44 +0000240multiclass T2I_adde_sube_irs<string opc, PatFrag opnode, bit Commutable = 0> {
Anton Korobeynikovac869fc2009-06-17 18:13:58 +0000241 // shifted imm
David Goodwin236ccb52009-08-19 18:00:44 +0000242 def ri : T2sI<(outs GPR:$dst), (ins GPR:$lhs, t2_so_imm:$rhs), IIC_iALUi,
David Goodwin3536d172009-06-26 20:45:56 +0000243 opc, " $dst, $lhs, $rhs",
Evan Cheng9b4d26f2009-06-25 23:34:10 +0000244 [(set GPR:$dst, (opnode GPR:$lhs, t2_so_imm:$rhs))]>,
Evan Chengb1b2abc2009-07-02 06:38:40 +0000245 Requires<[IsThumb2, CarryDefIsUnused]>;
Evan Chengf7f986d2009-06-23 19:39:13 +0000246 // register
David Goodwin236ccb52009-08-19 18:00:44 +0000247 def rr : T2sI<(outs GPR:$dst), (ins GPR:$lhs, GPR:$rhs), IIC_iALUr,
David Goodwin2f6f1132009-07-27 16:31:55 +0000248 opc, ".w $dst, $lhs, $rhs",
Evan Cheng9b4d26f2009-06-25 23:34:10 +0000249 [(set GPR:$dst, (opnode GPR:$lhs, GPR:$rhs))]>,
Evan Chengb1b2abc2009-07-02 06:38:40 +0000250 Requires<[IsThumb2, CarryDefIsUnused]> {
Evan Chengbdd679a2009-06-26 00:19:44 +0000251 let isCommutable = Commutable;
252 }
Anton Korobeynikovac869fc2009-06-17 18:13:58 +0000253 // shifted register
David Goodwin236ccb52009-08-19 18:00:44 +0000254 def rs : T2sI<(outs GPR:$dst), (ins GPR:$lhs, t2_so_reg:$rhs), IIC_iALUsi,
David Goodwin2f6f1132009-07-27 16:31:55 +0000255 opc, ".w $dst, $lhs, $rhs",
Evan Cheng9b4d26f2009-06-25 23:34:10 +0000256 [(set GPR:$dst, (opnode GPR:$lhs, t2_so_reg:$rhs))]>,
Evan Chengb1b2abc2009-07-02 06:38:40 +0000257 Requires<[IsThumb2, CarryDefIsUnused]>;
Evan Cheng9b4d26f2009-06-25 23:34:10 +0000258 // Carry setting variants
259 // shifted imm
David Goodwin236ccb52009-08-19 18:00:44 +0000260 def Sri : T2XI<(outs GPR:$dst), (ins GPR:$lhs, t2_so_imm:$rhs), IIC_iALUi,
Evan Cheng9b4d26f2009-06-25 23:34:10 +0000261 !strconcat(opc, "s $dst, $lhs, $rhs"),
262 [(set GPR:$dst, (opnode GPR:$lhs, t2_so_imm:$rhs))]>,
Evan Chengb1b2abc2009-07-02 06:38:40 +0000263 Requires<[IsThumb2, CarryDefIsUsed]> {
Evan Cheng9b4d26f2009-06-25 23:34:10 +0000264 let Defs = [CPSR];
265 }
266 // register
David Goodwin236ccb52009-08-19 18:00:44 +0000267 def Srr : T2XI<(outs GPR:$dst), (ins GPR:$lhs, GPR:$rhs), IIC_iALUr,
David Goodwin2f6f1132009-07-27 16:31:55 +0000268 !strconcat(opc, "s.w $dst, $lhs, $rhs"),
Evan Cheng9b4d26f2009-06-25 23:34:10 +0000269 [(set GPR:$dst, (opnode GPR:$lhs, GPR:$rhs))]>,
Evan Chengb1b2abc2009-07-02 06:38:40 +0000270 Requires<[IsThumb2, CarryDefIsUsed]> {
Evan Cheng9b4d26f2009-06-25 23:34:10 +0000271 let Defs = [CPSR];
Evan Chengbdd679a2009-06-26 00:19:44 +0000272 let isCommutable = Commutable;
273 }
Evan Cheng9b4d26f2009-06-25 23:34:10 +0000274 // shifted register
David Goodwin236ccb52009-08-19 18:00:44 +0000275 def Srs : T2XI<(outs GPR:$dst), (ins GPR:$lhs, t2_so_reg:$rhs), IIC_iALUsi,
David Goodwin2f6f1132009-07-27 16:31:55 +0000276 !strconcat(opc, "s.w $dst, $lhs, $rhs"),
Evan Cheng9b4d26f2009-06-25 23:34:10 +0000277 [(set GPR:$dst, (opnode GPR:$lhs, t2_so_reg:$rhs))]>,
Evan Chengb1b2abc2009-07-02 06:38:40 +0000278 Requires<[IsThumb2, CarryDefIsUsed]> {
Evan Cheng9b4d26f2009-06-25 23:34:10 +0000279 let Defs = [CPSR];
Evan Chengbdd679a2009-06-26 00:19:44 +0000280 }
Evan Cheng36173712009-06-23 17:48:47 +0000281}
282}
283
David Goodwin2f6f1132009-07-27 16:31:55 +0000284/// T2I_rbin_s_is - Same as T2I_rbin_is except sets 's' bit.
Evan Chengd4e2f052009-06-25 20:59:23 +0000285let Defs = [CPSR] in {
286multiclass T2I_rbin_s_is<string opc, PatFrag opnode> {
Evan Cheng36173712009-06-23 17:48:47 +0000287 // shifted imm
Evan Cheng6dadbee2009-08-10 02:37:24 +0000288 def ri : T2XI<(outs GPR:$dst), (ins GPR:$rhs, t2_so_imm:$lhs, cc_out:$s),
David Goodwin236ccb52009-08-19 18:00:44 +0000289 IIC_iALUi,
David Goodwin2f6f1132009-07-27 16:31:55 +0000290 !strconcat(opc, "${s}.w $dst, $rhs, $lhs"),
Evan Cheng3d92dfd2009-06-25 02:08:06 +0000291 [(set GPR:$dst, (opnode t2_so_imm:$lhs, GPR:$rhs))]>;
Evan Cheng36173712009-06-23 17:48:47 +0000292 // shifted register
Evan Cheng6dadbee2009-08-10 02:37:24 +0000293 def rs : T2XI<(outs GPR:$dst), (ins GPR:$rhs, t2_so_reg:$lhs, cc_out:$s),
David Goodwin236ccb52009-08-19 18:00:44 +0000294 IIC_iALUsi,
Evan Cheng3d92dfd2009-06-25 02:08:06 +0000295 !strconcat(opc, "${s} $dst, $rhs, $lhs"),
296 [(set GPR:$dst, (opnode t2_so_reg:$lhs, GPR:$rhs))]>;
Evan Cheng36173712009-06-23 17:48:47 +0000297}
298}
299
Evan Chengf7f986d2009-06-23 19:39:13 +0000300/// T2I_sh_ir - Defines a set of (op reg, {so_imm|r}) patterns for a shift /
301// rotate operation that produces a value.
302multiclass T2I_sh_ir<string opc, PatFrag opnode> {
303 // 5-bit imm
David Goodwin236ccb52009-08-19 18:00:44 +0000304 def ri : T2sI<(outs GPR:$dst), (ins GPR:$lhs, i32imm:$rhs), IIC_iMOVsi,
David Goodwin2f6f1132009-07-27 16:31:55 +0000305 opc, ".w $dst, $lhs, $rhs",
Evan Cheng3d92dfd2009-06-25 02:08:06 +0000306 [(set GPR:$dst, (opnode GPR:$lhs, imm1_31:$rhs))]>;
Evan Chengf7f986d2009-06-23 19:39:13 +0000307 // register
David Goodwin236ccb52009-08-19 18:00:44 +0000308 def rr : T2sI<(outs GPR:$dst), (ins GPR:$lhs, GPR:$rhs), IIC_iMOVsr,
David Goodwin2f6f1132009-07-27 16:31:55 +0000309 opc, ".w $dst, $lhs, $rhs",
Evan Cheng3d92dfd2009-06-25 02:08:06 +0000310 [(set GPR:$dst, (opnode GPR:$lhs, GPR:$rhs))]>;
Evan Chengf7f986d2009-06-23 19:39:13 +0000311}
Evan Cheng36173712009-06-23 17:48:47 +0000312
David Goodwin236ccb52009-08-19 18:00:44 +0000313/// T2I_cmp_is - Defines a set of (op r, {so_imm|r|so_reg}) cmp / test
Evan Chengf7f986d2009-06-23 19:39:13 +0000314/// patterns. Similar to T2I_bin_irs except the instruction does not produce
Evan Cheng36173712009-06-23 17:48:47 +0000315/// a explicit result, only implicitly set CPSR.
David Goodwin97eb10c2009-07-20 22:13:31 +0000316let Defs = [CPSR] in {
Evan Cheng36173712009-06-23 17:48:47 +0000317multiclass T2I_cmp_is<string opc, PatFrag opnode> {
318 // shifted imm
David Goodwin236ccb52009-08-19 18:00:44 +0000319 def ri : T2I<(outs), (ins GPR:$lhs, t2_so_imm:$rhs), IIC_iCMPi,
David Goodwin2f6f1132009-07-27 16:31:55 +0000320 opc, ".w $lhs, $rhs",
Evan Cheng36173712009-06-23 17:48:47 +0000321 [(opnode GPR:$lhs, t2_so_imm:$rhs)]>;
Evan Chengf7f986d2009-06-23 19:39:13 +0000322 // register
David Goodwin236ccb52009-08-19 18:00:44 +0000323 def rr : T2I<(outs), (ins GPR:$lhs, GPR:$rhs), IIC_iCMPr,
David Goodwin2f6f1132009-07-27 16:31:55 +0000324 opc, ".w $lhs, $rhs",
Evan Chengf7f986d2009-06-23 19:39:13 +0000325 [(opnode GPR:$lhs, GPR:$rhs)]>;
Evan Cheng36173712009-06-23 17:48:47 +0000326 // shifted register
David Goodwin236ccb52009-08-19 18:00:44 +0000327 def rs : T2I<(outs), (ins GPR:$lhs, t2_so_reg:$rhs), IIC_iCMPsi,
David Goodwin2f6f1132009-07-27 16:31:55 +0000328 opc, ".w $lhs, $rhs",
Evan Cheng36173712009-06-23 17:48:47 +0000329 [(opnode GPR:$lhs, t2_so_reg:$rhs)]>;
Anton Korobeynikovac869fc2009-06-17 18:13:58 +0000330}
331}
332
Evan Cheng503be112009-06-30 02:15:48 +0000333/// T2I_ld - Defines a set of (op r, {imm12|imm8|so_reg}) load patterns.
334multiclass T2I_ld<string opc, PatFrag opnode> {
David Goodwin236ccb52009-08-19 18:00:44 +0000335 def i12 : T2Ii12<(outs GPR:$dst), (ins t2addrmode_imm12:$addr), IIC_iLoadi,
David Goodwin2f6f1132009-07-27 16:31:55 +0000336 opc, ".w $dst, $addr",
Evan Cheng503be112009-06-30 02:15:48 +0000337 [(set GPR:$dst, (opnode t2addrmode_imm12:$addr))]>;
David Goodwin236ccb52009-08-19 18:00:44 +0000338 def i8 : T2Ii8 <(outs GPR:$dst), (ins t2addrmode_imm8:$addr), IIC_iLoadi,
Evan Cheng503be112009-06-30 02:15:48 +0000339 opc, " $dst, $addr",
340 [(set GPR:$dst, (opnode t2addrmode_imm8:$addr))]>;
David Goodwin236ccb52009-08-19 18:00:44 +0000341 def s : T2Iso <(outs GPR:$dst), (ins t2addrmode_so_reg:$addr), IIC_iLoadr,
David Goodwin2f6f1132009-07-27 16:31:55 +0000342 opc, ".w $dst, $addr",
Evan Cheng503be112009-06-30 02:15:48 +0000343 [(set GPR:$dst, (opnode t2addrmode_so_reg:$addr))]>;
David Goodwin236ccb52009-08-19 18:00:44 +0000344 def pci : T2Ipc <(outs GPR:$dst), (ins i32imm:$addr), IIC_iLoadi,
David Goodwin2f6f1132009-07-27 16:31:55 +0000345 opc, ".w $dst, $addr",
Evan Cheng503be112009-06-30 02:15:48 +0000346 [(set GPR:$dst, (opnode (ARMWrapper tconstpool:$addr)))]>;
347}
348
David Goodwinbab5da12009-06-30 22:11:34 +0000349/// T2I_st - Defines a set of (op r, {imm12|imm8|so_reg}) store patterns.
350multiclass T2I_st<string opc, PatFrag opnode> {
David Goodwin236ccb52009-08-19 18:00:44 +0000351 def i12 : T2Ii12<(outs), (ins GPR:$src, t2addrmode_imm12:$addr), IIC_iStorei,
David Goodwin2f6f1132009-07-27 16:31:55 +0000352 opc, ".w $src, $addr",
David Goodwinbab5da12009-06-30 22:11:34 +0000353 [(opnode GPR:$src, t2addrmode_imm12:$addr)]>;
David Goodwin236ccb52009-08-19 18:00:44 +0000354 def i8 : T2Ii8 <(outs), (ins GPR:$src, t2addrmode_imm8:$addr), IIC_iStorei,
David Goodwinbab5da12009-06-30 22:11:34 +0000355 opc, " $src, $addr",
356 [(opnode GPR:$src, t2addrmode_imm8:$addr)]>;
David Goodwin236ccb52009-08-19 18:00:44 +0000357 def s : T2Iso <(outs), (ins GPR:$src, t2addrmode_so_reg:$addr), IIC_iStorer,
David Goodwin2f6f1132009-07-27 16:31:55 +0000358 opc, ".w $src, $addr",
David Goodwinbab5da12009-06-30 22:11:34 +0000359 [(opnode GPR:$src, t2addrmode_so_reg:$addr)]>;
360}
361
David Goodwin5811e5c2009-07-01 00:01:13 +0000362/// T2I_picld - Defines the PIC load pattern.
363class T2I_picld<string opc, PatFrag opnode> :
David Goodwin236ccb52009-08-19 18:00:44 +0000364 T2I<(outs GPR:$dst), (ins addrmodepc:$addr), IIC_iLoadi,
Evan Cheng3ab67152009-08-28 06:59:37 +0000365 !strconcat("\n${addr:label}:\n\t", opc), " $dst, $addr",
David Goodwin5811e5c2009-07-01 00:01:13 +0000366 [(set GPR:$dst, (opnode addrmodepc:$addr))]>;
367
368/// T2I_picst - Defines the PIC store pattern.
369class T2I_picst<string opc, PatFrag opnode> :
David Goodwin236ccb52009-08-19 18:00:44 +0000370 T2I<(outs), (ins GPR:$src, addrmodepc:$addr), IIC_iStorer,
Evan Cheng3ab67152009-08-28 06:59:37 +0000371 !strconcat("\n${addr:label}:\n\t", opc), " $src, $addr",
David Goodwin5811e5c2009-07-01 00:01:13 +0000372 [(opnode GPR:$src, addrmodepc:$addr)]>;
373
Evan Cheng0f994ed2009-07-03 01:43:10 +0000374
375/// T2I_unary_rrot - A unary operation with two forms: one whose operand is a
376/// register and one whose operand is a register rotated by 8/16/24.
377multiclass T2I_unary_rrot<string opc, PatFrag opnode> {
David Goodwin236ccb52009-08-19 18:00:44 +0000378 def r : T2I<(outs GPR:$dst), (ins GPR:$src), IIC_iUNAr,
379 opc, ".w $dst, $src",
380 [(set GPR:$dst, (opnode GPR:$src))]>;
381 def r_rot : T2I<(outs GPR:$dst), (ins GPR:$src, i32imm:$rot), IIC_iUNAsi,
382 opc, ".w $dst, $src, ror $rot",
383 [(set GPR:$dst, (opnode (rotr GPR:$src, rot_imm:$rot)))]>;
Evan Cheng0f994ed2009-07-03 01:43:10 +0000384}
385
386/// T2I_bin_rrot - A binary operation with two forms: one whose operand is a
387/// register and one whose operand is a register rotated by 8/16/24.
388multiclass T2I_bin_rrot<string opc, PatFrag opnode> {
David Goodwin236ccb52009-08-19 18:00:44 +0000389 def rr : T2I<(outs GPR:$dst), (ins GPR:$LHS, GPR:$RHS), IIC_iALUr,
Evan Cheng0f994ed2009-07-03 01:43:10 +0000390 opc, " $dst, $LHS, $RHS",
391 [(set GPR:$dst, (opnode GPR:$LHS, GPR:$RHS))]>;
392 def rr_rot : T2I<(outs GPR:$dst), (ins GPR:$LHS, GPR:$RHS, i32imm:$rot),
David Goodwin236ccb52009-08-19 18:00:44 +0000393 IIC_iALUsr, opc, " $dst, $LHS, $RHS, ror $rot",
Evan Cheng0f994ed2009-07-03 01:43:10 +0000394 [(set GPR:$dst, (opnode GPR:$LHS,
395 (rotr GPR:$RHS, rot_imm:$rot)))]>;
396}
397
Anton Korobeynikovac869fc2009-06-17 18:13:58 +0000398//===----------------------------------------------------------------------===//
Evan Cheng19bb7c72009-06-27 02:26:13 +0000399// Instructions
400//===----------------------------------------------------------------------===//
401
402//===----------------------------------------------------------------------===//
Evan Cheng41799702009-06-24 23:47:58 +0000403// Miscellaneous Instructions.
404//
405
Evan Cheng41799702009-06-24 23:47:58 +0000406// LEApcrel - Load a pc-relative address into a register without offending the
407// assembler.
David Goodwin236ccb52009-08-19 18:00:44 +0000408def t2LEApcrel : T2XI<(outs GPR:$dst), (ins i32imm:$label, pred:$p), IIC_iALUi,
David Goodwin2f6f1132009-07-27 16:31:55 +0000409 "adr$p.w $dst, #$label", []>;
Evan Cheng41799702009-06-24 23:47:58 +0000410
Evan Cheng3d92dfd2009-06-25 02:08:06 +0000411def t2LEApcrelJT : T2XI<(outs GPR:$dst),
Bob Wilson30ff4492009-08-21 21:58:55 +0000412 (ins i32imm:$label, nohash_imm:$id, pred:$p), IIC_iALUi,
Anton Korobeynikove2be3382009-08-08 23:10:41 +0000413 "adr$p.w $dst, #${label}_${id}", []>;
Evan Cheng41799702009-06-24 23:47:58 +0000414
Evan Cheng815c23a2009-08-07 00:34:42 +0000415// ADD r, sp, {so_imm|i12}
David Goodwin236ccb52009-08-19 18:00:44 +0000416def t2ADDrSPi : T2sI<(outs GPR:$dst), (ins GPR:$sp, t2_so_imm:$imm),
417 IIC_iALUi, "add", ".w $dst, $sp, $imm", []>;
418def t2ADDrSPi12 : T2I<(outs GPR:$dst), (ins GPR:$sp, imm0_4095:$imm),
419 IIC_iALUi, "addw", " $dst, $sp, $imm", []>;
Evan Cheng815c23a2009-08-07 00:34:42 +0000420
421// ADD r, sp, so_reg
David Goodwin236ccb52009-08-19 18:00:44 +0000422def t2ADDrSPs : T2sI<(outs GPR:$dst), (ins GPR:$sp, t2_so_reg:$rhs),
423 IIC_iALUsi, "add", ".w $dst, $sp, $rhs", []>;
Evan Cheng815c23a2009-08-07 00:34:42 +0000424
425// SUB r, sp, {so_imm|i12}
David Goodwin236ccb52009-08-19 18:00:44 +0000426def t2SUBrSPi : T2sI<(outs GPR:$dst), (ins GPR:$sp, t2_so_imm:$imm),
427 IIC_iALUi, "sub", ".w $dst, $sp, $imm", []>;
428def t2SUBrSPi12 : T2I<(outs GPR:$dst), (ins GPR:$sp, imm0_4095:$imm),
429 IIC_iALUi, "subw", " $dst, $sp, $imm", []>;
Evan Cheng815c23a2009-08-07 00:34:42 +0000430
431// SUB r, sp, so_reg
David Goodwin236ccb52009-08-19 18:00:44 +0000432def t2SUBrSPs : T2sI<(outs GPR:$dst), (ins GPR:$sp, t2_so_reg:$rhs),
433 IIC_iALUsi,
Evan Cheng815c23a2009-08-07 00:34:42 +0000434 "sub", " $dst, $sp, $rhs", []>;
435
436
437// Pseudo instruction that will expand into a t2SUBrSPi + a copy.
438let usesCustomDAGSchedInserter = 1 in { // Expanded by the scheduler.
439def t2SUBrSPi_ : PseudoInst<(outs GPR:$dst), (ins GPR:$sp, t2_so_imm:$imm),
440 NoItinerary, "@ sub.w $dst, $sp, $imm", []>;
441def t2SUBrSPi12_ : PseudoInst<(outs GPR:$dst), (ins GPR:$sp, imm0_4095:$imm),
442 NoItinerary, "@ subw $dst, $sp, $imm", []>;
443def t2SUBrSPs_ : PseudoInst<(outs GPR:$dst), (ins GPR:$sp, t2_so_reg:$rhs),
444 NoItinerary, "@ sub $dst, $sp, $rhs", []>;
445} // usesCustomDAGSchedInserter
446
447
Evan Cheng41799702009-06-24 23:47:58 +0000448//===----------------------------------------------------------------------===//
Evan Cheng19bb7c72009-06-27 02:26:13 +0000449// Load / store Instructions.
450//
451
Evan Cheng532cdc52009-06-29 07:51:04 +0000452// Load
Evan Cheng503be112009-06-30 02:15:48 +0000453let canFoldAsLoad = 1 in
454defm t2LDR : T2I_ld<"ldr", UnOpFrag<(load node:$Src)>>;
Evan Cheng532cdc52009-06-29 07:51:04 +0000455
Evan Cheng503be112009-06-30 02:15:48 +0000456// Loads with zero extension
457defm t2LDRH : T2I_ld<"ldrh", UnOpFrag<(zextloadi16 node:$Src)>>;
458defm t2LDRB : T2I_ld<"ldrb", UnOpFrag<(zextloadi8 node:$Src)>>;
Evan Cheng532cdc52009-06-29 07:51:04 +0000459
Evan Cheng503be112009-06-30 02:15:48 +0000460// Loads with sign extension
461defm t2LDRSH : T2I_ld<"ldrsh", UnOpFrag<(sextloadi16 node:$Src)>>;
462defm t2LDRSB : T2I_ld<"ldrsb", UnOpFrag<(sextloadi8 node:$Src)>>;
Evan Cheng532cdc52009-06-29 07:51:04 +0000463
Evan Cheng503be112009-06-30 02:15:48 +0000464let mayLoad = 1 in {
465// Load doubleword
Evan Cheng340684f2009-09-27 09:46:04 +0000466def t2LDRDi8 : T2Ii8s4<(outs GPR:$dst1, GPR:$dst2),
467 (ins t2addrmode_imm8s4:$addr),
468 IIC_iLoadi, "ldrd", " $dst1, $addr", []>;
469def t2LDRDpci : T2Ii8s4<(outs GPR:$dst1, GPR:$dst2),
470 (ins i32imm:$addr), IIC_iLoadi,
471 "ldrd", " $dst1, $addr", []>;
Evan Cheng503be112009-06-30 02:15:48 +0000472}
473
474// zextload i1 -> zextload i8
475def : T2Pat<(zextloadi1 t2addrmode_imm12:$addr),
476 (t2LDRBi12 t2addrmode_imm12:$addr)>;
477def : T2Pat<(zextloadi1 t2addrmode_imm8:$addr),
478 (t2LDRBi8 t2addrmode_imm8:$addr)>;
479def : T2Pat<(zextloadi1 t2addrmode_so_reg:$addr),
480 (t2LDRBs t2addrmode_so_reg:$addr)>;
481def : T2Pat<(zextloadi1 (ARMWrapper tconstpool:$addr)),
482 (t2LDRBpci tconstpool:$addr)>;
483
484// extload -> zextload
485// FIXME: Reduce the number of patterns by legalizing extload to zextload
486// earlier?
487def : T2Pat<(extloadi1 t2addrmode_imm12:$addr),
488 (t2LDRBi12 t2addrmode_imm12:$addr)>;
489def : T2Pat<(extloadi1 t2addrmode_imm8:$addr),
490 (t2LDRBi8 t2addrmode_imm8:$addr)>;
491def : T2Pat<(extloadi1 t2addrmode_so_reg:$addr),
492 (t2LDRBs t2addrmode_so_reg:$addr)>;
493def : T2Pat<(extloadi1 (ARMWrapper tconstpool:$addr)),
494 (t2LDRBpci tconstpool:$addr)>;
495
496def : T2Pat<(extloadi8 t2addrmode_imm12:$addr),
497 (t2LDRBi12 t2addrmode_imm12:$addr)>;
498def : T2Pat<(extloadi8 t2addrmode_imm8:$addr),
499 (t2LDRBi8 t2addrmode_imm8:$addr)>;
500def : T2Pat<(extloadi8 t2addrmode_so_reg:$addr),
501 (t2LDRBs t2addrmode_so_reg:$addr)>;
502def : T2Pat<(extloadi8 (ARMWrapper tconstpool:$addr)),
503 (t2LDRBpci tconstpool:$addr)>;
504
505def : T2Pat<(extloadi16 t2addrmode_imm12:$addr),
506 (t2LDRHi12 t2addrmode_imm12:$addr)>;
507def : T2Pat<(extloadi16 t2addrmode_imm8:$addr),
508 (t2LDRHi8 t2addrmode_imm8:$addr)>;
509def : T2Pat<(extloadi16 t2addrmode_so_reg:$addr),
510 (t2LDRHs t2addrmode_so_reg:$addr)>;
511def : T2Pat<(extloadi16 (ARMWrapper tconstpool:$addr)),
512 (t2LDRHpci tconstpool:$addr)>;
Evan Cheng532cdc52009-06-29 07:51:04 +0000513
Evan Chenga90942e2009-07-02 07:28:31 +0000514// Indexed loads
Evan Chengd72edde2009-07-03 00:08:19 +0000515let mayLoad = 1 in {
Evan Chenga90942e2009-07-02 07:28:31 +0000516def t2LDR_PRE : T2Iidxldst<(outs GPR:$dst, GPR:$base_wb),
517 (ins t2addrmode_imm8:$addr),
David Goodwin236ccb52009-08-19 18:00:44 +0000518 AddrModeT2_i8, IndexModePre, IIC_iLoadiu,
Evan Chenga90942e2009-07-02 07:28:31 +0000519 "ldr", " $dst, $addr!", "$addr.base = $base_wb",
520 []>;
521
522def t2LDR_POST : T2Iidxldst<(outs GPR:$dst, GPR:$base_wb),
523 (ins GPR:$base, t2am_imm8_offset:$offset),
David Goodwin236ccb52009-08-19 18:00:44 +0000524 AddrModeT2_i8, IndexModePost, IIC_iLoadiu,
Evan Chenga90942e2009-07-02 07:28:31 +0000525 "ldr", " $dst, [$base], $offset", "$base = $base_wb",
526 []>;
527
528def t2LDRB_PRE : T2Iidxldst<(outs GPR:$dst, GPR:$base_wb),
529 (ins t2addrmode_imm8:$addr),
David Goodwin236ccb52009-08-19 18:00:44 +0000530 AddrModeT2_i8, IndexModePre, IIC_iLoadiu,
Evan Chenga90942e2009-07-02 07:28:31 +0000531 "ldrb", " $dst, $addr!", "$addr.base = $base_wb",
532 []>;
533def t2LDRB_POST : T2Iidxldst<(outs GPR:$dst, GPR:$base_wb),
534 (ins GPR:$base, t2am_imm8_offset:$offset),
David Goodwin236ccb52009-08-19 18:00:44 +0000535 AddrModeT2_i8, IndexModePost, IIC_iLoadiu,
Evan Chenga90942e2009-07-02 07:28:31 +0000536 "ldrb", " $dst, [$base], $offset", "$base = $base_wb",
537 []>;
538
539def t2LDRH_PRE : T2Iidxldst<(outs GPR:$dst, GPR:$base_wb),
540 (ins t2addrmode_imm8:$addr),
David Goodwin236ccb52009-08-19 18:00:44 +0000541 AddrModeT2_i8, IndexModePre, IIC_iLoadiu,
Evan Chenga90942e2009-07-02 07:28:31 +0000542 "ldrh", " $dst, $addr!", "$addr.base = $base_wb",
543 []>;
544def t2LDRH_POST : T2Iidxldst<(outs GPR:$dst, GPR:$base_wb),
545 (ins GPR:$base, t2am_imm8_offset:$offset),
David Goodwin236ccb52009-08-19 18:00:44 +0000546 AddrModeT2_i8, IndexModePost, IIC_iLoadiu,
Evan Chenga90942e2009-07-02 07:28:31 +0000547 "ldrh", " $dst, [$base], $offset", "$base = $base_wb",
548 []>;
549
Evan Cheng40995c92009-07-02 23:16:11 +0000550def t2LDRSB_PRE : T2Iidxldst<(outs GPR:$dst, GPR:$base_wb),
551 (ins t2addrmode_imm8:$addr),
David Goodwin236ccb52009-08-19 18:00:44 +0000552 AddrModeT2_i8, IndexModePre, IIC_iLoadiu,
Evan Cheng40995c92009-07-02 23:16:11 +0000553 "ldrsb", " $dst, $addr!", "$addr.base = $base_wb",
554 []>;
555def t2LDRSB_POST : T2Iidxldst<(outs GPR:$dst, GPR:$base_wb),
556 (ins GPR:$base, t2am_imm8_offset:$offset),
David Goodwin236ccb52009-08-19 18:00:44 +0000557 AddrModeT2_i8, IndexModePost, IIC_iLoadiu,
Evan Cheng40995c92009-07-02 23:16:11 +0000558 "ldrsb", " $dst, [$base], $offset", "$base = $base_wb",
559 []>;
560
561def t2LDRSH_PRE : T2Iidxldst<(outs GPR:$dst, GPR:$base_wb),
562 (ins t2addrmode_imm8:$addr),
David Goodwin236ccb52009-08-19 18:00:44 +0000563 AddrModeT2_i8, IndexModePre, IIC_iLoadiu,
Evan Cheng40995c92009-07-02 23:16:11 +0000564 "ldrsh", " $dst, $addr!", "$addr.base = $base_wb",
565 []>;
566def t2LDRSH_POST : T2Iidxldst<(outs GPR:$dst, GPR:$base_wb),
567 (ins GPR:$base, t2am_imm8_offset:$offset),
David Goodwin236ccb52009-08-19 18:00:44 +0000568 AddrModeT2_i8, IndexModePost, IIC_iLoadiu,
Evan Cheng40995c92009-07-02 23:16:11 +0000569 "ldrsh", " $dst, [$base], $offset", "$base = $base_wb",
570 []>;
Evan Chengd72edde2009-07-03 00:08:19 +0000571}
Evan Cheng40995c92009-07-02 23:16:11 +0000572
David Goodwinbab5da12009-06-30 22:11:34 +0000573// Store
Evan Chenga90942e2009-07-02 07:28:31 +0000574defm t2STR : T2I_st<"str", BinOpFrag<(store node:$LHS, node:$RHS)>>;
575defm t2STRB : T2I_st<"strb", BinOpFrag<(truncstorei8 node:$LHS, node:$RHS)>>;
576defm t2STRH : T2I_st<"strh", BinOpFrag<(truncstorei16 node:$LHS, node:$RHS)>>;
David Goodwinbab5da12009-06-30 22:11:34 +0000577
David Goodwin2af7ed82009-06-30 22:50:01 +0000578// Store doubleword
579let mayLoad = 1 in
Evan Cheng340684f2009-09-27 09:46:04 +0000580def t2STRDi8 : T2Ii8s4<(outs),
581 (ins GPR:$src1, GPR:$src2, t2addrmode_imm8s4:$addr),
582 IIC_iStorer, "strd", " $src1, $addr", []>;
David Goodwin2af7ed82009-06-30 22:50:01 +0000583
Evan Cheng24f87d82009-07-03 00:06:39 +0000584// Indexed stores
585def t2STR_PRE : T2Iidxldst<(outs GPR:$base_wb),
586 (ins GPR:$src, GPR:$base, t2am_imm8_offset:$offset),
David Goodwin236ccb52009-08-19 18:00:44 +0000587 AddrModeT2_i8, IndexModePre, IIC_iStoreiu,
Evan Cheng24f87d82009-07-03 00:06:39 +0000588 "str", " $src, [$base, $offset]!", "$base = $base_wb",
589 [(set GPR:$base_wb,
590 (pre_store GPR:$src, GPR:$base, t2am_imm8_offset:$offset))]>;
591
592def t2STR_POST : T2Iidxldst<(outs GPR:$base_wb),
593 (ins GPR:$src, GPR:$base, t2am_imm8_offset:$offset),
David Goodwin236ccb52009-08-19 18:00:44 +0000594 AddrModeT2_i8, IndexModePost, IIC_iStoreiu,
Evan Cheng24f87d82009-07-03 00:06:39 +0000595 "str", " $src, [$base], $offset", "$base = $base_wb",
596 [(set GPR:$base_wb,
597 (post_store GPR:$src, GPR:$base, t2am_imm8_offset:$offset))]>;
598
599def t2STRH_PRE : T2Iidxldst<(outs GPR:$base_wb),
600 (ins GPR:$src, GPR:$base, t2am_imm8_offset:$offset),
David Goodwin236ccb52009-08-19 18:00:44 +0000601 AddrModeT2_i8, IndexModePre, IIC_iStoreiu,
Evan Cheng24f87d82009-07-03 00:06:39 +0000602 "strh", " $src, [$base, $offset]!", "$base = $base_wb",
603 [(set GPR:$base_wb,
604 (pre_truncsti16 GPR:$src, GPR:$base, t2am_imm8_offset:$offset))]>;
605
606def t2STRH_POST : T2Iidxldst<(outs GPR:$base_wb),
607 (ins GPR:$src, GPR:$base, t2am_imm8_offset:$offset),
David Goodwin236ccb52009-08-19 18:00:44 +0000608 AddrModeT2_i8, IndexModePost, IIC_iStoreiu,
Evan Cheng24f87d82009-07-03 00:06:39 +0000609 "strh", " $src, [$base], $offset", "$base = $base_wb",
610 [(set GPR:$base_wb,
611 (post_truncsti16 GPR:$src, GPR:$base, t2am_imm8_offset:$offset))]>;
612
613def t2STRB_PRE : T2Iidxldst<(outs GPR:$base_wb),
614 (ins GPR:$src, GPR:$base, t2am_imm8_offset:$offset),
David Goodwin236ccb52009-08-19 18:00:44 +0000615 AddrModeT2_i8, IndexModePre, IIC_iStoreiu,
Evan Cheng24f87d82009-07-03 00:06:39 +0000616 "strb", " $src, [$base, $offset]!", "$base = $base_wb",
617 [(set GPR:$base_wb,
618 (pre_truncsti8 GPR:$src, GPR:$base, t2am_imm8_offset:$offset))]>;
619
620def t2STRB_POST : T2Iidxldst<(outs GPR:$base_wb),
621 (ins GPR:$src, GPR:$base, t2am_imm8_offset:$offset),
David Goodwin236ccb52009-08-19 18:00:44 +0000622 AddrModeT2_i8, IndexModePost, IIC_iStoreiu,
Evan Cheng24f87d82009-07-03 00:06:39 +0000623 "strb", " $src, [$base], $offset", "$base = $base_wb",
624 [(set GPR:$base_wb,
625 (post_truncsti8 GPR:$src, GPR:$base, t2am_imm8_offset:$offset))]>;
626
David Goodwin5811e5c2009-07-01 00:01:13 +0000627
Evan Cheng6bc67202009-07-09 22:21:59 +0000628// FIXME: ldrd / strd pre / post variants
Evan Cheng2832edf2009-07-03 00:18:36 +0000629
630//===----------------------------------------------------------------------===//
631// Load / store multiple Instructions.
632//
633
634let mayLoad = 1 in
635def t2LDM : T2XI<(outs),
636 (ins addrmode4:$addr, pred:$p, reglist:$dst1, variable_ops),
David Goodwin236ccb52009-08-19 18:00:44 +0000637 IIC_iLoadm, "ldm${addr:submode}${p}${addr:wide} $addr, $dst1", []>;
Evan Cheng2832edf2009-07-03 00:18:36 +0000638
639let mayStore = 1 in
640def t2STM : T2XI<(outs),
641 (ins addrmode4:$addr, pred:$p, reglist:$src1, variable_ops),
David Goodwin236ccb52009-08-19 18:00:44 +0000642 IIC_iStorem, "stm${addr:submode}${p}${addr:wide} $addr, $src1", []>;
Evan Cheng2832edf2009-07-03 00:18:36 +0000643
Evan Cheng19bb7c72009-06-27 02:26:13 +0000644//===----------------------------------------------------------------------===//
Anton Korobeynikovac869fc2009-06-17 18:13:58 +0000645// Move Instructions.
646//
Anton Korobeynikovac869fc2009-06-17 18:13:58 +0000647
Evan Cheng36173712009-06-23 17:48:47 +0000648let neverHasSideEffects = 1 in
David Goodwin236ccb52009-08-19 18:00:44 +0000649def t2MOVr : T2sI<(outs GPR:$dst), (ins GPR:$src), IIC_iMOVr,
David Goodwin2f6f1132009-07-27 16:31:55 +0000650 "mov", ".w $dst, $src", []>;
Evan Cheng36173712009-06-23 17:48:47 +0000651
Evan Cheng16c012d2009-09-28 09:14:39 +0000652// AddedComplexity to ensure isel tries t2MOVi before t2MOVi16.
653let isReMaterializable = 1, isAsCheapAsAMove = 1, AddedComplexity = 1 in
David Goodwin236ccb52009-08-19 18:00:44 +0000654def t2MOVi : T2sI<(outs GPR:$dst), (ins t2_so_imm:$src), IIC_iMOVi,
David Goodwin2f6f1132009-07-27 16:31:55 +0000655 "mov", ".w $dst, $src",
David Goodwin2dbffd42009-06-26 16:10:07 +0000656 [(set GPR:$dst, t2_so_imm:$src)]>;
657
658let isReMaterializable = 1, isAsCheapAsAMove = 1 in
David Goodwin236ccb52009-08-19 18:00:44 +0000659def t2MOVi16 : T2I<(outs GPR:$dst), (ins i32imm:$src), IIC_iMOVi,
David Goodwin2dbffd42009-06-26 16:10:07 +0000660 "movw", " $dst, $src",
661 [(set GPR:$dst, imm0_65535:$src)]>;
Evan Cheng36173712009-06-23 17:48:47 +0000662
Evan Cheng42e6ce92009-06-23 05:23:49 +0000663let Constraints = "$src = $dst" in
Evan Cheng16c012d2009-09-28 09:14:39 +0000664def t2MOVTi16 : T2I<(outs GPR:$dst), (ins GPR:$src, i32imm:$imm), IIC_iMOVi,
665 "movt", " $dst, $imm",
666 [(set GPR:$dst,
667 (or (and GPR:$src, 0xffff), lo16AllZero:$imm))]>;
Anton Korobeynikovac869fc2009-06-17 18:13:58 +0000668
669//===----------------------------------------------------------------------===//
Evan Cheng0f994ed2009-07-03 01:43:10 +0000670// Extend Instructions.
671//
672
673// Sign extenders
674
675defm t2SXTB : T2I_unary_rrot<"sxtb", UnOpFrag<(sext_inreg node:$Src, i8)>>;
676defm t2SXTH : T2I_unary_rrot<"sxth", UnOpFrag<(sext_inreg node:$Src, i16)>>;
677
678defm t2SXTAB : T2I_bin_rrot<"sxtab",
679 BinOpFrag<(add node:$LHS, (sext_inreg node:$RHS, i8))>>;
680defm t2SXTAH : T2I_bin_rrot<"sxtah",
681 BinOpFrag<(add node:$LHS, (sext_inreg node:$RHS,i16))>>;
682
683// TODO: SXT(A){B|H}16
684
685// Zero extenders
686
687let AddedComplexity = 16 in {
688defm t2UXTB : T2I_unary_rrot<"uxtb" , UnOpFrag<(and node:$Src, 0x000000FF)>>;
689defm t2UXTH : T2I_unary_rrot<"uxth" , UnOpFrag<(and node:$Src, 0x0000FFFF)>>;
690defm t2UXTB16 : T2I_unary_rrot<"uxtb16", UnOpFrag<(and node:$Src, 0x00FF00FF)>>;
691
692def : T2Pat<(and (shl GPR:$Src, (i32 8)), 0xFF00FF),
693 (t2UXTB16r_rot GPR:$Src, 24)>;
694def : T2Pat<(and (srl GPR:$Src, (i32 8)), 0xFF00FF),
695 (t2UXTB16r_rot GPR:$Src, 8)>;
696
697defm t2UXTAB : T2I_bin_rrot<"uxtab",
698 BinOpFrag<(add node:$LHS, (and node:$RHS, 0x00FF))>>;
699defm t2UXTAH : T2I_bin_rrot<"uxtah",
700 BinOpFrag<(add node:$LHS, (and node:$RHS, 0xFFFF))>>;
701}
702
703//===----------------------------------------------------------------------===//
Anton Korobeynikovac869fc2009-06-17 18:13:58 +0000704// Arithmetic Instructions.
705//
Anton Korobeynikovac869fc2009-06-17 18:13:58 +0000706
Evan Chengbdd679a2009-06-26 00:19:44 +0000707defm t2ADD : T2I_bin_ii12rs<"add", BinOpFrag<(add node:$LHS, node:$RHS)>, 1>;
Evan Chengf7f986d2009-06-23 19:39:13 +0000708defm t2SUB : T2I_bin_ii12rs<"sub", BinOpFrag<(sub node:$LHS, node:$RHS)>>;
Anton Korobeynikovac869fc2009-06-17 18:13:58 +0000709
Evan Cheng36173712009-06-23 17:48:47 +0000710// ADD and SUB with 's' bit set. No 12-bit immediate (T4) variants.
Evan Chengbdd679a2009-06-26 00:19:44 +0000711defm t2ADDS : T2I_bin_s_irs <"add", BinOpFrag<(addc node:$LHS, node:$RHS)>, 1>;
Evan Chengd4e2f052009-06-25 20:59:23 +0000712defm t2SUBS : T2I_bin_s_irs <"sub", BinOpFrag<(subc node:$LHS, node:$RHS)>>;
Anton Korobeynikovac869fc2009-06-17 18:13:58 +0000713
Evan Chengbdd679a2009-06-26 00:19:44 +0000714defm t2ADC : T2I_adde_sube_irs<"adc",BinOpFrag<(adde node:$LHS, node:$RHS)>,1>;
715defm t2SBC : T2I_adde_sube_irs<"sbc",BinOpFrag<(sube node:$LHS, node:$RHS)>>;
Evan Cheng36173712009-06-23 17:48:47 +0000716
David Goodwin3bc1afe2009-07-27 16:39:05 +0000717// RSB
Evan Chengd4e2f052009-06-25 20:59:23 +0000718defm t2RSB : T2I_rbin_is <"rsb", BinOpFrag<(sub node:$LHS, node:$RHS)>>;
719defm t2RSBS : T2I_rbin_s_is <"rsb", BinOpFrag<(subc node:$LHS, node:$RHS)>>;
Evan Cheng36173712009-06-23 17:48:47 +0000720
721// (sub X, imm) gets canonicalized to (add X, -imm). Match this form.
Evan Cheng809fadb2009-08-04 01:41:15 +0000722let AddedComplexity = 1 in
723def : T2Pat<(add GPR:$src, imm0_255_neg:$imm),
724 (t2SUBri GPR:$src, imm0_255_neg:$imm)>;
Evan Cheng19bb7c72009-06-27 02:26:13 +0000725def : T2Pat<(add GPR:$src, t2_so_imm_neg:$imm),
726 (t2SUBri GPR:$src, t2_so_imm_neg:$imm)>;
727def : T2Pat<(add GPR:$src, imm0_4095_neg:$imm),
728 (t2SUBri12 GPR:$src, imm0_4095_neg:$imm)>;
Anton Korobeynikovac869fc2009-06-17 18:13:58 +0000729
730
Evan Cheng36173712009-06-23 17:48:47 +0000731//===----------------------------------------------------------------------===//
Evan Chengf7f986d2009-06-23 19:39:13 +0000732// Shift and rotate Instructions.
733//
734
735defm t2LSL : T2I_sh_ir<"lsl", BinOpFrag<(shl node:$LHS, node:$RHS)>>;
736defm t2LSR : T2I_sh_ir<"lsr", BinOpFrag<(srl node:$LHS, node:$RHS)>>;
737defm t2ASR : T2I_sh_ir<"asr", BinOpFrag<(sra node:$LHS, node:$RHS)>>;
738defm t2ROR : T2I_sh_ir<"ror", BinOpFrag<(rotr node:$LHS, node:$RHS)>>;
739
David Goodwin02b0e352009-09-01 18:32:09 +0000740let Uses = [CPSR] in {
David Goodwin236ccb52009-08-19 18:00:44 +0000741def t2MOVrx : T2sI<(outs GPR:$dst), (ins GPR:$src), IIC_iMOVsi,
David Goodwin02b0e352009-09-01 18:32:09 +0000742 "rrx", " $dst, $src",
Evan Cheng3d92dfd2009-06-25 02:08:06 +0000743 [(set GPR:$dst, (ARMrrx GPR:$src))]>;
David Goodwin02b0e352009-09-01 18:32:09 +0000744}
Evan Chengf7f986d2009-06-23 19:39:13 +0000745
David Goodwin7cdd24c2009-07-28 17:06:49 +0000746let Defs = [CPSR] in {
David Goodwin236ccb52009-08-19 18:00:44 +0000747def t2MOVsrl_flag : T2XI<(outs GPR:$dst), (ins GPR:$src), IIC_iMOVsi,
David Goodwin7cdd24c2009-07-28 17:06:49 +0000748 "lsrs.w $dst, $src, #1",
749 [(set GPR:$dst, (ARMsrl_flag GPR:$src))]>;
David Goodwin236ccb52009-08-19 18:00:44 +0000750def t2MOVsra_flag : T2XI<(outs GPR:$dst), (ins GPR:$src), IIC_iMOVsi,
David Goodwin7cdd24c2009-07-28 17:06:49 +0000751 "asrs.w $dst, $src, #1",
752 [(set GPR:$dst, (ARMsra_flag GPR:$src))]>;
753}
754
Evan Chengf7f986d2009-06-23 19:39:13 +0000755//===----------------------------------------------------------------------===//
Evan Cheng36173712009-06-23 17:48:47 +0000756// Bitwise Instructions.
757//
Anton Korobeynikovac869fc2009-06-17 18:13:58 +0000758
David Goodwin87affb92009-07-27 23:34:12 +0000759defm t2AND : T2I_bin_w_irs<"and", BinOpFrag<(and node:$LHS, node:$RHS)>, 1>;
760defm t2ORR : T2I_bin_w_irs<"orr", BinOpFrag<(or node:$LHS, node:$RHS)>, 1>;
761defm t2EOR : T2I_bin_w_irs<"eor", BinOpFrag<(xor node:$LHS, node:$RHS)>, 1>;
Evan Cheng36173712009-06-23 17:48:47 +0000762
David Goodwin87affb92009-07-27 23:34:12 +0000763defm t2BIC : T2I_bin_w_irs<"bic", BinOpFrag<(and node:$LHS, (not node:$RHS))>>;
Evan Cheng36173712009-06-23 17:48:47 +0000764
Evan Cheng36173712009-06-23 17:48:47 +0000765let Constraints = "$src = $dst" in
David Goodwin236ccb52009-08-19 18:00:44 +0000766def t2BFC : T2I<(outs GPR:$dst), (ins GPR:$src, bf_inv_mask_imm:$imm),
767 IIC_iALUi, "bfc", " $dst, $imm",
Evan Cheng36173712009-06-23 17:48:47 +0000768 [(set GPR:$dst, (and GPR:$src, bf_inv_mask_imm:$imm))]>;
769
770// FIXME: A8.6.18 BFI - Bitfield insert (Encoding T1)
771
David Goodwin481216a2009-07-30 21:51:41 +0000772defm t2ORN : T2I_bin_irs<"orn", BinOpFrag<(or node:$LHS, (not node:$RHS))>>;
Evan Cheng299ee652009-07-06 22:23:46 +0000773
774// Prefer over of t2EORri ra, rb, -1 because mvn has 16-bit version
775let AddedComplexity = 1 in
776defm t2MVN : T2I_un_irs <"mvn", UnOpFrag<(not node:$Src)>, 1, 1>;
777
778
779def : T2Pat<(and GPR:$src, t2_so_imm_not:$imm),
780 (t2BICri GPR:$src, t2_so_imm_not:$imm)>;
781
Evan Cheng04f40fa2009-08-01 06:13:52 +0000782// FIXME: Disable this pattern on Darwin to workaround an assembler bug.
David Goodwin481216a2009-07-30 21:51:41 +0000783def : T2Pat<(or GPR:$src, t2_so_imm_not:$imm),
Evan Cheng04f40fa2009-08-01 06:13:52 +0000784 (t2ORNri GPR:$src, t2_so_imm_not:$imm)>,
Evan Chengf9e5b5e2009-08-12 01:56:42 +0000785 Requires<[IsThumb2]>;
Evan Cheng299ee652009-07-06 22:23:46 +0000786
787def : T2Pat<(t2_so_imm_not:$src),
788 (t2MVNi t2_so_imm_not:$src)>;
789
Evan Cheng36173712009-06-23 17:48:47 +0000790//===----------------------------------------------------------------------===//
791// Multiply Instructions.
792//
Evan Chengbdd679a2009-06-26 00:19:44 +0000793let isCommutable = 1 in
David Goodwin236ccb52009-08-19 18:00:44 +0000794def t2MUL: T2I<(outs GPR:$dst), (ins GPR:$a, GPR:$b), IIC_iMUL32,
Evan Cheng3d92dfd2009-06-25 02:08:06 +0000795 "mul", " $dst, $a, $b",
Evan Cheng36173712009-06-23 17:48:47 +0000796 [(set GPR:$dst, (mul GPR:$a, GPR:$b))]>;
797
David Goodwin236ccb52009-08-19 18:00:44 +0000798def t2MLA: T2I<(outs GPR:$dst), (ins GPR:$a, GPR:$b, GPR:$c), IIC_iMAC32,
Evan Cheng3d92dfd2009-06-25 02:08:06 +0000799 "mla", " $dst, $a, $b, $c",
Evan Cheng36173712009-06-23 17:48:47 +0000800 [(set GPR:$dst, (add (mul GPR:$a, GPR:$b), GPR:$c))]>;
801
David Goodwin236ccb52009-08-19 18:00:44 +0000802def t2MLS: T2I<(outs GPR:$dst), (ins GPR:$a, GPR:$b, GPR:$c), IIC_iMAC32,
Evan Cheng3d92dfd2009-06-25 02:08:06 +0000803 "mls", " $dst, $a, $b, $c",
Evan Cheng36173712009-06-23 17:48:47 +0000804 [(set GPR:$dst, (sub GPR:$c, (mul GPR:$a, GPR:$b)))]>;
805
Evan Chenga5626262009-07-07 01:17:28 +0000806// Extra precision multiplies with low / high results
807let neverHasSideEffects = 1 in {
808let isCommutable = 1 in {
David Goodwin236ccb52009-08-19 18:00:44 +0000809def t2SMULL : T2I<(outs GPR:$ldst, GPR:$hdst), (ins GPR:$a, GPR:$b), IIC_iMUL64,
Evan Chenga5626262009-07-07 01:17:28 +0000810 "smull", " $ldst, $hdst, $a, $b", []>;
811
David Goodwin236ccb52009-08-19 18:00:44 +0000812def t2UMULL : T2I<(outs GPR:$ldst, GPR:$hdst), (ins GPR:$a, GPR:$b), IIC_iMUL64,
Evan Chenga5626262009-07-07 01:17:28 +0000813 "umull", " $ldst, $hdst, $a, $b", []>;
814}
815
816// Multiply + accumulate
David Goodwin236ccb52009-08-19 18:00:44 +0000817def t2SMLAL : T2I<(outs GPR:$ldst, GPR:$hdst), (ins GPR:$a, GPR:$b), IIC_iMAC64,
Evan Chenga5626262009-07-07 01:17:28 +0000818 "smlal", " $ldst, $hdst, $a, $b", []>;
819
David Goodwin236ccb52009-08-19 18:00:44 +0000820def t2UMLAL : T2I<(outs GPR:$ldst, GPR:$hdst), (ins GPR:$a, GPR:$b), IIC_iMAC64,
Evan Chenga5626262009-07-07 01:17:28 +0000821 "umlal", " $ldst, $hdst, $a, $b", []>;
822
David Goodwin236ccb52009-08-19 18:00:44 +0000823def t2UMAAL : T2I<(outs GPR:$ldst, GPR:$hdst), (ins GPR:$a, GPR:$b), IIC_iMAC64,
Evan Chenga5626262009-07-07 01:17:28 +0000824 "umaal", " $ldst, $hdst, $a, $b", []>;
825} // neverHasSideEffects
826
827// Most significant word multiply
David Goodwin236ccb52009-08-19 18:00:44 +0000828def t2SMMUL : T2I<(outs GPR:$dst), (ins GPR:$a, GPR:$b), IIC_iMUL32,
Evan Chenga5626262009-07-07 01:17:28 +0000829 "smmul", " $dst, $a, $b",
830 [(set GPR:$dst, (mulhs GPR:$a, GPR:$b))]>;
831
David Goodwin236ccb52009-08-19 18:00:44 +0000832def t2SMMLA : T2I<(outs GPR:$dst), (ins GPR:$a, GPR:$b, GPR:$c), IIC_iMAC32,
Evan Chenga5626262009-07-07 01:17:28 +0000833 "smmla", " $dst, $a, $b, $c",
834 [(set GPR:$dst, (add (mulhs GPR:$a, GPR:$b), GPR:$c))]>;
835
836
David Goodwin236ccb52009-08-19 18:00:44 +0000837def t2SMMLS : T2I <(outs GPR:$dst), (ins GPR:$a, GPR:$b, GPR:$c), IIC_iMAC32,
Evan Chenga5626262009-07-07 01:17:28 +0000838 "smmls", " $dst, $a, $b, $c",
839 [(set GPR:$dst, (sub GPR:$c, (mulhs GPR:$a, GPR:$b)))]>;
840
841multiclass T2I_smul<string opc, PatFrag opnode> {
David Goodwin236ccb52009-08-19 18:00:44 +0000842 def BB : T2I<(outs GPR:$dst), (ins GPR:$a, GPR:$b), IIC_iMUL32,
Evan Chenga5626262009-07-07 01:17:28 +0000843 !strconcat(opc, "bb"), " $dst, $a, $b",
844 [(set GPR:$dst, (opnode (sext_inreg GPR:$a, i16),
845 (sext_inreg GPR:$b, i16)))]>;
846
David Goodwin236ccb52009-08-19 18:00:44 +0000847 def BT : T2I<(outs GPR:$dst), (ins GPR:$a, GPR:$b), IIC_iMUL32,
Evan Chenga5626262009-07-07 01:17:28 +0000848 !strconcat(opc, "bt"), " $dst, $a, $b",
849 [(set GPR:$dst, (opnode (sext_inreg GPR:$a, i16),
850 (sra GPR:$b, (i32 16))))]>;
851
David Goodwin236ccb52009-08-19 18:00:44 +0000852 def TB : T2I<(outs GPR:$dst), (ins GPR:$a, GPR:$b), IIC_iMUL32,
Evan Chenga5626262009-07-07 01:17:28 +0000853 !strconcat(opc, "tb"), " $dst, $a, $b",
854 [(set GPR:$dst, (opnode (sra GPR:$a, (i32 16)),
855 (sext_inreg GPR:$b, i16)))]>;
856
David Goodwin236ccb52009-08-19 18:00:44 +0000857 def TT : T2I<(outs GPR:$dst), (ins GPR:$a, GPR:$b), IIC_iMUL32,
Evan Chenga5626262009-07-07 01:17:28 +0000858 !strconcat(opc, "tt"), " $dst, $a, $b",
859 [(set GPR:$dst, (opnode (sra GPR:$a, (i32 16)),
860 (sra GPR:$b, (i32 16))))]>;
861
David Goodwin236ccb52009-08-19 18:00:44 +0000862 def WB : T2I<(outs GPR:$dst), (ins GPR:$a, GPR:$b), IIC_iMUL16,
Evan Chenga5626262009-07-07 01:17:28 +0000863 !strconcat(opc, "wb"), " $dst, $a, $b",
864 [(set GPR:$dst, (sra (opnode GPR:$a,
865 (sext_inreg GPR:$b, i16)), (i32 16)))]>;
866
David Goodwin236ccb52009-08-19 18:00:44 +0000867 def WT : T2I<(outs GPR:$dst), (ins GPR:$a, GPR:$b), IIC_iMUL16,
Evan Chenga5626262009-07-07 01:17:28 +0000868 !strconcat(opc, "wt"), " $dst, $a, $b",
869 [(set GPR:$dst, (sra (opnode GPR:$a,
870 (sra GPR:$b, (i32 16))), (i32 16)))]>;
871}
872
873
874multiclass T2I_smla<string opc, PatFrag opnode> {
David Goodwin236ccb52009-08-19 18:00:44 +0000875 def BB : T2I<(outs GPR:$dst), (ins GPR:$a, GPR:$b, GPR:$acc), IIC_iMAC16,
Evan Chenga5626262009-07-07 01:17:28 +0000876 !strconcat(opc, "bb"), " $dst, $a, $b, $acc",
877 [(set GPR:$dst, (add GPR:$acc,
878 (opnode (sext_inreg GPR:$a, i16),
879 (sext_inreg GPR:$b, i16))))]>;
880
David Goodwin236ccb52009-08-19 18:00:44 +0000881 def BT : T2I<(outs GPR:$dst), (ins GPR:$a, GPR:$b, GPR:$acc), IIC_iMAC16,
Evan Chenga5626262009-07-07 01:17:28 +0000882 !strconcat(opc, "bt"), " $dst, $a, $b, $acc",
883 [(set GPR:$dst, (add GPR:$acc, (opnode (sext_inreg GPR:$a, i16),
884 (sra GPR:$b, (i32 16)))))]>;
885
David Goodwin236ccb52009-08-19 18:00:44 +0000886 def TB : T2I<(outs GPR:$dst), (ins GPR:$a, GPR:$b, GPR:$acc), IIC_iMAC16,
Evan Chenga5626262009-07-07 01:17:28 +0000887 !strconcat(opc, "tb"), " $dst, $a, $b, $acc",
888 [(set GPR:$dst, (add GPR:$acc, (opnode (sra GPR:$a, (i32 16)),
889 (sext_inreg GPR:$b, i16))))]>;
890
David Goodwin236ccb52009-08-19 18:00:44 +0000891 def TT : T2I<(outs GPR:$dst), (ins GPR:$a, GPR:$b, GPR:$acc), IIC_iMAC16,
Evan Chenga5626262009-07-07 01:17:28 +0000892 !strconcat(opc, "tt"), " $dst, $a, $b, $acc",
893 [(set GPR:$dst, (add GPR:$acc, (opnode (sra GPR:$a, (i32 16)),
894 (sra GPR:$b, (i32 16)))))]>;
895
David Goodwin236ccb52009-08-19 18:00:44 +0000896 def WB : T2I<(outs GPR:$dst), (ins GPR:$a, GPR:$b, GPR:$acc), IIC_iMAC16,
Evan Chenga5626262009-07-07 01:17:28 +0000897 !strconcat(opc, "wb"), " $dst, $a, $b, $acc",
898 [(set GPR:$dst, (add GPR:$acc, (sra (opnode GPR:$a,
899 (sext_inreg GPR:$b, i16)), (i32 16))))]>;
900
David Goodwin236ccb52009-08-19 18:00:44 +0000901 def WT : T2I<(outs GPR:$dst), (ins GPR:$a, GPR:$b, GPR:$acc), IIC_iMAC16,
Evan Chenga5626262009-07-07 01:17:28 +0000902 !strconcat(opc, "wt"), " $dst, $a, $b, $acc",
903 [(set GPR:$dst, (add GPR:$acc, (sra (opnode GPR:$a,
904 (sra GPR:$b, (i32 16))), (i32 16))))]>;
905}
906
907defm t2SMUL : T2I_smul<"smul", BinOpFrag<(mul node:$LHS, node:$RHS)>>;
908defm t2SMLA : T2I_smla<"smla", BinOpFrag<(mul node:$LHS, node:$RHS)>>;
909
910// TODO: Halfword multiple accumulate long: SMLAL<x><y>
911// TODO: Dual halfword multiple: SMUAD, SMUSD, SMLAD, SMLSD, SMLALD, SMLSLD
912
Evan Cheng36173712009-06-23 17:48:47 +0000913
914//===----------------------------------------------------------------------===//
915// Misc. Arithmetic Instructions.
916//
917
David Goodwin236ccb52009-08-19 18:00:44 +0000918def t2CLZ : T2I<(outs GPR:$dst), (ins GPR:$src), IIC_iUNAr,
Evan Cheng3d92dfd2009-06-25 02:08:06 +0000919 "clz", " $dst, $src",
Evan Cheng36173712009-06-23 17:48:47 +0000920 [(set GPR:$dst, (ctlz GPR:$src))]>;
921
David Goodwin236ccb52009-08-19 18:00:44 +0000922def t2REV : T2I<(outs GPR:$dst), (ins GPR:$src), IIC_iUNAr,
David Goodwin2f6f1132009-07-27 16:31:55 +0000923 "rev", ".w $dst, $src",
Evan Cheng36173712009-06-23 17:48:47 +0000924 [(set GPR:$dst, (bswap GPR:$src))]>;
925
David Goodwin236ccb52009-08-19 18:00:44 +0000926def t2REV16 : T2I<(outs GPR:$dst), (ins GPR:$src), IIC_iUNAr,
David Goodwin2f6f1132009-07-27 16:31:55 +0000927 "rev16", ".w $dst, $src",
Evan Cheng36173712009-06-23 17:48:47 +0000928 [(set GPR:$dst,
929 (or (and (srl GPR:$src, (i32 8)), 0xFF),
930 (or (and (shl GPR:$src, (i32 8)), 0xFF00),
931 (or (and (srl GPR:$src, (i32 8)), 0xFF0000),
932 (and (shl GPR:$src, (i32 8)), 0xFF000000)))))]>;
933
David Goodwin236ccb52009-08-19 18:00:44 +0000934def t2REVSH : T2I<(outs GPR:$dst), (ins GPR:$src), IIC_iUNAr,
David Goodwin2f6f1132009-07-27 16:31:55 +0000935 "revsh", ".w $dst, $src",
Evan Cheng36173712009-06-23 17:48:47 +0000936 [(set GPR:$dst,
937 (sext_inreg
Evan Chengb4c98a32009-08-18 05:43:23 +0000938 (or (srl (and GPR:$src, 0xFF00), (i32 8)),
Evan Cheng36173712009-06-23 17:48:47 +0000939 (shl GPR:$src, (i32 8))), i16))]>;
940
Evan Chengcd0ae282009-07-07 05:35:52 +0000941def t2PKHBT : T2I<(outs GPR:$dst), (ins GPR:$src1, GPR:$src2, i32imm:$shamt),
David Goodwin236ccb52009-08-19 18:00:44 +0000942 IIC_iALUsi, "pkhbt", " $dst, $src1, $src2, LSL $shamt",
Evan Chengcd0ae282009-07-07 05:35:52 +0000943 [(set GPR:$dst, (or (and GPR:$src1, 0xFFFF),
944 (and (shl GPR:$src2, (i32 imm:$shamt)),
945 0xFFFF0000)))]>;
946
947// Alternate cases for PKHBT where identities eliminate some nodes.
948def : T2Pat<(or (and GPR:$src1, 0xFFFF), (and GPR:$src2, 0xFFFF0000)),
949 (t2PKHBT GPR:$src1, GPR:$src2, 0)>;
950def : T2Pat<(or (and GPR:$src1, 0xFFFF), (shl GPR:$src2, imm16_31:$shamt)),
951 (t2PKHBT GPR:$src1, GPR:$src2, imm16_31:$shamt)>;
952
953def t2PKHTB : T2I<(outs GPR:$dst), (ins GPR:$src1, GPR:$src2, i32imm:$shamt),
David Goodwin236ccb52009-08-19 18:00:44 +0000954 IIC_iALUsi, "pkhtb", " $dst, $src1, $src2, ASR $shamt",
Evan Chengcd0ae282009-07-07 05:35:52 +0000955 [(set GPR:$dst, (or (and GPR:$src1, 0xFFFF0000),
956 (and (sra GPR:$src2, imm16_31:$shamt),
957 0xFFFF)))]>;
958
959// Alternate cases for PKHTB where identities eliminate some nodes. Note that
960// a shift amount of 0 is *not legal* here, it is PKHBT instead.
961def : T2Pat<(or (and GPR:$src1, 0xFFFF0000), (srl GPR:$src2, (i32 16))),
962 (t2PKHTB GPR:$src1, GPR:$src2, 16)>;
963def : T2Pat<(or (and GPR:$src1, 0xFFFF0000),
964 (and (srl GPR:$src2, imm1_15:$shamt), 0xFFFF)),
965 (t2PKHTB GPR:$src1, GPR:$src2, imm1_15:$shamt)>;
Evan Cheng36173712009-06-23 17:48:47 +0000966
967//===----------------------------------------------------------------------===//
968// Comparison Instructions...
969//
970
Evan Cheng6dadbee2009-08-10 02:37:24 +0000971defm t2CMP : T2I_cmp_is<"cmp",
972 BinOpFrag<(ARMcmp node:$LHS, node:$RHS)>>;
David Goodwin8bdcbb32009-06-29 15:33:01 +0000973defm t2CMPz : T2I_cmp_is<"cmp",
974 BinOpFrag<(ARMcmpZ node:$LHS, node:$RHS)>>;
Evan Cheng36173712009-06-23 17:48:47 +0000975
Evan Cheng6dadbee2009-08-10 02:37:24 +0000976defm t2CMN : T2I_cmp_is<"cmn",
977 BinOpFrag<(ARMcmp node:$LHS,(ineg node:$RHS))>>;
David Goodwin8bdcbb32009-06-29 15:33:01 +0000978defm t2CMNz : T2I_cmp_is<"cmn",
979 BinOpFrag<(ARMcmpZ node:$LHS,(ineg node:$RHS))>>;
Evan Cheng36173712009-06-23 17:48:47 +0000980
Evan Cheng19bb7c72009-06-27 02:26:13 +0000981def : T2Pat<(ARMcmp GPR:$src, t2_so_imm_neg:$imm),
982 (t2CMNri GPR:$src, t2_so_imm_neg:$imm)>;
Evan Cheng36173712009-06-23 17:48:47 +0000983
David Goodwin8bdcbb32009-06-29 15:33:01 +0000984def : T2Pat<(ARMcmpZ GPR:$src, t2_so_imm_neg:$imm),
Evan Cheng19bb7c72009-06-27 02:26:13 +0000985 (t2CMNri GPR:$src, t2_so_imm_neg:$imm)>;
Evan Cheng36173712009-06-23 17:48:47 +0000986
David Goodwinec52c892009-06-29 22:49:42 +0000987defm t2TST : T2I_cmp_is<"tst",
988 BinOpFrag<(ARMcmpZ (and node:$LHS, node:$RHS), 0)>>;
989defm t2TEQ : T2I_cmp_is<"teq",
990 BinOpFrag<(ARMcmpZ (xor node:$LHS, node:$RHS), 0)>>;
Evan Cheng36173712009-06-23 17:48:47 +0000991
992// A8.6.27 CBNZ, CBZ - Compare and branch on (non)zero.
993// Short range conditional branch. Looks awesome for loops. Need to figure
994// out how to use this one.
995
Evan Cheng03137672009-07-07 20:39:03 +0000996
997// Conditional moves
998// FIXME: should be able to write a pattern for ARMcmov, but can't use
999// a two-value operand where a dag node expects two operands. :(
David Goodwin236ccb52009-08-19 18:00:44 +00001000def t2MOVCCr : T2I<(outs GPR:$dst), (ins GPR:$false, GPR:$true), IIC_iCMOVr,
Evan Chengdec08242009-07-31 22:21:55 +00001001 "mov", ".w $dst, $true",
Evan Cheng03137672009-07-07 20:39:03 +00001002 [/*(set GPR:$dst, (ARMcmov GPR:$false, GPR:$true, imm:$cc, CCR:$ccr))*/]>,
1003 RegConstraint<"$false = $dst">;
1004
David Goodwin236ccb52009-08-19 18:00:44 +00001005def t2MOVCCi : T2I<(outs GPR:$dst), (ins GPR:$false, t2_so_imm:$true),
1006 IIC_iCMOVi, "mov", ".w $dst, $true",
Evan Cheng03137672009-07-07 20:39:03 +00001007[/*(set GPR:$dst, (ARMcmov GPR:$false, t2_so_imm:$true, imm:$cc, CCR:$ccr))*/]>,
1008 RegConstraint<"$false = $dst">;
Evan Cheng36173712009-06-23 17:48:47 +00001009
Evan Cheng7c002f32009-08-01 01:43:45 +00001010def t2MOVCClsl : T2I<(outs GPR:$dst), (ins GPR:$false, GPR:$true, i32imm:$rhs),
David Goodwin236ccb52009-08-19 18:00:44 +00001011 IIC_iCMOVsi, "lsl", ".w $dst, $true, $rhs", []>,
Evan Cheng7c002f32009-08-01 01:43:45 +00001012 RegConstraint<"$false = $dst">;
1013def t2MOVCClsr : T2I<(outs GPR:$dst), (ins GPR:$false, GPR:$true, i32imm:$rhs),
David Goodwin236ccb52009-08-19 18:00:44 +00001014 IIC_iCMOVsi, "lsr", ".w $dst, $true, $rhs", []>,
Evan Cheng7c002f32009-08-01 01:43:45 +00001015 RegConstraint<"$false = $dst">;
1016def t2MOVCCasr : T2I<(outs GPR:$dst), (ins GPR:$false, GPR:$true, i32imm:$rhs),
David Goodwin236ccb52009-08-19 18:00:44 +00001017 IIC_iCMOVsi, "asr", ".w $dst, $true, $rhs", []>,
Evan Cheng7c002f32009-08-01 01:43:45 +00001018 RegConstraint<"$false = $dst">;
1019def t2MOVCCror : T2I<(outs GPR:$dst), (ins GPR:$false, GPR:$true, i32imm:$rhs),
David Goodwin236ccb52009-08-19 18:00:44 +00001020 IIC_iCMOVsi, "ror", ".w $dst, $true, $rhs", []>,
Evan Cheng7c002f32009-08-01 01:43:45 +00001021 RegConstraint<"$false = $dst">;
1022
David Goodwinf6154702009-06-30 18:04:13 +00001023//===----------------------------------------------------------------------===//
David Goodwin41afec22009-07-08 16:09:28 +00001024// TLS Instructions
1025//
1026
1027// __aeabi_read_tp preserves the registers r1-r3.
1028let isCall = 1,
1029 Defs = [R0, R12, LR, CPSR] in {
David Goodwincfd67652009-08-06 16:52:47 +00001030 def t2TPsoft : T2XI<(outs), (ins), IIC_Br,
David Goodwin41afec22009-07-08 16:09:28 +00001031 "bl __aeabi_read_tp",
1032 [(set R0, ARMthread_pointer)]>;
1033}
1034
1035//===----------------------------------------------------------------------===//
Jim Grosbachcc6e66a2009-08-11 19:42:21 +00001036// SJLJ Exception handling intrinsics
Jim Grosbach207a4ba2009-08-13 15:11:43 +00001037// eh_sjlj_setjmp() is an instruction sequence to store the return
Jim Grosbachcc6e66a2009-08-11 19:42:21 +00001038// address and save #0 in R0 for the non-longjmp case.
1039// Since by its nature we may be coming from some other function to get
1040// here, and we're using the stack frame for the containing function to
1041// save/restore registers, we can't keep anything live in regs across
1042// the eh_sjlj_setjmp(), else it will almost certainly have been tromped upon
1043// when we get here from a longjmp(). We force everthing out of registers
1044// except for our own input by listing the relevant registers in Defs. By
1045// doing so, we also cause the prologue/epilogue code to actively preserve
1046// all of the callee-saved resgisters, which is exactly what we want.
1047let Defs =
Jim Grosbach3990e392009-08-13 16:59:44 +00001048 [ R0, R1, R2, R3, R4, R5, R6, R7, R8, R9, R10, R11, R12, LR, D0,
1049 D1, D2, D3, D4, D5, D6, D7, D8, D9, D10, D11, D12, D13, D14, D15,
Jim Grosbachcc6e66a2009-08-11 19:42:21 +00001050 D16, D17, D18, D19, D20, D21, D22, D23, D24, D25, D26, D27, D28, D29, D30,
1051 D31 ] in {
1052 def t2Int_eh_sjlj_setjmp : Thumb2XI<(outs), (ins GPR:$src),
1053 AddrModeNone, SizeSpecial, NoItinerary,
1054 "str.w sp, [$src, #+8] @ eh_setjmp begin\n"
Jim Grosbach23c001b2009-08-12 15:21:13 +00001055 "\tadr r12, 0f\n"
1056 "\torr r12, #1\n"
1057 "\tstr.w r12, [$src, #+4]\n"
Jim Grosbachcc6e66a2009-08-11 19:42:21 +00001058 "\tmovs r0, #0\n"
1059 "\tb 1f\n"
1060 "0:\tmovs r0, #1 @ eh_setjmp end\n"
Jim Grosbachdd4f75b2009-08-13 15:12:16 +00001061 "1:", "",
Jim Grosbachcc6e66a2009-08-11 19:42:21 +00001062 [(set R0, (ARMeh_sjlj_setjmp GPR:$src))]>;
1063}
1064
1065
1066
1067//===----------------------------------------------------------------------===//
David Goodwinf6154702009-06-30 18:04:13 +00001068// Control-Flow Instructions
1069//
1070
Evan Chengad877c82009-07-09 22:58:39 +00001071// FIXME: remove when we have a way to marking a MI with these properties.
1072// FIXME: $dst1 should be a def. But the extra ops must be in the end of the
1073// operand list.
1074// FIXME: Should pc be an implicit operand like PICADD, etc?
1075let isReturn = 1, isTerminator = 1, mayLoad = 1 in
1076 def t2LDM_RET : T2XI<(outs),
1077 (ins addrmode4:$addr, pred:$p, reglist:$dst1, variable_ops),
Evan Cheng94958142009-08-11 21:11:32 +00001078 IIC_Br, "ldm${addr:submode}${p}${addr:wide} $addr, $dst1",
Evan Chengad877c82009-07-09 22:58:39 +00001079 []>;
1080
David Goodwinf6154702009-06-30 18:04:13 +00001081let isBranch = 1, isTerminator = 1, isBarrier = 1 in {
1082let isPredicable = 1 in
David Goodwincfd67652009-08-06 16:52:47 +00001083def t2B : T2XI<(outs), (ins brtarget:$target), IIC_Br,
David Goodwin2f6f1132009-07-27 16:31:55 +00001084 "b.w $target",
David Goodwinf6154702009-06-30 18:04:13 +00001085 [(br bb:$target)]>;
1086
Evan Cheng1b2b3e22009-07-29 02:18:14 +00001087let isNotDuplicable = 1, isIndirectBranch = 1 in {
Evan Cheng6e2ebc92009-07-25 00:33:29 +00001088def t2BR_JT :
Evan Cheng1b2b3e22009-07-29 02:18:14 +00001089 T2JTI<(outs),
1090 (ins GPR:$target, GPR:$index, jt2block_operand:$jt, i32imm:$id),
David Goodwincfd67652009-08-06 16:52:47 +00001091 IIC_Br, "mov pc, $target\n$jt",
Evan Cheng1b2b3e22009-07-29 02:18:14 +00001092 [(ARMbr2jt GPR:$target, GPR:$index, tjumptable:$jt, imm:$id)]>;
1093
Evan Cheng04f40fa2009-08-01 06:13:52 +00001094// FIXME: Add a non-pc based case that can be predicated.
Evan Cheng1b2b3e22009-07-29 02:18:14 +00001095def t2TBB :
Evan Cheng04f40fa2009-08-01 06:13:52 +00001096 T2JTI<(outs),
Evan Cheng1b2b3e22009-07-29 02:18:14 +00001097 (ins tb_addrmode:$index, jt2block_operand:$jt, i32imm:$id),
David Goodwincfd67652009-08-06 16:52:47 +00001098 IIC_Br, "tbb $index\n$jt", []>;
Evan Cheng1b2b3e22009-07-29 02:18:14 +00001099
1100def t2TBH :
Evan Cheng04f40fa2009-08-01 06:13:52 +00001101 T2JTI<(outs),
Evan Cheng1b2b3e22009-07-29 02:18:14 +00001102 (ins tb_addrmode:$index, jt2block_operand:$jt, i32imm:$id),
David Goodwincfd67652009-08-06 16:52:47 +00001103 IIC_Br, "tbh $index\n$jt", []>;
Evan Cheng1b2b3e22009-07-29 02:18:14 +00001104} // isNotDuplicable, isIndirectBranch
1105
David Goodwin13d2f4e2009-06-30 19:50:22 +00001106} // isBranch, isTerminator, isBarrier
David Goodwinf6154702009-06-30 18:04:13 +00001107
1108// FIXME: should be able to write a pattern for ARMBrcond, but can't use
1109// a two-value operand where a dag node expects two operands. :(
1110let isBranch = 1, isTerminator = 1 in
David Goodwincfd67652009-08-06 16:52:47 +00001111def t2Bcc : T2I<(outs), (ins brtarget:$target), IIC_Br,
David Goodwin2f6f1132009-07-27 16:31:55 +00001112 "b", ".w $target",
David Goodwinf6154702009-06-30 18:04:13 +00001113 [/*(ARMbrcond bb:$target, imm:$cc)*/]>;
Evan Cheng36173712009-06-23 17:48:47 +00001114
Evan Chengd5b67fa2009-07-10 01:54:42 +00001115
1116// IT block
1117def t2IT : Thumb2XI<(outs), (ins it_pred:$cc, it_mask:$mask),
David Goodwin236ccb52009-08-19 18:00:44 +00001118 AddrModeNone, Size2Bytes, IIC_iALUx,
Evan Chengd5b67fa2009-07-10 01:54:42 +00001119 "it$mask $cc", "", []>;
1120
Evan Cheng36173712009-06-23 17:48:47 +00001121//===----------------------------------------------------------------------===//
1122// Non-Instruction Patterns
1123//
1124
Evan Cheng41799702009-06-24 23:47:58 +00001125// ConstantPool, GlobalAddress, and JumpTable
Evan Cheng19bb7c72009-06-27 02:26:13 +00001126def : T2Pat<(ARMWrapper tglobaladdr :$dst), (t2LEApcrel tglobaladdr :$dst)>;
1127def : T2Pat<(ARMWrapper tconstpool :$dst), (t2LEApcrel tconstpool :$dst)>;
1128def : T2Pat<(ARMWrapperJT tjumptable:$dst, imm:$id),
1129 (t2LEApcrelJT tjumptable:$dst, imm:$id)>;
Evan Cheng41799702009-06-24 23:47:58 +00001130
Evan Cheng16c012d2009-09-28 09:14:39 +00001131// 32-bit immediate using movw + movt.
1132// This is a single pseudo instruction to make it re-materializable. Remove
1133// when we can do generalized remat.
1134let isReMaterializable = 1 in
1135def t2MOVi32imm : T2Ix2<(outs GPR:$dst), (ins i32imm:$src), IIC_iMOVi,
1136 "movw", " $dst, ${src:lo16}\n\tmovt${p} $dst, ${src:hi16}",
1137 [(set GPR:$dst, (i32 imm:$src))]>;